/* style.css - Premium PEPTID Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #030303;
    --surface: #0a0a0b;
    --surface-hover: #111113;
    --primary: #e11d48; /* Brand Red */
    --primary-dim: rgba(225, 29, 72, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: #1e293b;
    --border-hover: #334155;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 18% 14%, rgba(255,255,255,0.04) 0%, transparent 26%),
        radial-gradient(circle at 82% 10%, rgba(255,255,255,0.035) 0%, transparent 24%),
        linear-gradient(180deg, #050505 0%, #030303 42%, #060607 100%);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    isolation: isolate;
}
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
h1, h2 { background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
.text-red { background: linear-gradient(135deg, #e11d48 0%, #9f1239 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; display: inline-block; }
/* Keep .text-green as alias for backwards compat */
.text-green { background: linear-gradient(135deg, #e11d48 0%, #9f1239 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; display: inline-block; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 10; }

/* Background grid pattern removed */

/* BACKGROUND GLOWS */
.glow-wrapper {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}
.glow-wrapper::before,
.glow-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.glow-wrapper::before {
    background:
        radial-gradient(280px 180px at 12% 8%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 32%, transparent 66%),
        radial-gradient(920px 760px at 88% 78%, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 34%, transparent 70%);
    opacity: 1;
}
.glow-wrapper::after {
    background: transparent;
    opacity: 0;
}
.glow-wrapper > div {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: normal;
}
.glow-1 {
    top: -220px;
    right: -260px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle,
        rgba(255,255,255,0.56) 0%,
        rgba(255,255,255,0.26) 24%,
        rgba(255,255,255,0.08) 54%,
        transparent 72%
    );
    filter: blur(96px);
    opacity: 0.52;
}
.glow-2 {
    top: 34%;
    left: -180px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle,
        rgba(255,255,255,0.42) 0%,
        rgba(255,255,255,0.16) 26%,
        rgba(255,255,255,0.05) 52%,
        transparent 74%
    );
    filter: blur(92px);
    opacity: 0.34;
}
.glow-3 {
    bottom: -260px;
    right: -280px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle,
        rgba(255,255,255,0.5) 0%,
        rgba(255,255,255,0.22) 24%,
        rgba(255,255,255,0.06) 54%,
        transparent 74%
    );
    filter: blur(100px);
    opacity: 0.48;
}
.glow-4 {
    display: none;
}
.glow-5 {
    display: none;
}
.glow-6 {
    top: 14%;
    left: 36%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
        rgba(225,29,72,0.08) 0%,
        rgba(225,29,72,0.03) 28%,
        rgba(225,29,72,0.01) 54%,
        transparent 74%
    );
    filter: blur(72px);
    opacity: 0.32;
}

@media (max-width: 1200px) {
    .glow-1 { right: -320px; width: 560px; height: 560px; }
    .glow-2 { left: -220px; width: 460px; height: 460px; }
    .glow-3 { right: -320px; width: 580px; height: 580px; }
    .glow-6 { left: 28%; width: 360px; height: 360px; }
}

@media (max-width: 900px) {
    .glow-wrapper::before {
        background:
            radial-gradient(220px 140px at 14% 8%, rgba(255,255,255,0.14) 0%, transparent 62%),
            radial-gradient(540px 420px at 88% 82%, rgba(255,255,255,0.06) 0%, transparent 68%);
    }
    .glow-1 { right: -300px; top: -240px; width: 520px; height: 520px; opacity: 0.34; }
    .glow-2 { left: -220px; top: 40%; width: 420px; height: 420px; opacity: 0.24; }
    .glow-3 { right: -300px; bottom: -260px; width: 540px; height: 540px; opacity: 0.34; }
    .glow-6 { display: none; }
}

@media (max-width: 600px) {
    body {
        background-image:
            radial-gradient(circle at 16% 12%, rgba(255,255,255,0.03) 0%, transparent 24%),
            radial-gradient(circle at 86% 8%, rgba(255,255,255,0.025) 0%, transparent 20%),
            linear-gradient(180deg, #050505 0%, #030303 42%, #060607 100%);
    }
    .glow-wrapper::before {
        background:
            radial-gradient(180px 120px at 12% 8%, rgba(255,255,255,0.12) 0%, transparent 62%),
            radial-gradient(380px 300px at 88% 84%, rgba(255,255,255,0.05) 0%, transparent 68%);
    }
    .glow-1 { right: -220px; top: -180px; width: 380px; height: 380px; opacity: 0.24; }
    .glow-2 { left: -180px; top: 42%; width: 320px; height: 320px; opacity: 0.16; }
    .glow-3 { right: -220px; bottom: -200px; width: 400px; height: 400px; opacity: 0.24; }
    .cat-cell,
    .product-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .cat-cell,
    .product-card,
    .btn,
    .btn-add,
    .btn-outline,
    .btn-primary {
        transition: none !important;
    }
}

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem;
    padding: 0.8rem 2rem; border-radius: 4px; cursor: pointer; position: relative; overflow: hidden;
    transition: all var(--transition); letter-spacing: 1.5px; text-transform: uppercase; z-index: 1;
}
.btn::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg); transition: left 0.7s ease; z-index: -1;
}
.btn:hover::after { left: 200%; }

