/* Oash Healthcare — premium D2C-style layout (India-first, responsive) */
:root {
    --oash-forest: #0d2818;
    --oash-green: #1a5c32;
    --oash-mint: #2d7a47;
    --oash-leaf: #3d9a5c;
    --oash-gold: #c9a227;
    --oash-gold-soft: #f4e4a8;
    --oash-cream: #faf7f0;
    --oash-paper: #fffefb;
    --oash-ink: #142018;
    --oash-muted: #4a5c52;
    --oash-sand: #e8dfd0;
    --oash-orange: #d35400;
    --oash-radius: 20px;
    --oash-radius-lg: 28px;
    --oash-shadow: 0 4px 24px rgba(13, 40, 24, 0.08);
    --oash-shadow-hover: 0 20px 50px rgba(13, 40, 24, 0.12);
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}
body {
    font-family: var(--font-body);
    background: var(--oash-cream);
    color: var(--oash-ink);
    line-height: 1.62;
    font-size: 1.125rem;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: hidden;
}
main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
/* `hidden` on html/body can break `position:sticky` for the header; `clip` avoids that while still trimming horizontal overflow */
@supports (overflow-x: clip) {
    html,
    body,
    main {
        overflow-x: clip;
    }
}
pre,
code {
    overflow-wrap: anywhere;
    word-break: break-word;
}
a { color: inherit; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
}
.container--narrow { max-width: 720px; }

