/* ==========================================================================
   FungiWay — Beautiful & Simple Single Product Page
   ========================================================================== */

/* --- Variables --- */
:root {
    --bg: #faf9f6;
    --bg-dark: #f0ede6;
    --forest: #102213;
    --forest-mid: #1c3521;
    --forest-light: #2c5a3a;
    --sand: #faf9f6;
    --border: rgba(16, 34, 19, 0.1);
    --border-light: rgba(250, 249, 246, 0.12);
    --text: #102213;
    --text-muted: rgba(16, 34, 19, 0.6);
    --text-light: #faf9f6;
    --text-light-muted: rgba(250, 249, 246, 0.6);
    --red: #c0392b;
    --green: #27ae60;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- Lenis Luxury Momentum Scroll --- */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

/* --- Utility --- */
.hidden { display: none !important; }
.dark { background: var(--forest); color: var(--text-light); }

/* --- Scroll Reveal System (Premium) --- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(4px);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    filter: blur(0);
}

/* Direction variants */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    filter: blur(3px);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    filter: blur(3px);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    filter: blur(5px);
    transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), filter 1.2s var(--ease);
}
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}

/* Stagger delays for grid children — slower cascade */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.35s; }
.stagger-5 { transition-delay: 0.45s; }
.stagger-6 { transition-delay: 0.55s; }

/* Section divider line that grows in */
.section-line {
    width: 0;
    height: 1px;
    background: var(--border);
    margin: 0 auto 3rem;
    transition: width 1.4s var(--ease);
}
.section-line.visible { width: 80px; }
.dark .section-line { background: var(--border-light); }

/* Parallax depth — applied via JS scroll */
.parallax-slow { transition: transform 0.05s linear; will-change: transform; }
.parallax-float { transition: transform 0.1s ease-out; will-change: transform; }