.btn-outline { border: 1px solid var(--border); color: var(--text-main); background: rgba(255,255,255,0.01); backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-dim); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.btn-primary { background: var(--text-main); color: #000; border: 1px solid var(--text-main); }
.btn-primary:hover { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 0 20px rgba(225,29,72,0.3); }
.btn-primary::after { background: linear-gradient(90deg, transparent, rgba(0,0,0,0.15), transparent); }

/* HEADER */
header {
    padding: 1.5rem 0; position: sticky; top: 0; z-index: 100;
    background: rgba(3, 3, 3, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: inline-block; cursor: pointer; overflow: hidden; height: 44px; }
.nav-logo img { height: 220px; width: auto; mix-blend-mode: screen; filter: brightness(1.1); margin-top: -88px; transition: opacity var(--transition); display: block; }
.nav-logo img:hover { opacity: 0.85; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--primary); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { width: 100%; }
.nav-icons { display: flex; align-items: center; gap: 1.5rem; }
.icon-link { color: var(--text-muted); }
.icon-link:hover { color: var(--text-main); }
.cart-dot { position: absolute; top: -2px; right: -2px; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); }
.nav-cart { position: relative; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform var(--transition); }
.nav-cart:hover { transform: scale(1.1); color: var(--text-main); }

/* HERO BANNERS */
.hero { padding: 8rem 0; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.hero-subtitle { color: var(--primary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem; display: block; font-family: var(--font-heading); }
.hero h1 { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -2px; }
.hero p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2.5rem; max-width: 480px; font-weight: 300; }

/* SVG Animation */
.hero-svg { animation: float 8s ease-in-out infinite; filter: drop-shadow(0 0 40px rgba(225, 29, 72, 0.15)); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* CATEGORY GRID */
.categories { padding: 4rem 0; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.cat-cell {
    position: relative; min-height: 360px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06); 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.6);
    border-radius: 12px;
    display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
    padding: 2rem; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer;
}
.cat-cell::before {
    content:''; position: absolute; inset: 0; 
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, -20%), rgba(255,255,255,0.05), transparent 40%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none; z-index: 0;
}
.cat-cell::after {
    content:''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity: 0.3; transition: opacity 0.5s;
}
.cat-cell:hover { 
    border-color: rgba(255,255,255,0.15); 
    transform: translateY(-8px); 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 25px 50px rgba(0,0,0,0.8); 
}
.cat-cell:hover::before { opacity: 1; }
.cat-cell:hover::after { opacity: 1; }
.cat-badge { position: absolute; top: 1.5rem; right: 1.5rem; font-family: monospace; color: var(--text-muted); font-size: 0.8rem; border: 1px solid var(--border); padding: 0.2rem 0.5rem; border-radius: 4px; transition: all var(--transition); }
.cat-cell:hover .cat-badge { border-color: var(--accent, var(--primary)); color: var(--accent, var(--primary)); }

.cat-img-wrap { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); width: 80%; transition: all var(--transition); display: flex; justify-content: center; z-index: 2; }
.cat-img-wrap img { width: 100%; max-height: 220px; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8)); opacity: 0.8; transition: opacity var(--transition); }
.cat-cell:hover .cat-img-wrap { transform: translate(-50%, -55%) scale(1.05); }
.cat-cell:hover .cat-img-wrap img { opacity: 1; filter: drop-shadow(0 20px 40px rgba(215, 254, 0, 0.22)); }
.cat-text-wrap { z-index: 5; text-align: center; width: 100%; border-top: 1px solid var(--border); padding-top: 1.5rem; transition: border-color var(--transition); }
.cat-text-wrap h3 { color: var(--text-main); font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; margin: 0; transition: color var(--transition); }
.cat-text-wrap p { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.cat-cell:hover .cat-text-wrap { border-color: rgba(255,255,255,0.15); }
.cat-cell:hover .cat-text-wrap h3 { color: var(--accent, var(--primary)); }

/* PRODUCTS */
.products { padding: 6rem 0; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.2rem; letter-spacing: -1px; display: flex; align-items: center; gap: 1rem; }
.live-dot-green { width: 10px; height: 10px; background: var(--primary); border-radius: 50%; display: inline-block; box-shadow: 0 0 10px var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.product-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 1px 0 0 rgba(255, 255, 255, 0.08),
        inset -1px 0 0 rgba(255, 255, 255, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 1.5rem 1.5rem 2rem;
    position: relative;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}
a.product-card { color: inherit; }

/* Gradient line at the top */
.product-card::before {
    content:''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent, var(--product-color, rgba(255,255,255,0.2))), transparent);
    opacity: 0.72; transition: opacity 0.5s;
}