/* ——— Header ——— */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* Above page heroes, forms, and composited layers so nav + mobile drawer stay on top */
    z-index: 1000;
    max-width: 100%;
    /* Respect notch / home indicator so the bar truly sits at the visible top */
    padding-top: env(safe-area-inset-top, 0px);
    /* Do not use overflow:hidden here — it clips `position:fixed` mobile drawer children */
    background: linear-gradient(180deg, rgba(13, 40, 24, 0.98) 0%, rgba(13, 40, 24, 0.94) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
    padding: 10px 0;
}
/* Nav + language + menu control: keeps locale visible on mobile (outside fixed drawer) */
.header-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    flex: 1;
    min-width: 0;
}
.header-end .site-nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
}
/* Language + Book CTA + menu — one row in the header bar */
.header-toolbar {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    flex-shrink: 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}
.brand__logo {
    height: 88px;
    width: auto;
    border-radius: 12px;
    background: #fff;
    padding: 4px 6px;
    object-fit: contain;
}
.brand__text { display: flex; flex-direction: column; gap: 2px; }
.brand__name {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.15;
}
.brand__tag {
    font-size: 0.8rem;
    opacity: 0.88;
    font-weight: 500;
    max-width: 200px;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: 0.25s;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: 0.25s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); top: 0; }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg); top: 0; }

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 280;
    top: 72px;
}
body.nav-open .nav-backdrop { display: block; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.site-nav > a,
.site-nav .nav-link {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
/* Nested drawer links must not use body `a { color: inherit }` (would be dark on green) */
.nav-mobile-products a {
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 10px;
    display: block;
    transition: background 0.2s, color 0.2s;
}
.nav-mobile-products a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.nav-mobile-products .nav-mobile-products__heading {
    color: rgba(255, 248, 220, 0.98) !important;
    opacity: 1 !important;
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 0.72rem !important;
    margin-top: 12px;
    padding: 8px 12px 4px 4px;
    display: block;
}
.nav-mobile-products .nav-mobile-products__heading:first-of-type { margin-top: 6px; }
.site-nav > a:hover,
.site-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.nav-dropdown { position: relative; }
.nav-dropdown > summary,
.nav-dropdown__btn {
    list-style: none;
    cursor: pointer;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 8px 10px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after {
    content: "▾";
    font-size: 0.65rem;
    opacity: 0.8;
}
.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--oash-shadow-hover);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 220;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown__btn { cursor: default; }
.nav-mobile-products {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}
.nav-dropdown-panel a {
    display: block;
    padding: 10px 12px;
    color: var(--oash-forest);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 10px;
}
.nav-dropdown-panel a:hover { background: var(--oash-cream); }

.lang-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    flex-shrink: 0;
}
.lang-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.lang-select {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    min-width: 5.5rem;
    max-width: 100%;
}
.lang-select option { color: var(--oash-forest); }

.header-toolbar .nav-cta--bar {
    background: linear-gradient(135deg, #fff6d6, #e8c54d);
    color: var(--oash-forest) !important;
    border: none;
    box-shadow: 0 4px 18px rgba(201, 162, 39, 0.4);
    margin-left: 0;
    white-space: nowrap;
    text-decoration: none;
    padding: 10px 14px;
    font-size: clamp(0.72rem, 1.9vw, 0.9rem);
    line-height: 1.2;
}
.header-toolbar .nav-cta--bar:hover {
    filter: brightness(1.05);
    background: linear-gradient(135deg, #fff2c2, #e0bd45);
}

@media (max-width: 960px) {
    /* `backdrop-filter` on an ancestor can make `position:fixed` nav use the header as its
       containing box (clipped / wrong layer). Solid header on small screens avoids that. */
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }
    .nav-dropdown--desktop { display: none !important; }
    .nav-mobile-products { display: flex; }
    /* Booking CTA (nav_book / ₹50 check-up) hidden on small screens only */
    .nav-mobile-products .nav-cta--mobile-drawer {
        display: none !important;
    }
    .nav-toggle {
        display: flex;
        flex-shrink: 0;
    }
    .nav-backdrop {
        top: 0;
        z-index: 290;
    }
    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 100%);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #0d2818 0%, #122e1c 100%);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: calc(120px + env(safe-area-inset-top, 0px)) 16px 32px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        box-shadow: -8px 0 40px rgba(0,0,0,0.35);
        box-sizing: border-box;
        z-index: 300;
    }
    body.nav-open .site-nav {
        transform: translateX(0);
        z-index: 300;
    }
    .site-nav > a,
    .site-nav .nav-link { padding: 14px 12px; border-radius: 12px; white-space: normal; }
    .site-nav > a {
        color: rgba(255, 255, 255, 0.96);
    }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 6px;
        background: rgba(255,255,255,0.06);
        box-shadow: none;
    }
    .nav-dropdown[open] .nav-dropdown-panel { display: block; }
    .nav-dropdown > summary { width: 100%; color: #fff; }
    .nav-dropdown-panel a { color: #fff; }
    .nav-dropdown-panel a:hover { background: rgba(255,255,255,0.1); }
    /* Stacking: brand must not paint over the fixed drawer (drawer lives inside this flex child). */
    .header-end {
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: flex-end;
        position: relative;
        z-index: 298;
    }
    /* Do not set width here — .site-nav keeps min(320px) for the drawer */
    .header-end .site-nav {
        flex: 0 1 0;
        min-width: 0;
    }
    .lang-select {
        min-width: 4.5rem;
        padding: 7px 8px;
        font-size: 0.78rem;
    }
    .header-toolbar {
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: flex-end;
        margin-top: 2px;
    }
    .header-toolbar .nav-cta--bar {
        display: none !important;
    }
    .header-inner {
        overflow: visible;
        row-gap: 8px;
        align-items: flex-start;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    /* Menu control must stay above drawer so it can close the panel */
    .nav-toggle {
        position: relative;
        z-index: 310;
    }
    /* Below .header-end (298) so the mobile drawer + toolbar stack correctly; toggle uses z-index 310 */
    .brand {
        position: relative;
        z-index: 1;
        min-width: 0;
        flex: 1 1 auto;
        align-items: flex-start;
        gap: 10px;
    }
    .brand__logo {
        margin-top: 2px;
        height: clamp(44px, 11vw, 56px);
        padding: 3px 5px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    .brand__text {
        min-width: 0;
        flex: 1 1 auto;
    }
    .brand__name {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        font-size: clamp(0.95rem, 3.8vw, 1.12rem);
        line-height: 1.2;
    }
    .brand__tag {
        max-width: 100%;
        display: block;
        overflow: visible;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        line-height: 1.35;
        font-size: clamp(0.65rem, 2.5vw, 0.74rem);
        opacity: 0.85;
    }
}

/* Very narrow phones: keep brand + language + menu on one row (toolbar aligns with brand bar) */
@media (max-width: 520px) {
    .header-inner {
        flex-wrap: nowrap;
        align-items: flex-start;
        min-height: 0;
        padding: 8px 0 10px;
        gap: 0.5rem;
    }
    .brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
        align-items: flex-start;
    }
    .brand__name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .brand__tag {
        white-space: normal;
        overflow: visible;
        overflow-wrap: anywhere;
        word-break: break-word;
        text-overflow: clip;
    }
    .header-end {
        flex: 0 0 auto;
        max-width: none;
        min-width: 0;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 6px;
    }
    .header-toolbar {
        flex: 0 0 auto;
        flex-shrink: 0;
        min-width: 0;
        max-width: none;
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 6px;
        margin-top: 2px;
    }
    .lang-select {
        min-width: 4rem;
        padding: 6px 7px;
        font-size: 0.74rem;
    }
    .nav-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
}

/* ——— Hero ——— */
.hero-mega {
    position: relative;
    min-height: min(88vh, 720px);
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--oash-forest);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-mega::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(250,247,240,0.97) 0%, rgba(250,247,240,0.88) 42%, rgba(13, 40, 24, 0.55) 100%);
}
.hero-mega__inner {
    position: relative;
    z-index: 1;
    padding: clamp(32px, 6vw, 72px) 0;
    max-width: 640px;
}
.hero-mega h1 {
    font-family: var(--font-display);
    font-size: clamp(2.05rem, 5vw, 3.15rem);
    font-weight: 700;
    color: var(--oash-forest);
    line-height: 1.12;
    margin-bottom: 16px;
}
.hero-mega .lead {
    font-size: clamp(1.08rem, 2.4vw, 1.28rem);
    color: var(--oash-muted);
    margin-bottom: 20px;
    max-width: 540px;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    background: #fff;
    border: 1px solid var(--oash-sand);
    color: var(--oash-forest);
    box-shadow: var(--oash-shadow);
}
.pill--gold {
    background: linear-gradient(135deg, #fff9e6, #f4e4a8);
    border-color: var(--oash-gold);
    color: #5c4a0a;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.hero-cta--home .btn--primary {
    background: linear-gradient(135deg, var(--oash-green), #0f3d24);
    box-shadow: 0 8px 28px rgba(13, 40, 24, 0.28);
}
.hero-cta--home .btn--whatsapp {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn--primary,
.btn.btn-primary {
    background: linear-gradient(135deg, var(--oash-mint), var(--oash-green));
    color: #fff;
    box-shadow: 0 8px 28px rgba(26, 92, 50, 0.35);
}
.btn--primary:hover,
.btn.btn-primary:hover { box-shadow: 0 12px 36px rgba(26, 92, 50, 0.45); }
.btn--outline,
.btn.btn-outline {
    background: #fff;
    color: var(--oash-forest);
    border: 2px solid var(--oash-mint);
    box-shadow: 0 2px 12px rgba(13, 40, 24, 0.08);
}
.btn--outline:hover,
.btn.btn-outline:hover {
    background: rgba(45, 122, 71, 0.08);
    border-color: var(--oash-green);
    color: var(--oash-forest);
}
.btn--whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn--lg { padding: 16px 32px; font-size: 1.12rem; }

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 560px;
}
.trust-item {
    text-align: center;
    padding: 12px 8px;
    background: rgba(255,255,255,0.75);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.8);
}
.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.48rem;
    color: var(--oash-green);
}
.trust-item span { font-size: 0.82rem; font-weight: 600; color: var(--oash-muted); line-height: 1.3; }

