 
        :root {
            --hospital-green: #0ca854;
            --hospital-green-dark: #0ca854;
            --hospital-green-light: #e8f5ee;
            --hospital-green-mid: #2d8a50;
            --hospital-red: #ff6f61;
            --hospital-red-light: #fdf0ef;
            --hospital-red-dark: #ff6f61;
            --white: #ffffff;
            --off-white: #f8fafb;
            --black: #111111;
            --gray-text: #555555;
            --gray-light: #e8edf0;
            --border-light: #d4e6db;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--off-white);
            color: var(--black);
        }

        /* ===== HERO / PRODUCT HERO ===== */
        .product-hero {
            background: linear-gradient(135deg, var(--hospital-green-dark) 0%, var(--hospital-green) 65%, #2d9e5a 100%);
            color: white;
            padding: 3rem 0 4rem;
            position: relative;
            overflow: hidden;
        }

        .product-hero::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
        }

        .product-hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
        }

        .product-hero .container {
            position: relative;
            z-index: 2;
        }

        .product-hero h1 {
            font-family: 'Noto Serif', serif;
            font-size: clamp(26px, 4vw, 44px);
            font-weight: 700;
            color: white;
            margin-bottom: 14px;
        }

        .product-hero .lead {
            color: rgba(255, 255, 255, 0.85);
            font-size: 15px;
        }

        .lab-info-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 16px 0 0;
        }

        .lab-info-pill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .lab-info-pill i {
            color: #a3f0c2;
            font-size: 12px;
        }

        .price-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--hospital-red);
            color: white;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
            margin-top: 16px;
        }

        .hero-icon-wrap {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* ===== SECTION HEADERS ===== */
        .section-title {
            font-family: 'Noto Serif', serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--hospital-green-dark);
            margin-bottom: 8px;
        }

        .section-divider {
            width: 40px;
            height: 3px;
            background: var(--hospital-red);
            border-radius: 2px;
            margin-bottom: 24px;
        }

        /* ===== TEST LIST CARD ===== */
        .tests-card {
            background: white;
            border-radius: 16px;
            border: 1.5px solid var(--border-light);
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(26, 107, 58, 0.06);
            margin-bottom: 40px;
        }

        .tests-card .card-header {
            background: linear-gradient(135deg, var(--hospital-green-dark) 0%, var(--hospital-green) 100%);
            color: white;
            padding: 18px 24px;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tests-card .card-header h5 {
            font-family: 'Noto Serif', serif;
            font-size: 17px;
            font-weight: 700;
            margin: 0;
            color: white;
        }

        .tests-card .card-header .test-count-badge {
            background: white;
            color: var(--hospital-green-dark);
            border-radius: 20px;
            padding: 4px 14px;
            font-weight: 700;
            font-size: 13px;
        }

        /* ===== TEST ITEM ===== */
        .test-card {
            border-bottom: 1px solid var(--border-light) !important;
            padding: 20px 24px;
            transition: all 0.25s;
            background: white;
        }

        .test-card:last-child {
            border-bottom: none !important;
        }

        .test-card:hover {
            background: var(--hospital-green-light);
        }

        .test-icon {
            width: 48px;
            height: 48px;
            background: var(--hospital-green-light);
            border: 1.5px solid var(--border-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--hospital-green);
            font-size: 18px;
            transition: all 0.25s;
            flex-shrink: 0;
        }

        .test-card:hover .test-icon {
            background: var(--hospital-green);
            color: white;
            border-color: var(--hospital-green);
        }

        .test-name {
            font-weight: 700;
            color: var(--hospital-green-dark);
            font-size: 15px;
            font-family: 'Noto Serif', serif;
            margin-bottom: 4px;
        }

        .test-meta-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--hospital-green-light);
            color: var(--hospital-green-dark);
            border-radius: 20px;
            padding: 2px 10px;
            font-size: 11px;
            font-weight: 600;
            margin-right: 4px;
            margin-top: 4px;
        }

        .description-text {
            color: var(--gray-text);
            font-size: 13px;
        }

        .read-more-link {
            color: var(--hospital-green);
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            font-size: 12px;
        }

        .read-more-link:hover {
            color: var(--hospital-green-dark);
        }

        /* Price area */
        .test-price-wrap {
            text-align: right;
        }

        .test-price-now {
            font-size: 20px;
            font-weight: 800;
            color: var(--hospital-red);
            font-family: 'Noto Serif', serif;
            display: block;
        }

        .test-price-mrp {
            font-size: 12px;
            color: #999;
            text-decoration: line-through;
            display: block;
        }

        .discount-badge {
            background: var(--hospital-red);
            color: white;
            border-radius: 4px;
            padding: 1px 7px;
            font-size: 11px;
            font-weight: 700;
        }

        /* Add to Cart Button */
        .addToCart {
            background: var(--hospital-green) !important;
            color: white !important;
            border: none !important;
            border-radius: 8px !important;
            padding: 9px 16px !important;
            font-weight: 600 !important;
            font-size: 13px !important;
            width: 100% !important;
            transition: all 0.2s !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 6px !important;
        }

        .addToCart:hover {
            background: var(--hospital-green-dark) !important;
            transform: translateY(-1px) !important;
            box-shadow: 0 4px 14px rgba(26, 107, 58, 0.3) !important;
        }

        /* ===== PACKAGES ===== */
        .packages-section {
            margin-bottom: 40px;
        }

        .package-card {
            background: white;
            border-radius: 14px;
            border: 1.5px solid var(--border-light);
            overflow: hidden;
            height: 100%;
            transition: all 0.3s;
        }

        .package-card:hover {
            border-color: var(--hospital-green-mid);
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(26, 107, 58, 0.12);
        }

        .package-card .pkg-header {
            background: linear-gradient(135deg, var(--hospital-green-dark), var(--hospital-green));
            padding: 18px 20px;
            color: white;
        }

        .package-card .pkg-header h5 {
            font-family: 'Noto Serif', serif;
            font-size: 16px;
            font-weight: 700;
            margin: 0;
            color: white;
        }

        .package-card .pkg-body {
            padding: 20px;
        }

        .pkg-test-list {
            list-style: none;
            padding: 0;
            margin: 0;
            margin-bottom: 16px;
        }

        .pkg-test-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray-text);
            padding: 4px 0;
            border-bottom: 1px dashed var(--border-light);
        }

        .pkg-test-list li:last-child {
            border-bottom: none;
        }

        .pkg-test-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--hospital-green-mid);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .pkg-price {
            font-size: 22px;
            font-weight: 800;
            color: var(--hospital-green-dark);
            font-family: 'Noto Serif', serif;
        }

        .addPackageBtn {
            background: var(--hospital-green) !important;
            color: white !important;
            border: none !important;
            border-radius: 8px !important;
            padding: 10px !important;
            font-weight: 600 !important;
            font-size: 13px !important;
            width: 100% !important;
            transition: all 0.2s !important;
        }

        .addPackageBtn:hover {
            background: var(--hospital-green-dark) !important;
            color: white !important;
        }

        /* ===== WHY CHOOSE SECTION ===== */
        .why-section {
            background: white;
            border-radius: 16px;
            border: 1.5px solid var(--border-light);
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(26, 107, 58, 0.06);
        }

        .why-section .why-header {
            background: linear-gradient(135deg, var(--hospital-green-dark), var(--hospital-green));
            padding: 18px 24px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .why-section .why-header h5 {
            font-family: 'Noto Serif', serif;
            font-size: 17px;
            font-weight: 700;
            margin: 0;
            color: white;
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: var(--hospital-green-light);
            border: 2px solid var(--border-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 22px;
            color: var(--hospital-green);
            transition: all 0.3s;
        }

        .why-feature:hover .feature-icon {
            background: var(--hospital-green);
            color: white;
            border-color: var(--hospital-green);
        }

        .why-feature h6 {
            font-weight: 700;
            color: var(--hospital-green-dark);
            font-size: 14px;
            margin-bottom: 6px;
        }

        .why-feature p {
            color: var(--gray-text);
            font-size: 13px;
            margin: 0;
        }

        /* ===== MODAL ===== */
        .modal-header {
            background: linear-gradient(135deg, var(--hospital-green-dark), var(--hospital-green));
            color: white;
        }

        .modal-header .modal-title {
            color: white;
            font-family: 'Noto Serif', serif;
        }

        .modal-header .btn-close {
            filter: invert(1);
        }

        .modal-footer .btn-primary {
            background: var(--hospital-green) !important;
            border-color: var(--hospital-green) !important;
        }

        .modal-footer .btn-primary:hover {
            background: var(--hospital-green-dark) !important;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--hospital-green);
            box-shadow: 0 0 0 0.2rem rgba(26, 107, 58, 0.15);
        }

        /* ===== BREADCRUMB ===== */
        .lab-breadcrumb {
            background: white;
            border-bottom: 1px solid var(--border-light);
            padding: 12px 0;
        }

        .lab-breadcrumb .breadcrumb {
            margin: 0;
            font-size: 13px;
        }

        .lab-breadcrumb .breadcrumb-item a {
            color: var(--hospital-green);
            text-decoration: none;
        }

        .lab-breadcrumb .breadcrumb-item.active {
            color: var(--gray-text);
        }

        /* ===== MOBILE ===== */
        @media (max-width: 767.98px) {
            .product-hero {
                padding: 2rem 0 3rem;
            }

            .hero-icon-wrap {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
                margin-top: 20px;
            }

            .test-card {
                padding: 16px;
            }

            .test-price-wrap {
                text-align: left;
                margin-top: 8px;
            }

            .col-3.test-price-col {
                width: 100% !important;
            }

            .col-2.col-sm-1 {
                width: auto !important;
            }
        }

        b {
            font-family: 'Noto Serif', serif !important;
        }

        h4,
        h5 {
            font-family: 'Noto Serif', serif !important;
        }
     
        /* ===== Lab Test Card ===== */

        .package-card {
            background: white;
            border-radius: 20px;
            /* padding: 2.5rem; */
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: #ff6f61;
        }

        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .row.align-items-center {
            flex-wrap: wrap;
        }

        .test-icon {
            font-size: 1.4rem;
            color: var(--hospital-red);
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
        }

        .test-name {
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.3;
            word-break: break-word;
        }

        .test-meta-tag {
            font-size: 0.75rem;
            display: inline-block;
            margin-top: 2px;
        }

        .description-text {
            font-size: 0.75rem;
            line-height: 1.4;
            word-break: break-word;
        }

        /* Price column */
        .test-price-col {
            text-align: right;
        }

        .test-price-wrap {
            display: flex;
            flex-direction: column;
            /* stack vertically */
            align-items: flex-end;
            gap: 2px;
            min-width: 0;
        }

        .test-price-wrap span {
            display: block;
            /* each on its own line */
            white-space: nowrap;
        }

        .test-price-now {
            font-size: 1rem;
            font-weight: 700;
            color: #198754;
        }

        .test-price-mrp {
            font-size: 0.75rem;
            text-decoration: line-through;
            color: #6c757d;
        }

        .discount-badge {
            font-size: 0.68rem;
            font-weight: 600;
            color: #fff;
            background-color: #ff6f61;
            padding: 1px 5px;
            border-radius: 4px;
        }

        .btn.addToCart {
            width: 100%;
            font-size: 0.82rem;
            padding: 6px 10px;
            white-space: nowrap;
        }

        /* ===== MOBILE (≤575px) — single block, no conflicts ===== */
        @media (max-width: 575.98px) {

            .col-2.text-center.px-3 {
                padding-left: 8px !important;
                padding-right: 8px !important;
            }

            /* Details: 55% */
            .col-7.ps-2.py-2 {
                flex: 0 0 55% !important;
                max-width: 55% !important;
                padding-left: 6px !important;
            }

            /* Price: fixed width, stacks cleanly */
            .test-price-col {
                flex: 0 0 80px !important;
                width: 80px !important;
                max-width: 80px !important;
                padding-right: 6px !important;
            }

            .test-price-now {
                font-size: 0.82rem;
            }

            .test-price-mrp {
                font-size: 0.65rem;
            }

            .discount-badge {
                font-size: 0.60rem;
                padding: 1px 3px;
            }

            .test-name {
                font-size: 0.85rem;
            }

            .description-text {
                font-size: 0.70rem;
            }

            .col-12.px-3.pb-3 {
                padding-left: 8px !important;
                padding-right: 8px !important;
                padding-bottom: 10px !important;
            }

            .btn.addToCart {
                font-size: 0.78rem;
                padding: 7px 8px;
            }
        }

        /* ===== VERY SMALL (≤380px) ===== */
        @media (max-width: 380px) {

            .col-7.ps-2.py-2 {
                flex: 0 0 52% !important;
                max-width: 52% !important;
            }

            .test-price-col {
                flex: 0 0 72px !important;
                width: 72px !important;
                max-width: 72px !important;
            }

            .test-price-now {
                font-size: 0.75rem;
            }

            .test-price-mrp {
                font-size: 0.60rem;
            }

            .discount-badge {
                font-size: 0.55rem;
            }

            .test-name {
                font-size: 0.78rem;
            }

            .description-text,
            .test-meta-tag {
                font-size: 0.65rem;
            }

            .btn.addToCart {
                font-size: 0.72rem;
                padding: 6px 6px;
            }
        }

        /* ===== TABLET (576px–767px) ===== */
        @media (min-width: 576px) and (max-width: 767.98px) {
            .test-name {
                font-size: 0.92rem;
            }

            .btn.addToCart {
                font-size: 0.8rem;
            }
        }

        /* ===== DESKTOP (≥768px) ===== */
        @media (min-width: 768px) {
            .btn.addToCart {
                font-size: 0.85rem;
            }

            .test-price-now {
                font-size: 1.05rem;
            }
        }
    