/* Dynamic mouse spotlight inside card */
.product-card::after {
    content:''; position: absolute; inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, -20%), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0; pointer-events: none; z-index: 0; transition: opacity 0.4s;
}

.product-card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(255, 255, 255, 0.18); 
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 1px 0 0 rgba(255, 255, 255, 0.11),
        inset -1px 0 0 rgba(255, 255, 255, 0.11),
        0 30px 60px rgba(0,0,0,0.8); 
}
.product-card:hover::before { opacity: 1; }
.product-card:hover::after { opacity: 1; }

/* The Jar Graphic itself */
.jar-container { margin: 1.5rem auto 2.5rem; transform: scale(1); transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.product-card:hover .jar-container { transform: scale(1.08) translateY(-10px); }
.jar-cap { width: 80px; height: 22px; margin: 0 auto; position: relative; z-index: 2; background: linear-gradient(to right, #2a2a2a, #111, #2a2a2a); border: 2px solid #444; border-bottom: none; border-radius: 4px 4px 0 0; }

/* The liquid / body */
.jar-body {
    width: 120px; height: 160px; position: relative; display: flex; align-items: center; justify-content: center; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset -15px -15px 40px rgba(0,0,0,0.8), inset 8px 0 24px rgba(255,255,255,0.3), 0 20px 40px rgba(0,0,0,0.5);
    background: var(--panel-fill, linear-gradient(180deg, rgba(255,255,255,0.08), rgba(51,51,51,0.95)));
}
.jar-body::before {
    content:''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(0,0,0,0.5)); border-radius: 6px;
}
.jar-body::after {
    content:''; position: absolute; top: 4px; left: 4px; bottom: 4px; width: 12px;
    background: linear-gradient(to right, rgba(255,255,255,0.7), transparent);
    border-radius: 4px; filter: blur(2px); opacity: 0.8;
}
.jar-label {
    width: 90px; height: 100px; position: relative; z-index: 10; overflow: hidden;
    font-family: var(--font-heading); font-weight: 700; font-size: 16px;
    display: flex; align-items: center; justify-content: center; color: #000; writing-mode: vertical-rl;
    text-transform: uppercase; letter-spacing: 2px; transform: rotate(180deg);
    background: linear-gradient(to right, #fff, #e2e8f0); border-radius: 3px;
    box-shadow: -4px 0 10px rgba(0,0,0,0.2); border: 1px solid rgba(0,0,0,0.1);
}
.jar-label::before {
    content:''; position: absolute; top: 0; left: -150%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,1), transparent);
    transform: skewX(-20deg); mix-blend-mode: overlay; z-index: 20; pointer-events: none;
}
.product-card:hover .jar-label::before { animation: jarSweep 1.2s ease forwards; }
@keyframes jarSweep { 0% { left: -150%; } 100% { left: 150%; } }

/* Typography on Card */
.product-card h4 {
    font-size: 1.15rem; font-family: var(--font-heading); font-weight: 700; 
    letter-spacing: 0px; color: var(--text-main); margin-bottom: 1rem; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.product-meta { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.product-meta span { 
    background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); 
    color: var(--text-muted); padding: 0.4rem 0.6rem; border-radius: 4px; 
    font-size: 0.6rem; font-family: 'Space Grotesk', monospace; font-weight: 600; letter-spacing: 1px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); text-transform: uppercase;
}
.product-meta span i { color: var(--accent, var(--product-color, var(--text-muted))); font-style: normal; margin-right: 5px; opacity: 1; }

.price-row { margin-top: auto; display: flex; align-items: baseline; justify-content: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.price-new { font-weight: 700; font-size: 1.4rem; color: var(--text-main); letter-spacing: -0.5px; }
.price-old { font-size: 0.85rem; text-decoration: line-through; color: #64748b; font-weight: 500; }

.btn-add {
    width: 100%; padding: 1rem; background: rgba(255,255,255,0.03); color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; font-weight: 600; font-size: 0.8rem; 
    letter-spacing: 1px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-heading); text-transform: uppercase; cursor: pointer;
    backdrop-filter: blur(2px); position: relative; overflow: hidden; z-index: 1;
}
.btn-add::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.15), transparent);
    transform: skewX(-25deg); transition: none; z-index: -1;
}
.btn-add:hover {
    background: var(--accent, var(--primary)); color: #fff; border-color: var(--accent, var(--primary));
    transform: translateY(-2px); box-shadow: 0 8px 20px var(--accent-glow, rgba(225,29,72,0.3));
}
.btn-add:hover::before { animation: jarSweep 0.8s ease forwards; }