@media (max-width: 520px) {
    .trust-row { grid-template-columns: repeat(2, 1fr); }
}

/* ——— Sections ——— */
.section {
    padding: clamp(48px, 7vw, 88px) 0;
}
.section--alt { background: var(--oash-paper); }
.section--dark {
    background: linear-gradient(180deg, var(--oash-forest) 0%, #0a1a10 100%);
    color: #e8f0eb;
}
.section--dark h2,
.section--dark .section-kicker { color: #fff; }
.section--dark .section-kicker { opacity: 0.75; }
.section-kicker {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--oash-mint);
    margin-bottom: 10px;
}
.section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
    color: var(--oash-forest);
    margin-bottom: 12px;
    line-height: 1.2;
}
.section-intro {
    max-width: 720px;
    color: var(--oash-muted);
    margin-bottom: 36px;
    font-size: 1.14rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 20px;
}
.benefit-card {
    background: #fff;
    border-radius: var(--oash-radius-lg);
    padding: 26px 24px;
    border: 1px solid var(--oash-sand);
    box-shadow: var(--oash-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--oash-shadow-hover);
}
.benefit-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8f5ec, #d4eadc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: var(--oash-green);
}
.benefit-card h3 {
    font-size: 1.16rem;
    margin-bottom: 8px;
    color: var(--oash-forest);
}
.benefit-card p { font-size: 1.02rem; color: var(--oash-muted); }

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 24px;
    counter-reset: step;
}
.step-card {
    position: relative;
    padding: 28px 24px 24px 24px;
    background: linear-gradient(160deg, #fff 0%, #f6faf7 100%);
    border-radius: var(--oash-radius-lg);
    border: 1px solid var(--oash-sand);
}
.step-card::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -14px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--oash-gold), #e8b84d);
    color: var(--oash-forest);
    font-weight: 800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
}
.step-card h3 { margin-top: 12px; margin-bottom: 10px; color: var(--oash-forest); font-size: 1.18rem; }
.step-card p { color: var(--oash-muted); font-size: 1.04rem; }

.heritage-box {
    max-width: 800px;
    padding: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--oash-radius-lg);
    border: 1px solid rgba(255,255,255,0.12);
    margin-top: 24px;
}
.heritage-box p { margin-bottom: 14px; opacity: 0.95; }
.heritage-box p:last-child { margin-bottom: 0; }

