/*
 * PrimeDrip theme styles
 * Extracted verbatim from primedrip-labs-v37.html <style> block (original lines ~79-4630),
 * excluding the :root token block (see tokens.css) and the SPA .page-view show/hide rules
 * (.page-view / .page-view.active / @keyframes pageFadeIn — original lines 679-689), which
 * only existed to support the JS single-page-app router and have no visual purpose once each
 * page is its own WordPress URL.
 */


        html { scroll-behavior: smooth; }

        /* Global image safety — prevents any img from overflowing its parent */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        html {
            font-size: 112%;
        }

        /* ─── GLOBAL LEGIBILITY OVERRIDE ───────────────────── */
        /* Force all text to white — no grey on gradient backgrounds */
        p, span, li, label, div, button, a, h1, h2, h3, h4, h5, h6, input, textarea, select {
            color: inherit;
        }
        body {
            background: transparent;
            color: var(--text);
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ─── UTILITY ─────────────────────────────────────── */
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
        .hidden { display: none !important; }

        /* ─── ANNOUNCEMENT BAR ─────────────────────────────── */
        #announcement-bar {
            background: #000000;
            border-bottom: 1px solid var(--border);
            text-align: center;
            padding: 9px 16px;
            font-family: var(--font-display);
            font-size: 11px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
        }
        #announcement-bar strong { color: var(--gold); }

        .announce-rotator {
            position: relative;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 100%;
            overflow: hidden;
        }
        .announce-item {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            opacity: 0;
            animation: announceFade 12s ease-in-out infinite;
        }
        .announce-item:nth-child(1) { animation-delay: 0s; }
        .announce-item:nth-child(2) { animation-delay: 4s; }
        .announce-item:nth-child(3) { animation-delay: 8s; }
        @keyframes announceFade {
            0%   { opacity: 0; transform: translateY(5px); }
            5%   { opacity: 1; transform: translateY(0); }
            28%  { opacity: 1; transform: translateY(0); }
            35%  { opacity: 0; transform: translateY(-5px); }
            100% { opacity: 0; }
        }
        @media (prefers-reduced-motion: reduce) {
            .announce-item {
                animation: none;
                position: static;
                opacity: 1;
                display: none;
            }
            .announce-item:first-child { display: flex; }
            .announce-rotator { height: auto; overflow: visible; }

            /* Respect the OS-level motion preference everywhere else:
               keep state changes (color, opacity for valid UI feedback)
               but remove movement-based transitions, fade-up reveals,
               and decorative animations. */
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
            }
            .fade-up {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
            .product-card:hover,
            .bundle-card:hover,
            .about-pillar:hover,
            .finder-card:hover,
            .cart-rec-card:hover,
            .tier-card:hover {
                transform: none !important;
            }
            .hero-headline, .hero-content > * {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* ─── HEADER ───────────────────────────────────────── */
        #site-header {
            position: sticky;
            top: 0;
            z-index: 320;
            background: rgba(6,9,18,0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            height: 80px;
        }
        .header-inner .site-logo {
            justify-self: start;
            min-width: 0;
        }
        .header-inner nav {
            justify-self: center;
            min-width: 0;
        }
        .header-inner .header-actions {
            justify-self: end;
            display: flex;
            align-items: center;
            min-width: 0;
        }

        /* Logo */
        .site-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
            cursor: pointer;
        }
        .logo-mark {
            display: block;
            flex-shrink: 0;
        }
        .logo-text {
            font-family: var(--font-logo);
            font-size: 19px;
            font-weight: 300;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--white);
            line-height: 1;
            transition: opacity 0.2s;
        }
        .logo-text em {
            font-style: normal;
            font-weight: 400;
            color: var(--gold-brand);
            font-size: 19px;
            letter-spacing: 0.22em;
            margin-left: 0;
        }
        .site-logo:hover .logo-text { opacity: 0.8; }

        /* Nav */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }
        .main-nav button.nav-link-btn, .main-nav a {
            background: none;
            border: none;
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            transition: color 0.2s;
            cursor: pointer;
        }
        .main-nav button.nav-link-btn:hover, .main-nav a:hover, .main-nav a.active { 
            color: var(--gold);
        }

        /* Dropdown */
        .nav-dropdown { position: relative; }
        .nav-dropdown > button { display: flex; align-items: center; gap: 4px; }
        .nav-dropdown > button svg { transition: transform 0.2s; }

        /* Invisible bridge fills the gap so mouse doesn't lose hover */
        .nav-dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: -20px;
            right: -20px;
            height: 16px;
            background: transparent;
        }

        /* ── Mega-menu: wide panel anchored to header left ── */
        .dropdown-menu {
            position: fixed;
            top: var(--header-h, 64px);
            left: 0;
            right: 0;
            background: rgba(4,6,14,0.98);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding: 32px 0 36px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            transform: translateY(-8px);
            box-shadow: 0 24px 60px rgba(0,0,0,0.8);
            z-index: 200;
        }
        .nav-dropdown:hover .dropdown-menu,
        .nav-dropdown:focus-within .dropdown-menu {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        .nav-dropdown.dropdown-force-closed .dropdown-menu {
            opacity: 0 !important;
            pointer-events: none !important;
            transform: translateY(-8px) !important;
            transition: none !important;
        }
        .nav-dropdown:hover > button svg,
        .nav-dropdown:focus-within > button svg { transform: rotate(180deg); }

        /* Mega-menu inner grid */
        .mega-menu-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            max-width: 700px;
        }
        .mega-col {
            padding: 0 24px;
            border-right: 1px solid rgba(255,255,255,0.06);
        }
        .mega-col:first-child { padding-left: 0; }
        .mega-col:last-child { border-right: none; padding-right: 0; }
        .mega-col-label {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(212,165,154,0.2);
        }
        .dropdown-menu button {
            display: block;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            border-left: 2px solid transparent;
            padding: 9px 12px 9px 10px;
            border-radius: var(--radius-sm);
            font-family: var(--font-display);
            font-size: 13px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.82);
            transition: color 0.15s ease, background 0.15s ease, border-left-color 0.15s ease, padding-left 0.15s ease;
            cursor: pointer;
            line-height: 1.5;
        }
        .dropdown-menu button:hover,
        .dropdown-menu button:focus {
            color: var(--gold) !important;
            background: rgba(212,165,154,0.1);
            border-left-color: var(--gold);
            padding-left: 14px;
            outline: none;
        }
        #site-header .dropdown-menu button:hover,
        #site-header .dropdown-menu button:focus {
            color: #d4a59a !important;
        }
        .mega-new-badge {
            display: inline-block;
            font-size: 7px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: var(--gold);
            color: #000;
            padding: 1px 5px;
            border-radius: var(--radius-sm);
            margin-left: 6px;
            vertical-align: middle;
            line-height: 1.6;
        }
        .mega-popular-badge {
            display: inline-block;
            font-size: 7px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: var(--gold-dim);
            color: var(--gold);
            border: 1px solid var(--gold-border);
            padding: 1px 5px;
            border-radius: var(--radius-sm);
            margin-left: 6px;
            vertical-align: middle;
            line-height: 1.6;
        }

        /* Header actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-actions button, .header-actions a {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            min-width: 48px;
            min-height: 48px;
            padding: 0 6px;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border-radius: var(--radius-sm);
        }
        .header-actions button:hover, .header-actions a:hover { color: var(--gold); }
        .cart-btn { position: relative; }
        .wishlist-btn { position: relative; }
        .wishlist-btn.is-active svg { fill: var(--gold); stroke: var(--gold); }
        .cart-btn.cart-pop { animation: cartPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
        @keyframes cartPop {
            0%   { transform: scale(1); }
            35%  { transform: scale(1.22); }
            60%  { transform: scale(0.95); }
            100% { transform: scale(1); }
        }
        .add-to-cart-btn.added, #pdp-add-btn.added {
            transform: scale(1.03);
        }
        .cart-count {
            position: absolute;
            top: 4px; right: 2px;
            background: var(--gold);
            color: #000;
            font-family: var(--font-display);
            font-size: 8px;
            font-weight: 800;
            width: 16px; height: 16px;
            border-radius: 50%;
            display: none; align-items: center; justify-content: center;
            pointer-events: none;
        }
        /* Persistent subtotal pill — lets a shopper see what's in their
           cart at a glance without opening the drawer. Desktop only;
           there isn't room for it in the mobile header. */
        .cart-mini-total {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.02em;
            color: var(--gold);
            white-space: nowrap;
            cursor: pointer;
            margin-left: -2px;
        }
        @media (max-width: 900px) {
            .cart-mini-total { display: none !important; }
        }
        .search-btn { transition: opacity 0.2s; }
        .search-btn svg { opacity: 0.75; transition: opacity 0.2s; }
        .search-btn:hover svg { opacity: 1; }

        /* Search panel */
        .search-panel {
            position: absolute;
            top: 100%;
            left: 0; right: 0;
            background: rgba(3,5,12,0.97);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 24px 48px rgba(0,0,0,0.6);
            opacity: 0;
            transform: translateY(-8px);
            pointer-events: none;
            transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1), transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 340;
            max-height: 80vh;
            overflow-y: auto;
        }
        .search-panel.open {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .search-panel-inner {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px 0;
            border-bottom: 1px solid var(--border);
            color: rgba(255,255,255,0.5);
        }
        .search-panel-inner input {
            flex: 1;
            background: none;
            border: none;
            outline: none;
            color: var(--white);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 300;
            letter-spacing: 0.01em;
        }
        .search-panel-inner input::placeholder { color: var(--text-dim); }
        .search-close {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 16px;
            cursor: pointer;
            padding: 6px;
            transition: color 0.2s;
        }
        .search-close:hover { color: var(--gold); }
        .search-results {
            padding: 8px 0 16px;
        }
        .search-result-item {
            display: flex;
            align-items: center;
            gap: 16px;
            width: 100%;
            background: none;
            border: none;
            border-radius: var(--radius-sm);
            padding: 12px 8px;
            cursor: pointer;
            text-align: left;
            transition: background 0.15s;
        }
        .search-result-item:hover, .search-result-item:focus {
            background: rgba(212,165,154,0.08);
            outline: none;
        }
        .search-result-img {
            width: 44px; height: 44px;
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            overflow: hidden;
        }
        .search-result-info { flex: 1; min-width: 0; }
        .search-result-name {
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: var(--white);
            margin-bottom: 2px;
        }
        .search-result-meta {
            font-family: var(--font-display);
            font-size: 10px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        .search-result-price {
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            color: var(--gold);
            white-space: nowrap;
        }
        .search-no-results {
            padding: 24px 8px;
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 300;
            text-align: center;
        }

        /* Mobile hamburger */
        .hamburger {
            display: none;
            position: relative;
            z-index: 310;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }
        .hamburger-bar {
            display: block;
            position: absolute;
            left: 50%;
            width: 22px;
            height: 1.5px;
            margin-left: -11px;
            background: rgba(255,255,255,0.85);
            border-radius: var(--radius-sm);
            transform-origin: center;
            transition:
                transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.25s ease,
                width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                margin-left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .hamburger-bar-top { top: calc(50% - 7px); width: 22px; }
        .hamburger-bar-mid { top: 50%; margin-top: -0.75px; width: 22px; }
        .hamburger-bar-bot { top: calc(50% + 5.5px); width: 16px; margin-left: -8px; }
        .hamburger:hover .hamburger-bar { background: var(--gold); }
        .hamburger:hover .hamburger-bar-bot { width: 22px; margin-left: -11px; }

        /* Open state — morphs into an X, pivoting around the button's true center */
        .hamburger[aria-expanded="true"] .hamburger-bar-top {
            top: 50%;
            margin-top: -0.75px;
            left: 50%;
            margin-left: -11px;
            width: 22px;
            transform: rotate(45deg);
        }
        .hamburger[aria-expanded="true"] .hamburger-bar-mid {
            opacity: 0;
            transform: scaleX(0.3);
        }
        .hamburger[aria-expanded="true"] .hamburger-bar-bot {
            top: 50%;
            margin-top: -0.75px;
            left: 50%;
            margin-left: -11px;
            width: 22px;
            transform: rotate(-45deg);
        }
        .hamburger[aria-expanded="true"] .hamburger-bar {
            background: var(--gold);
        }

        /* ─── COMPLIANCE SUB-BANNER ──────────────────────── */
        .compliance-banner {
            background: var(--bg-1);
            border-bottom: 1px solid var(--border);
            padding: 10px 16px;
            text-align: center;
        }
        .compliance-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            border-radius: 100px;
            padding: 5px 16px;
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
        }

        /* ─── PAGE VIEWS ──────────────────────────────────── */

        /* ─── HERO ────────────────────────────────────────── */
        #hero {
            border-bottom: 1px solid var(--border);
        }
        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 56px 0 52px;
            max-width: 620px;
        }
        
        /* ─── TEXT SELECTION ───────────────────────────────── */
        ::selection {
            background-color: var(--gold);
            color: #000;
        }
        ::-moz-selection {
            background-color: var(--gold);
            color: #000;
        }
        .hero-eyebrow {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        .hero-headline {
            font-family: var(--font-display);
            font-size: clamp(44px, 5.5vw, 72px);
            font-weight: 800;
            line-height: 1.0;
            letter-spacing: -0.01em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 24px;
        }
        .hero-body {
            font-size: 16px;
            color: #ffffff;
            font-weight: 400;
            line-height: 1.7;
            max-width: 460px;
            margin-bottom: 40px;
        }
        .hero-cta-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }
        .btn-primary {
            background: var(--white);
            color: #000;
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            border: 1.5px solid var(--white);
            padding: 13px 32px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.25s;
            display: inline-block;
        }
        .btn-primary:hover { background: transparent; color: var(--white); }
        .btn-secondary {
            background: rgba(255,255,255,0.06);
            color: var(--white);
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            border: 1.5px solid rgba(255,255,255,0.3);
            padding: 13px 32px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.25s;
            display: inline-block;
        }
        .btn-secondary:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.7);
            color: var(--white);
        }
        .btn-gold {
            background:
                linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%) no-repeat,
                var(--gold);
            background-size: 220% 100%, 100% 100%;
            background-position: 150% 0, 0 0;
            color: #000;
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            border: 2px solid var(--gold);
            padding: 13px 32px;
            cursor: pointer;
            text-decoration: none;
            transition: background-position 0.7s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s, box-shadow 0.2s, transform 0.15s;
            display: inline-block;
            width: 100%;
            text-align: center;
        }
        .btn-gold:hover {
            background:
                linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%) no-repeat,
                #e8bfb0;
            background-size: 220% 100%, 100% 100%;
            background-position: -150% 0, 0 0;
            border-color: #e8bfb0;
            color: #000;
            box-shadow: 0 4px 20px rgba(212,165,154,0.4);
        }
        .btn-gold:disabled { background: var(--bg-3); border-color: var(--border); color: var(--text-dim); cursor: not-allowed; box-shadow: none; }

        /* Hero CTA — same flat pill as everywhere else, just larger */
        .btn-hero-cta {
            font-size: 13px !important;
            padding: 16px 44px !important;
            letter-spacing: 0.22em !important;
            position: relative;
        }
        .btn-hero-cta:hover {
            transform: translateY(-2px);
        }

        .hero-trust {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            padding-top: 28px;
            border-top: 1px solid var(--border);
        }
        .trust-item {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.85);
        }
        .trust-item .check { color: var(--gold); margin-right: 5px; }

        /* Hero right panel */
        .hero-panel {
            background: transparent;
            border-left: none;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 60px 32px 60px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-panel::before {
            content: '99%';
            position: absolute;
            font-family: var(--font-display);
            font-size: 200px;
            font-weight: 800;
            color: rgba(255,255,255,0.025);
            pointer-events: none;
            user-select: none;
            line-height: 1;
        }
        .featured-card {
            display: none;
        }
        .featured-card-badge {
            position: absolute;
            top: 12px; right: 12px;
            background: rgba(0,200,80,0.12);
            border: 1px solid rgba(0,200,80,0.4);
            color: #00e566;
            font-family: var(--font-display);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 4px 9px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .featured-card-badge::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #00e566;
            box-shadow: 0 0 6px #00e566;
            flex-shrink: 0;
        }
        .featured-card-eyebrow {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
        }
        .featured-card-name {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 800;
            letter-spacing: 0.06em;
            color: var(--white);
        }
        .featured-card-sub {
            font-family: var(--font-display);
            font-size: 12px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 22px;
        }
        .featured-card-divider {
            height: 1px;
            background: var(--border);
            margin: 16px 0;
        }
        .featured-card-desc {
            font-size: 13px;
            color: #ffffff;
            line-height: 1.7;
            margin-bottom: 24px;
        }


        /* ─── LEGIBILITY OVERLAY (softened) ─────────────────── */
        #home-page, #shop-page {
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0.0) 0%,
                rgba(0,0,0,0.0) 50%,
                rgba(0,0,0,0.16) 65%,
                rgba(0,0,0,0.32) 82%,
                rgba(0,0,0,0.4) 100%
            );
            min-height: 100vh;
        }
        /* ─── RESEARCH FOCUS FINDER ────────────────────────── */
        #finder-section {
            padding: 64px 0 0;
        }
        .finder-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            align-items: stretch;
        }
        .finder-card {
            background: var(--bg-1);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            padding: 32px 28px;
            text-align: left;
            cursor: pointer;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
            position: relative;
            overflow: hidden;
            /* Equal height — CTA pinned to bottom */
            height: 100%;
        }
        /* Subtle gold shimmer line at bottom — strong click affordance */
        .finder-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .finder-card:hover::after { opacity: 0.7; }
        .finder-card:hover {
            border-color: rgba(212,165,154,0.7);
            background: rgba(14,20,36,0.95);
            box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,165,154,0.25), 0 0 30px rgba(212,165,154,0.08);
            transform: translateY(-6px);
        }
        .finder-card:active { transform: translateY(-2px); }
        .finder-icon {
            font-size: 32px;
            margin-bottom: 8px;
            filter: grayscale(0.3);
        }
        .finder-card h3 {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white);
            margin: 10px 0 8px;
        }
        .finder-card p {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 0;
            flex: 1; /* pushes CTA to the bottom */
        }
        .finder-cta {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            transition: letter-spacing 0.25s ease, opacity 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 0 2px;
            border-bottom: 1px solid rgba(212,165,154,0.3);
            margin-top: 16px;
            flex-shrink: 0;
        }
        .finder-card:hover .finder-cta {
            letter-spacing: 0.26em;
            opacity: 1;
            border-bottom-color: var(--gold);
        }
        .finder-active-banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            border-radius: var(--radius-sm);
            padding: 12px 18px;
            margin-bottom: 24px;
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold);
        }
        .finder-clear-btn {
            background: none;
            border: 1px solid var(--gold-border);
            color: var(--gold);
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .finder-clear-btn:hover { background: var(--gold); color: #000; }

        /* ─── PRODUCT GRID ────────────────────────────────── */
        #shop-section { padding: 72px 0 88px; overflow: visible; }
        #shop-section .section-title {
            margin-bottom: 40px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border);
        }
        .section-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 40px;
            gap: 12px;
        }
        .section-eyebrow {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.65);
            margin-bottom: 8px;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--white);
        }
        .filter-tabs {
            display: none;
        }
        .filter-tab {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            padding: 7px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: var(--bg-2);
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.2s;
        }
        .filter-tab.active, .filter-tab:hover {
            background: var(--white);
            color: #000;
            border-color: var(--white);
        }

        /* Product grid */
        .products-carousel {
            position: relative;
            padding: 0 52px;
        }
        .products-grid {
            display: flex;
            gap: 16px;
            padding-bottom: 16px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        /* Homepage Best Sellers showcase — static grid, no scroll-carousel needed for 6 items */
        .showcase-header-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border);
        }
        .showcase-shop-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: 1px solid var(--gold-border);
            color: var(--gold);
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 12px 20px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s;
        }
        .showcase-shop-all-btn:hover {
            background: var(--gold);
            color: #000;
        }
        .showcase-shop-all-btn span { transition: transform 0.2s; }
        .showcase-shop-all-btn:hover span { transform: translateX(3px); }
        .showcase-mobile-cta { display: none; margin-top: 24px; }
        #shop-section .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            overflow-x: visible;
        }
        @media (max-width: 1100px) {
            #shop-section .products-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 900px) {
            .showcase-header-row { flex-direction: column; align-items: flex-start; }
            .showcase-header-row .showcase-shop-all-btn { display: none; }
            .showcase-mobile-cta { display: block; }
            .showcase-mobile-cta .showcase-shop-all-btn { width: 100%; justify-content: center; }
            #shop-section .products-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            #shop-section .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
        }
        .products-grid::-webkit-scrollbar { display: none; }
        .products-grid .product-card {
            flex: 0 0 calc((100% - 4 * 16px) / 5);
            scroll-snap-align: start;
        }
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(calc(-50% - 8px)); /* offset for padding-bottom */
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(6,9,18,0.85);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid var(--border-light);
            color: var(--white);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
            flex-shrink: 0;
        }
        .carousel-arrow:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(6,9,18,0.98);
            transform: translateY(calc(-50% - 8px)) scale(1.08);
        }
        .carousel-prev { left: 0; }
        .carousel-next { right: 0; }
        @media (max-width: 700px) {
            .products-carousel { padding: 0; }
            .carousel-arrow { display: none; }
        }

        /* ─── STICKY MOBILE ADD-TO-CART BAR ─────────────────── */
        .pdp-sticky-bar {
            display: none;
        }
        @media (max-width: 760px) {
            .pdp-sticky-bar {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 14px;
                position: fixed;
                left: 0; right: 0; bottom: 0;
                z-index: 290;
                padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
                background: rgba(6,9,18,0.97);
                border-top: 1px solid var(--border-light);
                box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
            }
            .pdp-sticky-info { min-width: 0; }
            .pdp-sticky-name {
                font-family: var(--font-display);
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                color: var(--text-muted);
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .pdp-sticky-price {
                font-family: var(--font-display);
                font-size: 18px;
                font-weight: 800;
                color: var(--gold);
            }
            .pdp-sticky-btn {
                flex-shrink: 0;
                padding: 12px 24px;
                font-size: 12px;
            }
            /* Keep page content clear of the fixed bar */
            #page-product { padding-bottom: 76px; }
        }

        .empty-grid-msg {
            flex: 1 1 100%;
            text-align: center;
            padding: 48px 0;
            font-family: var(--font-display);
            font-size: 14px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            border: 1px dashed var(--border);
            border-radius: var(--radius-sm);
        }
        .product-card {
            background: var(--bg-1);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 12px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.3s ease;
            position: relative;
        }
        /* Soft ambient glow on hover — subtler than the original shimmer sweep */
        .product-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 100%, rgba(212,165,154,0.08) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
            border-radius: inherit;
        }
        .product-card:hover {
            transform: translateY(-6px);
        }
        .product-card:hover::after {
            opacity: 1;
        }
        .product-card-badge {
            position: absolute;
            top: 10px; left: 10px;
            font-family: var(--font-display);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 3px 7px;
            border-radius: var(--radius-sm);
            z-index: 2;
        }
        .badge-popular { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid var(--border-light); }
        .badge-bestseller { background: var(--gold); color: #000; border: 1px solid var(--gold); }
        .badge-new { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid var(--border-light); }

        .product-image-area {
            height: 140px;
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            position: relative;
            overflow: hidden;
        }
        .product-photo {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.4s ease;
        }
        .product-card:hover .product-photo {
            transform: scale(1.04);
        }
        .product-image-area::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 30%, rgba(212,165,154,0.06) 0%, transparent 70%);
            transition: background 0.3s ease;
        }
        .product-card:hover .product-image-area::after {
            background: radial-gradient(circle at 50% 30%, rgba(212,165,154,0.2) 0%, transparent 70%);
        }
        .product-card:hover .product-image-area {
            border-color: rgba(212,165,154,0.25);
        }
        .vial-icon {
            font-size: 36px;
            margin-bottom: 6px;
            filter: grayscale(0.3);
        }
        .purity-label {
            position: absolute;
            bottom: 10px;
            left: 10px;
            z-index: 2;
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: var(--gold);
            text-transform: uppercase;
            background: rgba(15,22,38,0.85);
            border: 1px solid var(--gold-border);
            padding: 4px 10px;
            border-radius: 100px;
        }
        .purity-label::before {
            content: '✓ ';
        }
        .wishlist-heart-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 3;
            width: 28px; height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15,22,38,0.75);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            color: var(--white);
            cursor: pointer;
            transition: transform 0.15s ease, color 0.2s ease, background 0.2s ease;
        }
        .wishlist-heart-btn svg { width: 14px; height: 14px; }
        .wishlist-heart-btn:hover { transform: scale(1.1); background: rgba(15,22,38,0.9); }
        .wishlist-heart-btn.active { color: var(--gold); }

        .product-name {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.07em;
            color: var(--white);
            transition: color 0.2s;
            margin-bottom: 2px;
        }
        .product-card:hover .product-name { color: var(--white); }
        .product-card:hover .product-price { color: var(--white); }
        .product-dosage {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.13em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-bottom: 2px;
        }
        .product-price {
            font-family: var(--font-display);
            font-size: 17px;
            font-weight: 700;
            color: var(--white);
            margin-top: 12px;
            margin-bottom: 2px;
            letter-spacing: 0.02em;
        }
        .product-bulk-hint {
            font-size: 10.5px;
            font-weight: 500;
            color: var(--gold);
            margin-bottom: 10px;
        }
        .product-price-range {
            font-size: 13px;
            color: rgba(255,255,255,0.45);
            font-weight: 400;
            margin-left: 2px;
        }
        .product-blend-tag {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--gold);
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            padding: 2px 7px;
            border-radius: var(--radius-sm);
            margin-bottom: 4px;
        }
        .add-to-cart-btn {
            width: 100%;
            background: var(--gold);
            color: #000;
            border: 2px solid var(--gold);
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 14px;
            cursor: pointer;
            border-radius: var(--radius-sm);
            transition: all 0.2s;
        }
        .add-to-cart-btn:hover {
            filter: brightness(1.06);
            transform: translateY(-1px);
        }
        .add-to-cart-btn.added {
            background: var(--gold);
            color: #000;
            border-color: var(--gold);
        }

        /* ─── STACK & SAVE BUNDLES ─────────────────────────── */
        .bundles-header {
            margin-top: 56px;
            padding-top: 40px;
            border-top: 1px solid var(--border);
            text-align: center;
        }
        .bundles-header .section-eyebrow,
        .bundles-header .section-title {
            text-align: center;
        }
        .bundles-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 32px;
        }
        .bundle-card {
            background: var(--bg-1);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 24px;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .bundle-card:hover {
            border-color: rgba(212,165,154,0.6);
            box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,165,154,0.25), 0 0 30px rgba(212,165,154,0.08);
            transform: translateY(-6px);
        }
        .bundle-images {
            display: flex;
            gap: 2px;
            height: 180px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            margin-bottom: 18px;
            border: 1px solid var(--border);
            background: var(--bg-2);
        }
        .bundle-images .bundle-photo {
            flex: 1;
            width: 50%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.4s ease;
        }
        .bundle-card:hover .bundle-photo { transform: scale(1.04); }
        .bundle-images .bundle-icon {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            filter: grayscale(0.3);
        }
        .bundle-card-badge {
            position: absolute;
            top: 36px; right: 36px;
            background: var(--gold);
            color: #000;
            font-family: var(--font-display);
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            z-index: 2;
        }
        .bundle-name {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 6px;
        }
        .bundle-desc {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 16px;
            flex: 1;
        }
        .bundle-pricing {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .bundle-price {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
        }
        .bundle-was {
            font-family: var(--font-display);
            font-size: 13px;
            color: rgba(255,255,255,0.3);
            text-decoration: line-through;
        }
        .bundle-save-label {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #4ecb71;
            width: 100%;
        }

        /* ─── MG SIZE PILLS ─────────────────────────────────── */
        #size-selector {
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
        }
        #size-selector::before {
            content: 'Select Size';
            display: block;
            width: 100%;
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .mg-pill {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            min-width: 88px;
            padding: 10px 22px;
            background: var(--bg-2);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            cursor: pointer;
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.65);
            transition: border-color 0.22s, background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s;
        }
        /* 30mg first pill — visually larger/more prominent */
        .mg-pill:first-child {
            border-color: rgba(212,165,154,0.45);
            color: var(--white);
        }
        .mg-pill:hover {
            border-color: rgba(212,165,154,0.55);
            color: var(--white);
            transform: translateY(-1px);
        }
        .mg-pill-selected {
            border-color: var(--gold) !important;
            background: #1a1200 !important;
            color: var(--white) !important;
            box-shadow: 0 0 0 1px rgba(212,165,154,0.3), 0 4px 16px rgba(212,165,154,0.12) !important;
        }
        .mg-pill-badge {
            font-size: 7px;
            font-weight: 700;
            letter-spacing: 0.12em;
            background: var(--gold-dim);
            color: var(--gold);
            border: 1px solid var(--gold-border);
            padding: 1px 6px;
            border-radius: var(--radius-sm);
        }

        /* ─── BLEND COMPONENT TAGS ──────────────────────────── */
        .pdp-blend-info {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }
        .pdp-blend-label {
            font-family: var(--font-display);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        .pdp-blend-tag {
            font-family: var(--font-display);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            background: rgba(212,165,154,0.08);
            color: var(--gold);
            border: 1px solid var(--gold-border);
        }

        /* ─── BULK TIER PRICING CARDS ─────────────────────── */
        .tier-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 24px;
            margin-top: 6px;
        }

        /* ── Base card — unselected ── */
        .tier-card {
            background: var(--bg-2);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 24px 16px 20px;
            cursor: pointer;
            transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.2s;
            position: relative;
            text-align: center;
            user-select: none;
            opacity: 0.72;
        }
        .tier-card:hover {
            opacity: 1;
            border-color: var(--border-light);
            transform: translateY(-2px);
        }

        /* ── 1 Vial — selected: cool steel, neutral "standard" feel ── */
        .tier-card[data-qty="1"].selected {
            background: #1a1a1e;
            border-color: rgba(255,255,255,0.55);
            box-shadow: 0 0 0 1px rgba(255,255,255,0.18), 0 4px 16px rgba(0,0,0,0.4);
            opacity: 1;
        }

        /* ── 3 Vials — selected: warm amber, clearly better than 1 ── */
        .tier-card[data-qty="3"].selected {
            background: #201700;
            border-color: rgba(212,165,154,0.75);
            box-shadow: 0 0 0 1px rgba(212,165,154,0.35), 0 8px 28px rgba(212,165,154,0.18);
            opacity: 1;
        }

        /* ── 5 Vials — selected: rich gold, the obvious winner ── */
        .tier-card[data-qty="5"].selected {
            background: #332000;
            border-color: var(--gold);
            border-width: 2.5px;
            box-shadow: 0 0 0 2px rgba(212,165,154,0.45), 0 12px 40px rgba(212,165,154,0.3), inset 0 1px 0 rgba(212,165,154,0.25);
            opacity: 1;
        }

        /* Unselected hover accent per tier */
        .tier-card[data-qty="3"]:hover { border-color: rgba(212,165,154,0.35); }
        .tier-card[data-qty="5"]:hover { border-color: rgba(212,165,154,0.55); background: #1a130f; }

        .tier-card-flag {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: #000;
            font-family: var(--font-display);
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 100px;
            white-space: nowrap;
        }
        /* Best Value flag is brighter */
        .tier-card[data-qty="5"] .tier-card-flag {
            background: #f0c9bc;
            box-shadow: 0 2px 12px rgba(212,165,154,0.5);
        }

        .tier-card-qty {
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--white);
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        .tier-card-price {
            font-family: var(--font-display);
            font-size: 26px;
            font-weight: 800;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 4px;
        }
        .tier-card-was {
            font-family: var(--font-display);
            font-size: 11px;
            color: rgba(255,255,255,0.3);
            text-decoration: line-through;
            margin-bottom: 4px;
            letter-spacing: 0.06em;
        }
        .tier-card-savings {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #4ecb71;
            margin-bottom: 6px;
        }
        /* 5-vial savings is bigger/brighter */
        .tier-card[data-qty="5"] .tier-card-savings {
            font-size: 12px;
            color: #5ddf80;
        }
        .tier-card-per {
            font-family: var(--font-display);
            font-size: 10px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-dim);
        }
        /* Selected state text upgrades */
        .tier-card[data-qty="1"].selected .tier-card-qty { color: rgba(255,255,255,0.9); }
        .tier-card[data-qty="3"].selected .tier-card-qty,
        .tier-card[data-qty="3"].selected .tier-card-per { color: var(--gold); }
        .tier-card[data-qty="5"].selected .tier-card-qty,
        .tier-card[data-qty="5"].selected .tier-card-per { color: var(--gold); }
        .tier-card[data-qty="5"].selected .tier-card-price { color: #f0c9bc; }

        /* ─── CLINICAL INFO TABS ───────────────────────────── */
        .clinical-tabs {
            margin-top: 48px;
            border-top: 1px solid var(--border);
        }
        .tab-nav {
            display: flex;
            gap: 0;
            border-bottom: 1px solid var(--border);
            overflow-x: auto;
            scrollbar-width: none;
        }
        .tab-nav::-webkit-scrollbar { display: none; }
        .tab-btn {
            background: none;
            border: none;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-dim);
            padding: 16px 24px;
            cursor: pointer;
            white-space: nowrap;
            transition: color 0.2s, border-color 0.2s;
        }
        .tab-btn:hover { color: var(--text-muted); }
        .tab-btn.active {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }
        .tab-panel { display: none; padding: 32px 0; }
        .tab-panel.active { display: block; }
        .clinical-data-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            overflow: hidden;
        }
        .clinical-row {
            display: contents;
        }
        .clinical-cell {
            padding: 13px 18px;
            border-bottom: 1px solid var(--border);
            border-right: 1px solid var(--border);
        }
        .clinical-cell:nth-child(even) { border-right: none; }
        .clinical-cell:nth-last-child(-n+2) { border-bottom: none; }
        .clinical-label {
            font-family: var(--font-display);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 4px;
        }
        .clinical-value {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 0.04em;
        }
        .tab-text-block {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.85;
            max-width: 680px;
        }
        .tab-text-block p + p { margin-top: 14px; }
        .coa-included-note {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            padding: 14px 18px;
            background: var(--bg-2);
            border: 1px solid var(--gold-border);
            border-left: 3px solid var(--gold);
            border-radius: var(--radius-sm);
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold);
        }
        .coa-included-icon { font-size: 18px; line-height: 1; flex-shrink: 0; }
        .coa-download-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            padding: 14px 18px;
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
        }
        .coa-download-row span {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-muted);
            flex: 1;
        }
        .coa-download-btn {
            background: none;
            border: 1px solid var(--border-light);
            color: var(--gold);
            font-family: var(--font-display);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 8px 16px;
            cursor: pointer;
            border-radius: var(--radius-sm);
            transition: all 0.2s;
            white-space: nowrap;
        }
        .coa-download-btn:hover { background: var(--gold-dim); border-color: var(--gold); }

        /* ─── HPLC TRUST BADGE (adjacent to Add to Cart) ─── */
        .hplc-trust-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--bg-2);
            border: 1px solid var(--gold-border);
            border-left: 3px solid var(--gold);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            margin-bottom: 16px;
        }
        .hplc-badge-icon {
            font-size: 22px;
            flex-shrink: 0;
            line-height: 1;
        }
        .hplc-badge-text {
            flex: 1;
        }
        .hplc-badge-title {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 3px;
        }
        .hplc-badge-sub {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }
        .hplc-badge-pill {
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            color: var(--gold);
            font-family: var(--font-display);
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            padding: 5px 10px;
            border-radius: var(--radius-sm);
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* ─── CART DRAWER TRUST STRIP ──────────────────────── */
        .cart-trust-strip {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 12px 0 16px;
            border-top: 1px solid var(--border);
            margin-top: 4px;
        }
        .cart-trust-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-family: var(--font-display);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-dim);
        }
        .cart-trust-item span { color: var(--gold); }

        /* ─── WHY SECTION ─────────────────────────────────── */
        #why-section {
            border-top: 1px solid var(--border);
            background: var(--bg-1);
            padding: 72px 0;
        }
        .why-grid {
            display: grid;
            grid-template-columns: 220px 1fr;
            gap: 56px;
            align-items: center;
        }
        .why-visual {
            height: 220px;
            background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 24px;
            position: relative;
            overflow: hidden;
        }
        .why-visual::before {
            content: 'PURITY';
            position: absolute;
            font-family: var(--font-display);
            font-size: 60px;
            font-weight: 800;
            color: rgba(255,255,255,0.02);
            letter-spacing: 0.1em;
            pointer-events: none;
        }
        .why-stat {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 800;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 6px;
        }
        .why-stat-label {
            font-family: var(--font-display);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        .why-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 32px;
            margin-top: 20px;
        }
        .why-feature {
            border-left: 2px solid var(--gold-border);
            padding: 8px 0 8px 14px;
            transition: border-color 0.2s;
        }
        .why-feature:hover {
            border-left-color: var(--gold);
        }
        .why-feature h4 {
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 4px;
        }
        .why-feature p {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.75;
        }

        /* ─── EDITORIAL STATEMENT ──────────────────────────── */
        #editorial-section {
            border-top: 1px solid var(--border);
            padding: 110px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        #editorial-section::before {
            content: '★';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 480px;
            color: rgba(255,255,255,0.015);
            pointer-events: none;
            user-select: none;
            line-height: 1;
        }
        .editorial-content {
            max-width: 720px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .editorial-statement {
            font-family: var(--font-display);
            font-size: clamp(26px, 3.6vw, 44px);
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: 0.01em;
            text-transform: uppercase;
            color: var(--white);
            margin: 22px 0 30px;
        }
        .editorial-body {
            font-size: 15px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.9;
            max-width: 520px;
            margin: 0 auto;
        }
        @media (max-width: 600px) {
            #editorial-section { padding: 72px 0; }
            #editorial-section::before { font-size: 280px; }
        }

        /* ─── COMPLIANCE SECTION ──────────────────────────── */
        #compliance-section {
            border-top: 1px solid var(--border);
            padding: 64px 0;
        }
        .compliance-heading-block {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-bottom: 40px;
        }
        .compliance-heading-block .section-eyebrow,
        .compliance-heading-block .section-title {
            text-align: center;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        .compliance-heading-block .section-title {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        .compliance-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border-top: 1px solid var(--border);
            padding-top: 40px;
            margin-top: 8px;
        }
        .compliance-col {
            padding: 0 48px 0 0;
        }
        .compliance-col:not(:first-child) {
            padding: 0 48px;
            border-left: 1px solid var(--border);
        }
        .compliance-col:last-child { padding-right: 0; }
        .compliance-num {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
        }
        .compliance-col p {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.85;
        }

        /* ─── TRUST ROW ───────────────────────────────────── */
        #trust-row {
            border-top: 1px solid var(--border);
            background: var(--bg);
            padding: 48px 0;
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        .trust-block {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .trust-icon {
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .trust-block h5 {
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 4px;
        }
        .trust-block p {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }

        /* ─── FOOTER ──────────────────────────────────────── */
        #site-footer {
            border-top: 1px solid var(--border);
            background: var(--bg);
            padding: 64px 0 0;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 64px;
            padding-bottom: 52px;
            margin-bottom: 0;
            border-bottom: 1px solid var(--border);
            align-items: start;
        }
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .footer-logo { cursor: pointer; display: inline-flex; align-items: center; gap: 12px; margin-bottom: 4px; }
        .footer-brand .logo-text {
            font-size: 18px;
            letter-spacing: 0.1em;
        }
        .footer-brand p {
            font-size: 13px;
            color: rgba(255,255,255,0.72);
            font-weight: 400;
            line-height: 1.9;
            margin-top: 16px;
            max-width: 280px;
        }
        .footer-col {
            display: flex;
            flex-direction: column;
        }
        .footer-col h6 {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }
        .footer-col button {
            display: block;
            background: none;
            border: none;
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255,255,255,0.72);
            text-decoration: none;
            padding: 6px 0;
            font-weight: 400;
            transition: color 0.2s;
            cursor: pointer;
            text-align: left;
            line-height: 1.4;
        }
        .footer-col button:hover { color: var(--gold); }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
        }
        .footer-bottom p {
            font-family: var(--font-display);
            font-size: 10px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.55);
        }
        .social-links { display: flex; gap: 10px; align-items: center; }
        .social-btn {
            width: 32px; height: 32px;
            border: 1px solid var(--border);
            border-radius: 50%;
            background: var(--bg-1);
            display: flex; align-items: center; justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.2s;
        }
        .social-btn:hover { border-color: var(--gold); color: var(--gold); }
        .social-btn svg { width: 13px; height: 13px; }

        /* ─── CART DRAWER ─────────────────────────────────── */
        #cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 350;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        #cart-overlay.open { opacity: 1; pointer-events: auto; }
        #cart-drawer {
            position: fixed;
            top: 0; right: 0;
            width: 420px;
            max-width: 100vw;
            height: 100vh;
            background: var(--bg-1);
            border-left: 1px solid var(--border);
            z-index: 351;
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }
        #cart-drawer.open { transform: translateX(0); }
        #wishlist-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 350;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        #wishlist-overlay.open { opacity: 1; pointer-events: auto; }
        #wishlist-drawer {
            position: fixed;
            top: 0; right: 0;
            width: 420px;
            max-width: 100vw;
            height: 100vh;
            background: var(--bg-1);
            border-left: 1px solid var(--border);
            z-index: 351;
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }
        #wishlist-drawer.open { transform: translateX(0); }
        .cart-drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 28px;
            border-bottom: 1px solid var(--border);
        }
        .cart-drawer-header h3 {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }
        .cart-close {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 4px;
            transition: color 0.2s;
            font-size: 20px;
        }
        .cart-close:hover { color: var(--white); }
        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px 28px;
        }
        .cart-empty {
            text-align: center;
            padding: 60px 0;
            color: var(--text-muted);
        }
        .cart-empty p { font-size: 13px; font-weight: 300; }
        .cart-empty-icon { font-size: 40px; margin-bottom: 14px; }
        .cart-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }
        .cart-item-img {
            width: 60px; height: 60px;
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            display: flex; align-items: center; justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
        }
        .cart-item-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        .order-item-img {
            width: 44px; height: 44px;
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
        }
        .cart-item-info { flex: 1; }
        .cart-item-name {
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: var(--white);
            margin-bottom: 3px;
        }
        .cart-item-sub {
            font-family: var(--font-display);
            font-size: 9px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .qty-controls {
            display: flex;
            align-items: center;
            gap: 0;
        }
        .qty-btn {
            width: 32px; height: 32px;
            background: var(--bg-2);
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 16px;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.15s;
            border-radius: var(--radius-sm);
        }
        .qty-btn:hover { border-color: var(--gold); color: var(--gold); }
        .qty-display {
            width: 40px; height: 32px;
            background: var(--bg-3);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 600;
            color: var(--white);
        }
        .cart-item-price {
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            white-space: nowrap;
        }
        .cart-remove {
            background: none;
            border: none;
            color: var(--text-dim);
            cursor: pointer;
            font-size: 11px;
            font-family: var(--font-display);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-top: 6px;
            padding: 0;
            transition: color 0.2s;
            display: block;
        }
        .cart-remove:hover { color: #c0392b; }

        /* Recommended additions inside cart drawer */
        .cart-recommended {
            margin-top: 20px;
            padding: 16px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.02);
        }
        .cart-recommended-title {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .cart-recommended-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .cart-rec-card {
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .cart-rec-card:hover {
            border-color: rgba(212,165,154,0.4);
            transform: translateY(-2px);
        }
        .cart-rec-img {
            width: 100%;
            height: 64px;
            background: var(--bg-3);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            display: flex; align-items: center; justify-content: center;
            font-size: 22px;
            overflow: hidden;
            position: relative;
        }
        .cart-rec-name {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: var(--white);
            line-height: 1.3;
        }
        .cart-rec-price {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            color: var(--gold);
            margin-top: 2px;
        }
        .cart-rec-add {
            width: 100%;
            background: none;
            border: 1px solid var(--border-light);
            color: var(--text-muted);
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 7px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
        }
        .cart-rec-add:hover { border-color: var(--gold); color: var(--gold); }
        .cart-rec-add.added { background: var(--gold); border-color: var(--gold); color: #000; }
        .cart-footer {
            padding: 20px 28px 28px;
            border-top: 1px solid var(--border);
        }
                .cart-added-banner {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--gold-dim);
            border-bottom: 1px solid var(--gold-border);
            padding: 12px 28px;
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold);
        }
        .cart-order-summary {
            margin-bottom: 4px;
        }
        .cart-order-summary .order-line {
            font-size: 11px;
            font-family: var(--font-display);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .cart-order-summary .order-line.total {
            font-size: 17px;
            letter-spacing: 0.02em;
        }
        .cart-shipping-note {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 300;
            margin-bottom: 18px;
        }
        .shipping-progress-track {
            display: block; margin-top: 8px; height: 3px;
            background: var(--bg-2); border-radius: var(--radius-sm); overflow: hidden;
        }
        .shipping-progress-fill {
            display: block; height: 100%;
            background: linear-gradient(90deg, var(--gold-brand-dark), var(--gold-brand));
            border-radius: var(--radius-sm);
            transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .shipping-highlight { color: var(--gold); font-weight: 500; }

        /* ─── PRODUCT DETAIL PAGE ─────────────────────────── */
        #product-page { padding: 52px 0 80px; }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 40px;
        }
        .breadcrumb button, .breadcrumb a { background: none; border: none; font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; cursor: pointer; transition: color 0.2s; }
        .breadcrumb button:hover, .breadcrumb a:hover { color: var(--white); }
        .breadcrumb span { color: var(--text-dim); }
        .product-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: start;
        }
        .product-detail-image {
            aspect-ratio: 1;
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: sticky;
            top: 100px;
            overflow: hidden;
        }
        .product-detail-image.has-photo {
            aspect-ratio: 3 / 4;
            padding: 0;
            justify-content: flex-end;
        }
        .product-detail-photo {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .product-detail-image .purity-badge {
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
        }
        .product-detail-image.has-photo .purity-badge {
            background: rgba(15,22,38,0.88);
        }
        .product-detail-image .vial-icon-lg { font-size: 80px; }
        .product-detail-image .purity-badge {
            background: var(--gold-dim);
            border: 1px solid var(--gold-border);
            color: var(--gold);
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: var(--radius-sm);
        }
        .product-detail-name {
            font-family: var(--font-body);
            font-size: 44px;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: none;
            color: var(--white);
            line-height: 1.05;
            margin-bottom: 8px;
        }
        .product-detail-dosage {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        .product-detail-price {
            font-family: var(--font-body);
            font-size: 32px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 28px;
            transition: color 0.2s, text-shadow 0.2s;
        }
        .product-detail-price.price-updating {
            color: var(--gold);
            text-shadow: 0 0 18px rgba(212,165,154,0.35);
        }
        .product-detail-divider { height: 1px; background: var(--border); margin: 28px 0; }
        .product-detail-desc {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 28px;
        }
        .product-meta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 32px;
        }
        .meta-item {
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 18px 20px;
        }
        .meta-label {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 6px;
        }
        .meta-value {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.02em;
        }
        .qty-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }
        .qty-row label {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        .qty-controls-lg .qty-btn { width: 36px; height: 36px; font-size: 16px; }
        .qty-controls-lg .qty-display { width: 44px; height: 36px; font-size: 15px; }
        .research-disclaimer {
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
            margin-top: 20px;
        }
        .research-disclaimer p {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }
        .research-disclaimer strong { color: var(--text-muted); }

        /* ─── CHECKOUT PAGE ───────────────────────────────── */
        #checkout-page { padding: 52px 0 80px; min-height: 100vh; }
        .checkout-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 52px;
            align-items: start;
        }
        .checkout-form-title {
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 24px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border);
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
        .form-row.full { grid-template-columns: 1fr; }
        .form-group { display: flex; flex-direction: column; gap: 7px; }
        .form-group label {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        .form-group input, .form-group select {
            background: var(--bg-2);
            border: 1px solid var(--border);
            color: var(--text);
            font-family: var(--font-body);
            font-size: 13px;
            padding: 14px 16px;
            min-height: 48px;
            border-radius: var(--radius-sm);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            appearance: none;
        }
        .form-group input:focus, .form-group select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 2px var(--gold-border);
        }
        .form-group input::placeholder { color: var(--text-dim); }
        .form-section-gap { margin-top: 32px; }

        /* One-tap wallet payment buttons */
        .wallet-pay-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 16px;
        }
        .wallet-pay-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 48px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            font-family: var(--font-display);
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.01em;
            transition: opacity 0.2s, transform 0.15s;
        }
        .wallet-pay-btn:hover { opacity: 0.88; transform: translateY(-1px); }
        .wallet-pay-btn:active { transform: translateY(0); }
        .wallet-pay-apple { background: #000; color: #fff; }
        .wallet-pay-google {
            background: #fff;
            color: #1f1f1f;
            border: 1px solid var(--border);
        }
        .wallet-pay-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 18px 0 4px;
            color: var(--text-dim);
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .wallet-pay-divider::before,
        .wallet-pay-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .payment-methods {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 16px;
        }
        .payment-option {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
            cursor: pointer;
            transition: border-color 0.2s;
        }
        .payment-option.selected { border-color: var(--border-light); }
        .payment-option input[type="radio"] { accent-color: var(--gold); width: 15px; height: 15px; }
        .payment-option-label {
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--white);
        }
        .payment-option-sub {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 300;
        }
        .card-fields { display: none; padding: 16px 0 6px; }
        .card-fields.visible { display: block; }
        .temp-checkout-notice {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px 18px;
            border: 1px solid var(--gold-border, rgba(212,165,154,0.3));
            border-radius: var(--radius-sm);
            background: rgba(212,165,154,0.06);
            margin-bottom: 4px;
        }
        .temp-checkout-notice-icon { font-size: 18px; line-height: 1.2; flex-shrink: 0; }
        .temp-checkout-notice-title {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
        }
        .temp-checkout-notice-body {
            font-size: 12px;
            line-height: 1.6;
            color: var(--text-muted);
        }
        .secure-note {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 300;
        }
        /* Trust strip co-located with the Place Order button */
        .checkout-trust-strip {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 18px;
            padding: 14px 0;
            margin-bottom: 16px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .checkout-trust-item {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            white-space: nowrap;
        }
        .checkout-trust-item svg { color: var(--gold); flex-shrink: 0; }
        /* Order summary sidebar */
        .order-summary {
            background: var(--bg-1);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 28px;
            position: sticky;
            top: 100px;
        }
        .order-summary-title {
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border);
        }
        .order-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 10px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .order-item-info { flex: 1; }
        .order-item-name {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0;
            color: var(--white);
            margin-bottom: 2px;
        }
        .order-item-meta {
            font-family: var(--font-body);
            font-size: 11.5px;
            letter-spacing: 0;
            text-transform: none;
            color: var(--text-dim);
        }
        .order-item-price {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
        }
        .order-totals { padding-top: 16px; }
        .order-line {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 300;
        }
        .order-line.total {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
            padding-top: 12px;
            border-top: 1px solid var(--border);
            margin-top: 4px;
        }
        .order-line.free { color: var(--gold); }
        .promo-input-row {
            display: flex;
            gap: 8px;
            margin-top: 18px;
        }
        .promo-input-row input {
            flex: 1;
            background: var(--bg-2);
            border: 1px solid var(--border);
            color: var(--text);
            font-family: var(--font-body);
            font-size: 12px;
            padding: 9px 12px;
            border-radius: var(--radius-sm);
            outline: none;
        }
        .promo-input-row input::placeholder { color: var(--text-dim); }
        .promo-apply-btn {
            background: var(--bg-2);
            border: 1px solid var(--border);
            color: var(--text-muted);
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 9px 16px;
            cursor: pointer;
            border-radius: var(--radius-sm);
            transition: all 0.2s;
        }
        .promo-apply-btn:hover { border-color: var(--white); color: var(--white); }

        /* ─── SUCCESS PAGE ────────────────────────────────── */
        #success-page { padding: 80px 0; text-align: center; }
        .success-icon { font-size: 64px; margin-bottom: 24px; }
        .success-title {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 14px;
        }
        .success-order-num {
            font-family: var(--font-display);
            font-size: 12px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 24px;
        }
        .success-body {
            font-size: 15px;
            color: var(--text-muted);
            font-weight: 300;
            max-width: 480px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        /* ─── SHOP PAGE ────────────────────────────────────── */
        #shop-page-main {
            padding: 64px 0 96px;
        }
        .shop-page-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .shop-page-subtitle {
            max-width: 560px;
            margin: 16px auto 0;
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.85;
        }

        /* Recently Viewed rail */
        .recently-viewed {
            margin: 0 0 28px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border);
        }
        .recently-viewed-label {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
        }
        .recently-viewed-track {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .recently-viewed-track::-webkit-scrollbar { display: none; }
        .rv-card {
            flex: 0 0 200px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-1);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 10px;
            cursor: pointer;
            transition: border-color 0.2s, transform 0.2s;
        }
        .rv-card:hover {
            border-color: rgba(212,165,154,0.4);
            transform: translateY(-2px);
        }
        .rv-thumb {
            width: 40px; height: 40px;
            flex-shrink: 0;
            border-radius: var(--radius-sm);
            background: var(--bg-2);
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            overflow: hidden;
        }
        .rv-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .rv-info { min-width: 0; flex: 1; }
        .rv-name {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0;
            color: var(--white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rv-price {
            font-family: var(--font-body);
            font-size: 12px;
            color: var(--gold);
            margin-top: 2px;
        }
        .rv-add-btn {
            flex-shrink: 0;
            width: 26px; height: 26px;
            border-radius: 50%;
            border: 1px solid var(--gold-border);
            background: none;
            color: var(--gold);
            font-size: 15px;
            line-height: 1;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
        }
        .rv-add-btn:hover { background: var(--gold); color: #000; }
        @media (max-width: 600px) {
            .rv-card { flex-basis: 78%; }
        }

        .shop-layout {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 40px;
            align-items: start;
        }
        .shop-sidebar {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 32px;
            padding: 24px;
            background: var(--bg-1);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
        }
        .shop-filter-block {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .shop-filter-label {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
        }
        .shop-search-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 10px 12px;
            color: var(--text-dim);
        }
        .shop-search-wrap input {
            flex: 1;
            background: none;
            border: none;
            outline: none;
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 300;
        }
        .shop-search-wrap input::placeholder { color: var(--text-dim); }
        .shop-filter-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .shop-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 300;
            color: var(--text-muted);
            cursor: pointer;
            user-select: none;
            transition: color 0.2s;
        }
        .shop-checkbox:hover { color: var(--white); }
        .shop-checkbox input[type="checkbox"],
        .shop-checkbox input[type="radio"] {
            width: 15px;
            height: 15px;
            accent-color: var(--gold);
            cursor: pointer;
            flex-shrink: 0;
        }
        .shop-clear-btn {
            background: none;
            border: 1px solid var(--border);
            color: var(--text-muted);
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 10px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
        }
        .shop-clear-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .shop-results-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }
        .shop-results-count {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
        }
        .shop-sort-wrap select {
            background: var(--bg-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-opacity='0.6' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            border: 1px solid var(--border);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 300;
            padding: 8px 34px 8px 14px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            outline: none;
        }
        .shop-page-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media (max-width: 1000px) {
            .shop-layout { grid-template-columns: 1fr; }
            .shop-sidebar {
                position: static;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 24px;
            }
            .shop-filter-block { flex: 1 1 200px; }
            .shop-page-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .shop-page-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .shop-sidebar { flex-direction: column; }
            .shop-results-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
        }

        /* ─── FAQ ACCORDION ─────────────────────────────────── */
        .faq-list { max-width: 720px; margin: 0 auto; }
        .faq-section-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin: 40px 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
        .faq-section-label:first-child { margin-top: 0; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; padding: 18px 0; text-align: left; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--white); cursor: pointer; transition: color 0.2s; }
        .faq-q:hover { color: var(--gold); }
        .faq-chevron { flex-shrink: 0; color: var(--text-dim); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
        .faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--gold); }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.2s ease; font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--text-muted); padding: 0; }
        .faq-a.open { max-height: 600px; padding-bottom: 20px; }
        .faq-a a { color: var(--gold); }

        /* ─── ABOUT PAGE ───────────────────────────────────── */
        #about-page {
            padding: 80px 0 100px;
            max-width: 880px;
            margin: 0 auto;
        }
        .about-header {
            text-align: center;
            margin-bottom: 64px;
            padding: 0 16px;
        }
        .about-intro {
            max-width: 600px;
            margin: 24px auto 0;
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.9;
        }

        /* Three pillars */
        .about-pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 64px;
        }
        .about-pillar {
            background: var(--bg-1);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 32px 28px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .about-pillar:hover {
            border-color: rgba(212,165,154,0.4);
            box-shadow: 0 12px 36px rgba(0,0,0,0.4);
        }
        .about-pillar-icon {
            font-size: 26px;
            margin-bottom: 16px;
            filter: grayscale(0.2);
        }
        .about-pillar h3 {
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 12px;
        }
        .about-pillar p {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.8;
        }

        /* Divider — full width within the 880px container, consistent rhythm */
        .about-divider {
            height: 1px;
            background: var(--border);
            margin: 64px 0;
        }

        /* Our Standard section */
        .about-standard {
            text-align: center;
            margin-bottom: 64px;
        }
        .about-standard-col {
            max-width: 640px;
            margin: 0 auto 32px;
        }
        .about-standard-label {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
        }
        .about-standard-heading {
            font-family: var(--font-display);
            font-size: clamp(22px, 2.8vw, 32px);
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--white);
            line-height: 1.25;
        }
        .about-standard-body {
            max-width: 640px;
            margin: 0 auto;
            text-align: left;
        }
        .about-standard-body p {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.9;
            margin-bottom: 22px;
        }
        .about-standard-body p:last-child { margin-bottom: 0; }

        /* Values grid — clean 2x2 with consistent internal padding on all four cells */
        .about-values {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            overflow: hidden;
            margin-bottom: 64px;
        }
        .about-value-item {
            background: var(--bg-1);
            padding: 32px;
        }
        .about-value-num {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.22em;
            color: var(--gold);
            opacity: 0.75;
            display: block;
            margin-bottom: 12px;
        }
        .about-value-item h4 {
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 10px;
        }
        .about-value-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.8;
        }

        /* CTA strip */
        .about-cta-strip {
            padding: 40px 48px;
            background: var(--bg-1);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }
        .about-cta-strip p {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.6;
        }

        @media (max-width: 900px) {
            #about-page { padding: 56px 0 72px; }
            .about-pillars { grid-template-columns: 1fr; }
            .about-standard-heading { font-size: 22px; }
            .about-values { grid-template-columns: 1fr; }
            .about-value-item { padding: 24px; }
            .about-cta-strip { flex-direction: column; text-align: center; }
        }

        /* ─── CONTACT PAGE ────────────────────────────────── */
        #contact-page { padding: 64px 0 100px; min-height: 70vh; background: var(--bg); }
        .contact-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 40px;
        }
        .contact-subtitle {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 300;
            max-width: 560px;
            margin: 16px auto 0;
            line-height: 1.8;
            text-align: center;
        }
        .contact-form-wrap {
            max-width: 560px;
            margin: 0 auto;
            background: var(--bg-1);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 32px;
        }
        .form-group textarea {
            background: var(--bg-2);
            border: 1px solid var(--border);
            color: var(--text);
            font-family: var(--font-body);
            font-size: 13px;
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            resize: vertical;
            min-height: 120px;
            line-height: 1.6;
        }
        .form-group textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 2px var(--gold-border);
        }
        .form-group textarea::placeholder { color: var(--text-dim); }
        .contact-form-status {
            margin-top: 14px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: #4ecb71;
            text-align: center;
            min-height: 16px;
        }

        /* ─── PRIVACY POLICY / LEGAL PAGE ─────────────────── */
        #privacy-page, #returns-page, #terms-page, #faq-page { padding: 64px 0 110px; min-height: 70vh; background: var(--bg); }
        .legal-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 16px;
        }
        .legal-updated {
            font-family: var(--font-display);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-top: 16px;
            text-align: center;
        }
        .legal-intro {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 300;
            max-width: 680px;
            margin: 20px auto 0;
            line-height: 1.85;
            text-align: center;
        }
        .legal-content {
            max-width: 760px;
            margin: 48px auto 0;
            background: var(--bg-1);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 40px 44px;
        }
        .legal-content h3 {
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            margin-top: 36px;
            margin-bottom: 12px;
        }
        .legal-content h3:first-child { margin-top: 0; }
        .legal-content p {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.85;
            margin-bottom: 14px;
        }
        .legal-content ul {
            margin: 0 0 14px 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .legal-content li {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }
        .legal-content li strong { color: var(--white); font-weight: 600; }
        .legal-content a { color: var(--gold); text-decoration: underline; }
        .legal-content a:hover { color: var(--white); }
        @media (max-width: 600px) {
            .legal-content { padding: 28px 22px; }
        }

        /* ─── MOBILE NAV OVERLAY ──────────────────────────── */
        #mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--bg);
            z-index: 340;
            padding: 136px 32px 40px;
            flex-direction: column;
            gap: 28px;
            overflow-y: auto;
        }
        #mobile-nav.open { display: flex; }
        #mobile-nav button {
            background: none;
            border: none;
            text-align: left;
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text);
            text-decoration: none;
            border-bottom: 1px solid var(--border);
            padding-bottom: 20px;
            cursor: pointer;
        }
        #mobile-nav .mobile-nav-close {
            position: absolute;
            top: 20px; right: 24px;
            background: none;
            border: none;
            border-bottom: none;
            padding: 8px;
            color: var(--text-muted);
            font-size: 32px;
            font-weight: 400;
            line-height: 1;
            text-transform: none;
            letter-spacing: normal;
            cursor: pointer;
        }
        #mobile-nav .mobile-nav-close:hover { color: var(--gold); }

        /* ─── TOAST NOTIFICATION ──────────────────────────── */
        #toast {
            position: fixed;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: var(--bg-2);
            border: 1px solid var(--border-light);
            color: var(--white);
            font-family: var(--font-display);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            z-index: 500;
            white-space: nowrap;
        }
        #toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
        #toast .toast-check { color: var(--gold); margin-right: 8px; }

        /* ─── RESPONSIVE ──────────────────────────────────── */
        @media (max-width: 1100px) {
            .products-grid .product-card { flex: 0 0 calc((100% - 2 * 16px) / 3); }
            .products-carousel { padding: 0 48px; }
            .finder-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
        }
        @media (max-width: 900px) {
            .main-nav { display: none; }
            .hamburger { display: flex; }
            #hero { grid-template-columns: 1fr; }
            .hero-panel { min-height: 300px; border-left: none; border-top: 1px solid var(--border); }
            .hero-content { padding: 60px 0 40px; }
            .finder-grid { grid-template-columns: 1fr; }
            .bundles-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr; gap: 28px; }
            .why-visual { height: 160px; }
            .compliance-grid { grid-template-columns: 1fr; }
            .compliance-col { padding: 20px 0 !important; border-left: none !important; border-bottom: 1px solid var(--border); }
            .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
            .checkout-grid { grid-template-columns: 1fr; }
            .product-detail-grid { grid-template-columns: 1fr; gap: 36px; }
            .product-detail-image { position: static; aspect-ratio: auto; min-height: 260px; }
        }
        @media (max-width: 600px) {
            .container { padding: 0 20px; }
            .products-grid { gap: 12px; }
            .products-grid .product-card { flex: 0 0 78%; }
            .trust-grid { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr; }
            .hero-cta-group { flex-direction: column; }
            .hero-headline { font-size: 38px; }
            .form-row { grid-template-columns: 1fr; }
            .product-meta { grid-template-columns: 1fr; }
            #cart-drawer, #wishlist-drawer { width: 100vw; }
            .tier-cards { grid-template-columns: 1fr; gap: 8px; }
            .tier-card-flag { font-size: 8px; }
            .clinical-data-grid { grid-template-columns: 1fr; }
            .clinical-cell { border-right: none !important; }
            .clinical-cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
            .clinical-cell:last-child { border-bottom: none; }
            .hplc-trust-badge { flex-wrap: wrap; gap: 10px; }
            .hplc-badge-pill { align-self: flex-start; }
            .cart-trust-strip { gap: 12px; flex-wrap: wrap; }

            /* ── MOBILE IMAGE CONTAINMENT ─────────────────────
               Prevents any image from overflowing its container
               on small viewports.                               */
            img {
                max-width: 100%;
                height: auto;
            }
            /* Product grid card thumbnails */
            .product-image-area {
                height: 120px;
                overflow: hidden;
            }
            .product-photo {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            /* PDP vertical photo */
            .product-detail-image {
                max-height: 340px;
                overflow: hidden;
            }
            .product-detail-photo {
                position: static !important;
                width: 100% !important;
                height: 100% !important;
                max-height: 340px;
                object-fit: cover;
                object-position: center;
                inset: unset !important;
            }
            /* Bundle card split images */
            .bundle-images {
                height: 140px;
                overflow: hidden;
            }
            .bundle-photo {
                width: 50%;
                height: 100%;
                object-fit: cover;
            }
            /* Cart drawer thumbnails */
            .cart-item-img,
            .order-item-img,
            .cart-rec-img {
                flex-shrink: 0;
                overflow: hidden;
            }
            .cart-item-photo {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            /* Search result thumbnails */
            .search-result-img {
                flex-shrink: 0;
                overflow: hidden;
            }
        }
        /* ─── AGE VERIFICATION GATE ──────────────────────────── */
        .age-gate {
            position: fixed;
            inset: 0;
            z-index: 9000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }
        .age-gate[aria-hidden="true"] {
            display: none;
        }
        .age-gate-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(2,4,10,0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .age-gate-modal {
            position: relative;
            z-index: 1;
            background: var(--bg-1);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            padding: 52px 48px 44px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            box-shadow:
                0 40px 80px rgba(0,0,0,0.8),
                0 0 0 1px rgba(212,165,154,0.12),
                0 0 60px rgba(212,165,154,0.04);
            animation: ageFadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
        }
        @keyframes ageFadeIn {
            from { opacity: 0; transform: translateY(20px) scale(0.97); }
            to   { opacity: 1; transform: translateY(0)   scale(1); }
        }
        .age-gate-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .age-gate-logo span {
            font-family: var(--font-logo);
            font-size: 17px;
            font-weight: 300;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--white);
        }
        .age-gate-logo em {
            font-style: normal;
            font-weight: 400;
            color: var(--gold-brand);
        }
        .age-gate-eyebrow {
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
        }
        .age-gate-title {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 14px;
            line-height: 1.2;
        }
        .age-gate-desc {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .age-gate-divider {
            width: 48px;
            height: 1px;
            background: var(--gold-border);
            margin: 28px auto;
        }
        .age-gate-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }
        .age-gate-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 24px;
            border-radius: var(--radius-sm);
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }
        .age-gate-confirm {
            background: var(--gold);
            color: #000;
        }
        .age-gate-confirm:hover {
            background: #e8c4b0;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(212,165,154,0.35);
        }
        .age-gate-deny {
            background: transparent;
            color: var(--text-muted);
            border: 1px solid var(--border);
        }
        .age-gate-deny:hover {
            border-color: var(--border-light);
            color: var(--white);
            background: rgba(255,255,255,0.04);
        }
        .age-gate-legal {
            font-size: 10px;
            color: rgba(255,255,255,0.35);
            line-height: 1.8;
            letter-spacing: 0.02em;
        }
        .age-gate-link {
            background: none;
            border: none;
            color: rgba(212,165,154,0.6);
            font-size: inherit;
            font-family: inherit;
            cursor: pointer;
            text-decoration: underline;
            text-underline-offset: 2px;
            padding: 0;
            transition: color 0.2s;
        }
        .age-gate-link:hover { color: var(--gold); }
        .age-blocked {
            position: fixed;
            inset: 0;
            z-index: 9001;
            background: var(--bg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            text-align: center;
            padding: 40px;
        }
        .age-blocked h2 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white);
        }
        .age-blocked p { font-size: 13px; color: var(--text-muted); }
        .age-gate-legal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9500;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }
        .age-gate-legal-overlay.visible { display: flex; }
        .age-gate-legal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(2,4,10,0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .age-gate-legal-panel {
            position: relative;
            z-index: 1;
            background: var(--bg-1);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            padding: 44px 32px 32px;
            max-width: 640px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 40px 80px rgba(0,0,0,0.8);
        }
        .age-gate-legal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1;
            cursor: pointer;
        }
        .age-gate-legal-close:hover { color: var(--white); border-color: var(--border-light); }
        .age-gate-legal-content { font-size: 13px; line-height: 1.7; color: var(--text-muted); }
        @media (max-width: 480px) {
            .age-gate-modal { padding: 36px 24px 32px; }
            .age-gate-title { font-size: 22px; }
        }

        /* ─── SCROLL FADE-UP ──────────────────────────────── */
        .fade-up {
            opacity: 0;
            transform: translateY(28px) translateZ(0);
            transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, transform;
            backface-visibility: hidden;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0) translateZ(0);
        }

        /* Staggered delay for product cards */
        .product-card.fade-up:nth-child(1) { transition-delay: 0.00s; }
        .product-card.fade-up:nth-child(2) { transition-delay: 0.07s; }
        .product-card.fade-up:nth-child(3) { transition-delay: 0.14s; }
        .product-card.fade-up:nth-child(4) { transition-delay: 0.21s; }
        .product-card.fade-up:nth-child(5) { transition-delay: 0.28s; }

        /* Why features stagger */
        .why-feature.fade-up:nth-child(1) { transition-delay: 0.05s; }
        .why-feature.fade-up:nth-child(2) { transition-delay: 0.13s; }
        .why-feature.fade-up:nth-child(3) { transition-delay: 0.21s; }
        .why-feature.fade-up:nth-child(4) { transition-delay: 0.29s; }

        /* Finder cards stagger */
        .finder-card.fade-up:nth-child(1) { transition-delay: 0.00s; }
        .finder-card.fade-up:nth-child(2) { transition-delay: 0.08s; }
        .finder-card.fade-up:nth-child(3) { transition-delay: 0.16s; }

        /* Bundle cards stagger */
        .bundle-card.fade-up:nth-child(1) { transition-delay: 0.00s; }
        .bundle-card.fade-up:nth-child(2) { transition-delay: 0.10s; }

        /* About page pillars and values stagger */
        .about-pillar.fade-up:nth-child(1) { transition-delay: 0.00s; }
        .about-pillar.fade-up:nth-child(2) { transition-delay: 0.08s; }
        .about-pillar.fade-up:nth-child(3) { transition-delay: 0.16s; }
        .about-value-item.fade-up:nth-child(1) { transition-delay: 0.00s; }
        .about-value-item.fade-up:nth-child(2) { transition-delay: 0.06s; }
        .about-value-item.fade-up:nth-child(3) { transition-delay: 0.12s; }
        .about-value-item.fade-up:nth-child(4) { transition-delay: 0.18s; }

        /* Compliance cols stagger */
        .compliance-col.fade-up:nth-child(1) { transition-delay: 0.05s; }
        .compliance-col.fade-up:nth-child(2) { transition-delay: 0.15s; }
        .compliance-col.fade-up:nth-child(3) { transition-delay: 0.25s; }

        /* ─── HERO REVEAL ─────────────────────────────────── */
        .hero-eyebrow {
            opacity: 0;
            transform: translateY(12px);
            animation: heroLineIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
        }
        .hero-headline {
            opacity: 0;
            transform: translateY(16px);
            animation: heroLineIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
        }
        .hero-body {
            opacity: 0;
            transform: translateY(12px);
            animation: heroLineIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
        }
        .hero-cta-group {
            opacity: 0;
            transform: translateY(10px);
            animation: heroLineIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
        }
        .hero-trust {
            opacity: 0;
            animation: heroLineIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
        }
        @keyframes heroLineIn {
            to { opacity: 1; transform: translateY(0); }
        }

        /* ─── ACCENT PARTICLE CANVAS ────────────────────────── */
        #hero-canvas {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            opacity: 0.55;
        }
        #hero { position: relative; }
        #hero .container { position: relative; z-index: 1; }

        /* ─── STAT COUNT-UP FLASH ─────────────────────────── */
        .why-stat {
            transition: color 0.3s;
        }
        .why-stat.counting {
            color: #fff;
        }

        /* ─── HEADER SCROLL SHRINK ────────────────────────── */
        #site-header {
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }
        #site-header.scrolled {
            background: rgba(3,5,12,0.97);
            box-shadow: 0 4px 32px rgba(0,0,0,0.6);
        }

        /* ══════════════════════════════════════════════════════════════
           PREMIUM GLASS REFRESH — nextsense.io-referenced pass
           Rounded bevels, frosted panels, smart warm/cool gradients.
           Placed last so it wins the cascade against the sharp-edged
           rules above without needing !important everywhere.
           ══════════════════════════════════════════════════════════════ */

        /* Ambient glow — one restrained warm tone near the top only,
           not a multi-hue mesh competing with the product colors. */
        body {
            background:
                radial-gradient(ellipse 1100px 600px at 50% -10%, rgba(212,165,95,0.07), transparent 65%),
                var(--bg);
            background-attachment: fixed;
        }

        /* Header: locked flush to the top, full width, frosted glass.
           (Earlier floating-inset-pill treatment detached it from the
           top edge and broke the sticky layout — reverted to flush.) */
        #site-header {
            background: rgba(6,9,18,0.72) !important;
            backdrop-filter: blur(var(--glass-blur)) !important;
            -webkit-backdrop-filter: blur(var(--glass-blur)) !important;
            border-bottom: 1px solid var(--glass-border) !important;
            padding: 0 !important;
        }
        #site-header.scrolled {
            background: rgba(8,11,20,0.9) !important;
            box-shadow: var(--glow-shadow-sm);
        }
        .header-inner {
            /* No max-width/margin/padding here — .header-inner already
               sits inside .container, which provides identical 32px
               inset + 1280px centering. Duplicating it here was
               doubling the header's inset to 64px, so its content
               (logo, nav, cart icon) didn't line up with every other
               page's content, which only goes through .container once. */
            height: 80px !important;
            background: none;
            border: none;
            border-radius: 0;
            box-shadow: none;
        }

        /* Nav links: back to the site's own type system — the earlier
           open/sentence-case swap made the header feel like a
           different site instead of matching the rest of the page. */
        .main-nav { gap: 32px; }

        /* Buttons: rounded, soft gradient sheen, bevel highlight */
        .btn-gold, .btn-primary, .btn-secondary,
        .promo-apply-btn, .add-to-cart-btn, #place-order-btn {
            border-radius: var(--radius-pill) !important;
            box-shadow: var(--inset-bevel);
        }
        .btn-gold {
            background: var(--gold) !important;
            border-color: transparent !important;
            box-shadow: var(--glow-shadow-sm), var(--inset-bevel);
            transition: box-shadow 0.25s ease, transform 0.15s ease, filter 0.2s ease;
        }
        .btn-gold:hover {
            background: var(--gold) !important;
            box-shadow: var(--glow-shadow), var(--inset-bevel);
            transform: translateY(-1px);
            filter: brightness(1.08);
        }
        .btn-secondary {
            background: var(--glass-bg) !important;
            border: 1px solid var(--glass-border) !important;
        }
        .btn-secondary:hover { background: var(--glass-bg-strong) !important; }

        /* Cards: product / finder / bundle / why-feature — translucent
           tint only, no backdrop-filter. These directly wrap body text
           (product name, price, etc.), and blur-behind-text combined
           with the hover transform was causing degraded/artifacted
           text rendering across the site. Tint gives the same glass
           read without the render cost. */
        .product-card, .finder-card, .bundle-card, .why-feature,
        .order-summary, #cart-drawer .cart-item {
            border-radius: var(--radius-lg) !important;
            background: var(--glass-bg-strong) !important;
            border: 1px solid var(--glass-border) !important;
            box-shadow: var(--inset-bevel);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }
        .product-card:hover, .finder-card:hover, .bundle-card:hover {
            border-color: var(--accent-border, var(--gold-border)) !important;
            box-shadow: var(--glow-shadow-sm), var(--inset-bevel);
            transform: translateY(-3px);
        }
        .product-image-area, .finder-icon, .vial-icon {
            border-radius: var(--radius-md) !important;
        }
        .product-card-badge { border-radius: var(--radius-pill) !important; }

        /* Product panel: tightened for a sleeker, less "bubbly" feel —
           smaller radius, less padding, restrained internal spacing */
        .product-card { padding: 16px !important; gap: 2px; }
        .product-image-area {
            height: 150px !important;
            background: var(--bg-2) !important;
            border: none !important;
            margin-bottom: 14px !important;
        }
        .product-card-badge {
            font-size: 9px !important;
            padding: 4px 9px !important;
            letter-spacing: 0.08em !important;
            font-weight: 600 !important;
        }
        .product-name {
            font-family: var(--font-body) !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
        }
        .product-dosage {
            font-family: var(--font-body) !important;
            font-size: 11.5px !important;
            font-weight: 400 !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
            color: var(--text-dim) !important;
        }
        .product-price {
            font-family: var(--font-body) !important;
            font-size: 17px !important;
            font-weight: 600 !important;
            letter-spacing: 0 !important;
        }
        .add-to-cart-btn {
            border-radius: var(--radius-pill) !important;
            background: var(--gold) !important;
            border-color: transparent !important;
            font-family: var(--font-body) !important;
            letter-spacing: 0.02em !important;
            text-transform: none !important;
            font-weight: 600 !important;
            box-shadow: var(--inset-bevel);
            margin-top: 10px;
        }

        /* Cart + wishlist drawers: rounded leading edge, frosted */
        #cart-drawer, #wishlist-drawer {
            border-radius: var(--radius-xl) 0 0 var(--radius-xl);
            background: rgba(8,11,20,0.82) !important;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-left: 1px solid var(--glass-border);
            box-shadow: -20px 0 60px rgba(0,0,0,0.5);
        }

        /* Cart drawer internals — this was never brought over to the
           open/sentence-case type system used on product cards, so it
           was the one place still running the old tight-condensed-caps
           treatment. Matched to the same system here. */
        .cart-drawer-header h3 {
            font-family: var(--font-body) !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
        }
        .cart-item {
            border-bottom: none !important;
            padding: 14px !important;
            margin-bottom: 10px;
        }
        .cart-item:last-child { margin-bottom: 0; }
        .cart-item-name {
            font-family: var(--font-body) !important;
            font-size: 14.5px !important;
            font-weight: 600 !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
        }
        .cart-item-sub {
            font-family: var(--font-body) !important;
            font-size: 12px !important;
            font-weight: 400 !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
            color: var(--text-dim) !important;
        }
        .cart-item-price {
            font-family: var(--font-body) !important;
            font-size: 14px !important;
            font-weight: 600 !important;
        }
        .cart-remove {
            font-family: var(--font-body) !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
            font-size: 12px !important;
        }
        .qty-btn, .qty-display { border-radius: var(--radius-sm) !important; }
        .cart-order-summary .order-line {
            font-family: var(--font-body) !important;
            font-size: 13px !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
        }
        .cart-added-banner {
            font-family: var(--font-body) !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
        }

        /* Search panel + modals: rounded glass sheets */
        .search-panel, .age-gate-modal, #age-blocked {
            border-radius: var(--radius-xl) !important;
            background: rgba(8,11,20,0.93) !important;
            border: 1px solid var(--glass-border) !important;
            box-shadow: var(--glow-shadow);
        }

        /* Form fields: rounded, glass, soft focus glow */
        .form-group input, .form-group select, .promo-input-row input,
        .hosted-field-shell, #promo-code {
            border-radius: var(--radius-sm) !important;
            background: var(--glass-bg) !important;
            border: 1px solid var(--glass-border) !important;
            transition: box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .form-group input:focus, .form-group select:focus {
            border-color: var(--mesh-warm) !important;
            box-shadow: 0 0 0 3px rgba(212,165,95,0.15) !important;
        }

        /* Hero: soft gradient mesh glow behind the particle canvas,
           and a frosted glass rim around the whole panel */
        #hero { position: relative; overflow: hidden; }
        #hero::before { content: none; }
        #hero .container { position: relative; z-index: 1; }
        .hero-trust { border-top-color: var(--glass-border) !important; }
        .trust-item {
            background: var(--glass-bg-strong);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-pill);
            padding: 7px 14px !important;
        }

        /* Announcement bar: soft pill, floating off the very top edge */
        #announcement-bar {
            background: rgba(10,14,24,0.72) !important;
        }

        @media (max-width: 640px) {
            #cart-drawer, #wishlist-drawer { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
        }

        /* Welcome offer banner */
        .welcome-banner {
            position: fixed;
            left: 24px;
            bottom: 24px;
            width: 320px;
            max-width: calc(100vw - 48px);
            z-index: 450;
            background: rgba(10,14,24,0.94);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--glow-shadow);
            padding: 22px 20px;
            transform: translateY(24px);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
        }
        .welcome-banner.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
        .welcome-banner-close {
            position: absolute;
            top: 12px; right: 12px;
            background: none;
            border: none;
            color: var(--text-dim);
            cursor: pointer;
            font-size: 14px;
            padding: 4px;
        }
        .welcome-banner-close:hover { color: var(--white); }
        .welcome-banner-eyebrow {
            font-family: var(--font-body);
            font-size: 11px;
            letter-spacing: 0.04em;
            color: var(--gold);
            margin-bottom: 4px;
        }
        .welcome-banner-title {
            font-family: var(--font-body);
            font-size: 21px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 8px;
        }
        .welcome-banner-body {
            font-family: var(--font-body);
            font-size: 12.5px;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 14px;
        }
        .welcome-banner-form { display: flex; gap: 8px; }
        .welcome-banner-form input {
            flex: 1;
            min-width: 0;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-sm);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 13px;
            padding: 10px 12px;
            outline: none;
        }
        .welcome-banner-form input:focus { border-color: var(--gold); }
        .welcome-banner-code-box {
            background: var(--glass-bg-strong);
            border: 1px dashed var(--gold-border);
            border-radius: var(--radius-sm);
            padding: 12px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }
        .welcome-banner-code-box span:first-child {
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.04em;
            color: var(--gold);
        }
        .welcome-banner-copy-hint {
            font-size: 10.5px;
            color: var(--text-dim);
        }

        /* Quick question widget */
        .quick-question-btn {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 52px; height: 52px;
            border-radius: 50%;
            background: var(--gold);
            color: #000;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--glow-shadow-sm), var(--inset-bevel);
            z-index: 440;
            transition: transform 0.15s ease, filter 0.2s ease;
        }
        .quick-question-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
        .quick-question-panel {
            position: fixed;
            right: 24px;
            bottom: 88px;
            width: 320px;
            max-width: calc(100vw - 48px);
            z-index: 441;
            background: rgba(10,14,24,0.94);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--glow-shadow);
            padding: 22px 20px;
            transform: translateY(12px) scale(0.98);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
        }
        .quick-question-panel.visible { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
        .quick-question-panel input, .quick-question-panel textarea {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-sm);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 13px;
            padding: 10px 12px;
            outline: none;
        }
        .quick-question-panel input:focus, .quick-question-panel textarea:focus { border-color: var(--gold); }
        @media (max-width: 480px) {
            .welcome-banner { left: 16px; bottom: 16px; }
            .quick-question-btn { right: 16px; bottom: 16px; }
            .quick-question-panel { right: 16px; bottom: 80px; }
        }

        /* ─── WP THEME ADAPTATION: <a> COMPANIONS FOR FORMER onclick BUTTONS ───
           The reference file used <button onclick="showPage(...)"> for in-app
           navigation (no real page loads). In this WordPress theme those became
           plain <a href="..."> links to real page URLs. The rules below are NOT
           ported from the reference file — they simply extend the existing
           button-only selectors to also match the equivalent <a> tags, so the
           links render identically to how the buttons did. No new visual design
           is introduced here. */
        .dropdown-menu a { display: block; width: 100%; text-align: left; background: none; border: none; border-left: 2px solid transparent; padding: 9px 12px 9px 10px; border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.15s ease, background 0.15s ease, border-left-color 0.15s ease, padding-left 0.15s ease; cursor: pointer; line-height: 1.5; }
        .dropdown-menu a:hover, .dropdown-menu a:focus { color: var(--gold) !important; background: rgba(212,165,154,0.1); border-left-color: var(--gold); padding-left: 14px; outline: none; }
        #site-header .dropdown-menu a:hover, #site-header .dropdown-menu a:focus { color: #d4a59a !important; }
        .footer-col a { display: block; background: none; border: none; font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.72); text-decoration: none; padding: 6px 0; font-weight: 400; transition: color 0.2s; cursor: pointer; text-align: left; line-height: 1.4; }
        .footer-col a:hover { color: var(--gold); }
        #mobile-nav a { background: none; border: none; text-align: left; font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; cursor: pointer; }
