 :root {
            --promo: #F28F26;
            --green: #00B68B;
            --text: #111;
            --muted: #6E6E6E;
            --line: rgba(0, 0, 0, 0.2);
            --pill: #ECECEC;
            --card: #fff;
            --shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 10px 30px rgba(0, 0, 0, 0.05);
            --warm: #f4f2ef;
            /* --stage: #F6F6F6; */
            --stage: #f4f9ff;
            --orange: #F28F26;
            --section-gap: 80px;

            --ff-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
            --ff-serif: "Merriweather", Georgia, "Times New Roman", serif;

            --fw-light: 300;
            --fw-regular: 400;
            --fw-semibold: 600;
            --fw-bold: 700;
        }

     

        /* ===== Product Page Layout ===== */
        .product-page {
            position: relative;
            padding: 60px 0 var(--section-gap);
            overflow: hidden;
            background: #fff;
            border-bottom: 0px solid var(--line);
        }

        /* Background gradient blurs */
        .product-page::before,
        .product-page::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(171px);
            z-index: 0;
        }

        .product-page::before {
            width: 225px;
            height: 223px;
            background: rgba(0, 183, 137, 0.4);
            top: 100px;
            left: 50px;
        }

        .product-page::after {
            width: 255px;
            height: 253px;
            /* background: rgba(242, 143, 38, 0.5); */
            background: rgb(241 247 255);
            top: 300px;
            right: 100px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: 628px 1fr;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        /* ===== Product Gallery ===== */
        .product-gallery {
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
            width: 628px;
        }

        .weight-badge {
            box-sizing: border-box;
            position: absolute;
            width: 130px;
            height: 48px;
            left: 0;
            top: 0;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 0px 10px;
            gap: 8px;
            background: var(--green);
            border: 0.5px solid rgba(0, 0, 0, 0.1);
            border-radius: 15px 100px 100px 0;
            color: #FFFFFF;
            font-family: "Inter", var(--ff-sans);
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 18px;
            leading-trim: both;
            text-edge: cap;
            text-transform: capitalize;
            z-index: 10;
        }

        .main-image-wrapper {
            position: relative;
            width: 625px;
            height: 625px;
        }

        .main-image-container {
            position: relative;
            width: 625px;
            height: 625px;
            background: var(--stage);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-image {
            width: 100%;
            height: 460px;
            object-fit: contain;
            filter: drop-shadow(-3px 4px 10px rgba(0, 0, 0, 0.15));
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: opacity 0.1s ease;
            z-index: 5;
            border: none;
            outline: none;
        }

        .gallery-nav:active {
            opacity: 0.9;
        }

        .gallery-nav.prev {
            left: 0;
            background: #fff;
            border-width: 0.833px 0.833px 0.833px 0;
            border-style: solid;
            border-color: rgba(0, 0, 0, 0.2);
            border-radius: 0 49px 49px 0;
        }

        .gallery-nav.next {
            right: 0;
            background: linear-gradient(0deg, var(--orange), var(--orange)), var(--orange);
            border: 0.833px solid #fff;
            border-right: none;
            border-radius: 49px 0 0 49px;
        }

        .gallery-nav::before,
        .gallery-nav::after {
            content: "";
            position: absolute;
        }

        /* Horizontal line */
        .gallery-nav::before {
            width: 15px;
            height: 0;
            border-top: 1.35px solid;
        }

        /* Arrowhead */
        .gallery-nav::after {
            width: 6px;
            height: 6px;
            border-style: solid;
            border-width: 0 1.35px 1.35px 0;
        }

        .gallery-nav.prev::before {
            border-color: #000;
        }

        .gallery-nav.prev::after {
            border-color: #000;
            transform: rotate(135deg);
            left: 10px;
        }

        .gallery-nav.next::before {
            border-color: #fff;
        }

        .gallery-nav.next::after {
            border-color: #fff;
            transform: rotate(-45deg);
            right: 10px;
        }

        .thumbnail-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 10px;
            width: 625px;
        }

        .thumbnail {
            width: 117px;
            height: 117px;
            background: var(--stage);
            border-radius: 10px;
            cursor: pointer;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid transparent;
            flex: none;
        }

        .thumbnail.active {
            border: 1px solid #000;
        }

        .thumbnail img {
            max-width: 70%;
            max-height: 70%;
            object-fit: contain;
        }

        /* ===== Review Card ===== */
        .review-card {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 15px;
            padding: 25px;
            width: 628px;
            background: var(--stage);
            border-radius: 10px;
        }

        .mobile-review-card {
            display: none;
        }

        .mobile-benefits {
            display: none;
        }

        /* Desktop Benefits Section */
        .desktop-benefits-wrapper {
            position: relative;
            border-top: 1px solid rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .desktop-benefits-wrapper::after {
            content: '';
            position: absolute;
            width: 225px;
            height: 223px;
            right: -50px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 183, 137, 0.4);
            filter: blur(171px);
            pointer-events: none;
        }

        .desktop-benefits {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            padding: 40px 127px;
            gap: 15px;
            max-width: 1500px;
            margin: 0 auto;
            background: #fff;
            position: relative;
        }

        .desktop-benefit {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 0;
            gap: 20px;
            width: 275px;
            flex-shrink: 0;
        }

        .desktop-benefit-icon {
            width: 45px;
            height: 45px;
        }

        .desktop-benefit-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .desktop-benefit-content h4 {
            font-family: var(--ff-serif);
            font-weight: 900;
            font-size: 18px;
            line-height: 23px;
            color: #000;
            margin: 0;
        }

        .desktop-benefit-content p {
            font-family: var(--ff-sans);
            font-weight: 400;
            font-size: 16px;
            line-height: 140%;
            color: #000;
            margin: 0;
        }

        .desktop-benefit-divider {
            width: 1px;
            height: 170px;
            background: rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
            align-self: center;
        }

        .reviewer-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .review-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 20px;
            width: 483px;
        }

        .reviewer-info {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 5px;
        }

        .reviewer-name {
            font-family: var(--ff-serif);
            font-size: 13px;
            font-weight: 400;
            line-height: 16px;
            color: #000;
        }

        .reviewer-badge {
            font-size: 12px;
            line-height: 15px;
            color: #000;
        }

        .review-text {
            font-size: 16px;
            line-height: 140%;
            color: #000;
            margin: 0;
            width: 483px;
        }

        .review-stars {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 0.83px;
        }

        .review-stars svg {
            width: 14px;
            height: 14px;
            fill: var(--orange);
        }

        /* ===== Product Info ===== */
        .product-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 20px;
            width: 511px;
        }

        /* Rating Header */
        .rating-header {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .stars-container {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 0.83px;
        }

        .stars-container svg {
            width: 14px;
            height: 14px;
            fill: var(--orange);
        }

        .rating-text {
            font-size: 14px;
            line-height: 140%;
            color: #000;
        }

        /* Product Title Section */
        .product-title-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            width: 507px;
        }

        .product-title {
            font-family: var(--ff-serif);
            font-size: 40px;
            font-weight: 400;
            line-height: 50px;
            color: #000;
            margin: 0;
        }

        .product-title .plus {
            font-family: var(--ff-sans);
            color: var(--green);
        }

        .product-subtitle {
            font-size: 20px;
            font-weight: var(--fw-semibold);
            line-height: 140%;
            color: #000;
            margin: 0;
        }

        .product-description {
            font-size: 16px;
            line-height: 140%;
            color: #000;
            margin: 0;
        }

        /* Price Section */
        .price-section {
            display: flex;
            flex-direction: row;
            align-items: flex-end;
            gap: 10px;
        }

        .product-price {
            font-family: var(--ff-serif);
            font-size: 30px;
            font-weight: 400;
            line-height: 38px;
            color: #000;
        }

        .price-frequency {
            font-size: 16px;
            font-style: italic;
            line-height: 19px;
            color: #000;
        }


        .pills2 {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
            margin: 0 0 0px;
            padding: 0;
            list-style: none;
        }

        .pill2 button {
            /* background: #00b68b1f; */
            background: var(--pill);
            color: #111;
            font-size: 14px;
            padding: 6px 16px;
            border-radius: 4px;
            white-space: nowrap;
            border: 1px solid #DCDCDC;
            transition: all 0.3s ease-in-out;
            min-width: 90px;
            height: 40px;
        }
        .pill2 button:hover {
            background: #00b68b1f;
            border: 1px solid #00b68b;
        }
        .pill2 button.pillselected {
            background: #00b68b1f;
            border: 1px solid #00b68b;
        }
        .plan-title {
            font-size: 30px;
        }
        .pill2.active {
            background: #DCDCDC;
            font-weight: 600;
        }
        h4.transparent.selectDosageProduct {
            font-size: 18px;
            margin-top: 20px;
            margin-bottom: 12px;
            letter-spacing: 0.4px;
        }
        .plan-right {
            max-width: 160px;
        }
        /* Feature List */
        .feature-list {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 0;
            gap: 0;
            width: 510px;
        }

        .feature-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            width: 100%;
            border-top: 1px solid rgba(0, 0, 0, 0.2);
        }

        .feature-item:last-child {
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            background: transparent;
                margin: 0 0px 0rem;
        }

        .feature-icon.icon-lg {
            width: 45px;
            height: 45px;
        }

        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .feature-text {
            font-size: 16px;
            line-height: 140%;
            color: #000;
        }

        .feature-text strong {
            font-weight: var(--fw-semibold);
        }

        /* CTA Section */
        .cta-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 13px;
            width: 511px;
        }

        /* Stock Indicator */
        .stock-indicator {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
        }

        .stock-dot {
            position: relative;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 1.5px solid var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stock-dot::after {
            content: "";
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--orange);
        }

        .stock-text {
            font-size: 14px;
            line-height: 140%;
            color: #000;
        }

        /* Buy Button */
   .buy-btn {
    width: 511px;
    height: 60px;

    background: var(--green);
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;

    color: #fff;
    font-family: var(--ff-sans);
    font-size: 20px;
    font-weight: 400;

    cursor: pointer;
    position: relative;
    overflow: hidden;

    transition: all 0.3s ease;
    /* border: 4px solid #06a17a !important; */
    transition: all ease-in-out 0.3s;
}