.stat-highlight {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--oash-gold-soft);
    line-height: 1;
    margin: 16px 0 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 22px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--oash-radius-lg);
    padding: 28px;
    border: 1px solid var(--oash-sand);
    box-shadow: var(--oash-shadow);
}
.testimonial-card .stars { color: var(--oash-gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote {
    font-size: 1.08rem;
    color: var(--oash-ink);
    margin-bottom: 18px;
    font-style: italic;
    line-height: 1.55;
}
.testimonial-card figcaption {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--oash-green);
}
.testimonial-card .place { font-weight: 500; color: var(--oash-muted); font-size: 0.92rem; }

.disease-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
    gap: 22px;
}
.card {
    background: #fff;
    border-radius: var(--oash-radius-lg);
    overflow: hidden;
    border: 1px solid var(--oash-sand);
    box-shadow: var(--oash-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--oash-shadow-hover);
}
.card-header {
    padding: 20px 22px 14px;
    background: linear-gradient(135deg, #e8f5ec, #dceee2);
    border-bottom: 2px solid var(--oash-leaf);
}
.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--oash-forest);
}
.card-body { padding: 22px; }
.disease-desc { color: var(--oash-muted); margin-bottom: 12px; font-size: 1.04rem; }
.ayurveda-highlight {
    background: var(--oash-gold-soft);
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.95rem;
    border-left: 4px solid var(--oash-gold);
    margin: 12px 0;
    color: #4a3d10;
}
.price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--oash-orange);
    margin: 12px 0;
}
.btn-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.feedback-panel {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    padding: clamp(24px, 4vw, 36px);
    border-radius: var(--oash-radius-lg);
    border: 1px solid var(--oash-sand);
    box-shadow: var(--oash-shadow);
}
.feedback-panel .field { margin-bottom: 16px; }
.feedback-panel textarea { min-height: 120px; border-radius: 16px; }

.cta-band {
    text-align: center;
    padding: clamp(40px, 6vw, 72px) 24px;
    background: linear-gradient(135deg, var(--oash-mint) 0%, var(--oash-forest) 50%, #0a1810 100%);
    color: #fff;
}
.cta-band h2 {
    font-family: var(--font-display);
    color: #fff;
    font-size: clamp(1.85rem, 3.8vw, 2.65rem);
    margin-bottom: 12px;
}
.cta-band p { opacity: 0.94; max-width: 680px; margin: 0 auto 24px; font-size: clamp(1.1rem, 2.2vw, 1.28rem); line-height: 1.58; }

/* ——— Footer mega ——— */
.site-footer {
    background: #070f0b;
    color: #b8c4bb;
    padding: clamp(48px, 6vw, 72px) 0 0;
    font-size: 1rem;
    max-width: 100%;
    overflow-x: hidden;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 32px 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer h3 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.site-footer a {
    color: #d4e5d9;
    text-decoration: none;
    display: block;
    padding: 6px 0;
    font-weight: 500;
}
.site-footer a:hover { color: var(--oash-gold-soft); text-decoration: underline; }
.site-footer p { line-height: 1.65; margin-bottom: 10px; }
.footer-bottom {
    padding: 22px 0;
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.75;
}

/* ——— Legacy / inner pages ——— */
.contact-bar {
    background: linear-gradient(135deg, var(--oash-green), var(--oash-forest));
    color: #fff;
    border-radius: var(--oash-radius-lg);
    padding: 22px 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
}
.contact-buttons a {
    color: #fff;
    background: rgba(0,0,0,0.2);
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.contact-buttons a:hover { background: rgba(0,0,0,0.35); }

.appointment-form, .panel {
    background: #fff;
    border-radius: var(--oash-radius-lg);
    padding: 28px;
    box-shadow: var(--oash-shadow);
    margin: 28px 0;
    border: 1px solid var(--oash-sand);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #c5d4c8;
    font-family: inherit;
    font-size: 1rem;
}
textarea { resize: vertical; }
label.field { display: block; font-weight: 700; font-size: 0.82rem; margin-bottom: 6px; color: var(--oash-forest); }

.refund-text {
    background: #e4f4e8;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--oash-green);
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.alert {
    padding: 14px 18px;
    border-radius: 14px;
    margin: 16px 0;
    font-weight: 600;
}
.alert-success { background: #e4f4e8; color: var(--oash-forest); }
.alert-error { background: #fdecea; color: #7b241c; }

.breadcrumb {
    font-size: 0.88rem;
    color: var(--oash-muted);
    margin: 20px 0 8px;
}
.breadcrumb a { color: var(--oash-green); text-decoration: none; font-weight: 600; }
.page-hero { padding: 32px 0 16px; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--oash-forest);
}

/* ——— Book appointment page (heritage headline + form) ——— */
.booking-page {
    position: relative;
    z-index: 0;
}
.booking-page > .products-page-hero {
    position: relative;
    z-index: 0;
}
.booking-page > .page-appointment {
    position: relative;
    z-index: 1;
}
.booking-page .appointment-form-wrap {
    position: relative;
    z-index: 2;
}
.page-appointment {
    padding-bottom: clamp(40px, 6vw, 72px);
}
.appointment-heritage {
    background: linear-gradient(145deg, rgba(255, 254, 251, 1) 0%, rgba(248, 250, 247, 1) 42%, rgba(244, 228, 168, 0.22) 100%);
    border: 1px solid var(--oash-sand);
    border-radius: var(--oash-radius-lg);
    padding: clamp(1.5rem, 4vw, 2.75rem);
    margin: 1rem 0 2rem;
    box-shadow: var(--oash-shadow);
}
.appointment-heritage__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4.2vw, 1.6875rem);
    font-weight: 700;
    line-height: 1.28;
    color: var(--oash-forest);
    margin: 0 0 1rem;
    max-width: 38rem;
    letter-spacing: -0.02em;
}
.appointment-heritage__lead {
    font-size: clamp(1.0625rem, 2.2vw, 1.1875rem);
    line-height: 1.65;
    font-weight: 500;
    color: var(--oash-ink);
    max-width: 42rem;
    margin: 0 0 1.1rem;
}
.appointment-heritage__cta {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--oash-muted);
    max-width: 42rem;
    margin: 0;
}
.appointment-visit-banner {
    margin-top: 1.75rem;
    padding: 1.25rem 1.35rem;
    background: linear-gradient(90deg, rgba(26, 92, 50, 0.08), rgba(201, 162, 39, 0.14));
    border-radius: var(--oash-radius);
    border-left: 4px solid var(--oash-gold);
}
.appointment-visit-banner__heading {
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    font-weight: 700;
    color: var(--oash-forest);
    margin: 0 0 0.5rem;
}
.appointment-visit-banner__body {
    font-size: clamp(0.98rem, 1.8vw, 1.08rem);
    line-height: 1.6;
    color: var(--oash-muted);
    margin: 0 0 1rem;
    max-width: 40rem;
}
.appointment-visit-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.appointment-form-wrap {
    background: #fff;
    border-radius: var(--oash-radius-lg);
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid var(--oash-sand);
    box-shadow: var(--oash-shadow);
    margin-bottom: 1.5rem;
}
.appointment-form-wrap .appointment-form {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}
.appointment-form__legend {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 700;
    color: var(--oash-forest);
    margin: 0 0 0.35rem;
}
.appointment-form__hint {
    font-size: 0.95rem;
    color: var(--oash-muted);
    margin-bottom: 1.35rem;
    max-width: 40rem;
}
.appointment-form__block {
    margin-top: 1.15rem;
}
.appointment-form__submit {
    margin-top: 1.5rem;
}
.appointment-field-error {
    color: #b42318;
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 600;
}
.appointment-footnote {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--oash-muted);
    line-height: 1.55;
    max-width: 48rem;
}

.appointment-checkup-intro {
    font-size: clamp(1rem, 2vw, 1.08rem);
    font-weight: 600;
    color: var(--oash-green);
    margin: 0 0 0.75rem;
}
.appointment-checkup-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--oash-forest);
    margin: 0;
    line-height: 1.25;
}
.appointment-checkup-panel {
    border-radius: var(--oash-radius-lg);
}