/* Card Variables Mapping — neutral jar body colors; accent comes from categories later */
.card-1 { --product-color: #64748b; }
.card-2 { --product-color: #e11d48; }
.card-3 { --product-color: #737373; }
.card-4 { --product-color: #e11d48; }
.card-5 { --product-color: #475569; }
.card-6 { --product-color: #e11d48; }
.card-7 { --product-color: #94a3b8; }
.card-8 { --product-color: #334155; }

/* PAGE HEADER (For SHOP page) */
.page-header { padding: 6rem 0 4rem; text-align: center; }
.page-header h1 { font-size: 3.5rem; letter-spacing: -1px; margin-bottom: 1rem; }
.page-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* REFINED TEXT SECTIONS */
.text-section { padding: 8rem 0; max-width: 800px; margin: 0 auto; text-align: center; }
.text-section h2 { font-size: 2.2rem; margin-bottom: 2rem; letter-spacing: -1px; }
.text-section p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.5rem; font-weight: 300; }
.text-section strong { color: var(--text-main); font-weight: 500; }

/* FAQ */
.faq-section { padding: 4rem 0 8rem; max-width: 800px; margin: 0 auto; }
.faq-section h2 { text-align: center; font-size: 2.2rem; margin-bottom: 3rem; letter-spacing: -1px; }
details { border: 1px solid var(--border); border-radius: 6px; margin-bottom: 1rem; background: var(--surface); text-align: left; transition: all var(--transition); }
details[open] { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.02); }
summary { padding: 1.5rem 2rem; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 500; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text-main); }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--text-muted); font-size: 1.2rem; transition: transform var(--transition); }
details[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-content { padding: 0 2rem 1.5rem; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 1.5rem; font-weight: 300; }

/* NEWSLETTER */
.newsletter { text-align: center; padding: 6rem 0; position: relative; overflow: hidden; }
.newsletter::before { content:''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0.5; }
.newsletter h2 { font-size: 2.5rem; margin-bottom: 1rem; letter-spacing: -1px; }
.newsletter p { color: var(--primary); font-family: var(--font-heading); letter-spacing: 2px; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 3rem; }
.newsletter-form { display: flex; max-width: 600px; margin: 0 auto; gap: 0.5rem; }
.newsletter-input { flex: 1; padding: 1.2rem 1.5rem; border: 1px solid var(--border); background: rgba(0,0,0,0.5); color: var(--text-main); border-radius: 4px; outline: none; transition: border-color var(--transition); }
.newsletter-input:focus { border-color: var(--primary); }
.btn-subscribe { background: var(--primary); color: #fff; border: none; padding: 0 2.5rem; border-radius: 4px; font-weight: 600; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: all var(--transition); font-family: var(--font-heading); }
.btn-subscribe:hover { background: var(--text-main); color: #000; }

/* FOOTER */
footer { padding: 5rem 0 2rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 4rem; }
.footer-col h5 { font-size: 0.85rem; color: var(--text-main); margin-bottom: 1.5rem; letter-spacing: 2px; font-family: var(--font-heading); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul a { color: var(--text-muted); font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--text-main); }
.footer-logo-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo-col .nav-logo { margin-bottom: 1rem; height: 40px; }
.footer-logo-col .nav-logo img { height: 200px; margin-top: -80px; }
.socials { display: flex; gap: 1rem; color: var(--text-muted); margin-top: 1rem; }
.socials svg { width: 24px; height: 24px; cursor: pointer; transition: color var(--transition); fill: currentColor; }
.socials svg:hover { color: var(--text-main); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; color: #475569; font-size: 0.75rem; line-height: 1.6; text-align: left; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 6rem 0; }
    .hero p { margin: 0 auto 2.5rem; }
    .hero-svg { width: 200px; }
    .nav-links { display: none; }
    .cat-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
    .cat-grid, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .btn-subscribe { padding: 1.2rem; }
    .hero h1 { font-size: 2.5rem; }
}

/* FILTERS (For SHOP page) */
.filters-bar { display: flex; justify-content: space-between; align-items: center; padding: 2rem 0; margin-bottom: 2rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.filter-group { display: flex; gap: 1rem; align-items: center; }
.filter-btn { background: transparent; border: 1px solid var(--border); color: var(--text-muted); padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; transition: all var(--transition); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.filter-btn:hover, .filter-btn.active { color: var(--text-main); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.02); }
.sort-select { background: var(--surface); border: 1px solid var(--border); color: var(--text-main); padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.85rem; outline: none; cursor: pointer; }

/* Shared catalog components */
.product-link { cursor: pointer; }
.catalog-kicker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.category-chip,
.dose-chip,
.category-pill,
.catalog-filter {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}
.category-chip,
.dose-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.64rem;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(248, 250, 252, 0.78);
    text-transform: uppercase;
    line-height: 1;
}
.category-chip i,
.dose-chip i {
    width: 6px;
    height: 6px;
    min-height: 6px;
    border-radius: 50%;
    background: var(--swatch, var(--accent, var(--primary)));
    box-shadow: 0 0 10px var(--accent-glow, rgba(255,255,255,0.1));
    display: inline-block;
    opacity: 0.95;
}
.category-pill {
    display: grid;
    grid-template-columns: 4px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    min-height: 58px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    color: var(--text-main);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.category-pill:hover {
    transform: translateY(-3px);
    border-color: var(--accent-glow, rgba(255,255,255,0.14));
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
}
.category-pill i {
    width: 4px;
    height: 100%;
    min-height: 30px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--swatch, var(--accent, var(--primary))), rgba(255,255,255,0.18));
    display: block;
}
.category-pill-name {
    font-size: 0.92rem;
    letter-spacing: 0.1px;
    line-height: 1.2;
}
.category-pill strong {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-summary {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
    min-height: 78px;
}
.card-cta {
    margin-top: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cat-visual {
    width: 100%;
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 1.5rem;
}
.cat-visual-haze,
.cat-visual-line,
.cat-visual-marker {
    position: absolute;
}
.cat-visual-haze {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    left: 10px;
    top: 2px;
    background:
        radial-gradient(circle, var(--accent-soft, rgba(255,255,255,0.1)) 0%, rgba(255,255,255,0.04) 38%, transparent 72%);
    filter: blur(10px);
    opacity: 0.95;
}
.cat-visual-line {
    left: 0;
    right: 18%;
    top: 62%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent, var(--primary)) 0%, rgba(255,255,255,0.1) 100%);
    box-shadow: 0 0 18px var(--accent-soft, rgba(255,255,255,0.08));
}
.cat-visual-line.short {
    top: 78%;
    right: 40%;
    opacity: 0.55;
}
.cat-visual-marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: calc(62% - 6px);
    right: calc(18% - 7px);
    background: var(--swatch, var(--accent, var(--primary)));
    box-shadow: 0 0 0 7px var(--accent-soft, rgba(255,255,255,0.05));
}
.cat-meta {
    display: flex;
    justify-content: flex-start;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: 1.15rem;
}
.cat-meta span {
    font-size: 0.76rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}
.catalog-filter {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.74rem;
    text-transform: uppercase;
}
.catalog-filter:hover,
.catalog-filter.active {
    border-color: var(--accent, var(--primary));
    background: var(--accent-soft, rgba(255,255,255,0.05));
    color: var(--accent, var(--text-main));
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.empty-state {
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    color: var(--text-muted);
    background: rgba(255,255,255,0.02);
}

@media (max-width: 900px) {
    .category-pill {
        grid-template-columns: 4px minmax(0, 1fr) auto;
    }
}

@media (max-width: 600px) {
    .category-pill {
        padding: 0.8rem 0.9rem;
        border-radius: 16px;
    }
    .category-pill-name {
        font-size: 0.88rem;
    }
    .cat-visual {
        min-height: 104px;
    }
    .cat-visual-haze {
        width: 104px;
        height: 104px;
        left: 0;
    }
}
