:root {
            --red: #e96656; --red-dark: #cb4332;
            --green: #1e9e6b; --green-dark: #069059;
            --gold: #8c7620; --gold-light: #b8942c;
            --dark: #1a1a1a; --darker: #0d0d0d; --dark-gray: #272727;
            --gray: #939393; --white: #ffffff; --cream: #faf7f2;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Lato', sans-serif;
            --font-accent: 'Playfair Display', serif;
            --font-script: 'Homemade Apple', cursive;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body { font-family: var(--font-body); color: #333; line-height: 1.7; overflow-x: hidden; background: var(--white); padding-top: 72px; }

        /* ========== TOAST ========== */
        .toast-container { position: fixed; top: 90px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 0.8rem; }
        .toast { padding: 1rem 1.5rem; border-radius: 8px; color: #fff; font-size: 0.9rem; font-weight: 600; animation: slideIn 0.3s ease-out; max-width: 380px; box-shadow: 0 8px 30px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 0.8rem; }
        .toast.success { background: #1e9e6b; }
        .toast.error { background: #e96656; }
        .toast.info { background: #3b82f6; }
        @keyframes slideIn { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }

        /* ========== MODAL ========== */
        .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 10000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
        .modal-overlay.active { display: flex; }
        .modal { background: var(--white); border-radius: 12px; padding: 2.5rem; width: 90%; max-width: 440px; position: relative; animation: fadeIn 0.3s ease-out; }
        @keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
        .modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: #999; }
        .modal h3 { font-family: var(--font-heading); font-size: 1.4rem; text-transform: uppercase; margin-bottom: 1.5rem; text-align: center; }
        .modal .form-group { margin-bottom: 1rem; }
        .modal .form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: #555; margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 1px; }
        .modal .form-group input { width: 100%; padding: 0.8rem 1rem; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-body); font-size: 0.9rem; transition: var(--transition); }
        .modal .form-group input:focus { outline: none; border-color: var(--red); }
        .modal .btn { width: 100%; margin-top: 0.5rem; text-align: center; }
        .modal .switch-link { text-align: center; margin-top: 1rem; font-size: 0.85rem; color: #888; }
        .modal .switch-link a { color: var(--red); cursor: pointer; text-decoration: none; font-weight: 600; }
        .modal-copy { text-align: center; color: #888; margin-bottom: 1.5rem; font-size: 0.9rem; }

        /* ========== NAVIGATION ========== */
        .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0.9rem 2rem; background: rgba(10, 10, 10, 0.97); backdrop-filter: blur(20px); box-shadow: 0 2px 30px rgba(0,0,0,0.3); display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
        .nav-logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; }
        .nav-logo span { color: var(--red); }
        .nav-links { display: flex; list-style: none; gap: 1.8rem; align-items: center; }
        .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; transition: var(--transition); position: relative; cursor: pointer; }
        .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--red); transition: var(--transition); }
        .nav-links a:hover { color: var(--white); }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a.active { color: var(--red); }
        .nav-links a.active::after { width: 100%; }
        .nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 42px; height: 42px; cursor: pointer; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 5px; }
        .nav-toggle span { width: 25px; height: 2px; background: var(--white); transition: var(--transition); }

        /* ========== PAGE CONTAINERS ========== */
        .page { display: none; min-height: calc(100vh - 72px); }
        .page.active { display: block; animation: fadePage 0.4s ease-out; }
        @keyframes fadePage { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* ========== HERO ========== */
        .hero { min-height: calc(100vh - 72px); background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 100%), url('images/hero-bg.jpg') center/cover no-repeat, #1a1a2e; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; padding: 0 2rem; }
        .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(233,102,86,0.08) 0%, transparent 70%); }
        .hero-content { position: relative; z-index: 1; max-width: 850px; animation: fadeInUp 1s ease-out; }
        .hero-badge { display: inline-block; max-width: 100%; padding: 0.5rem 1.5rem; border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; color: rgba(255,255,255,0.9); font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; line-height: 1.45; margin-bottom: 2rem; backdrop-filter: blur(10px); background: rgba(255,255,255,0.05); }
        .hero h1 { font-family: var(--font-heading); font-size: 4.5rem; font-weight: 800; color: var(--white); text-transform: uppercase; line-height: 1.15; margin-bottom: 1.2rem; text-shadow: 0 4px 30px rgba(0,0,0,0.4); letter-spacing: 0; }
        .hero h1 span { color: var(--red); }
        .hero-subtitle { font-family: var(--font-accent); font-size: 1.25rem; font-weight: 400; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; line-height: 1.6; font-style: italic; }
        .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .btn { display: inline-block; padding: 1rem 2.2rem; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; border: none; border-radius: 4px; cursor: pointer; transition: var(--transition); text-decoration: none; }
        .btn-primary { background: var(--red); color: var(--white); }
        .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(233,102,86,0.3); }
        .btn-secondary { background: var(--green); color: var(--white); }
        .btn-secondary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(30,158,107,0.3); }
        .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
        .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
        .btn-sm { padding: 0.65rem 1.4rem; font-size: 0.72rem; letter-spacing: 1px; }
        .btn:disabled { opacity: 0.6; cursor: not-allowed; pointer-events: none; }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        /* ========== SECTIONS ========== */
        section { padding: 5rem 2rem; }
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
        .section-badge { display: inline-block; padding: 0.35rem 1rem; background: rgba(233,102,86,0.1); color: var(--red); font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; border-radius: 50px; margin-bottom: 1rem; }
        .section-header h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: #1a1a1a; text-transform: uppercase; margin-bottom: 1rem; line-height: 1.2; }
        .section-header h2 span { color: var(--red); }
        .section-header p { font-size: 1.05rem; color: #666; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; }

        /* Page Hero */
        .page-hero { background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 100%), url('images/cta-bg.jpg') center/cover no-repeat, #1a1a2e; padding: 6rem 2rem; text-align: center; position: relative; }
        .page-hero h1 { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--white); text-transform: uppercase; }
        .page-hero .breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 1.5rem; }
        .page-hero .breadcrumb span { color: var(--red); }
        .page-hero > p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; margin: 1rem auto 0; }

        /* Cards Grid */
        .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
        .why-card { background: var(--white); border: 1px solid #eee; border-radius: 8px; padding: 2.5rem 2rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
        .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transition: var(--transition); }
        .why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
        .why-card:hover::before { transform: scaleX(1); }
        .why-card-icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; background: rgba(233,102,86,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--red); }
        .why-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.8rem; color: #1a1a1a; }
        .why-card p { font-size: 0.95rem; color: #666; line-height: 1.7; }

        /* Dark section */
        .dark-section { background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.75)), url('images/cta-bg.jpg') center/cover fixed, #1a1a2e; color: var(--white); }
        .dark-section .section-header h2 { color: var(--white); }
        .dark-section .section-header p { color: rgba(255,255,255,0.7); }
        .science-content { max-width: 1100px; margin: 0 auto; }
        .stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3.5rem; }
        .stat-card { text-align: center; padding: 2rem; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); }
        .stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 300; color: var(--red); line-height: 1; margin-bottom: 0.5rem; }
        .stat-label { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); }
        .science-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
        .science-two-col h3 { font-family: var(--font-accent); font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; color: var(--white); line-height: 1.4; }
        .science-two-col p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; line-height: 1.8; font-size: 0.95rem; }
        .science-two-col ul { list-style: none; margin-top: 1.5rem; }
        .science-two-col ul li { padding: 0.5rem 0; color: rgba(255,255,255,0.8); font-size: 0.92rem; }
        .science-two-col ul li i { color: var(--green); margin-right: 0.8rem; }
        .science-quote { background: rgba(255,255,255,0.05); border-left: 3px solid var(--red); padding: 1.5rem 2rem; margin-top: 1.5rem; border-radius: 0 8px 8px 0; font-family: var(--font-accent); font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.7; }
        .science-quote cite { display: block; margin-top: 0.8rem; font-family: var(--font-body); font-size: 0.8rem; font-style: normal; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

        /* Products */
        .products-bg { background: var(--cream); }
        .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 2.5rem; max-width: 1000px; margin: 0 auto; }
        .product-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 30px rgba(0,0,0,0.06); transition: var(--transition); position: relative; }
        .product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        .product-card.featured { border: 2px solid var(--gold); }
        .product-badge { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--red); color: var(--white); padding: 0.4rem 1rem; border-radius: 50px; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; z-index: 1; }
        .product-card.featured .product-badge { background: var(--gold); }
        .product-header { background: linear-gradient(135deg, #1a1a2e, #162d40); padding: 2rem 2rem 3rem; text-align: center; position: relative; overflow: hidden; }
        .product-header::after { content: ''; position: absolute; bottom: -30px; left: 0; right: 0; height: 60px; background: var(--white); border-radius: 50% 50% 0 0; }
        .product-header img { width: 80px; height: auto; margin-bottom: 0.8rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
        .product-header h3 { font-family: var(--font-heading); color: var(--white); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.3rem; }
        .product-header .caps { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
        .product-body { padding: 2.5rem 2rem; text-align: center; }
        .product-price { margin-bottom: 2rem; }
        .product-price .original { font-size: 1.2rem; color: #999; text-decoration: line-through; margin-right: 0.8rem; }
        .product-price .current { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: #1a1a1a; }
        .product-price .currency { font-size: 1rem; color: #666; font-weight: 400; }
        .product-features { list-style: none; text-align: left; margin-bottom: 2rem; }
        .product-features li { padding: 0.6rem 0; color: #555; font-size: 0.9rem; display: flex; align-items: center; gap: 0.8rem; border-bottom: 1px solid #f0f0f0; }
        .product-features li i { color: var(--green); font-size: 0.85rem; }
        .btn-buy { width: 100%; padding: 1rem; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; border: none; border-radius: 6px; cursor: pointer; transition: var(--transition); }
        .btn-buy.red { background: var(--red); color: var(--white); }
        .btn-buy.red:hover { background: var(--red-dark); }
        .btn-buy.gold { background: var(--gold); color: var(--white); }
        .btn-buy.gold:hover { background: var(--gold-light); }

        /* Purity */
        .purity-bg { background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.75)), url('images/cta-bg.jpg') center/cover fixed, #1a1a2e; color: var(--white); }
        .purity-bg .section-header h2 { color: var(--white); }
        .purity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
        .purity-card { text-align: center; padding: 2.5rem 1.5rem; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); transition: var(--transition); }
        .purity-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
        .purity-card .icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.2rem; }
        .purity-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.8rem; letter-spacing: 1px; }
        .purity-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

        /* Certs */
        .certs-bar { background: var(--white); padding: 3rem 2rem; }
        .certs-grid { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 2.5rem; max-width: 1100px; margin: 0 auto; }
        .cert-item { text-align: center; padding: 1rem; transition: var(--transition); }
        .cert-item:hover { transform: scale(1.05); }
        .cert-icon { font-size: 2.2rem; color: var(--dark-gray); margin-bottom: 0.6rem; }
        .cert-name { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: #555; }

        /* Testimonials */
        .testimonials-bg { background: var(--gold); }
        .testimonials-bg .section-header h2 { color: var(--white); }
        .testimonials-bg .section-header p { color: rgba(255,255,255,0.8); }
        .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
        .testimonial-card { background: var(--white); border-radius: 8px; padding: 2.5rem 2rem; position: relative; transition: var(--transition); }
        .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
        .quote-icon { position: absolute; top: -15px; left: 2rem; width: 40px; height: 40px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; }
        .stars { color: var(--gold); margin-bottom: 1rem; }
        .testimonial-card > p { font-size: 0.95rem; color: #555; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
        .t-author { display: flex; align-items: center; gap: 1rem; }
        .t-author-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0; object-fit: cover; }
        .t-author .name { font-family: var(--font-script); font-size: 0.95rem; color: #1a1a1a; }
        .t-author .role { font-size: 0.7rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }

        /* FAQ */
        .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
        .faq-item { border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: var(--transition); }
        .faq-question { padding: 1.3rem 1.8rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; color: #1a1a1a; user-select: none; }
        .faq-question i { transition: var(--transition); color: var(--red); }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
        .faq-item.active .faq-answer { max-height: 500px; padding: 0 1.8rem 1.5rem; }
        .faq-answer p { font-size: 0.9rem; color: #666; line-height: 1.8; }

        /* Company page */
        .company-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
        .company-split h3 { font-family: var(--font-accent); font-size: 1.4rem; color: #1a1a1a; margin-bottom: 1rem; }
        .company-split p { color: #666; margin-bottom: 1rem; line-height: 1.8; }
        .facts-card { background: var(--white); border: 1px solid #eee; border-radius: 10px; padding: 2rem 2.5rem; margin-bottom: 2rem; max-width: 900px; margin-left: auto; margin-right: auto; transition: var(--transition); }
        .facts-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
        .facts-card h3 { font-family: var(--font-accent); font-size: 1.3rem; color: #1a1a1a; margin-bottom: 0.8rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--red); display: inline-block; }
        .facts-card p { color: #555; font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
        .facts-card img { width: 100%; max-width: 600px; border-radius: 8px; margin: 1rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.08); display: block; }
        .facts-card .facts-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin: 1rem 0; }
        .facts-quote { background: rgba(233,102,86,0.05); border-left: 3px solid var(--red); padding: 1.2rem 1.5rem; border-radius: 0 6px 6px 0; font-style: italic; color: #666; font-size: 0.92rem; margin: 1rem 0; }

        /* Shop */
        .shop-toolbar { display: flex; justify-content: space-between; align-items: center; max-width: 1000px; margin: 0 auto 2rem; flex-wrap: wrap; gap: 1rem; }
        .shop-toolbar .result-count { color: #888; font-size: 0.9rem; }
        .shop-toolbar select { padding: 0.5rem 1rem; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); font-size: 0.85rem; color: #555; }
        .sale-badge { display: inline-block; background: var(--red); color: var(--white); padding: 0.2rem 0.6rem; border-radius: 3px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-left: 0.5rem; }

        /* Account cards */
        .page-card { max-width: 750px; margin: 0 auto; background: var(--white); border: 1px solid #eee; border-radius: 10px; padding: 2.5rem; }
        .page-card h2 { font-family: var(--font-heading); font-size: 1.4rem; text-transform: uppercase; margin-bottom: 1.5rem; color: #1a1a1a; }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: #555; margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 1px; }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.8rem 1rem; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); font-size: 0.9rem; transition: var(--transition); }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--red); }
        .form-group textarea { height: 100px; resize: vertical; }
        .empty-state { text-align: center; padding: 3rem; color: #888; }
        .empty-state i { font-size: 3rem; color: #ddd; margin-bottom: 1rem; display: block; }
        .empty-state a { color: var(--red); text-decoration: none; font-weight: 600; cursor: pointer; }

        /* Order history */
        .order-card { border: 1px solid #eee; border-radius: 8px; padding: 1.5rem; margin-bottom: 1rem; }
        .order-card .order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.5rem; }
        .order-card .order-id { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; }
        .order-card .order-date { font-size: 0.8rem; color: #888; }
        .order-card .order-status { padding: 0.2rem 0.8rem; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
        .order-card .order-status.pending { background: #fef3c7; color: #92400e; }
        .order-card .order-status.completed { background: #d1fae5; color: #065f46; }
        .order-card .order-total { font-weight: 700; }
        .order-items { list-style: none; }
        .order-items li { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.85rem; color: #666; }

        /* CTA / Contact / Footer */
        .cta-section { background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.7)), url('images/cta-bg.jpg') center/cover fixed, #1a1a2e; text-align: center; padding: 5rem 2rem; color: var(--white); }
        .cta-section h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
        .cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
        .contact-dark { background: var(--dark); color: var(--white); padding: 5rem 2rem; }
        .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; max-width: 1100px; margin: 0 auto; }
        .contact-info h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1.5rem; }
        .contact-info p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
        .contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
        .contact-item i { color: var(--red); width: 20px; text-align: center; }
        .contact-form input, .contact-form textarea { width: 100%; padding: 0.85rem 1rem; margin-bottom: 1rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; color: var(--white); font-family: var(--font-body); font-size: 0.9rem; transition: var(--transition); }
        .contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--red); background: rgba(255,255,255,0.1); }
        .contact-form textarea { height: 120px; resize: vertical; }
        .contact-form button { padding: 0.85rem 2.5rem; background: var(--red); color: var(--white); border: none; border-radius: 4px; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: var(--transition); }
        .contact-form button:hover { background: var(--red-dark); }
        footer { background: var(--darker); color: rgba(255,255,255,0.5); text-align: center; padding: 2.5rem 2rem; font-size: 0.8rem; }
        footer p { margin-bottom: 0.5rem; }
        footer a { color: var(--red); text-decoration: none; }
        .footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; margin-bottom: 1.5rem; flex-wrap: wrap; }
        .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; }
        .footer-links a:hover { color: var(--red); }

        /* Fade in animation */
        .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* ========== DESIGN REFRESH ========== */
        :root {
            --ink: #161719;
            --muted: #62666c;
            --line: #ece8df;
            --surface: #fffdf9;
            --shadow-soft: 0 14px 40px rgba(22, 23, 25, 0.08);
            --shadow-lift: 0 22px 60px rgba(22, 23, 25, 0.14);
        }
        body { color: #303236; background: var(--surface); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
        img { max-width: 100%; }
        .nav { min-height: 72px; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .nav-links a:focus-visible, .nav-logo:focus-visible, .btn:focus-visible, .btn-buy:focus-visible, .nav-toggle:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(233,102,86,0.35); outline-offset: 3px; }
        .hero { min-height: calc(100svh - 112px); align-items: flex-end; padding: 6rem 2rem 4rem; background: linear-gradient(135deg, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.62) 100%), url('images/hero-bg.jpg') center/cover no-repeat, #17191d; }
        .hero::before { background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.38) 100%); }
        .hero-content { width: 100%; min-width: 0; max-width: 930px; }
        .hero h1 { font-size: 4.75rem; letter-spacing: 0; }
        .hero-subtitle { max-width: 780px; margin-left: auto; margin-right: auto; }
        .hero-buttons .btn { min-width: 190px; text-align: center; }
        .btn { border-radius: 6px; }
        .btn-lg { font-size: 0.9rem; padding: 1.2rem 3rem; }
        .section-badge-light { background: rgba(255,255,255,0.2); color: var(--white); }
        .section-badge-dark { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
        .section-header h2 { color: var(--ink); letter-spacing: 0; }
        .section-header p { color: var(--muted); }
        .why-card, .product-card, .purity-card, .testimonial-card, .facts-card, .page-card, .modal { border-radius: 8px; }
        .why-card { border-color: var(--line); box-shadow: 0 10px 26px rgba(22,23,25,0.035); }
        .why-card-icon { border-radius: 18px; background: linear-gradient(135deg, rgba(233,102,86,0.12), rgba(30,158,107,0.08)); }
        .stat-card, .purity-card { backdrop-filter: blur(8px); }
        .products-bg { background: linear-gradient(180deg, #fbf7ef 0%, #fffdf9 100%); }
        .product-grid { gap: 2rem; }
        .product-card { border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
        .product-card:hover { box-shadow: var(--shadow-lift); }
        .product-card.featured { border: 1px solid rgba(140,118,32,0.45); }
        .product-header { background: linear-gradient(135deg, #17191d 0%, #203b48 100%); }
        .product-header img { width: 96px; }
        .product-body { padding: 2.3rem 2rem 2rem; }
        .product-features li { align-items: flex-start; }
        .btn-buy { border-radius: 6px; min-height: 50px; }
        .certs-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
        .testimonials-bg { background: linear-gradient(135deg, #8c7620 0%, #6f611f 100%); }
        .faq-item { background: var(--white); border-color: var(--line); }
        .faq-item.active { box-shadow: var(--shadow-soft); }
        .contact-form input, .contact-form textarea { border-radius: 6px; }
        footer { border-top: 1px solid rgba(255,255,255,0.08); }

        /* Company */
        .company-hero { position: relative; padding: 0; min-height: 430px; overflow: hidden; }
        .company-hero-img { width: 100%; height: 500px; object-fit: cover; display: block; }
        .company-hero-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 4rem 2rem; background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.72) 100%); }
        .company-hero-content { max-width: 880px; }
        .company-hero .breadcrumb { color: rgba(255,255,255,0.72); font-size: 0.8rem; margin-bottom: 0.8rem; }
        .company-hero .breadcrumb span { color: var(--red); }
        .company-hero h1 { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--white); text-transform: uppercase; line-height: 1.1; text-shadow: 0 4px 30px rgba(0,0,0,0.4); letter-spacing: 0; }
        .company-hero h1 span, .section-title-left span, .company-certs-header h2 span { color: var(--red); }
        .company-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-top: 1rem; max-width: 580px; line-height: 1.7; }
        .company-story { padding: 6rem 2rem; background: var(--surface); }
        .company-story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 5rem; align-items: center; }
        .story-copy p, .detail-copy p { color: #555; font-size: 0.96rem; line-height: 1.9; margin-bottom: 1rem; }
        .section-title-left { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--ink); text-transform: uppercase; margin: 1rem 0; line-height: 1.2; letter-spacing: 0; }
        .company-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
        .metric { padding: 1rem; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
        .metric strong { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 0.45rem; }
        .metric span { display: block; font-size: 0.72rem; color: #777; text-transform: uppercase; letter-spacing: 1px; line-height: 1.4; }
        .story-visual { text-align: center; }
        .story-visual img { width: 100%; max-width: 430px; border-radius: 8px; box-shadow: 0 25px 60px rgba(0,0,0,0.12); border: 8px solid var(--white); }
        .company-pillars-section { background: linear-gradient(180deg, #fbf7ef 0%, #fff 100%); padding: 6rem 2rem; }
        .pillar-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; max-width: 1100px; margin: 0 auto; }
        .pillar-card { text-align: center; padding: 2.2rem 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: var(--transition); }
        .pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
        .pillar-icon { width: 64px; height: 64px; margin: 0 auto 1.4rem; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.55rem; }
        .icon-red { background: rgba(233,102,86,0.12); color: var(--red); }
        .icon-green { background: rgba(30,158,107,0.12); color: var(--green); }
        .icon-gold { background: rgba(140,118,32,0.12); color: var(--gold); }
        .icon-blue { background: rgba(59,130,246,0.12); color: #3b82f6; }
        .pillar-card h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.8rem; letter-spacing: 1px; color: var(--ink); }
        .pillar-card p { font-size: 0.86rem; color: #70747a; line-height: 1.75; }
        .company-certs { background: var(--dark); padding: 4.5rem 2rem; }
        .company-certs-header { text-align: center; margin: 0 auto 2.6rem; max-width: 720px; }
        .company-certs-header h2 { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; color: var(--white); text-transform: uppercase; margin-top: 1rem; letter-spacing: 0; }
        .company-certs-header p { color: rgba(255,255,255,0.58); font-size: 0.92rem; margin-top: 0.5rem; }
        .company-certs-grid { display: grid; grid-template-columns: repeat(6, minmax(120px, 1fr)); gap: 1rem; max-width: 1020px; margin: 0 auto; }
        .company-cert-card { text-align: center; padding: 1.45rem 1rem; background: rgba(255,255,255,0.045); border-radius: 8px; border: 1px solid rgba(255,255,255,0.07); transition: var(--transition); }
        .company-cert-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); }
        .company-cert-card i { font-size: 2rem; margin-bottom: 0.7rem; display: block; }
        .company-cert-card div { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.78); line-height: 1.4; }
        .accent-red { color: var(--red); }
        .accent-green { color: var(--green); }
        .accent-gold { color: var(--gold-light); }
        .accent-amber { color: #f59e0b; }
        .accent-indigo { color: #8b5cf6; }
        .accent-cyan { color: #06b6d4; }
        .company-detail { padding: 5rem 2rem; background: var(--white); }
        .narrow-container { max-width: 900px; }
        .detail-copy h3 { font-family: var(--font-accent); font-size: 1.5rem; color: var(--ink); margin-bottom: 1rem; }

        /* Facts / Shop */
        .facts-intro { margin-bottom: 2rem; max-width: 900px; }
        .facts-intro p { text-align: left; max-width: 900px; margin: 0 auto; }
        .facts-card { border-color: var(--line); box-shadow: 0 8px 28px rgba(0,0,0,0.045); }
        .facts-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
        .facts-card img { background: var(--white); border: 1px solid var(--line); }
        .facts-card-highlight { border-left: 4px solid var(--red); }
        .ingredient-lede { font-size: 1rem; }
        .shop-toolbar { padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.035); }
        .shop-toolbar select { min-height: 42px; border-radius: 6px; background: var(--surface); cursor: pointer; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .science-two-col { grid-template-columns: 1fr; }
            .company-story-grid { grid-template-columns: 1fr; gap: 3rem; }
            .pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .company-certs-grid { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
        }
        @media (max-width: 768px) {
            html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
            .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 2rem; flex-direction: column; gap: 1.2rem; backdrop-filter: blur(20px); }
            .nav-links.open { display: flex; }
            .nav-toggle { display: flex; }
            .nav { width: 100dvw; max-width: 100dvw; justify-content: flex-start; gap: 1rem; padding: 0.85rem 1rem; }
            .nav-logo { font-size: 1.1rem; letter-spacing: 1.4px; }
            .hero-content { width: 100%; max-width: calc(100vw - 3rem); min-width: 0; }
            .hero-badge { max-width: 100%; padding: 0.45rem 0.9rem; font-size: 0.65rem; letter-spacing: 1.8px; margin-bottom: 1.2rem; }
            .hero-subtitle { max-width: 100%; font-size: 1rem; line-height: 1.55; margin: 0 auto 1.8rem; overflow-wrap: break-word; }
            .hero-subtitle br { display: none; }
            .hero h1 { font-size: 2.2rem; }
            .hero { min-height: calc(100svh - 96px); padding: 4.5rem 1.5rem 3rem; }
            .page-hero h1 { font-size: 1.55rem; }
            .page-hero > p { max-width: 220px; }
            .section-header h2 { font-size: 1.8rem; }
            .product-grid { grid-template-columns: 1fr; }
            .why-grid, .purity-grid, .testimonial-grid, .facts-card .facts-gallery { grid-template-columns: minmax(0, 1fr); }
            .testimonial-grid { grid-template-columns: 1fr; }
            section { padding: 3rem 1.5rem; }
            .stat-grid { grid-template-columns: 1fr 1fr; }
            .cta-section h2 { font-size: 1.8rem; }
            .hero-buttons { width: 100%; flex-direction: column; align-items: center; }
            .hero-buttons .btn { width: 100%; max-width: 270px; min-width: 0; }
            .company-hero, .company-hero-img { min-height: 420px; height: 420px; }
            .company-hero-overlay { padding: 3rem 1.5rem; }
            .company-hero-content { max-width: 260px; }
            .company-hero h1 { font-size: 2.1rem; }
            .company-hero p { max-width: 250px; font-size: 1rem; }
            .company-metrics { grid-template-columns: 1fr; }
            .pillar-grid { grid-template-columns: 1fr; }
            .company-certs-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
            .shop-toolbar { align-items: stretch; }
            .shop-toolbar select { width: 100%; }
        }
        @media (max-width: 480px) {
            .hero-content { max-width: 200px; }
            .hero h1 { font-size: 1.45rem; }
            .hero-subtitle { font-size: 0.95rem; }
            .page-hero h1 { font-size: 1.35rem; }
            .section-header h2 { font-size: 1.5rem; }
            .stat-grid { grid-template-columns: 1fr; }
            .page-card { padding: 1.5rem; }
            .company-certs-grid { grid-template-columns: 1fr; }
            .company-hero h1 { font-size: 1.8rem; }
            .product-grid { grid-template-columns: minmax(0, 1fr); }
            .hero-buttons .btn { max-width: 200px; }
        }
        @media (max-width: 360px) {
            .hero-content { max-width: 220px; }
            .hero-badge { font-size: 0.58rem; letter-spacing: 1.2px; padding-left: 0.7rem; padding-right: 0.7rem; }
            .hero h1 { font-size: 1.3rem; }
            .hero-subtitle { font-size: 0.86rem; }
            .hero-buttons .btn { max-width: 220px; padding: 0.85rem 1rem; }
        }