.admin-wrap { max-width: 960px; margin: 0 auto; padding: 32px 20px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--oash-shadow); }
.admin-table th, .admin-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #e8ede4; font-size: 0.9rem; }
.admin-table th { background: #eef5e8; font-weight: 700; }
.admin-login-box {
    max-width: 400px;
    margin: 60px auto;
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--oash-shadow-hover);
}

.btn-warning,
.btn.btn-warning { background: var(--oash-orange); color: #fff; border: none; }
.btn-warning:hover { filter: brightness(1.05); }
.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }

@media (max-width: 700px) {
    .form-grid { grid-template-columns: 1fr; }
}

/* ——— Product page: mid CTA, videos, sticky bar ——— */
.product-mid-cta-wrap {
    padding: clamp(28px, 5vw, 48px) 0;
    background: linear-gradient(180deg, var(--oash-paper) 0%, #eef6f0 100%);
}
.product-mid-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(20px, 3vw, 28px);
    background: #fff;
    border-radius: var(--oash-radius-lg);
    border: 1px solid var(--oash-sand);
    box-shadow: var(--oash-shadow);
}
.product-mid-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    color: var(--oash-forest);
    margin: 0 0 8px;
    line-height: 1.2;
}
.product-mid-cta__sub {
    margin: 0;
    color: var(--oash-muted);
    font-size: 1.05rem;
    max-width: 520px;
}
.product-mid-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 22px;
    margin-top: 8px;
}
.product-video-card {
    background: #fff;
    border-radius: var(--oash-radius-lg);
    border: 1px solid var(--oash-sand);
    overflow: hidden;
    box-shadow: var(--oash-shadow);
}
.product-video-card__embed {
    position: relative;
    width: 100%;
    background: #0d2818;
}
.ratio-16x9 {
    aspect-ratio: 16 / 9;
}
.ratio-16x9 iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.product-video-card__title {
    padding: 14px 16px;
    font-weight: 600;
    color: var(--oash-forest);
    margin: 0;
    font-size: 1rem;
}