/* Yellow Layer */
/* .buy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: #029f77; 

    transition: all 0.4s ease;
    z-index: 0;
} */

/* Text on Top */
.buy-btn span {
    position: relative;
    z-index: 1;
}

/* Hover Effect */
/* .buy-btn:hover::before {
    left: 0;
} */

/* Hover Text Color */
.buy-btn:hover {
    color: #ffffff;
    /* transform: translateY(-2px); */
    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.15),
        0 0 12px rgba(47,191,113,0.5);
        background-color: #00a37a !important;
}

/* Click */
.buy-btn:active {
    transform: translateY(1px);
}

    /* Click */
    .buy-btn:active {
        transform: translateY(1px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }


        /* Shipping Info */
        .shipping-info {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 15px;
            width: 100%;
        }

        .shipping-icon {
            height: 28px;
            width: auto;
            flex: none;
            display: block;
            object-fit: contain;
            filter: invert(53%) sepia(89%) saturate(387%) hue-rotate(118deg) brightness(95%) contrast(101%);
        }

        .shipping-text {
            font-size: 14px;
            line-height: 140%;
            color: #000;
        }

        /* Payment Icons */
        .payment-icons {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .payment-icons img {
            height: 24px;
            width: auto;
        }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            gap: 15px;
            width: 511px;
            padding-top: 25px;
            border-top: 1px solid var(--line);
        }

        .trust-badge {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;
            width: 150px;
        }

        .trust-badge svg {
            width: 24px;
            height: 24px;
            color: #000;
        }

        .trust-badge-text {
            font-size: 14px;
            line-height: 140%;
            text-align: center;
            color: #000;
        }

        /* ===== Accordion Section ===== */
        .accordion-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
            width: 511px;
        }

        .accordion-item {
            width: 511px;
            border-top: 1px solid var(--line) !important;
        }

        .accordion-item:last-child {
            border-bottom: 1px solid var(--line) !important;
        }

        .accordion-header {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 17px 0;
            width: 100%;
            cursor: pointer;
            user-select: none;
        }

        .accordion-title {
            font-size: 16px;
            font-weight: var(--fw-regular);
            line-height: 140%;
            color: #000;
        }

        .accordion-icon {
            width: 11px;
            height: 12px;
            color: #575757;
            transition: transform 0.2s ease;
        }

        .accordion-item.open .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-item.open .accordion-content {
            max-height: 500px;
        }

        .accordion-body {
            padding-bottom: 17px;
        }

        .accordion-text {
            font-size: 14px;
            font-weight: var(--fw-light);
            line-height: 140%;
            color: #000;
            margin: 0;
            width: 511px;
        }

        /* ===== How It Works Section ===== */
        .how-works {
            padding: var(--section-gap) 0;
            background: var(--stage);
        }

        .how-works-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .how-works-image {
            width: 100%;
        }

        .step-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            width: 554px;
        }
        .step-title {
            margin: 0;
            font-family: var(--ff-serif);
            font-size: 18px;
            font-weight: 400;
            line-height: 23px;
            color: #000;
        }
        .how-works-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .how-works-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .how-works-text {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .how-works-title {
            margin: 0;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: var(--fw-regular);
            line-height: 57px;
            color: #000;
        }

        .how-works-subtitle {
            margin: 0;
            font-size: 18px;
            line-height: 140%;
            color: #000;
            max-width: 470px;
        }

        .how-works-features {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 15px;
        }

        .how-works-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            font-size: 16px;
            line-height: 140%;
            color: #000;
        }

        .how-works-feature p {
            margin: 0;
        }

        .how-works-feature svg {
            width: 30px;
            height: 30px;
        }

        .how-works .review-card {
            width: 100%;
            background: #fff;
        }

        .how-works .review-content {
            width: auto;
            flex: 1;
        }

        .how-works .review-text {
            width: auto;
        }

        /* ===== Included Section ===== */
        .included {
            padding: var(--section-gap) 0;
            background: #fff;
        }

        .included-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 424px;
            gap: 70px;
            align-items: center;
        }

        .included-content {
            display: flex;
            flex-direction: column;
            gap: 35px;
            max-width: 646px;
        }

        .included-text {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .included-title {
            margin: 0;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: var(--fw-regular);
            line-height: 57px;
            color: #000;
        }

        .included-subtitle {
            margin: 0;
            font-size: 18px;
            line-height: 140%;
            color: #000;
        }

        .included-features {
            display: flex;
            flex-direction: column;
            gap: 0;
            width: 100%;
            border-top: 1px solid rgba(0, 0, 0, 0.2);
        }

        .included-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
            font-size: 16px;
            line-height: 140%;
            color: #000;
        }

        .included-item img {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            object-fit: contain;
            display: block;
        }

        .included-item img.icon-lg {
            width: 45px;
            height: 45px;
        }

        .included-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }

        .included-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            line-height: 140%;
            color: #000;
        }

        .included-rating b {
            font-weight: var(--fw-semibold);
        }

        .included-stars {
            display: flex;
            align-items: flex-start;
            gap: 0.83px;
        }

        .included-stars svg {
            width: 14px;
            height: 14px;
            fill: var(--orange);
        }

        .included-bottles {
            position: relative;
            width: 424.03px;
            height: 493px;
            margin-left: auto;
            text-align: center;
            display: flex;
            justify-content: center;
        }

        .included-bottle {
            position: absolute;
            top: 0;
            object-fit: contain;
            filter: drop-shadow(-3px 4px 10px rgba(0, 0, 0, 0.15));
        }

        .included-bottle.back-left {
            width: 189px;
            height: 429px;
            left: 0;
            top: 60.29px;
            z-index: 1;
        }

        .included-bottle.back-right {
            width: 189px;
            height: 429px;
            left: 115.24px;
            top: 60.29px;
            z-index: 1;
        }

        .included-bottle.front {
            width: 217px;
            height: 493px;
            /* left: 44.03px; */
            transform: none;
            z-index: 4;
        }

        .included-pill {
            position: absolute;
            left: 294.03px;
            top: 250px;
            width: 130px;
            height: 37px;
            background: var(--orange);
            border: 0.5px solid rgba(0, 0, 0, 0.1);
            border-radius: 0 100px 100px 0;
            color: #fff;
            font-size: 14px;
            line-height: 17px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0.4px;
            z-index: 3;
        }

        /* ===== Transform Section ===== */
        .transform {
            padding: var(--section-gap) 0;
            background: #fff;
        }

        .transform h2 {
            margin: 0;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 500;
            letter-spacing: -0.35px;
            line-height: 1.12;
            color: #101010;
        }

        .transform h2 .em {
            font-weight: 700;
        }

        .transform .sub {
            margin: 10px 0 0;
            text-align: center;
            font-size: 18px;
            color: #4a4a4a;
        }

        .mosaic {
            margin: 34px auto 0;
            width: min(920px, 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .tile {
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1.4 / 1;
        }

        .tile.card {
            background: #f4f2ef;
            padding: 30px 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
        }

        .tile.card:first-child {
            background: linear-gradient(160deg, rgba(200, 235, 220, 0.5) 0%, rgba(230, 240, 235, 0.3) 40%, #f4f2ef 100%);
        }

        .tile.card h3 {
            margin: 0 0 10px;
            font-family: var(--ff-serif);
            font-size: 30px;
            font-weight: 500;
            letter-spacing: -0.15px;
            color: #111;
        }

        .tile.card p {
            margin: 0 0 14px;
            font-size: 20px;
            line-height: 1.35;
            color: #4a4a4a;
            max-width: 320px;
        }

        .pill-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 28px;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, 0.35);
            background: transparent;
            color: #111;
            font-size: 18px;
            line-height: 1;
            cursor: default;
            user-select: none;
        }

        .tile.photo {
            position: relative;
        }

        .tile.photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
        }

        /* ===== Struggles Section ===== */
        .struggles {
            padding: var(--section-gap) 0;
            background: #fff;
        }

        .struggles h2 {
            margin: 0 auto;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 46px;
            font-weight: 400;
            font-style: italic;
            letter-spacing: -0.35px;
            line-height: 1.2;
            color: #101010;
            max-width: 800px;
        }

        .struggles h2 .em {
            font-weight: 700;
            font-style: italic;
        }

        .struggles h2 .line {
            display: block;
        }

        .struggles .sub {
            margin: 18px auto 0;
            max-width: 520px;
            text-align: center;
            font-size: 17px;
            line-height: 1.55;
            color: #2f2f2f;
        }

        .pain-grid {
            margin: 50px auto 0;
            max-width: 1100px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .pain {
            background: #f6f6f6;
            border-radius: 10px;
            min-height: 130px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 15px;
            padding: 25px 20px;
        }

        .pain img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .pain .lbl {
            font-family: var(--ff-sans);
            font-size: 14px;
            font-weight: 400;
            line-height: 1.3;
            color: #2a2a2a;
            text-align: center;
        }

        /* ===== Testimonials Section ===== */
        .testimonials {
            padding: var(--section-gap) 0;
            background: #fff;
            overflow: hidden;
        }

        .testimonials h2 {
            margin: 0;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 400;
            font-style: normal;
            line-height: 57px;
            color: #000000;
        }

        .testimonials h2 .line {
            display: block;
        }

        .testimonials h2 .em {
            font-weight: 700;
            font-style: italic;
        }

        .testimonials .sub {
            margin: 15px 0 0;
            text-align: center;
            font-size: 18px;
            font-weight: 600;
            line-height: 140%;
            color: #000000;
        }

        .testi-grid-wrap {
            margin: 40px 0 0;
            width: 100vw;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            overflow: hidden;
        }

        .testi-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .testi-row {
            display: flex;
            flex-direction: row;
            gap: 15px;
            animation: scrollTestimonials 40s linear infinite;
        }

        .testi-row:nth-child(2) {
            animation-direction: reverse;
        }

        @keyframes scrollTestimonials {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .testi-grid:hover .testi-row {
            animation-play-state: paused;
        }

        .t-card {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 15px;
            background: #f6f6f6;
            border-radius: 10px;
            padding: 25px;
            min-width: 425px;
            width: 425px;
            flex-shrink: 0;
        }

        .t-avatar {
            width: 80px;
            height: 80px;
            border-radius: 999px;
            border: none;
            background: #efefef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: transparent;
            font-size: 0;
            user-select: none;
            overflow: hidden;
            flex-shrink: 0;
        }

        .t-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 20px;
            width: 280px;
        }

        .t-head {
            display: contents;
        }

        .t-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .t-meta {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .t-name {
            font-family: var(--ff-serif);
            font-size: 14px;
            font-weight: 700;
            color: #111;
        }

        .t-verified {
            font-size: 12px;
            color: #7a7a7a;
        }

        .t-quote {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
            color: #333;
        }

        .t-stars {
            margin-top: 12px;
            color: var(--orange);
            font-size: 14px;
            letter-spacing: 1px;
        }

       

        /* ===== Path Section ===== */
       
       

        /* ===== FAQ Section ===== */
        .faq {
            padding: var(--section-gap) 0;
            background: #fff;
        }

        .faq h2 {
            margin: 0;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: var(--fw-regular);
            letter-spacing: -0.6px;
            line-height: 1.05;
            color: #101010;
        }

        .faq .sub {
            margin: 16px 0 0;
            text-align: center;
            font-size: 18px;
            color: #2b2b2b;
        }

        .accordion {
            margin: 44px auto 0;
            width: min(880px, 100%);
            padding-bottom: 0px;
        }

        .acc-item {
            border-radius: 10px;
            border: 1px solid rgba(0, 0, 0, 0.25);
            background: #fff;
            overflow: hidden;
            margin-bottom: 14px;
        }

        .acc-item.open {
            background: rgb(235 241 249 / 79%);
            border-color: rgb(224 233 245);
        }

        .acc-btn {
            width: 100%;
            text-align: left;
            border: 0;
            background: transparent;
            padding: 18px 18px;
            display: grid;
            grid-template-columns: 1fr 44px;
            align-items: center;
            gap: 14px;
            cursor: pointer;
        }

        .acc-q {
            font-size: 20px;
            font-weight: var(--fw-regular);
            color: #111;
        }

        .acc-item.open .acc-q {
            font-size: 22px;
        }

        .acc-icon {
            width: 34px;
            height: 34px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
            font-size: 18px;
            line-height: 1;
        }

        .acc-item.open .acc-icon {
            background: #111;
            color: #fff;
        }

        .acc-item:not(.open) .acc-icon {
            border: 1.5px solid rgba(0, 0, 0, 0.35);
            color: #111;
            background: #fff;
        }

        .acc-a {
            padding: 0 18px 18px;
            margin-top: -6px;
            color: #2b2b2b;
            font-size: 16px;
            line-height: 1.45;
            display: none;
        }

        .acc-item.open .acc-a {
            display: block;
        }

        /* ===== Bottom Ticker ===== */
        .ticker {
            height: 44px;
            background: var(--promo);
            overflow: hidden;
        }

        .ticker-track {
            height: 44px;
            display: flex;
            align-items: center;
            gap: 28px;
            width: max-content;
            animation: tickerMove 20s linear infinite;
            padding: 0 18px;
        }

        .tick {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.95);
            font-size: 14px;
            font-weight: var(--fw-regular);
            white-space: nowrap;
        }

        .tick svg {
            width: 18px;
            height: 18px;
            opacity: 0.95;
        }

        @keyframes tickerMove {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* ===== Final CTA Section ===== */
        .final-cta {
            padding: var(--section-gap) 0;
            background: #fff;
        }

        .final-cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .final-cta-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .final-cta h2 {
            margin: 0;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: var(--fw-regular);
            letter-spacing: -0.8px;
            line-height: 1.1;
            color: #101010;
        }

        .final-cta .lead {
            margin: 0;
            font-size: 18px;
            line-height: 1.55;
            color: #1f1f1f;
            max-width: 420px;
        }

        .final-cta-checks {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .final-cta-check {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            font-size: 14px;
            line-height: 1.3;
            color: #1b1b1b;
        }

        .final-cta-check svg {
            width: 22px;
            height: 22px;
        }

        .final-cta .cta-btn {
            height: 56px;
            border: none;
            border-radius: 999px;
            background: var(--green);
            color: #fff;
            font-size: 18px;
            font-weight: var(--fw-semibold);
            cursor: pointer;
            padding: 0 34px;
            min-width: 280px;
        }

        .final-cta .ratingline {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: #2b2b2b;
        }

        .final-cta .ratingline .stars {
            display: flex;
            gap: 1px;
        }

        .final-cta .ratingline .stars svg {
            width: 14px;
            height: 14px;
            fill: var(--orange);
        }

        .bottle-pair {
            display: flex;
            justify-content: center;
            gap: 30px;
            align-items: center;
        }

        .bottle-card {
            background: linear-gradient(180deg, rgba(189, 226, 246, 0.7) 0%, rgba(189, 226, 246, 0.4) 100%);
            border-radius: 14px;
            padding: 30px;
            width: 220px;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bottle-card img {
            max-width: 100%;
            max-height: 260px;
            object-fit: contain;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
        }


        .productVarients {
            color: #1c1c1c;
            padding: 2px 10px;
            font-weight: 900;
            display: inline-block;
            background-color: #cef5e7;
            border-radius: 5px;
            max-width: fit-content;
            margin-bottom: 10px;
        }
        .plan-title {
            font-size: 24px;
        }

        /* ===== Expanded Footer ===== */
     

        /* ===== Responsive ===== */
        @media (max-width: 1180px) {
            .plan-right img {
                max-height: 240px;
            }
            .product-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .product-gallery,
            .main-image-wrapper,
            .main-image-container,
            .thumbnail-row,
            .review-card {
                width: 100%;
            }

            .main-image-wrapper,
            .main-image-container {
                height: auto;
                aspect-ratio: 1;
            }

            .thumbnail {
                width: calc((100% - 40px) / 5);
                height: auto;
                aspect-ratio: 1;
            }

            .review-content,
            .review-text {
                width: auto;
                flex: 1;
            }

            .product-info,
            .product-title-section,
            .feature-list,
            .cta-section,
            .buy-btn,
            .trust-badges,
            .accordion-section,
            .accordion-item,
            .accordion-text {
                width: 100%;
            }

            .trust-badge {
                width: auto;
                flex: 1;
            }

            .how-works-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .included-grid {
                grid-template-columns: 1fr 360px;
                gap: 40px;
            }

            .included-bottles {
                width: 360px;
                height: 420px;
            }

            .included-bottle.front {
                width: 185px;
                height: 418px;
                left: 37px;
            }

            .included-bottle.back-left,
            .included-bottle.back-right {
                width: 160px;
                height: 365px;
                top: 51px;
            }

            .included-bottle.back-right {
                left: 98px;
            }

            .included-pill {
                left: 250px;
                top: 212px;
                width: 110px;
                height: 31px;
            }
        }

        @media (max-width: 991px) {
            .container {
                width: calc(100% - 40px);
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .product-gallery {
                max-width: 628px;
                margin: 0 auto;
            }
            /* section.productCardSectionWrap.customProductarticleWrap .cards {
                flex-direction: row;
                flex-wrap: nowrap;
            }
            .plan.customProductarticle {
                max-width: 100% !important;
            } */
            .product-info {
                max-width: 511px;
                margin: 0 auto;
            }

            .trust-badges {
                flex-wrap: wrap;
                justify-content: center;
            }

            .results h2 {
                font-size: 38px;
            }

            .results .sub {
                font-size: 16px;
            }

            .results .arrow {
                display: none;
            }

            .results .viewport {
                max-width: 100%;
                width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
            }

            .results .track {
                width: max-content;
                padding: 0 20px 6px;
            }

            .results .r-card {
                scroll-snap-align: start;
                width: 340px;
            }

            .results .r-photo {
                width: 145px;
                height: 195px;
            }

            .results .r-photo img {
                width: 145px;
                height: 180px;
            }

            .path-grid {
                flex-direction: column;
                gap: 40px;
            }

            .path-left {
                width: 100%;
                max-width: 400px;
            }

            .path-text {
                width: 100%;
            }

            .path h2 {
                width: 100%;
                font-size: 40px;
                line-height: 50px;
            }

            .path .lead {
                width: 100%;
            }

            .path-cta {
                width: 100%;
                max-width: 330px;
            }

            .consult-btn {
                width: 100%;
            }

            .steps {
                width: 100%;
            }

            .step {
                width: 100%;
                height: auto;
                min-height: 115px;
            }

            .step-content {
                position: relative;
                left: 0;
                top: 0;
                width: calc(100% - 180px);
                margin-left: 120px;
                padding: 25px 0;
            }

            

            .step-desc {
                width: 100%;
            }

            .step-num {
                height: calc(100% - 20px);
            }

            .how-works-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .how-works-image,
            .how-works-content {
                max-width: 640px;
                margin: 0 auto;
            }

            .included-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .included-content {
                max-width: 640px;
                margin: 0 auto;
            }

            .included-bottles {
                margin: 0 auto;
            }

            .mosaic {
                grid-template-columns: 1fr;
                width: 100%;
            }

            .tile {
                aspect-ratio: 4 / 3;
            }

            .tile.card {
                justify-content: center;
                align-items: center;
                text-align: center;
            }

            .pain-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }

            .testimonials h2 {
                font-size: 42px;
            }

            .testi-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .final-cta-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .final-cta-left {
                align-items: center;
                text-align: center;
            }

            .final-cta h2 {
                text-align: center;
            }

            .final-cta .lead {
                text-align: center;
                max-width: 100%;
            }

            .final-cta-checks {
                justify-content: center;
            }

            .bottle-pair {
                gap: 20px;
            }

            .bottle-card {
                width: 180px;
                height: 260px;
                padding: 20px;
            }

            .footer-links {
                gap: 8px 0;
            }
            button.navbar-toggler1 {
                display: none;
            }
            .header-inner {
                justify-content: center;
            }
        }

        @media (max-width: 700px) {
            .container {
                width: calc(100% - 40px);
            }

            header {
                height: 55px;
            }

            .header-inner {
                gap: 12px;
            }

            .brand img {
                width: 150px;
                height: auto;
            }

            .nav {
                gap: 8px;
                font-size: 11px;
            }

            .nav a,
            .nav .cta {
                white-space: nowrap;
            }

            .nav .cta {
                height: 28px;
                padding: 0 14px;
                font-size: 11px;
            }

            .product-page {
                padding: 32px 0 32px;
                border-bottom: 1px solid var(--line);
            }

            .main-image {
                width: 100%;
                height: 100%;
                min-height: 330px;
            }

            .product-title {
                font-size: 32px;
                line-height: 1.2;
            }

            .product-subtitle {
                font-size: 18px;
            }

            .thumbnail-row {
                overflow-x: auto;
                padding-bottom: 10px;
            }

            .thumbnail {
                width: 70px;
                height: 70px;
                flex-shrink: 0;
            }

            .product-gallery {
                position: relative;
            }

            .main-image-wrapper {
                position: relative;
            }

            .gallery-nav {
                width: 35px;
                height: 35px;
            }

            .gallery-nav.prev {
                left: -17px;
            }

            .gallery-nav.next {
                right: -17px;
            }

            .thumbnail {
                width: calc((100% - 30px) / 4);
                height: auto;
                aspect-ratio: 1;
            }

            .product-gallery > .review-card {
                display: none;
            }

            .mobile-review-card {
                display: flex;
                flex-direction: row;
                align-items: flex-start;
                width: 100%;
                background: var(--warm);
                border-radius: 10px;
                padding: 20px;
                gap: 15px;
                margin-top: 20px;
            }

            .mobile-review-card .reviewer-image {
                width: 60px;
                height: 60px;
            }

            .mobile-review-card .review-content {
                align-items: flex-start;
                gap: 10px;
            }

            .mobile-review-card .review-text {
                text-align: left;
                font-size: 14px;
            }

            .desktop-benefits-wrapper {
                display: none;
            }

            /* .mobile-benefits {
                display: flex;
                flex-direction: column;
                gap: 14px;
                margin-top: 30px;
                padding-top: 30px;
                border-top: 1px solid var(--line);
            } */

            /* .mobile-benefit {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 20px;
                padding-bottom: 14px;
                border-bottom: 1px solid var(--line);
            }

            .mobile-benefit:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            .mobile-benefit-icon {
                width: 40px;
                height: 40px;
                flex-shrink: 0;
            }

            .mobile-benefit-content {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .mobile-benefit-content h4 {
                font-family: var(--ff-serif);
                font-size: 15px;
                font-weight: 900;
                line-height: 19px;
                margin: 0;
            }

            .mobile-benefit-content p {
                font-size: 12px;
                line-height: 140%;
                color: #000;
                margin: 0;
            } */

             .mobile-benefits {
                display: flex;
                flex-direction: column;
                color: #1c1c1c;
                        order: 4;
            }
             .mobile-benefit {
                display: flex;
                gap: 16px;
                align-items: flex-start;
                /* border-bottom: 1px solid #1c1c1c; */
                margin-bottom: 16px;
                border-top: 1px solid var(--line);
                padding-top: 24px;
            }
             .mobile-benefit-content h4 {
                font-family: var(--ff-serif);
                font-size: 15px;
                font-weight: 900;
                line-height: normal;
                margin: 0px;
            }
             .mobile-benefit-content p {
                font-size: 12px;
                line-height: 140%;
                color: rgb(0, 0, 0);
                margin-bottom: 16px;
            }

            .thumbnail:nth-child(5) {
                display: none;
            }

            .trust-badges {
                flex-direction: row;
                justify-content: space-between;
                gap: 10px;
            }

            .trust-badge {
                flex-direction: column;
                text-align: center;
                width: auto;
                flex: 1;
                gap: 8px;
            }

            .trust-badge svg {
                width: 24px;
                height: 24px;
            }

            .trust-badge-text {
                text-align: center;
                font-size: 12px;
                line-height: 1.3;
            }

            .results {
                padding: 60px 0;
            }

            .results-header {
                margin-bottom: 30px;
            }

            .results h2 {
                font-size: 28px;
                line-height: 1.2;
            }

            .results .sub {
                font-size: 14px;
            }

            .results .arrow {
                display: flex;
                width: 35px;
                height: 35px;
                z-index: 2;
                top: auto;
                bottom: 120px;
                transform: none;
            }

            .results .arrow.left {
                left: 25px;
            }

            .results .arrow.right {
                right: 25px;
            }

            .results .viewport {
                overflow: hidden;
                scroll-snap-type: none;
            }

            .results .track {
                gap: 16px;
                padding: 0 16px;
            }

            .results .r-card {
                width: 280px;
                padding: 16px;
                gap: 16px;
            }

            .results .r-photos {
                gap: 8px;
            }

            .results .r-photo {
                width: 120px;
                height: 170px;
            }

            .results .r-photo img {
                width: 120px;
                height: 155px;
                margin-top: 12px;
            }

            .results .badge {
                font-size: 10px;
                padding: 4px 8px;
            }

            .results .r-quote {
                font-size: 14px;
            }

            .results .r-name {
                font-size: 14px;
            }

            .path {
                padding: 60px 0;
            }

            .path-grid {
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

            .path-left {
                display: contents;
            }

            .path-text {
                gap: 10px;
                order: 1;
            }

            .steps {
                order: 2;
            }

            .path-cta {
                order: 3;
                max-width: 100%;
            }

            .path h2 {
                font-size: 32px;
                line-height: 40px;
            }

            .path .lead {
                font-size: 16px;
            }

            .consult-btn {
                width: 100%;
                height: 52px;
                font-size: 16px;
            }

            .rating {
                width: 100%;
            }

            .rating p {
                width: 100%;
                font-size: 13px;
            }

            .steps {
                gap: 12px;
            }

            .step {
                height: auto;
                min-height: 90px;
            }

            .step-img {
                width: 70px;
                height: 70px;
            }

            .step-content {
                width: calc(100% - 150px);
                margin-left: 95px;
                padding: 18px 0;
                gap: 6px;
            }

            .step-title {
                font-size: 16px;
                line-height: 20px;
            }

            .step-desc {
                font-size: 14px;
            }

            .step-num {
                width: 35px;
                font-size: 20px;
            }

            .how-works {
                padding: 60px 0;
            }

            .how-works-title {
                font-size: 32px;
                line-height: 40px;
            }

            .how-works-subtitle {
                font-size: 16px;
            }

            .how-works-features {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .how-works-feature {
                flex-direction: row;
                align-items: center;
                text-align: left;
                gap: 15px;
            }

            .included {
                padding: 60px 0;
            }

            .included-title {
                font-size: 32px;
                line-height: 40px;
            }

            .included-subtitle {
                font-size: 16px;
            }

            .included-item {
                font-size: 15px;
            }

            .included-actions {
                width: 100%;
            }

            .included-actions .consult-btn {
                width: 100%;
            }

            .included-rating {
                flex-direction: column;
                align-items: flex-start;
            }

            .included-grid {
                display: flex;
                flex-direction: column;
            }

            .included-content {
                display: contents;
            }

            .included-text {
                order: 1;
                text-align: center;
            }

            .included-bottles {
                order: 2;
                width: 280px;
                height: 350px;
                margin: 0 auto;
            }

            .included-features {
                order: 3;
            }

            .included-actions {
                order: 4;
            }

            .included-bottle.front {
                width: 143px;
                height: 325px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 2;
            }

            .included-bottle.back-left {
                width: 125px;
                height: 283px;
                top: 40px;
                left: 30px;
                z-index: 1;
            }

            .included-bottle.back-right {
                width: 125px;
                height: 283px;
                top: 40px;
                left: auto;
                right: 30px;
                z-index: 1;
            }

            .included-pill {
                left: 50%;
                transform: translateX(-50%);
                top: 290px;
                width: 86px;
                height: 24px;
                font-size: 12px;
                z-index: 3;
                border-radius: 12px;
            }

            .transform {
                padding: var(--section-gap) 0;
            }

            .transform h2 {
                font-size: 30px;
                line-height: 1.12;
                max-width: 300px;
                margin: 0 auto;
            }

            .transform .sub {
                font-size: 13px;
                margin: 8px auto 0;
                max-width: 320px;
            }

            .mosaic {
                margin: 22px auto 0;
                gap: 16px;
            }

            .tile {
                border-radius: 12px;
                aspect-ratio: auto;
            }

            .tile.card {
                background: #fff;
                border: 1px solid #e6e6e6;
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
                padding: 24px;
                align-items: flex-start;
                text-align: left;
                min-height: auto;
                gap: 12px;
            }

            .tile.card:first-child {
                background: #fff;
            }

            .tile.card h3 {
                font-size: 24px;
                line-height: 1.3;
            }

            .tile.card p {
                font-size: 16px;
                margin: 0 0 16px;
                line-height: 1.5;
            }

            .pill-btn {
                width: 100%;
                height: 56px;
                padding: 0 20px;
                font-size: 18px;
                align-self: stretch;
                border-radius: 30px;
            }

            .tile.photo {
                height: 220px;
            }

            .tile.photo img {
                object-position: center 25%;
            }

            .mosaic .tile:nth-child(1) {
                order: 2;
            }

            .mosaic .tile:nth-child(2) {
                order: 1;
            }

            .mosaic .tile:nth-child(3) {
                order: 3;
            }

            .mosaic .tile:nth-child(4) {
                order: 4;
            }

            .mosaic .tile:nth-child(5) {
                order: 6;
            }

            .mosaic .tile:nth-child(6) {
                order: 5;
            }

            .struggles {
                padding: var(--section-gap) 0;
            }

            .struggles h2 {
                font-size: 25px;
                font-weight: 400;
                line-height: 31px;
                letter-spacing: 0;
                text-transform: capitalize;
                color: #000;
                max-width: 350px;
                margin-left: auto;
                margin-right: auto;
            }

            .struggles .sub {
                font-size: 15px;
                line-height: 1.4;
                color: #000;
                max-width: 350px;
                margin: 15px auto 0;
            }

            .pain-grid {
                margin-top: 25px;
                width: min(350px, 100%);
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .pain {
                height: 120px;
                min-height: 120px;
                padding: 15px;
                gap: 15px;
                border-radius: 10px;
                background: #f6f6f6;
            }

            .pain img {
                width: 40px;
                height: 40px;
            }

            .pain .lbl {
                font-family: var(--ff-serif);
                font-size: 14px;
                line-height: 18px;
                color: #000;
                width: 150px;
            }

            .testimonials {
                padding: var(--section-gap) 0;
            }

            .testimonials h2 {
                font-size: 28px;
                font-weight: 400;
                line-height: 1.2;
                letter-spacing: 0;
                color: #000;
                max-width: 350px;
                margin: 0 auto;
            }

            .testimonials h2 .line {
                display: inline;
            }

            .testimonials .sub {
                margin: 15px auto 0;
                font-size: 15px;
                line-height: 1.4;
                color: #000;
                max-width: 350px;
            }

            .testi-grid-wrap {
                margin: 25px 0 0;
                width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                padding: 0 0 8px;
                scrollbar-width: none;
            }

            .testi-grid-wrap::-webkit-scrollbar {
                display: none;
            }

            .testi-grid {
                display: grid;
                grid-auto-flow: column;
                grid-template-rows: repeat(2, auto);
                gap: 15px;
                width: max-content;
                padding: 0 20px;
            }

            .t-card {
                width: 300px;
                max-width: 300px;
                margin: 0;
                padding: 20px;
                min-height: auto;
                border: 0;
                border-radius: 12px;
                background: #f6f6f6;
                scroll-snap-align: start;
            }

            .t-head {
                display: flex;
                align-items: center;
                grid-template-columns: 50px 1fr;
                gap: 12px;
                margin-bottom: 12px;
            }

            .t-avatar {
                width: 50px;
                height: 50px;
            }

            .t-meta {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 6px;
            }

            .t-name {
                font-size: 14px;
                font-weight: 700;
            }

            .t-verified {
                font-size: 12px;
            }

            .t-quote {
                font-size: 15px;
                line-height: 1.5;
                color: #000;
            }

            .t-stars {
                margin-top: 14px;
                font-size: 14px;
            }

            .faq {
                padding: 40px 0 30px;
            }

            .faq h2 {
                font-size: 30px;
                font-weight: 400;
                line-height: 1.2;
                text-align: center;
                color: #111;
                max-width: 100%;
                margin: 0;
            }

            .faq .sub {
                font-size: 15px;
                line-height: 1.4;
                text-align: center;
                color: #222;
                max-width: 100%;
                margin: 12px 0 0;
            }

            .accordion {
                margin-top: 28px;
                width: 100%;
                padding-bottom: 0px;
            }

            .acc-item {
                margin-bottom: 14px;
                border-radius: 12px;
                border: 1px solid #d1d1d1;
            }

            .acc-item.open {
                background: #f6f6f6;
                border: 0;
            }

            .acc-btn {
                padding: 22px;
                grid-template-columns: 1fr 42px;
                gap: 14px;
            }

            .acc-q {
                font-size: 16px;
                font-weight: 500;
                line-height: 1.35;
            }

            .acc-item.open .acc-q {
                font-size: 20px;
            }

            .acc-icon {
                width: 42px;
                height: 42px;
                font-size: 22px;
            }

            .acc-a {
                padding: 0 22px 22px;
                font-size: 16px;
                line-height: 1.5;
            }

            .ticker {
                height: 40px;
            }

            .ticker-track {
                height: 40px;
                gap: 20px;
            }

            .tick {
                font-size: 12px;
                gap: 8px;
            }

            .tick svg {
                width: 16px;
                height: 16px;
            }

            .final-cta {
                padding: 50px 0;
            }

            .final-cta-grid {
                display: flex;
                flex-direction: column;
            }

            .final-cta-left {
                order: 2;
            }

            .bottle-pair {
                order: 1;
                flex-direction: row;
                gap: 6px;
                margin-bottom: 30px;
            }

            .bottle-card {
                width: 172px;
                height: 248px;
                padding: 20px;
                background: #DFF1FE;
                border-radius: 10px;
            }

            .bottle-card img {
                max-height: 182px;
                width: 80px;
                object-fit: contain;
                filter: drop-shadow(-3px 4px 10px rgba(0, 0, 0, 0.15));
            }

            .final-cta h2 {
                font-size: 25px;
                line-height: 31px;
                text-align: center;
            }

            .final-cta .lead {
                font-size: 15px;
                line-height: 140%;
                text-align: center;
            }

            .final-cta-checks {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
                padding: 0;
                gap: 10px;
                width: 100%;
            }

            .final-cta-check {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 15px;
                width: 109px;
                text-align: center;
            }

            .final-cta-check svg {
                width: 20px;
                height: 20px;
            }

            .final-cta-check span {
                font-size: 12px;
                line-height: 120%;
                font-weight: 400;
            }

            .final-cta .cta-btn {
                width: 100%;
                min-width: unset;
                height: 45px;
                font-size: 16px;
                font-weight: 500;
                border-radius: 100px;
            }

            .final-cta .ratingline {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .final-cta .ratingline .stars svg {
                width: 14px;
                height: 14px;
            }

            .final-cta .ratingline span {
                font-size: 14px;
                font-weight: 600;
                line-height: 120%;
                text-align: center;
            }

            .footer-brand-section {
                gap: 10px;
                padding: 30px 0;
            }

        }


        .keypoint {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        .keypoint-icon {
            width: 20px;
            height: 20px;
            background: var(--green);
            font-size: 12px;
        }

        .plan-left {
            width: 100%;
        }

        /* .productCardSectionWrap .cards {
            flex-wrap: wrap;
        } */
        .plan-right img {
            filter: none;
            width: 100%;
            max-width: 100%;
            max-height: 340px;
            object-fit: contain;
            height: 100%;
            min-height: 340px;
        }

        .productCardSectionWrap {
            padding: var(--section-gap) 0;
            overflow: hidden;
            background: radial-gradient(700px 420px at 15% 38%, rgba(164, 237, 210, .55) 0%, rgba(164, 237, 210, 0) 55%), radial-gradient(800px 480px at 58% 35%, rgba(189, 215, 255, .55) 0%, rgba(189, 215, 255, 0) 58%), radial-gradient(520px 360px at 88% 34%, rgba(235, 240, 255, .55) 0%, rgba(235, 240, 255, 0) 60%), linear-gradient(#ffffff, #ffffff);
            padding-top: 40px;
        }

        footer {
            margin-top: 0px;
        }


        .category_mobile.weight {
            color: #1c1c1c;
            margin-bottom: 5px;
            padding: 2px 10px;
            font-weight: 900;
            display: inline-block;
            background-color: #cef5e7;
            border-radius: 5px;
        }

        .topinnerRatingWrap {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: left;
            align-items: baseline;
            gap: 4px;
        }


        /* GLP Info Section */
        .glp-section {
            max-width: 700px;
            color: #000;
            line-height: 1.6;
            border-top: 2px solid #e3e3e3;
            border-bottom: 2px solid #e3e3e3;
            padding: 16px 0px;
        }

        .glp-section h2 {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .glp-section p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        /* List */
        .glp-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .glp-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 16px;
        }

        /* Icon */
        .glp-icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

      

        /* .glp-icon path {
            stroke: #ffffff;
            stroke-width: 2.5;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        } */

        /* Bold text */
        .glp-bold {
            font-weight: 700;
        }

        .glp-icon circle {
            fill: var(--green);; 
        }

.st0{fill:var(--green);}
.tickColor path {
    fill: #ffffff;
}

.circleBorder {
   fill:var(--green); 
}


span.cardtypeImagesPayment {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}
span.cardtypeImagesPayment img {
    height: auto;
    width: 240px;
    object-fit: contain;
}
/* Main Section */
.sema-section {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px; */
    margin: 0px auto;
    padding: 80px 0px 60px;
    background: radial-gradient(700px 420px at 15% 38%, rgba(164, 237, 210, .55) 0%, rgba(164, 237, 210, 0) 55%), radial-gradient(800px 480px at 58% 35%, rgba(189, 215, 255, .55) 0%, rgba(189, 215, 255, 0) 58%), radial-gradient(520px 360px at 88% 34%, rgba(235, 240, 255, .55) 0%, rgba(235, 240, 255, 0) 60%), linear-gradient(#ffffff, #ffffff);
    /* border-top: 1px solid #00000024; */
}
.semaInnerWrapGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
}
/* Left Content */
.sema-left h2 {
    font-size: 45px;
    margin-bottom: 15px;
    font-weight: 400;
}

.sema-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Points */
.sema-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    margin-bottom: 30px;
}

.sema-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

/* Icon */
.sema-icon {
    width: 20px;
    height: 20px;
}

.sema-icon circle {
    fill: #E9FF86;
}

.sema-icon path {
    stroke: #000;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
}

/* Button */
.sema-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #E9FF86;
    border-radius: 10px;
    border: 1px solid #000;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.sema-btn:hover {
    background: #d8f95a;
}

/* Right Box */
.sema-right {
    /* background: #f3f4f3;
    border-radius: 18px;
    padding: 25px; */
    position: relative;
}

.sema-img img {
    border-radius: 18px;
}

.sema-right h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #17415c;
}

/* Info Rows */
.sema-info {
    margin-bottom: 25px;
}

.sema-info-item {
    margin-bottom: 12px;
    font-size: 14px;
}

/* Image */
.sema-img {
    text-align: center;
    margin: 0px 0 25px;
}

.sema-img img {
    max-width: 100%;
    height: auto;
}

/* Bottom Text */
.sema-bottom h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.sema-bottom p {
    color: #1c1c1c;
    text-align: left;
    align-self: center;
    width: 100%;
    max-width: 1280px;
    margin-top: 15px;
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;

}
.treatmentPlanHd h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 400;
}
.treatmentPlanHd h2 span {
    color: var(--green);
    font-weight: 600;
}
.addtoCart {
    max-height: 50px !important;
}
/* Responsive */
@media (max-width: 900px) {

    /* .sema-section {
        grid-template-columns: 1fr;
    } */

    .sema-left h2 {
        font-size: 28px;
    }

    .sema-points {
        grid-template-columns: 1fr;
    }

    .treatmentPlanHd h2 {
        font-size: 30px;
    }

    .semaInnerWrapGrid {
    grid-template-columns: 1fr;
}

}





@media(max-width:700px) {
    .customProductarticle {
        flex-direction: column;
        padding: 16px;
    }
    .customProductarticle .plan-right {
        width: 90px;
        flex-shrink: 0;
        position: relative;
        right: 0;
        top: 0;
        margin: 0 auto 16px;
    }
    .customProductarticle .plan-title {
        font-size: 26px;
        line-height: 1.1;
        padding-right: 0px;
        letter-spacing: 0;
    }
    .customProductarticle .plan-title, .customProductarticle .desc, .customProductarticle .price-row, .customProductarticle .transparent {
        padding-right: 0px;
    }
    .articleInnerWrap {
        display: flex;
        width: 100%;
        position: relative;
        /* flex-direction: column-reverse; */
    }
    .weight-badge {
        box-sizing: border-box;
        position: absolute;
        width: 100px;
        height: 36px;
        left: 0;
        top: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0px 10px;
        gap: 8px;
        background: var(--green);
        border: 0.5px solid rgba(0, 0, 0, 0.1);
        border-radius: 15px 100px 100px 0;
        color: #FFFFFF;
        font-family: "Inter", var(--ff-sans);
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
            line-height: 18px;
    }
}

@media (max-width:500px) {
    .articleInnerWrap {
        flex-direction: column-reverse;
    }
}



 @media (max-width: 1180px) {
    .plan-right img {
        max-height: 240px;
        min-height: 240px;
    }
}

@media (max-width: 500px) {
    .plan-right img {
        max-height: 240px;
        min-height: auto;
    }
}


@media(max-width:700px) {
    .buy-btn {
        max-height: 48px !important;
        min-height: 30px !important;
        height: 100% !important;
        line-height: 18px !important;
        padding: 14px 16px !important;
        margin: 12px auto;
    }
    
    .feature-item {
            padding: 24px 0;
    }

    .sema-section {
        padding: 30px 0px 30px;
    }
}







@media (min-width: 1024px) {
  .zoom-enabled {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
  }

  .zoom-enabled .main-image {
    transition: transform 0.4s ease;
    transform-origin: center center;
  }

  .zoom-enabled:hover .main-image {
    transform: scale(1.4);
  }

  /* Zoom Icon */
  .zoom-enabled::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat center;
    background-size: 18px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .zoom-enabled:hover::after {
    opacity: 1;
  }
}


@media (max-width: 1360px) {

.desktop-benefits {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 15px;
    max-width: 1500px;
    margin: 0 auto;
    background: #fff;
    position: relative;
}
    .desktop-benefit {
        width: 100%;
        flex-shrink: 0;
        max-width: 47%;
        padding-bottom: 16px;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}