/* Animated number counter glow */
.count-up {
    display: inline-block;
    transition: color 0.6s var(--ease);
}
.count-up.counting { color: var(--forest-light); }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed; inset: 0;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.preloader.done {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-25px) scale(1.02);
}
.preloader-inner { text-align: center; }
.preloader-logo {
    height: 110px; width: auto;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.1s var(--ease);
}
.preloader-track {
    width: 260px; height: 2px;
    background: rgba(16,34,19,0.06);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    overflow: hidden;
}
.preloader-fill {
    width: 0; height: 100%;
    background: var(--forest);
    border-radius: 2px;
    animation: fillBar 1.65s forwards 0.15s cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fillBar {
    to { width: 100%; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 1.6rem 0;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 2rem;
}
.nav-logo {
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav.scrolled .nav-logo {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.nav-logo img {
    height: 80px;
    width: auto;
    display: block;
}
.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-toggle, .cart-btn {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 0.85rem; font-weight: 500;
    border-radius: 100px;
    transition: all 0.25s var(--ease);
    backdrop-filter: blur(4px);
}
.nav.scrolled .lang-toggle,
.nav.scrolled .cart-btn {
    border-color: var(--border);
    color: var(--text);
}
.lang-toggle:hover, .cart-btn:hover {
    background: var(--forest);
    color: #fff;
    border-color: var(--forest);
}
.cart-btn { position: relative; padding: 0.55rem 0.9rem; }
.cart-count {
    position: absolute; top: -5px; right: -5px;
    background: var(--red); color: #fff;
    font-size: 0.6rem; font-weight: 700;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(16,34,19,0.4);
    backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }

.cart-drawer {
    position: fixed; top: 0; right: -420px;
    width: 400px; height: 100%;
    background: var(--bg);
    z-index: 200;
    padding: 2.5rem 2rem;
    display: flex; flex-direction: column;
    transition: right 0.5s var(--ease);
    border-left: 1px solid var(--border);
}
.cart-drawer.open { right: 0; }

.cart-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.cart-head h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; }
.cart-head button { font-size: 1.2rem; color: var(--text); }

.cart-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.cart-empty { text-align: center; color: var(--text-muted); }
.cart-empty i { font-size: 1.5rem; opacity: 0.3; margin-bottom: 0.75rem; display: block; }
.cart-empty p { font-size: 0.85rem; }

.cart-product {
    display: flex; gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    align-items: center;
}
.cart-product-img { width: 55px; }
.cart-product-img img { height: 70px; width: auto; object-fit: contain; }
.cart-product-info { flex: 1; }
.cart-product-info strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.cart-product-sub { display: block; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.cart-product-row { display: flex; justify-content: space-between; align-items: center; }
.cart-product-price { font-weight: 600; font-size: 0.95rem; }
.qty-wrap {
    display: flex; align-items: center; gap: 0.4rem;
    border: 1px solid var(--border);
    padding: 0.2rem 0.5rem;
}
.qty-btn { font-size: 0.65rem; color: var(--text); padding: 0.2rem; }
.qty-wrap span { font-size: 0.85rem; font-weight: 600; min-width: 16px; text-align: center; }

.cart-foot { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1.5rem; }
.cart-total-row {
    display: flex; justify-content: space-between;
    font-size: 1rem; font-weight: 500; margin-bottom: 1.2rem;
}
.cart-total-row span:last-child { font-weight: 700; }

/* --- Modal --- */
.modal {
    position: fixed; inset: 0;
    background: rgba(16,34,19,0.5);
    backdrop-filter: blur(8px);
    z-index: 300;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.modal.active { opacity: 1; pointer-events: auto; }
.modal-box {
    background: var(--bg); padding: 3.5rem 2.5rem;
    max-width: 460px; width: 90%; text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease);
}
.modal.active .modal-box { transform: translateY(0); }
.modal-box i { font-size: 1.8rem; color: var(--forest-light); margin-bottom: 1.2rem; }
.modal-box h3 { font-family: var(--serif); font-size: 2rem; font-weight: 300; margin-bottom: 0.8rem; }
.modal-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.8rem; line-height: 1.6; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--forest); color: var(--text-light);
    padding: 1rem 2.2rem;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    border: 1px solid var(--forest);
    transition: all 0.3s var(--ease);
}
.btn-primary:hover {
    background: transparent;
    color: var(--text);
}
.btn-primary.large { padding: 1.2rem 3rem; font-size: 0.9rem; }
.btn-primary.full { width: 100%; justify-content: center; }

.dark .btn-primary {
    background: var(--sand); color: var(--forest);
    border-color: var(--sand);
}
.dark .btn-primary:hover {
    background: transparent;
    color: var(--text-light);
    border-color: var(--sand);
}

/* ==========================================================================
   TAG
   ========================================================================== */
.tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--forest-light);
    margin-bottom: 1rem;
}
.tag.light { color: var(--text-light-muted); }

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-head {
    text-align: center;
    max-width: 700px; margin: 0 auto 4rem;
}
.section-head h2 {
    font-family: var(--serif);
    font-size: 3.2rem; font-weight: 300;
    line-height: 1.1; margin-bottom: 1rem;
}
.section-head p {
    font-size: 1.05rem; font-weight: 300;
    color: var(--text-muted);
    max-width: 560px; margin: 0 auto;
}
.dark .section-head p { color: var(--text-light-muted); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border-bottom: none;
    padding: 0;
}
.hero-video-wrap {
    position: absolute; inset: 0; z-index: 0;
}
.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16, 34, 19, 0.55) 0%,
        rgba(16, 34, 19, 0.7) 100%
    );
}
.hero-content {
    position: relative; z-index: 1;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    max-width: 740px;
}
.hero-content .tag { color: rgba(255,255,255,0.6); }
.hero-content h1 {
    font-family: var(--serif);
    font-size: 5rem; font-weight: 300;
    line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-size: 1.1rem; font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 520px; margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero-actions { margin-bottom: 2rem; }
.hero-actions .btn-primary {
    background: #fff; color: var(--forest);
    border-color: #fff;
}
.hero-actions .btn-primary:hover {
    background: transparent; color: #fff;
    border-color: #fff;
}
.hero-badges {
    display: flex; align-items: center; justify-content: center;
    gap: 0.6rem; flex-wrap: wrap;
    font-size: 0.78rem; font-weight: 400;
    color: rgba(255,255,255,0.55);
}
.hero-badges .dot { font-size: 0.5rem; }

.scroll-hint {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
}

/* --- Cinematic Hero Page Load Entrance --- */
body:not(.page-loaded) .hero-content .tag,
body:not(.page-loaded) .hero-content h1,
body:not(.page-loaded) .hero-content p,
body:not(.page-loaded) .hero-actions,
body:not(.page-loaded) .hero-badges,
body:not(.page-loaded) .scroll-hint {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
}

.hero-content .tag,
.hero-content h1,
.hero-content p,
.hero-actions,
.hero-badges,
.scroll-hint {
    transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), filter 1.2s var(--ease);
}