.product-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 180;
    background: rgba(13, 40, 24, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 12px 0;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}
body:has(.product-sticky-cta) main {
    padding-bottom: 88px;
}
.product-sticky-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-sticky-cta__text {
    color: #e8f0eb;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.92rem;
}
.product-sticky-cta__text strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: #fff;
}
.product-sticky-cta__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
@media (max-width: 520px) {
    .product-sticky-cta__inner { flex-direction: column; align-items: stretch; }
    .product-sticky-cta__btns .btn { width: 100%; justify-content: center; }
}

/* Appointment preferred slot */
.appointment-slot-field { grid-column: 1 / -1; }
.appointment-slot-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 12px;
    margin-top: 10px;
}
.appointment-slot-option {
    display: block;
    cursor: pointer;
}
.appointment-slot-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.appointment-slot-option__box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 2px solid rgba(13, 40, 24, 0.15);
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.appointment-slot-option input:focus-visible + .appointment-slot-option__box {
    outline: 2px solid var(--oash-forest);
    outline-offset: 2px;
}
.appointment-slot-option input:checked + .appointment-slot-option__box {
    border-color: var(--oash-forest);
    box-shadow: 0 0 0 1px var(--oash-forest);
}
.appointment-slot-option__title {
    font-weight: 700;
    color: var(--oash-forest);
}
.appointment-slot-option__hint {
    font-size: 0.85rem;
    color: var(--oash-muted);
}

/* Products catalog index — landing */
.products-page-hero {
    min-height: clamp(280px, 42vw, 420px);
    max-width: 100%;
    overflow-x: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.products-page-hero__inner {
    padding: clamp(28px, 5vw, 56px) 0 clamp(36px, 6vw, 64px);
    max-width: 720px;
}
.products-page-hero__breadcrumb {
    margin-bottom: 18px;
    font-size: 0.88rem;
}
.products-page-hero__breadcrumb a {
    color: rgba(255,255,255,0.9);
}
.products-page-hero__breadcrumb span {
    opacity: 0.75;
    color: #fff;
}
.products-page-hero__kicker {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c8e6d4;
    margin-bottom: 10px;
}
.products-page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.15;
    margin: 0 0 14px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.products-page-hero__lead {
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    margin: 0 0 24px;
    max-width: 38rem;
}
.products-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.products-page-hero__actions .btn--outline {
    border-color: rgba(255,255,255,0.55);
    color: #fff;
}
.products-page-hero__actions .btn--outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}

.products-landing-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(16px, 3vw, 28px);
    align-items: start;
    max-width: 820px;
}
.products-landing-point__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(45, 106, 79, 0.12);
    color: var(--oash-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}
.products-landing-point__title {
    font-size: clamp(1.2rem, 2.4vw, 1.45rem);
    color: var(--oash-forest);
    margin: 0 0 10px;
    font-family: var(--font-display);
}
.products-landing-point__body {
    margin: 0;
    color: var(--oash-muted);
    line-height: 1.55;
    font-size: 1.02rem;
}

.product-mid-cta--wide {
    max-width: 100%;
}
.product-mid-cta__actions--wrap {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.products-index-header { margin-bottom: 28px; }
.products-index-header h1 { margin-bottom: 10px; }
.products-index-intro { color: var(--oash-muted); max-width: 52rem; }
.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 22px;
}
.product-catalog-card {
    border-radius: 16px;
    border: 1px solid rgba(13, 40, 24, 0.1);
    background: var(--oash-cream, #faf8f4);
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
}
.product-catalog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13, 40, 24, 0.12);
}
.product-catalog-card__inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100%;
}
.product-catalog-card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 20px 12px;
    text-decoration: none;
    color: inherit;
}
.product-catalog-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px 20px;
    margin-top: auto;
}
.product-catalog-card__footer .btn {
    flex: 1 1 auto;
    min-width: 120px;
    justify-content: center;
}
.product-catalog-card__icon {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 10px;
}
.product-catalog-card__thumb {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(13, 40, 24, 0.08);
}
.product-page-hero-img-wrap {
    margin-top: 16px;
    margin-bottom: 8px;
}
.product-page-hero-img {
    width: 100%;
    max-height: min(52vh, 420px);
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(13, 40, 24, 0.1);
}
.product-catalog-card__title {
    font-size: 1.2rem;
    margin: 0 0 8px;
    color: var(--oash-forest);
    font-family: var(--font-display);
}
.product-catalog-card__excerpt {
    flex: 1;
    margin: 0 0 14px;
    font-size: 0.92rem;
    color: var(--oash-muted);
    line-height: 1.45;
}
.product-catalog-card__price {
    font-weight: 700;
    color: var(--oash-forest);
}
.product-catalog-card__cta {
    margin-top: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2d6a4f;
}

