/* ══════════════════════════════════════════════
   Pepspan — Global Stylesheet
   Source: validated mockup homepage-v4.html
   ══════════════════════════════════════════════ */

:root {
  --primary: #07446d;
  --accent: #00b3e2;
  --bg: #ffffff;
  --text: #1a1a2e;
  --muted: #7fa8c4;
  --border: #e8edf2;
  --light-bg: #f7fafd;
  --success: #22c55e;
  --trustpilot: #00b67a;
  --whatsapp: #25d366;
  --font-headline: 'Geologica', sans-serif;
  --font-body: 'Cabin', sans-serif;
}

/* ── RESET ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
body { background:var(--bg); color:var(--text); font-family:var(--font-body); -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }

/* ── DISCLAIMER BAR ── */
.disclaimer-bar {
  background:#0a1929;
  border-bottom:1px solid #1e293b;
  padding:7px 40px;
  text-align:center;
  font-family:var(--font-headline);
  font-size:9px;
  letter-spacing:2px;
  color:#475569;
}

/* ── TRUST BAR (animated marquee) ── */
.trust-bar {
  background:var(--primary);
  color:#fff;
  padding:9px 0;
  overflow:hidden;
  white-space:nowrap;
}
.trust-bar-track {
  display:inline-flex;
  animation: marquee 28s linear infinite;
}
.trust-bar-track span {
  font-size:11px;
  letter-spacing:1.5px;
  padding:0 28px;
  font-family:var(--font-headline);
  font-weight:500;
}
.trust-bar-track .sep { color:#5a9ec4; padding:0 4px; }
@keyframes marquee {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

/* ── NAV ── */
nav {
  background:#fff;
  border-bottom:1px solid var(--border);
  padding:0 48px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:72px;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 1px 12px rgba(0,0,0,.06);
}
.logo {
  font-family:var(--font-headline);
  font-size:22px;
  font-weight:700;
  color:var(--primary);
  letter-spacing:1px;
  display:flex;
  align-items:center;
  gap:8px;
}
.logo span { color:var(--accent); }
.logo svg { width:32px; height:32px; }
nav ul { display:flex; gap:28px; list-style:none; }
nav ul li a {
  color:#3a4a5c;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  font-family:var(--font-headline);
  transition:color .2s;
}
nav ul li a:hover { color:var(--primary); }
.nav-contact {
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--primary);
  color:#fff;
  padding:9px 18px;
  font-size:12px;
  font-weight:600;
  border:none;
  cursor:pointer;
  border-radius:6px;
  font-family:var(--font-headline);
  transition:background .2s;
}
.nav-contact:hover { background:#0a5585; }

/* ── HERO ── */
.hero {
  background:linear-gradient(135deg,#f0f7ff 0%,#e8f4fd 50%,#f5faff 100%);
  padding:72px 48px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  border-bottom:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.hero-eyebrow {
  font-family:var(--font-headline);
  font-size:11px;
  font-weight:600;
  letter-spacing:3px;
  color:var(--accent);
  text-transform:uppercase;
  margin-bottom:16px;
}
.hero-headline {
  font-family:var(--font-headline);
  font-size:46px;
  font-weight:700;
  line-height:1.1;
  color:var(--primary);
  margin-bottom:16px;
  letter-spacing:-1px;
}
.hero-headline em { font-style:normal; color:var(--accent); }
.hero-sub {
  font-size:15px;
  color:#5a7a94;
  line-height:1.7;
  margin-bottom:28px;
  max-width:420px;
}
.trust-pills { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:32px; }
.pill {
  background:#fff;
  border:1px solid #d0e4f0;
  color:var(--primary);
  padding:6px 14px;
  font-size:11px;
  font-weight:600;
  border-radius:20px;
  font-family:var(--font-headline);
  display:flex;
  align-items:center;
  gap:5px;
}
.pill .check { color:var(--accent); font-weight:700; font-size:12px; }
.hero-btns { display:flex; gap:12px; }
.btn-primary {
  background:var(--primary);
  color:#fff;
  padding:14px 32px;
  font-size:13px;
  font-weight:700;
  border:none;
  cursor:pointer;
  border-radius:8px;
  font-family:var(--font-headline);
  letter-spacing:.5px;
  transition:background .2s;
  display:inline-block;
  text-decoration:none;
  text-align:center;
}
.btn-primary:hover { background:#0a5585; }
.btn-outline {
  background:#fff;
  color:var(--primary);
  padding:14px 24px;
  font-size:13px;
  font-weight:600;
  border:1.5px solid var(--primary);
  cursor:pointer;
  border-radius:8px;
  font-family:var(--font-headline);
  transition:all .2s;
  display:inline-block;
  text-decoration:none;
  text-align:center;
}
.btn-outline:hover { background:var(--primary); color:#fff; }

/* ── HERO RIGHT (featured products + stats) ── */
.hero-img-wrap {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  position:relative;
}
.vial-card {
  background:#fff;
  border:1px solid #e0eaf2;
  border-radius:12px;
  padding:20px;
  text-align:center;
  box-shadow:0 4px 20px rgba(7,68,109,.07);
  transition:transform .2s, box-shadow .2s;
}
.vial-card:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(7,68,109,.12); }
.vial-placeholder {
  background:linear-gradient(145deg,#e8f4fd,#d0e8f5);
  height:110px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}
.vial-placeholder span { font-size:11px; color:var(--muted); letter-spacing:1px; }
.vial-name { font-family:var(--font-headline); font-size:13px; font-weight:600; color:var(--primary); margin-bottom:4px; }
.vial-price { font-size:15px; font-weight:700; color:var(--primary); }
.hero-stats {
  grid-column:1/-1;
  display:flex;
  gap:24px;
  background:#fff;
  border:1px solid #e0eaf2;
  border-radius:10px;
  padding:16px 24px;
}
.stat { flex:1; text-align:center; }
.stat-num { font-family:var(--font-headline); font-size:20px; font-weight:700; color:var(--primary); }
.stat-lbl { font-size:10px; color:var(--muted); letter-spacing:1px; margin-top:2px; font-family:var(--font-headline); }

/* ── MOLECULAR ANIMATION (hero background) ── */
.molecular-bg {
  position:absolute;
  top:0; right:0;
  width:50%;
  height:100%;
  pointer-events:none;
  opacity:.08;
}
.molecular-bg svg { width:100%; height:100%; }

/* ── SECTIONS ── */
.section { padding:56px 48px; }
.section-title {
  font-family:var(--font-headline);
  font-size:28px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:8px;
}
.section-sub { font-size:14px; color:var(--muted); margin-bottom:36px; }

/* ── CATEGORY SECTIONS (Performance & Recovery / Anti-Aging & Longevity) ── */
.cat-section {
  padding:56px 48px;
  border-bottom:1px solid var(--border);
}
.cat-section-header {
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:8px;
}
.cat-section-icon {
  display:none;
}
.cat-section-icon svg { width:26px; height:26px; stroke-width:1.5; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.cat-section-title {
  font-family:var(--font-headline);
  font-size:26px;
  font-weight:700;
  letter-spacing:-0.5px;
}
.cat-section-desc {
  font-size:14px;
  line-height:1.6;
  margin-bottom:32px;
  max-width:600px;
}
.cat-section-sub {
  font-family:var(--font-headline);
  font-size:11px;
  letter-spacing:2px;
  font-weight:600;
  text-transform:uppercase;
  margin-bottom:14px;
  margin-top:28px;
  display:flex;
  align-items:center;
  gap:8px;
}
.cat-section-sub::after {
  content:'';
  flex:1;
  height:1px;
}

/* Performance & Recovery — blue/green palette */
.cat-performance {
  background:linear-gradient(135deg,#f0f9f4 0%,#eaf6fb 50%,#f5faff 100%);
}
.cat-performance .cat-section-icon {
  background:linear-gradient(135deg,#0a5c3a,#07446d);
}
.cat-performance .cat-section-icon svg { stroke:#fff; }
.cat-performance .cat-section-title { color:#07446d; }
.cat-performance .cat-section-desc { color:#3a6a5c; }
.cat-performance .cat-section-sub { color:#0a7a4a; }
.cat-performance .cat-section-sub::after { background:#c0e8d4; }
.cat-performance .product-card { border-color:#c0e0d0; }
.cat-performance .product-card:hover { border-color:#0a7a4a; box-shadow:0 8px 32px rgba(10,122,74,.1); }
.cat-performance .product-category { color:#0a7a4a; }

/* Anti-Aging & Longevity — gold/purple palette */
.cat-antiaging {
  background:linear-gradient(135deg,#fdf8f0 0%,#f8f0fa 50%,#faf5ff 100%);
}
.cat-antiaging .cat-section-icon {
  background:linear-gradient(135deg,#8b6914,#6b2fa0);
}
.cat-antiaging .cat-section-icon svg { stroke:#fff; }
.cat-antiaging .cat-section-title { color:#5a2d82; }
.cat-antiaging .cat-section-desc { color:#7a5a3c; }
.cat-antiaging .cat-section-sub { color:#8b6914; }
.cat-antiaging .cat-section-sub::after { background:#e8d8b0; }
.cat-antiaging .product-card { border-color:#e0d0e8; }
.cat-antiaging .product-card:hover { border-color:#6b2fa0; box-shadow:0 8px 32px rgba(107,47,160,.1); }
.cat-antiaging .product-category { color:#8b6914; }

/* ── PRODUCT CARDS (grid) ── */
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.product-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  transition:all .2s;
  box-shadow:0 2px 12px rgba(0,0,0,.04);
}
.product-card:hover { transform:translateY(-4px); box-shadow:0 8px 32px rgba(7,68,109,.1); border-color:#b8d4e8; }
.product-img {
  background:linear-gradient(145deg,#f0f7ff,#e0eef8);
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.product-img span { font-size:11px; color:#a0bdd0; letter-spacing:1px; }
.product-label {
  position:absolute;
  top:12px; left:12px;
  background:var(--primary);
  color:#fff;
  font-size:9px;
  font-weight:700;
  padding:3px 10px;
  border-radius:10px;
  letter-spacing:1px;
  font-family:var(--font-headline);
}
.product-label.green { background:var(--success); }
.product-body { padding:20px; }
.product-category {
  font-size:10px;
  color:var(--accent);
  letter-spacing:2px;
  font-weight:600;
  font-family:var(--font-headline);
  margin-bottom:6px;
  text-transform:uppercase;
}
.product-name { font-family:var(--font-headline); font-size:17px; font-weight:700; color:var(--primary); margin-bottom:4px; }
.product-desc { font-size:12px; color:var(--muted); line-height:1.6; margin-bottom:14px; }
.product-footer { display:flex; justify-content:space-between; align-items:center; }
.product-price { font-family:var(--font-headline); font-size:20px; font-weight:700; color:var(--primary); }
.product-coa { font-size:10px; color:var(--success); font-weight:600; }
.btn-buy {
  background:var(--primary);
  color:#fff;
  border:none;
  padding:10px 20px;
  font-size:11px;
  font-weight:700;
  border-radius:6px;
  cursor:pointer;
  font-family:var(--font-headline);
  letter-spacing:.5px;
  transition:background .2s;
  text-decoration:none;
  display:inline-block;
}
.btn-buy:hover { background:#0a5585; }

/* ── CATALOG LIST ── */
.catalog-section {
  background:var(--light-bg);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:48px;
}
.catalog-row {
  background:#fff;
  border:1px solid var(--border);
  border-top:none;
  padding:18px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:background .15s;
}
.catalog-row:first-of-type { border-top:1px solid var(--border); border-radius:10px 10px 0 0; }
.catalog-row:last-of-type { border-radius:0 0 10px 10px; }
.catalog-row:hover { background:var(--light-bg); }
.cr-cat { font-size:9px; color:var(--accent); letter-spacing:2px; font-weight:600; font-family:var(--font-headline); margin-bottom:4px; text-transform:uppercase; }
.cr-name { font-family:var(--font-headline); font-size:15px; font-weight:600; color:var(--primary); }
.cr-dose { font-size:12px; color:#a0bdd0; margin-left:6px; font-weight:400; }
.cr-right { display:flex; align-items:center; gap:16px; }
.cr-price { font-family:var(--font-headline); font-size:18px; font-weight:700; color:var(--primary); }

/* ── REVIEWS ── */
.reviews-section { padding:56px 48px; background:#fff; }
.reviews-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:32px; }
.trustpilot-badge {
  display:flex;
  align-items:center;
  gap:10px;
  background:var(--light-bg);
  border:1px solid var(--border);
  padding:10px 18px;
  border-radius:8px;
}
.tp-stars { color:var(--trustpilot); font-size:16px; font-family:var(--font-headline); font-weight:700; letter-spacing:1px; }
.tp-score { font-family:var(--font-headline); font-size:15px; font-weight:700; color:var(--text); }
.tp-count { font-size:11px; color:var(--muted); }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.review-card {
  background:var(--light-bg);
  border:1px solid var(--border);
  border-radius:10px;
  padding:20px;
}
.review-stars { color:var(--trustpilot); font-size:13px; font-family:var(--font-headline); font-weight:700; letter-spacing:2px; margin-bottom:10px; }
.review-text { font-size:13px; color:#3a4a5c; line-height:1.6; margin-bottom:14px; font-style:italic; }
.reviewer { display:flex; align-items:center; gap:10px; }
.reviewer-avatar {
  width:36px; height:36px; border-radius:50%;
  background:var(--primary);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:13px; font-weight:700; font-family:var(--font-headline);
}
.reviewer-name { font-family:var(--font-headline); font-size:13px; font-weight:600; color:var(--primary); }
.reviewer-meta { font-size:10px; color:#a0bdd0; }

/* ── SHIPPING BANNER ── */
.shipping-banner {
  background:var(--primary);
  color:#fff;
  padding:40px 48px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:32px;
}
.ship-item { text-align:center; }
.ship-icon { margin-bottom:12px; }
.ship-icon svg { width:32px; height:32px; stroke:#fff; stroke-width:1.5; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.ship-title { font-family:var(--font-headline); font-size:14px; font-weight:700; margin-bottom:4px; }
.ship-desc { font-size:12px; color:#7fb8d4; line-height:1.5; }

/* ── FOOTER ── */
footer {
  background:#0a1929;
  color:#e2e8f0;
  padding:48px;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:32px;
}
.footer-brand-name { font-family:var(--font-headline); font-size:20px; font-weight:700; color:#fff; margin-bottom:12px; }
.footer-brand-name span { color:var(--accent); }
footer p { font-size:12px; color:#475569; line-height:1.7; }
.footer-col h4 { font-family:var(--font-headline); font-size:11px; letter-spacing:2px; color:#475569; margin-bottom:14px; text-transform:uppercase; }
.footer-col ul { list-style:none; }
.footer-col ul li { font-size:12px; color:#64748b; margin-bottom:8px; }
.footer-col ul li a { color:#64748b; transition:color .2s; }
.footer-col ul li a:hover { color:var(--accent); }
.footer-bottom {
  background:#040d1a;
  padding:16px 48px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.footer-bottom p { font-size:11px; color:#334155; }
.footer-disclaimer-text {
  font-size:10px;
  color:#1e3a5a;
  letter-spacing:1px;
  text-align:center;
  padding:12px 48px;
  background:#040d1a;
  border-top:1px solid #0f2235;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position:fixed;
  bottom:24px; right:24px;
  background:var(--whatsapp);
  color:#fff;
  width:56px; height:56px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  cursor:pointer;
  z-index:200;
  transition:transform .2s;
  text-decoration:none;
}
.wa-float:hover { transform:scale(1.1); }
.wa-float svg { width:28px; height:28px; fill:#fff; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding:12px 48px;
  font-size:12px;
  color:var(--muted);
  font-family:var(--font-headline);
  border-bottom:1px solid var(--border);
  background:var(--light-bg);
}
.breadcrumb a { color:var(--accent); text-decoration:none; }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb .sep { margin:0 8px; color:#c0d0dd; }

/* ══════════════════════════════════════════════
   PRODUCT PAGE
   ══════════════════════════════════════════════ */
.product-page { padding:48px; max-width:1200px; margin:0 auto; }
.product-page-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; margin-bottom:48px; }
.product-page-img {
  background:linear-gradient(145deg,#f0f7ff,#e0eef8);
  height:400px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.product-page-img span { font-size:12px; color:var(--muted); letter-spacing:1px; }
.product-page-category {
  font-size:11px;
  color:var(--accent);
  letter-spacing:2px;
  font-weight:600;
  font-family:var(--font-headline);
  text-transform:uppercase;
  margin-bottom:8px;
}
.product-page-title {
  font-family:var(--font-headline);
  font-size:36px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:8px;
}
.product-page-dose { font-size:14px; color:var(--muted); margin-bottom:24px; }
.product-page-price {
  font-family:var(--font-headline);
  font-size:32px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:8px;
}
.product-page-coa { font-size:11px; color:var(--success); font-weight:600; margin-bottom:24px; display:flex; gap:12px; flex-wrap:wrap; }
.product-page-buy {
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:16px 40px;
  font-size:14px;
  font-weight:700;
  border-radius:8px;
  text-decoration:none;
  font-family:var(--font-headline);
  letter-spacing:1px;
  transition:background .2s;
  margin-bottom:32px;
  border:none;
  cursor:pointer;
}
.product-page-buy:hover { background:#0a5585; }
.product-page-section {
  margin-bottom:32px;
  padding-bottom:32px;
  border-bottom:1px solid var(--border);
}
.product-page-section:last-of-type { border-bottom:none; }
.product-page-section h2 {
  font-family:var(--font-headline);
  font-size:18px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:12px;
}
.product-page-section p,
.product-page-section ul {
  font-size:14px;
  color:#3a4a5c;
  line-height:1.8;
}
.product-page-section ul { padding-left:20px; }
.product-page-section li { margin-bottom:6px; }
.related-products { margin-top:48px; }
.related-products h2 {
  font-family:var(--font-headline);
  font-size:22px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:24px;
}
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.related-blog { margin-top:24px; padding:20px; background:var(--light-bg); border:1px solid var(--border); border-radius:10px; }
.related-blog h3 { font-family:var(--font-headline); font-size:14px; font-weight:600; color:var(--primary); margin-bottom:8px; }
.related-blog a { color:var(--accent); font-size:13px; display:block; margin-bottom:4px; }

/* ══════════════════════════════════════════════
   BLOG PAGE
   ══════════════════════════════════════════════ */
.blog-page { padding:48px; max-width:840px; margin:0 auto; }
.blog-page-title {
  font-family:var(--font-headline);
  font-size:36px;
  font-weight:700;
  color:var(--primary);
  line-height:1.2;
  margin-bottom:12px;
}
.blog-page-meta {
  font-size:12px;
  color:var(--muted);
  margin-bottom:32px;
  font-family:var(--font-headline);
  letter-spacing:1px;
}
.blog-page-content h2 {
  font-family:var(--font-headline);
  font-size:22px;
  font-weight:700;
  color:var(--primary);
  margin:32px 0 12px;
}
.blog-page-content h3 {
  font-family:var(--font-headline);
  font-size:18px;
  font-weight:600;
  color:var(--primary);
  margin:24px 0 8px;
}
.blog-page-content p {
  font-size:15px;
  color:#3a4a5c;
  line-height:1.8;
  margin-bottom:16px;
}
.blog-page-content ul, .blog-page-content ol { padding-left:24px; margin-bottom:16px; }
.blog-page-content li { font-size:15px; color:#3a4a5c; line-height:1.8; margin-bottom:6px; }
.blog-page-content a { color:var(--accent); text-decoration:underline; }
.blog-page-content a:hover { color:var(--primary); }
.blog-page-cta {
  background:var(--light-bg);
  border:1px solid var(--border);
  border-radius:12px;
  padding:32px;
  text-align:center;
  margin:40px 0;
}
.blog-page-cta h3 { font-family:var(--font-headline); color:var(--primary); margin-bottom:12px; }
.blog-page-cta p { color:var(--muted); margin-bottom:16px; }

/* ── FAQ SECTION (blog) ── */
.faq-section { margin:40px 0; }
.faq-section h2 {
  font-family:var(--font-headline);
  font-size:22px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:20px;
}
.faq-item {
  border-bottom:1px solid var(--border);
  padding:16px 0;
}
.faq-item:first-of-type { border-top:1px solid var(--border); }
.faq-question {
  font-family:var(--font-headline);
  font-size:15px;
  font-weight:600;
  color:var(--primary);
  margin-bottom:8px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-question::after { content:'+'; font-size:18px; color:var(--muted); transition:transform .2s; }
.faq-item.active .faq-question::after { transform:rotate(45deg); }
.faq-answer {
  font-size:14px;
  color:#3a4a5c;
  line-height:1.7;
  display:none;
  padding-top:4px;
}
.faq-item.active .faq-answer { display:block; }

/* ══════════════════════════════════════════════
   LEGAL PAGE
   ══════════════════════════════════════════════ */
.legal-page { padding:48px; max-width:840px; margin:0 auto; }
.legal-page h1 {
  font-family:var(--font-headline);
  font-size:32px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:8px;
}
.legal-page .legal-updated { font-size:12px; color:var(--muted); margin-bottom:32px; }
.legal-page h2 {
  font-family:var(--font-headline);
  font-size:20px;
  font-weight:700;
  color:var(--primary);
  margin:28px 0 10px;
}
.legal-page p { font-size:14px; color:#3a4a5c; line-height:1.8; margin-bottom:14px; }
.legal-page ul { padding-left:24px; margin-bottom:14px; }
.legal-page li { font-size:14px; color:#3a4a5c; line-height:1.8; margin-bottom:4px; }

/* ══════════════════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════════════════ */
.mobile-menu-btn {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.mobile-menu-btn span {
  display:block;
  width:24px;
  height:2px;
  background:var(--primary);
  transition:all .3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity:0; }
.mobile-menu-btn.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
  display:none;
  position:fixed;
  top:72px; left:0; right:0; bottom:0;
  background:#fff;
  z-index:99;
  padding:32px 24px;
  overflow-y:auto;
}
.mobile-nav.active { display:block; }
.mobile-nav a {
  display:block;
  padding:16px 0;
  font-family:var(--font-headline);
  font-size:16px;
  font-weight:600;
  color:var(--primary);
  text-decoration:none;
  border-bottom:1px solid var(--border);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  display:none;
  position:fixed;
  bottom:0; left:0; right:0;
  background:#fff;
  border-top:1px solid var(--border);
  padding:16px 48px;
  z-index:300;
  box-shadow:0 -4px 20px rgba(0,0,0,.08);
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.cookie-banner.active { display:flex; }
.cookie-banner p { font-size:13px; color:#3a4a5c; max-width:700px; }
.cookie-banner button {
  background:var(--primary);
  color:#fff;
  border:none;
  padding:10px 24px;
  border-radius:6px;
  font-family:var(--font-headline);
  font-weight:600;
  font-size:12px;
  cursor:pointer;
  white-space:nowrap;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width:1024px) {
  .hero { grid-template-columns:1fr; padding:48px 24px; }
  .hero-img-wrap { margin-top:32px; }
  .cat-section { padding:48px 24px; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .reviews-grid { grid-template-columns:repeat(2,1fr); }
  .shipping-banner { grid-template-columns:1fr; }
  footer { grid-template-columns:1fr 1fr; }
  .product-page-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  nav { padding:0 16px; height:60px; }
  nav ul { display:none; }
  .mobile-menu-btn { display:flex; }
  .section { padding:32px 16px; }
  .cat-section { padding:32px 16px; }
  .catalog-section { padding:32px 16px; }
  .reviews-section { padding:32px 16px; }
  .shipping-banner { padding:32px 16px; }
  footer { padding:32px 16px; grid-template-columns:1fr; }
  .footer-bottom { padding:16px; flex-direction:column; gap:8px; }
  .hero { padding:32px 16px; }
  .hero-headline { font-size:32px; }
  .products-grid { grid-template-columns:1fr; }
  .related-grid { grid-template-columns:1fr; }
  .reviews-grid { grid-template-columns:1fr; }
  .reviews-header { flex-direction:column; align-items:flex-start; gap:16px; }
  .blog-page, .legal-page, .product-page { padding:24px 16px; }
  .product-page-title { font-size:28px; }
  .blog-page-title { font-size:28px; }
  .breadcrumb { padding:12px 16px; }
  .disclaimer-bar { padding:7px 16px; }
  .cookie-banner { padding:16px; flex-direction:column; }
  .mobile-nav { top:60px; }
  .catalog-row { flex-direction:column; align-items:flex-start; gap:12px; }
  .cr-right { align-self:flex-end; }
}
@media (max-width:480px) {
  .hero-img-wrap { grid-template-columns:1fr; }
  .hero-stats { flex-direction:column; gap:12px; }
  .category-grid { grid-template-columns:1fr; }
  .trust-pills { flex-direction:column; }
  .hero-btns { flex-direction:column; }
  .hero-headline { font-size:28px; }
}