body.page-loaded .hero-content .tag { transition-delay: 0.1s; }
body.page-loaded .hero-content h1 { transition-delay: 0.3s; }
body.page-loaded .hero-content p { transition-delay: 0.5s; }
body.page-loaded .hero-actions { transition-delay: 0.65s; }
body.page-loaded .hero-badges { transition-delay: 0.8s; }
body.page-loaded .scroll-hint { transition-delay: 1.0s; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
.scroll-hint { animation: bounce 2.2s infinite ease-in-out 1.4s; }

/* ==========================================================================
   PRODUCT SECTION
   ========================================================================== */
.product-section {
    padding: 8rem 2rem;
    border-bottom: 1px solid var(--border);
}
.product-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.product-img-col { text-align: center; }
.product-bottle {
    max-height: 520px; width: auto; margin: 0 auto;
    filter: drop-shadow(0 20px 50px rgba(16,34,19,0.1));
}
.product-info-col h2 {
    font-family: var(--serif);
    font-size: 3.5rem; font-weight: 300;
    margin-bottom: 1.2rem;
}
.product-info-col p {
    color: var(--text-muted);
    font-weight: 300; font-size: 1rem;
    line-height: 1.7; margin-bottom: 2.5rem;
    max-width: 480px;
}
.product-specs {
    display: flex; gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}
.spec-item { text-align: left; }
.spec-number {
    display: block;
    font-family: var(--serif);
    font-size: 2.5rem; font-weight: 300;
    line-height: 1;
    color: var(--forest-light);
}
.spec-label {
    font-size: 0.75rem; font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ==========================================================================
   SCIENCE SECTION
   ========================================================================== */
.science-section { padding: 8rem 2rem; }
.compare-grid {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-light);
}
.compare-card {
    padding: 3.5rem;
    border-right: 1px solid var(--border-light);
}
.compare-card:last-child { border-right: none; }
.compare-card.highlight {
    background: rgba(255,255,255,0.04);
}
.compare-label {
    display: block;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-light-muted);
    margin-bottom: 2rem;
}
.compare-stat { margin-bottom: 2rem; }
.compare-num {
    font-family: var(--serif);
    font-size: 4.5rem; font-weight: 300;
    line-height: 1;
    display: block;
}
.compare-num.red { color: var(--red); }
.compare-num.green { color: var(--green); }
.compare-desc {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-light-muted);
}
.compare-card p {
    font-size: 0.9rem; font-weight: 300;
    line-height: 1.6;
    color: var(--text-light-muted);
}

/* ==========================================================================
   INGREDIENTS
   ========================================================================== */
.ingredients-section { padding: 8rem 2rem; border-bottom: 1px solid var(--border); }
.ing-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}
.ing-card {
    border-right: 1px solid var(--border);
    overflow: hidden;
}
.ing-card:last-child { border-right: none; }
.ing-img-wrap {
    height: 220px; overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--bg-dark);
}
.ing-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 4s var(--ease);
}
.ing-card:hover .ing-img { transform: scale(1.05); }
.ing-body { padding: 2rem 1.5rem; }
.ing-num {
    font-family: var(--serif);
    font-size: 2rem; font-weight: 300;
    color: var(--forest-light);
    display: block; margin-bottom: 0.5rem;
}
.ing-body h3 {
    font-family: var(--serif);
    font-size: 1.4rem; font-weight: 400;
    margin-bottom: 0.6rem;
}
.ing-body p {
    font-size: 0.85rem; font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */
.benefits-section { padding: 8rem 2rem; }
.ben-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
}
.ben-card {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.ben-card:nth-child(3n) { border-right: none; }
.ben-card:nth-child(n+4) { border-bottom: none; }
.ben-icon {
    font-size: 1.3rem;
    color: var(--text-light-muted);
    margin-bottom: 1.2rem;
}
.ben-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem; font-weight: 300;
    margin-bottom: 0.6rem;
}
.ben-card p {
    font-size: 0.85rem; font-weight: 300;
    color: var(--text-light-muted);
    line-height: 1.5;
}

/* ==========================================================================
   RITUAL
   ========================================================================== */
.ritual-section { padding: 8rem 2rem; border-bottom: 1px solid var(--border); }
.ritual-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
}
.ritual-card { padding: 4rem 3rem; }
.ritual-card.morning {
    background: var(--bg-dark);
    border-right: 1px solid var(--border);
}
.ritual-card.evening {
    background: var(--forest);
    color: var(--text-light);
}
.ritual-time {
    display: block;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.ritual-card.morning .ritual-time { color: var(--forest-light); }
.ritual-card.evening .ritual-time { color: var(--text-light-muted); }
.ritual-card h3 {
    font-family: var(--serif);
    font-size: 2.2rem; font-weight: 300;
    margin-bottom: 1rem; line-height: 1.15;
}
.ritual-card p {
    font-size: 0.9rem; font-weight: 300;
    line-height: 1.6; margin-bottom: 1.5rem;
}
.ritual-card.morning p { color: var(--text-muted); }
.ritual-card.evening p { color: var(--text-light-muted); }
.ritual-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.ritual-card li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.88rem; font-weight: 400;
}
.ritual-card.morning li i { color: var(--forest-light); font-size: 0.7rem; }
.ritual-card.evening li i { color: rgba(255,255,255,0.5); font-size: 0.7rem; }