@media (max-width: 600px) {
    .products-landing-point {
        grid-template-columns: 1fr;
    }
    .products-landing-point__icon {
        width: 48px;
        height: 48px;
    }
    .product-mid-cta__actions--wrap {
        justify-content: stretch;
    }
    .product-mid-cta__actions--wrap .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Team page */
.page-team-header h1,
.page-press-header h1 { margin-bottom: 10px; }
.page-team-lead,
.page-press-lead { color: var(--oash-muted); max-width: 42rem; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
    gap: 22px;
    margin-top: 32px;
}
.team-card {
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(13, 40, 24, 0.1);
    background: #fff;
}
.team-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--oash-forest);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}
.team-card__name { font-size: 1.1rem; margin: 0 0 6px; color: var(--oash-forest); }
.team-card__role { font-weight: 600; font-size: 0.88rem; color: #2d6a4f; margin: 0 0 10px; }
.team-card__bio { margin: 0; font-size: 0.92rem; color: var(--oash-muted); line-height: 1.5; }

/* Media & press */
.press-section { margin-top: 36px; max-width: 48rem; }
.press-section__title { font-size: 1.2rem; color: var(--oash-forest); margin-bottom: 10px; }
.press-section__body { color: var(--oash-muted); line-height: 1.55; }
.press-release-list { list-style: none; padding: 0; margin: 16px 0 0; }
.press-release-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(13, 40, 24, 0.1);
}
.press-release-item__date {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2d6a4f;
    margin-bottom: 6px;
}
.press-release-item__title { font-size: 1.05rem; margin: 0 0 8px; color: var(--oash-forest); }
.press-release-item__body { margin: 0; color: var(--oash-muted); line-height: 1.5; }