/* ==========================================================================
   FACTS
   ========================================================================== */
.facts-section {
    padding: 8rem 2rem;
    border-bottom: 1px solid var(--border);
}
.facts-card {
    max-width: 600px; margin: 0 auto;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 3.5rem;
}
.facts-card h2 {
    font-family: var(--serif);
    font-size: 2.2rem; font-weight: 300;
    margin-bottom: 0.3rem;
}
.facts-meta {
    font-size: 0.8rem; color: var(--text-muted);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}
.facts-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}
.facts-table th {
    text-align: left;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 0 0.6rem;
    border-bottom: 2px solid var(--text);
}
.facts-table td {
    padding: 0.7rem 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(16,34,19,0.06);
}
.facts-table td:last-child { text-align: right; font-weight: 500; }
.facts-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { padding: 8rem 2rem; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-q {
    width: 100%; padding: 1.5rem 0;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--serif);
    font-size: 1.25rem; font-weight: 300;
    color: var(--text-light);
    text-align: left;
}
.faq-q i { font-size: 0.85rem; color: var(--text-light-muted); transition: transform 0.3s var(--ease); }
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-a p {
    padding-bottom: 1.5rem;
    font-size: 0.9rem; font-weight: 300;
    color: var(--text-light-muted);
    line-height: 1.6;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section {
    padding: 10rem 2rem;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-inner h2 {
    font-family: var(--serif);
    font-size: 3rem; font-weight: 300;
    margin-bottom: 1rem;
}
.cta-inner p {
    color: var(--text-muted);
    font-size: 1.05rem; font-weight: 300;
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: #0c1a0e; color: var(--text-light-muted);
    padding: 5rem 2rem 2.5rem;
}
.footer-inner {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
    font-family: var(--serif);
    font-size: 1.8rem; font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.04em;
    display: block; margin-bottom: 1rem;
}
.footer-brand p, .footer-disclaimer p {
    font-size: 0.78rem; line-height: 1.5; font-weight: 300;
}
.footer-bottom {
    max-width: 1000px; margin: 0 auto;
    text-align: center; padding-top: 2rem;
    font-size: 0.68rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: 1fr; text-align: center; }
    .product-info-col p { max-width: 100%; }
    .product-specs { justify-content: center; }
    .product-bottle { max-height: 400px; }
    .ing-grid { grid-template-columns: repeat(2, 1fr); }
    .ing-card:nth-child(2n) { border-right: none; }
    .ing-card:nth-child(n+3) { border-top: 1px solid var(--border); }
    .ben-grid { grid-template-columns: repeat(2, 1fr); }
    .ben-card:nth-child(2n) { border-right: none; }
    .ben-card:nth-child(n+3) { border-bottom: 1px solid var(--border-light); }
    .ben-card:nth-child(n+5) { border-bottom: none; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.2rem; }
    .section-head h2 { font-size: 2.4rem; }
    .product-info-col h2 { font-size: 2.6rem; }
    .compare-grid { grid-template-columns: 1fr; }
    .compare-card { border-right: none !important; border-bottom: 1px solid var(--border-light); }
    .compare-card:last-child { border-bottom: none; }
    .ing-grid { grid-template-columns: 1fr; }
    .ing-card { border-right: none !important; border-bottom: 1px solid var(--border); }
    .ing-card:last-child { border-bottom: none; }
    .ben-grid { grid-template-columns: 1fr; }
    .ben-card { border-right: none !important; border-bottom: 1px solid var(--border-light) !important; }
    .ben-card:last-child { border-bottom: none !important; }
    .ritual-grid { grid-template-columns: 1fr; }
    .ritual-card.morning { border-right: none; border-bottom: 1px solid var(--border); }
    .ritual-card { padding: 3rem 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .cart-drawer { width: 100%; right: -100%; }
    .cta-inner h2 { font-size: 2.4rem; }
    .product-specs { flex-direction: column; gap: 1.2rem; align-items: center; }
}