/* Footer social */
.footer-social-heading {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.12s, opacity 0.12s;
}
.footer-social__link:hover { transform: translateY(-2px); opacity: 0.92; }
.footer-social__link--youtube { background: #c4302b; }
.footer-social__link--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social__link--facebook { background: #1877f2; }

/* —— Product funnel (full product page) —— */
.product-funnel-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.product-funnel-hero {
    position: relative;
    min-height: min(88vh, 720px);
    display: flex;
    align-items: flex-end;
    max-width: 100%;
    overflow-x: hidden;
    padding: clamp(20px, 4vw, 48px) 0 clamp(32px, 5vw, 56px);
    background:
        linear-gradient(115deg, rgba(13, 40, 24, 0.92) 0%, rgba(13, 40, 24, 0.78) 38%, rgba(13, 40, 24, 0.45) 100%),
        var(--product-funnel-hero-bg) center / cover no-repeat;
    color: #f4faf6;
}
.product-funnel-hero__overlay { display: none; }
.product-funnel-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 52rem;
}
.product-funnel-breadcrumb {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}
.product-funnel-breadcrumb a {
    color: #d8f0e2;
    text-decoration: none;
}
.product-funnel-breadcrumb a:hover { text-decoration: underline; }
.product-funnel-breadcrumb__sep { margin: 0 0.35rem; opacity: 0.7; }
.product-funnel-hero__badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.product-funnel-guarantee-stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    color: #0d2818;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.product-funnel-guarantee-stamp__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1b5e20;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.product-funnel-guarantee-stamp--large {
    font-size: 0.95rem;
    padding: 12px 20px;
    margin-bottom: 1rem;
}
.product-funnel-hero__icon { font-size: 2rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.product-funnel-hero__title {
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 12px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.product-funnel-hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.55;
    opacity: 0.95;
    max-width: 40rem;
    margin: 0 0 18px;
}
.product-funnel-hero__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}
.product-funnel-hero__compare {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
}
.product-funnel-hero__price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffe082;
}
.product-funnel-hero__price-note { font-size: 0.95rem; opacity: 0.9; }
.product-funnel-hero__fineprint { font-size: 0.88rem; opacity: 0.82; margin: 0 0 18px; max-width: 36rem; }
.product-funnel-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}
.product-funnel-hero__cta-outline {
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06) !important;
}
.product-funnel-share { margin-top: 8px; }
.product-funnel-share__label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-bottom: 8px;
}
.product-funnel-share__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.product-funnel-share__btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.12s, opacity 0.12s;
}
.product-funnel-share__btn:hover { transform: translateY(-2px); opacity: 0.92; }
.product-funnel-share__btn--wa { background: #25d366; }
.product-funnel-share__btn--fb { background: #1877f2; }
.product-funnel-share__btn--tw { background: #000; }
.product-funnel-share__btn--in { background: #0a66c2; }
.product-funnel-share__btn--ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888);
}
.product-funnel-share__btn--link { background: #2d6a4f; color: #fff; }
.product-funnel-share__hint {
    font-size: 0.78rem;
    opacity: 0.75;
    margin-top: 10px;
    max-width: 28rem;
    line-height: 1.4;
}
.product-funnel-share--footer { margin-top: 22px; justify-content: center; text-align: center; }
.product-funnel-share--footer .product-funnel-share__btns { justify-content: center; }
.product-funnel-trust {
    background: linear-gradient(180deg, #f0faf4 0%, #e8f5e9 100%);
    border-bottom: 1px solid rgba(13, 40, 24, 0.08);
}
.product-funnel-trust__inner { padding: 22px 0; }
.product-funnel-trust__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 18px;
}
.product-funnel-trust__item {
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(13, 40, 24, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.92rem;
    color: var(--oash-muted, #5a6b5e);
}
.product-funnel-trust__item strong { color: var(--oash-forest, #0d2818); font-size: 1rem; }
.product-funnel-trust__item--accent {
    border-color: rgba(45, 106, 79, 0.25);
    box-shadow: 0 8px 24px rgba(13, 40, 24, 0.06);
}
.product-funnel-trust__link {
    margin-top: 6px;
    font-weight: 600;
    color: #1b5e20;
    text-decoration: none;
}
.product-funnel-trust__link:hover { text-decoration: underline; }
.product-funnel-section { scroll-margin-top: 72px; }
.product-funnel-prose { max-width: 48rem; }
.product-funnel-prose h2 { margin-top: 0; }
.product-funnel-lead { font-size: 1.08rem; line-height: 1.65; }
.product-funnel-checklist {
    margin: 16px 0 0;
    padding-left: 1.2rem;
    line-height: 1.65;
    color: var(--oash-muted, #5a6b5e);
}
.product-funnel-checklist--lg li { margin-bottom: 8px; }
.product-funnel-ayur { margin-top: 20px; }
.product-funnel-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    gap: 14px;
    margin-top: 18px;
}
.product-funnel-gallery__cell {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(13, 40, 24, 0.1);
    background: #f4faf6;
}
.product-funnel-gallery__cell img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.product-funnel-panel { margin-top: 18px; padding: 20px 22px; }
.product-funnel-html ul { padding-left: 1.2rem; }
.product-funnel-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 16px;
    margin-top: 18px;
}
.product-funnel-step-card {
    background: #fff;
    border: 1px solid rgba(13, 40, 24, 0.1);
    border-radius: 14px;
    padding: 18px 18px 18px 52px;
    position: relative;
    min-height: 120px;
}
.product-funnel-step-card__num {
    position: absolute;
    left: 14px;
    top: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1b5e20;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-funnel-step-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--oash-forest); }
.product-funnel-step-card p { margin: 0; font-size: 0.92rem; color: var(--oash-muted); line-height: 1.5; }
.product-funnel-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 16px;
    margin-top: 20px;
}
.product-funnel-timeline__item {
    background: linear-gradient(180deg, #fff, #faf8f4);
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(13, 40, 24, 0.08);
}
.product-funnel-timeline__phase {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #2d6a4f;
    margin-bottom: 8px;
}
.product-funnel-timeline__item h3 { margin: 0 0 8px; font-size: 1.08rem; }
.product-funnel-timeline__item p { margin: 0; font-size: 0.92rem; color: var(--oash-muted); line-height: 1.5; }
.product-funnel-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 18px;
    margin-top: 18px;
}
.product-funnel-story-card {
    margin: 0;
    padding: 22px 24px;
    background: #fff;
    border-radius: 16px;
    border-left: 4px solid #2d6a4f;
    box-shadow: 0 10px 28px rgba(13, 40, 24, 0.08);
    font-style: normal;
}
.product-funnel-story-card p {
    margin: 0 0 12px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #1a2e22;
}
.product-funnel-story-card footer {
    font-size: 0.88rem;
    color: var(--oash-muted);
}
.product-funnel-blog-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}
.product-funnel-blog-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(13, 40, 24, 0.08);
}
.product-funnel-blog-list a {
    font-weight: 700;
    color: #1b5e20;
    text-decoration: none;
    font-size: 1.05rem;
}
.product-funnel-blog-list a:hover { text-decoration: underline; }
.product-funnel-blog-list__ex {
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
    color: var(--oash-muted);
    font-weight: 400;
}
.product-funnel-guarantee-block {
    text-align: center;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}
.product-funnel-guarantee-block .product-funnel-guarantee-stamp--large {
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
}
.product-funnel-cta-band { margin-top: 0; }

@media print {
    .invoice-print-wrap .d-print-none,
    header, footer, .product-sticky-cta {
        display: none !important;
    }
    .invoice-print-panel {
        border: none !important;
        box-shadow: none !important;
    }
    body {
        background: #fff !important;
    }
}
