/* ══════════════════════════════════════════════
   Korean Fillers EU — Global Stylesheet
   Adapted from Pepspan template for aesthetic professionals
   ══════════════════════════════════════════════ */

@keyframes vialFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
@media (hover:none) {
  .vial-placeholder img { animation: vialFloatSimple 3s ease-in-out infinite; }
}
@keyframes vialFloatSimple {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

:root {
  --primary: #0f0f1a;
  --accent: #c9a96e;
  --bg: #ffffff;
  --text: #1a1a2e;
  --muted: #7a7a8e;
  --border: #e8e4df;
  --light-bg: #f8f5f0;
  --success: #22c55e;
  --trustpilot: #00b67a;
  --whatsapp: #25d366;
  --font-headline: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, 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:#0a0a14;
  border-bottom:1px solid #1e1e2e;
  padding:7px 40px;
  text-align:center;
  font-family:var(--font-headline);
  font-size:9px;
  letter-spacing:2px;
  color:#6a6a7a;
}

/* ── 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:var(--accent); 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:20px;
  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:#3a3a4c;
  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:#2a2a3e; }

/* ── HERO ── */
.hero {
  background:#060610;
  padding:80px 64px 64px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
  max-width:100%;
  margin:0 auto;
  position:relative;
  overflow:hidden;
}
.hero::before {
  content:'';
  position:absolute;
  top:-100px; right:-50px;
  width:600px; height:600px;
  background:radial-gradient(ellipse, rgba(201,169,110,.06) 0%, transparent 65%);
  border-radius:50%;
  pointer-events:none;
}
/* Hero compact single-column variant */
.hero-compact {
  grid-template-columns:1fr;
  padding:64px 64px 56px;
  text-align:center;
}
.hero-center { position:relative; z-index:1; max-width:780px; margin:0 auto; }
.hero-compact .hero-eyebrow { justify-content:center; }
.hero-compact .hero-eyebrow::before { display:none; }
.hero-compact .hero-sub { max-width:560px; margin-left:auto; margin-right:auto; margin-bottom:32px; }
.hero-compact .hero-ctas { justify-content:center; }
/* Value props row */
.hero-value-props {
  display:flex;
  justify-content:center;
  gap:28px;
  margin-bottom:36px;
  flex-wrap:wrap;
}
.hero-vp {
  display:flex;
  align-items:center;
  gap:7px;
  font-size:12px;
  color:rgba(240,236,228,.55);
  font-weight:500;
  white-space:nowrap;
}
.hero-vp svg { flex-shrink:0; }
/* WhatsApp button */
.btn-whatsapp {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#25d366;
  color:#fff;
  padding:14px 24px;
  font-size:11px;
  font-weight:700;
  border-radius:8px;
  font-family:var(--font-body);
  letter-spacing:1px;
  text-transform:uppercase;
  text-decoration:none;
  transition:all .3s;
  box-shadow:0 4px 16px rgba(37,211,102,.25);
}
.btn-whatsapp:hover { background:#20bd5a; transform:translateY(-2px); box-shadow:0 6px 24px rgba(37,211,102,.35); }
@media(max-width:700px) {
  .hero-compact { padding:48px 24px 40px; }
  .hero-value-props { gap:14px; }
  .hero-vp { font-size:11px; }
}
.hero-left { position:relative; z-index:1; }
.hero-eyebrow {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:500;
  letter-spacing:5px;
  color:rgba(201,169,110,.75);
  text-transform:uppercase;
  margin-bottom:24px;
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-eyebrow::before {
  content:'';
  width:28px; height:1.5px;
  background:rgba(201,169,110,.4);
}
.hero-headline {
  font-family:var(--font-headline);
  font-size:clamp(40px,5vw,58px);
  font-weight:700;
  line-height:1.1;
  color:#f0ece4;
  margin-bottom:24px;
  letter-spacing:-0.5px;
}
.hero-headline em { font-style:italic; color:var(--accent); }
.hero-sub {
  font-size:15px;
  color:rgba(240,236,228,.4);
  line-height:1.8;
  margin-bottom:36px;
  max-width:420px;
}

/* COA verification banner */
.coa-banner {
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(201,169,110,.15);
  border-radius:10px;
  padding:16px 20px;
  margin-bottom:36px;
  max-width:420px;
  box-shadow:none;
}
.coa-banner-icon {
  width:40px; height:40px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  border-radius:50%;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.coa-banner-title {
  font-size:12px;
  color:#d8d0c0;
  font-weight:600;
}
.coa-banner-desc {
  font-size:11px;
  color:rgba(216,208,192,.4);
  margin-top:4px;
  line-height:1.5;
}
.coa-banner-link {
  font-size:11px;
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
  margin-top:6px;
  display:inline-block;
  transition:color .2s;
}
.coa-banner-link:hover { color:#e8d09a; }

/* Hero CTAs */
.hero-ctas { display:flex; align-items:center; gap:16px; margin-bottom:40px; }
.btn-primary {
  background:linear-gradient(135deg,#c9a96e,#b8914d);
  color:#0a0a12;
  padding:16px 32px;
  font-size:11px;
  font-weight:700;
  border:none;
  cursor:pointer;
  border-radius:8px;
  font-family:var(--font-body);
  letter-spacing:1.5px;
  text-transform:uppercase;
  transition:all .3s;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  text-align:center;
  box-shadow:0 4px 20px rgba(201,169,110,.3);
}
.btn-primary:hover { background:linear-gradient(135deg,#d4b97a,#c9a96e); transform:translateY(-2px); box-shadow:0 8px 32px rgba(201,169,110,.4); }
.btn-primary svg { transition:transform .2s; }
.btn-primary:hover svg { transform:translateX(3px); }
.link-secondary {
  font-size:12px;
  color:rgba(240,236,228,.4);
  text-decoration:none;
  font-weight:500;
  transition:color .2s;
  display:flex;
  align-items:center;
  gap:6px;
}
.link-secondary:hover { color:rgba(240,236,228,.75); }
.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; }

/* Trust inline checks */
.trust-inline { display:flex; gap:24px; }
.trust-inline-item {
  display:flex;
  align-items:center;
  gap:6px;
  font-size:11px;
  color:rgba(240,236,228,.35);
  font-weight:500;
}
.trust-inline-item svg { flex-shrink:0; }

/* ── HERO RIGHT (featured products + stats) ── */
.hero-right { position:relative; z-index:1; display:flex; flex-direction:column; gap:20px; }
.hero-products { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.vial-badge {
  font-size:9px;
  letter-spacing:2px;
  font-weight:700;
  font-family:var(--font-headline);
  text-transform:uppercase;
  margin-bottom:4px;
  color:var(--accent);
}
.vial-badge-green { color:var(--success); }
.vial-desc { font-size:11px; color:rgba(240,236,228,.35); margin-bottom:10px; }
.vial-coa {
  font-size:9px;
  color:var(--success);
  font-weight:600;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.btn-buy-full { width:100%; text-align:center; }
.vial-card {
  background:rgba(255,255,255,.03);
  border:1px solid rgba(201,169,110,.1);
  border-radius:14px;
  padding:20px;
  text-align:center;
  box-shadow:none;
  transition:all .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vial-card:hover { border-color:rgba(201,169,110,.25); background:rgba(255,255,255,.06); transform:translateY(-4px); }
.vial-placeholder {
  background:linear-gradient(145deg,rgba(255,255,255,.03),rgba(201,169,110,.04));
  height:130px;
  border-radius:8px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  margin-bottom:12px;
  overflow:visible;
  position:relative;
}
.vial-placeholder img {
  max-height:207px;
  max-width:161px;
  object-fit:contain;
  filter:drop-shadow(0 6px 16px rgba(0,0,0,.5)) drop-shadow(0 2px 6px rgba(201,169,110,.1));
  position:relative;
  top:-30px;
  transition:all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vial-card:hover .vial-placeholder img {
  transform:translateY(-8px) scale(1.05);
  filter:drop-shadow(0 12px 24px rgba(0,0,0,.5)) drop-shadow(0 4px 8px rgba(201,169,110,.15));
}
.vial-placeholder span { font-size:11px; color:rgba(240,236,228,.3); letter-spacing:1px; }
.vial-name { font-family:var(--font-headline); font-size:14px; font-weight:600; color:#f0ece4; margin-bottom:4px; }
.vial-price { font-size:16px; font-weight:700; color:var(--accent); }
.hero-stats {
  grid-column:1/-1;
  display:flex;
  gap:0;
  background:transparent;
  border:none;
  border-top:1px solid rgba(201,169,110,.08);
  border-radius:0;
  padding:20px 0;
}
.stat { flex:1; text-align:center; border-right:1px solid rgba(201,169,110,.08); }
.stat:last-child { border-right:none; }
.stat-num { font-family:var(--font-headline); font-size:22px; font-weight:700; color:var(--accent); }
.stat-lbl { font-size:9px; color:rgba(240,236,228,.3); letter-spacing:1.5px; margin-top:2px; font-family:var(--font-body); }

/* ── 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 ── */
.cat-section {
  padding:88px 64px;
  border-bottom:1px solid var(--border);
}
.cat-section-header {
  display:flex;
  flex-direction:column;
  gap:0;
  margin-bottom:10px;
}
.cat-section-header::before {
  content:'';
  width:28px; height:2px;
  background:var(--accent);
  margin-bottom:12px;
}
.cat-section-icon { display:none; }
.cat-section-title {
  font-family:var(--font-headline);
  font-size:clamp(32px,4vw,44px);
  font-weight:700;
  letter-spacing:-0.3px;
}
.cat-section-desc {
  font-size:15px;
  line-height:1.6;
  margin-bottom:32px;
  max-width:500px;
  color:var(--muted);
}
.cat-section-sub {
  font-family:var(--font-headline);
  font-size:11px;
  letter-spacing:3px;
  font-weight:700;
  text-transform:uppercase;
  color:var(--primary);
  margin-bottom:24px;
  margin-top:28px;
  display:inline-block;
  padding-bottom:10px;
  border-bottom:2px solid var(--accent);
}

/* Botulinum Toxins — warm cream palette */
.cat-toxins {
  background:#f8f5f0;
}
.cat-toxins .cat-section-title { color:#1a1a2e; }
.cat-toxins .cat-section-desc { color:#6a5a4a; }
.cat-toxins .cat-section-sub { color:#8b6914; }
.cat-toxins .product-card { border-color:#e0d8cc; }
.cat-toxins .product-card:hover { }
.cat-toxins .product-category { color:#8b6914; }

/* Dermal Fillers — clean white */
.cat-fillers {
  background:#fff;
}
.cat-fillers .cat-section-title { color:#5a2d3c; }
.cat-fillers .cat-section-desc { color:#8a5a6a; }
.cat-fillers .cat-section-sub { color:#a04060; }
.cat-fillers .product-card { border-color:#e8d0d8; }
.cat-fillers .product-card:hover { }
.cat-fillers .product-category { color:#a04060; }

/* ── CAT BOOSTERS ── */
.cat-boosters {
  background:linear-gradient(135deg,#f0f5fd 0%,#edf3fc 50%,#f2f7fd 100%);
}
.cat-boosters .cat-section-title { color:#1a3558; }
.cat-boosters .cat-section-desc { color:#4a6a8a; }
.cat-boosters .cat-section-sub { color:#2a5fa0; }
.cat-boosters .product-card { border-color:#c8d8f0; }
.cat-boosters .product-card:hover { }
.cat-boosters .product-category { color:#2a5fa0; }

/* ── PRODUCT CARDS (grid) ── */
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.product-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  transition:all .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:0 2px 16px rgba(26,26,46,.05);
  position:relative;
  padding-top:0;
  margin-top:0;
  display:flex;
  flex-direction:column;
}
.product-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(26,26,46,.1), 0 0 0 1px rgba(201,169,110,.25); border-color:rgba(201,169,110,.3); }
.product-card:hover .product-details-link { color:var(--accent); }
.product-label {
  display:inline-block;
  font-size:8px;
  font-weight:700;
  padding:3px 10px;
  border-radius:10px;
  letter-spacing:1.5px;
  font-family:var(--font-body);
  text-transform:uppercase;
}
.product-label.green { background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.25); color:#22c55e; }
.product-label.gold { background:rgba(201,169,110,.1); border:1px solid rgba(201,169,110,.25); color:var(--accent); }
.product-body { padding:20px 18px 16px; flex:1; display:flex; flex-direction:column; border-bottom:1px solid var(--border); }
.product-category {
  font-size:9px;
  color:var(--accent);
  letter-spacing:3px;
  font-weight:700;
  font-family:var(--font-body);
  margin-bottom:8px;
  text-transform:uppercase;
}
.product-name { font-family:var(--font-headline); font-size:17px; font-weight:600; color:var(--primary); margin-bottom:5px; }
.product-card-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:12px; }
.product-mfr { font-size:10px; color:var(--muted); margin-top:3px; }
.product-name a { color:inherit; text-decoration:none; }
.product-price-block { text-align:right; flex-shrink:0; margin-left:8px; }
.product-price-unit { font-size:9px; color:var(--muted); }
.product-label-wrap { margin-bottom:10px; min-height:0; }
.product-specs-grid { display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-bottom:12px; }
.product-spec { background:#faf9f7; border:1px solid #f0ece4; border-radius:6px; padding:6px 8px; }
.product-spec-label { font-size:8px; color:var(--muted); letter-spacing:.5px; font-weight:600; }
.product-spec-val { font-size:13px; font-weight:700; color:var(--primary); }
.product-specs-inline { display:none; font-size:11px; color:var(--primary); margin-bottom:10px; line-height:1.5; }
.product-verified { display:inline-flex; align-items:center; gap:5px; background:rgba(15,15,26,.03); border:1px solid rgba(15,15,26,.08); border-radius:6px; padding:5px 10px; font-size:9px; color:#4a4a5a; font-weight:500; margin-bottom:12px; }
.product-verified svg { flex-shrink:0; }
.product-meta { display:flex; justify-content:space-between; align-items:center; }
.product-details-link { font-size:10px; color:var(--muted); text-decoration:none; display:flex; align-items:center; gap:3px; transition:color .2s; }
.product-footer-new { padding:14px 18px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.product-qty-ctrl { display:flex; align-items:center; border:1.5px solid var(--border); border-radius:8px; overflow:hidden; }
.product-qty-btn { width:32px; height:32px; background:#faf9f7; border:none; color:var(--primary); font-size:15px; font-weight:700; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .15s; }
.product-qty-btn:hover { background:#f0ece4; }
.product-qty-val { width:36px; text-align:center; font-size:13px; font-weight:700; color:var(--primary); background:#fff; }
.product-price { font-family:var(--font-body); font-size:22px; font-weight:800; color:var(--primary); letter-spacing:-.5px; }
.btn-buy {
  background:linear-gradient(135deg,#c9a96e,#b8914d);
  color:#0a0a12;
  border:none;
  padding:10px 20px;
  font-size:10px;
  font-weight:700;
  border-radius:8px;
  cursor:pointer;
  font-family:var(--font-body);
  letter-spacing:1.5px;
  text-transform:uppercase;
  transition:all .3s;
  text-decoration:none;
  display:inline-block;
  box-shadow:0 3px 12px rgba(201,169,110,.2);
}
.btn-buy:hover { background:linear-gradient(135deg,#d4b97a,#c9a96e); box-shadow:0 6px 20px rgba(201,169,110,.35); transform:translateY(-1px); }
.product-footer-new .btn-buy { flex:1; padding:10px 16px; display:block; text-align:center; }

/* ── SHIPPING INDICATOR ── */
.product-shipping {
  display:flex;
  align-items:center;
  gap:5px;
  font-size:9px;
  color:var(--muted);
  font-weight:600;
}
.product-shipping svg { flex-shrink:0; }

/* ── 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:#8a8a9a; line-height:1.5; }

/* ── FOOTER ── */
footer {
  background:#0a0a14;
  color:#e2e8f0;
  padding:48px;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:32px;
}
footer p { font-size:12px; color:#6a6a7a; line-height:1.7; }
.footer-col h4 { font-family:var(--font-headline); font-size:11px; letter-spacing:2px; color:#6a6a7a; margin-bottom:14px; text-transform:uppercase; }
.footer-col ul { list-style:none; }
.footer-col ul li { font-size:12px; color:#7a7a8a; margin-bottom:8px; }
.footer-col ul li a { color:#7a7a8a; transition:color .2s; }
.footer-col ul li a:hover { color:var(--accent); }
.footer-bottom {
  background:#050508;
  padding:16px 48px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.footer-bottom p { font-size:11px; color:#3a3a4a; }

/* ── 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:#c0c0c0; }

/* ── MOBILE MENU BUTTON ── */
.mobile-menu-btn {
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  width:32px;
  height:24px;
  flex-direction:column;
  justify-content:space-between;
  padding:0;
}
.mobile-menu-btn span {
  display:block;
  width:100%;
  height:2px;
  background:var(--primary);
  border-radius:2px;
  transition:all .3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform:rotate(45deg) translate(5px,7px); }
.mobile-menu-btn.active span:nth-child(2) { opacity:0; }
.mobile-menu-btn.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-7px); }

/* ── MOBILE NAV PANEL ── */
.mobile-nav {
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(12px);
  z-index:99;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
  padding:80px 24px 40px;
}
.mobile-nav.active { display:flex; }
.mobile-nav a {
  font-family:var(--font-headline);
  font-size:18px;
  font-weight:600;
  color:var(--primary);
  text-decoration:none;
  padding:8px 16px;
  transition:color .2s;
}
.mobile-nav a:hover { color:var(--accent); }

/* ── NEWSLETTER ── */
.newsletter-section {
  padding:64px 48px;
  background:var(--light-bg);
  text-align:center;
}
.newsletter-inner { max-width:520px; margin:0 auto; }
.newsletter-inner h2 {
  font-family:var(--font-headline);
  font-size:28px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:12px;
}
.newsletter-inner p {
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:24px;
}
.newsletter-form {
  display:flex;
  gap:8px;
  max-width:420px;
  margin:0 auto;
}
.newsletter-form input[type="email"] {
  flex:1;
  padding:14px 18px;
  border:1.5px solid var(--border);
  border-radius:8px;
  font-size:14px;
  font-family:var(--font-body);
  outline:none;
  transition:border-color .2s;
  background:#fff;
}
.newsletter-form input:focus { border-color:var(--accent); }
.newsletter-form button {
  background:var(--primary);
  color:#fff;
  border:none;
  padding:14px 24px;
  font-size:12px;
  font-weight:700;
  font-family:var(--font-body);
  letter-spacing:1px;
  text-transform:uppercase;
  border-radius:8px;
  cursor:pointer;
  transition:background .2s;
  white-space:nowrap;
}
.newsletter-form button:hover { background:#2a2a3e; }
.newsletter-msg {
  display:none;
  margin-top:16px;
  font-size:13px;
  color:var(--success);
  font-weight:500;
}
.newsletter-msg.active,
.newsletter-msg.show { display:block; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:var(--primary);
  color:#e2e8f0;
  padding:16px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  z-index:500;
  box-shadow:0 -4px 24px rgba(0,0,0,.2);
  transform:translateY(100%);
  transition:transform .4s;
}
.cookie-banner.active { transform:translateY(0); }
.cookie-banner p { font-size:12px; color:#a0a0b0; line-height:1.5; margin:0; }
.cookie-accept {
  background:var(--accent);
  color:var(--primary);
  border:none;
  padding:10px 20px;
  font-size:11px;
  font-weight:700;
  font-family:var(--font-body);
  letter-spacing:1px;
  text-transform:uppercase;
  border-radius:6px;
  cursor:pointer;
  white-space:nowrap;
  transition:background .2s;
}
.cookie-accept:hover { background:#d4b97a; }

/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGES
   ══════════════════════════════════════════════ */
.product-page {
  max-width:1100px;
  margin:0 auto;
  padding:48px 48px 64px;
}

/* ── Product grid: image + info ── */
.product-page-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
  margin-bottom:64px;
}

/* ── Product image ── */
.product-page-img {
  background:var(--light-bg);
  border:1px solid var(--border);
  border-radius:16px;
  padding:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:sticky;
  top:90px;
}
.product-page-img img {
  max-height:340px;
  object-fit:contain;
  filter:drop-shadow(0 8px 24px rgba(0,0,0,.08));
  transition:transform .4s ease;
}
.product-page-img:hover img {
  transform:scale(1.05);
}

/* ── Product info ── */
.product-page-info {
  display:flex;
  flex-direction:column;
  gap:0;
}
.product-page-category {
  font-size:10px;
  color:var(--accent);
  letter-spacing:4px;
  font-weight:700;
  font-family:var(--font-body);
  text-transform:uppercase;
  margin-bottom:8px;
}
.product-page-title {
  font-family:var(--font-headline);
  font-size:clamp(28px,4vw,38px);
  font-weight:700;
  color:var(--primary);
  letter-spacing:-0.5px;
  margin-bottom:8px;
  line-height:1.15;
}
.product-page-dose {
  font-size:14px;
  color:var(--muted);
  margin-bottom:20px;
  line-height:1.5;
}
.product-page-price {
  font-size:36px;
  font-weight:800;
  color:var(--primary);
  letter-spacing:-1px;
  margin-bottom:16px;
  font-family:var(--font-body);
}

/* ── COA badges ── */
.product-page-coa {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}
.product-page-coa span {
  display:inline-flex;
  align-items:center;
  gap:4px;
  background:rgba(34,197,94,.06);
  border:1px solid rgba(34,197,94,.2);
  color:#16a34a;
  font-size:11px;
  font-weight:600;
  padding:5px 12px;
  border-radius:20px;
  letter-spacing:.3px;
}

/* ── Shipping info ── */
.product-page-shipping {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--text);
  font-weight:500;
  margin-bottom:6px;
}
.product-page-shipping svg {
  flex-shrink:0;
  color:var(--accent);
}
.product-page-free {
  font-size:12px;
  color:var(--muted);
  margin-bottom:24px;
}

/* ── Add to Cart button ── */
.product-page-buy {
  width:100%;
  background:linear-gradient(135deg,#c9a96e,#b8914d);
  color:#0a0a12;
  border:none;
  padding:18px 32px;
  font-size:13px;
  font-weight:700;
  font-family:var(--font-body);
  letter-spacing:2px;
  text-transform:uppercase;
  border-radius:10px;
  cursor:pointer;
  transition:all .3s;
  box-shadow:0 4px 20px rgba(201,169,110,.3);
  margin-bottom:20px;
}
.product-page-buy:hover {
  background:linear-gradient(135deg,#d4b97a,#c9a96e);
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(201,169,110,.4);
}

/* ── Trust indicators ── */
.product-page-trust {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}
.product-page-trust-item {
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:var(--muted);
  font-weight:500;
}
.product-page-trust-item svg {
  flex-shrink:0;
}

/* ── Content sections (Description, Composition, Storage, etc.) ── */
.product-page-section {
  padding:40px 0;
  border-top:1px solid var(--border);
}
.product-page-section:first-of-type {
  border-top:none;
  padding-top:0;
}
.product-page-section h2 {
  font-family:var(--font-headline);
  font-size:22px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:20px;
  letter-spacing:-0.2px;
}
.product-page-section p {
  font-size:15px;
  color:#4a4a5c;
  line-height:1.85;
  margin-bottom:16px;
}
.product-page-section p:last-child {
  margin-bottom:0;
}
.product-page-section ul {
  list-style:none;
  padding:0;
}
.product-page-section ul li {
  font-size:14px;
  color:#4a4a5c;
  line-height:1.7;
  padding:8px 0 8px 20px;
  position:relative;
  border-bottom:1px solid rgba(0,0,0,.04);
}
.product-page-section ul li:last-child {
  border-bottom:none;
}
.product-page-section ul li::before {
  content:'';
  position:absolute;
  left:0;
  top:16px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
}
.product-page-section ul li strong {
  color:var(--primary);
  font-weight:600;
}

/* ── Related Products ── */
.related-products {
  margin-top:24px;
  padding-top:48px;
  border-top:1px solid var(--border);
}
.related-products h2 {
  font-family:var(--font-headline);
  font-size:24px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:28px;
  letter-spacing:-0.2px;
}
.related-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 900px)
   ══════════════════════════════════════════════ */
@media(max-width:900px) {
  .hero { grid-template-columns:1fr; padding:48px 32px; gap:32px; }
  .hero-right { order:1; }
  .hero-left { order:2; }
  .products-grid { grid-template-columns:repeat(2,1fr); gap:20px; }
  .cat-section { padding:56px 32px; }
  .shipping-banner { grid-template-columns:1fr; gap:24px; }
  footer { grid-template-columns:1fr 1fr; gap:24px; padding:36px 32px; }
  .newsletter-section { padding:48px 32px; }
  /* Product page tablet */
  .product-page { padding:36px 32px 48px; }
  .product-page-grid { gap:36px; }
  .related-grid { grid-template-columns:repeat(2,1fr); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 640px)
   ══════════════════════════════════════════════ */
@media(max-width:640px) {
  /* Nav */
  nav { padding:0 16px; height:56px; }
  nav ul { display:none; }
  .nav-contact { display:none; }
  .mobile-menu-btn { display:flex; }
  .logo { font-size:16px; }
  .logo svg { width:28px; height:28px; }

  /* Disclaimer + trust */
  .disclaimer-bar { padding:6px 16px; font-size:7px; letter-spacing:1.5px; }
  .trust-bar { padding:7px 0; }
  .trust-bar-track span { font-size:10px; padding:0 16px; letter-spacing:1px; }

  /* Hero */
  .hero { padding:40px 20px 32px; }
  .hero-headline { font-size:clamp(28px,7vw,36px); margin-bottom:16px; }
  .hero-sub { font-size:13px; margin-bottom:24px; }
  .hero-eyebrow { font-size:8px; letter-spacing:3px; margin-bottom:16px; }
  .hero-ctas { flex-direction:column; gap:10px; }
  .btn-primary { padding:14px 24px; font-size:10px; width:100%; justify-content:center; }
  .hero-compact { padding:40px 20px 32px; }
  .hero-compact .hero-sub { max-width:100%; }
  .hero-value-props { gap:10px; justify-content:center; }
  .hero-vp { font-size:10px; white-space:normal; text-align:left; }

  /* Product grid */
  .products-grid { grid-template-columns:1fr; gap:20px; }
  .product-specs-grid { display:none; }
  .product-specs-inline { display:block; }
  .product-qty-btn { width:28px; height:28px; }

  /* Cat sections */
  .cat-section { padding:40px 20px; }
  .cat-section-title { font-size:clamp(24px,6vw,32px); }
  .cat-section-desc { font-size:13px; margin-bottom:20px; }
  .cat-section-sub { font-size:10px; letter-spacing:2px; }

  /* Vial cards (hero) */
  .hero-products { grid-template-columns:1fr 1fr; gap:12px; }
  .vial-card { padding:14px; }
  .vial-placeholder { height:100px; }
  .vial-placeholder img { max-height:140px; max-width:100px; top:-20px; }
  .vial-name { font-size:12px; }
  .vial-price { font-size:14px; }
  .hero-stats { padding:16px 0; flex-wrap:wrap; }
  .stat-num { font-size:18px; }
  .stat-lbl { font-size:8px; }

  /* Footer */
  footer { grid-template-columns:1fr; gap:24px; padding:32px 20px; }
  .footer-col:first-child { margin-bottom:8px; }
  .footer-bottom { padding:12px 20px; flex-direction:column; gap:8px; text-align:center; }

  /* Newsletter */
  .newsletter-section { padding:40px 20px; }
  .newsletter-inner h2 { font-size:22px; }
  .newsletter-form { flex-direction:column; }
  .newsletter-form button { width:100%; }

  /* Cookie */
  .cookie-banner { flex-direction:column; gap:10px; padding:16px 20px; text-align:center; }
  .cookie-banner p { font-size:11px; }

  /* Product page mobile */
  .product-page { padding:20px 14px 36px; }
  .product-page-grid { grid-template-columns:1fr; gap:20px; }

  /* Image: compact, centered */
  .product-page-img { padding:20px 16px; position:static; border-radius:12px; }
  .product-page-img img { max-height:220px; }

  /* Info block: tighter spacing */
  .product-page-info { gap:0; }
  .product-page-category { font-size:9px; letter-spacing:3px; margin-bottom:6px; }
  .product-page-title { font-size:24px; margin-bottom:4px; }
  .product-page-dose { font-size:12px; margin-bottom:14px; }
  .product-page-price { font-size:28px; margin-bottom:12px; }

  /* COA badges: wrap nicely, smaller */
  .product-page-coa { gap:5px; margin-bottom:14px; }
  .product-page-coa span { font-size:9px; padding:4px 9px; border-radius:14px; }

  /* Shipping */
  .product-page-shipping { font-size:12px; gap:6px; margin-bottom:4px; }
  .product-page-shipping svg { width:14px; height:10px; }
  .product-page-free { font-size:11px; margin-bottom:18px; }

  /* Buy button: full width, prominent */
  .product-page-buy { padding:16px 24px; font-size:12px; letter-spacing:1.5px; border-radius:8px; margin-bottom:16px; }

  /* Trust indicators: stack vertically */
  .product-page-trust { flex-direction:column; gap:8px; }
  .product-page-trust-item { font-size:11px; }

  /* Content sections: compact */
  .product-page-section { padding:22px 0; }
  .product-page-section h2 { font-size:17px; margin-bottom:12px; }
  .product-page-section p { font-size:13px; line-height:1.7; margin-bottom:12px; }
  .product-page-section ul li { font-size:13px; padding:6px 0 6px 16px; line-height:1.6; }
  .product-page-section ul li::before { top:13px; width:5px; height:5px; }
  .product-page-section ul li strong { font-size:13px; }

  /* Related products: 2 columns on mobile, compact cards */
  .related-products { margin-top:16px; padding-top:28px; }
  .related-products h2 { font-size:18px; margin-bottom:16px; }
  .related-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .related-grid .product-card { border-radius:12px; }
  .related-grid .product-img img { max-height:100px; }
  .related-grid .product-body { padding:12px 10px 10px; }
  .related-grid .product-category { font-size:7px; letter-spacing:2px; margin-bottom:4px; }
  .related-grid .product-name { font-size:13px; margin-bottom:4px; }
  .related-grid .product-desc { display:none; }
  .related-grid .product-footer { padding:10px; }
  .related-grid .product-price { font-size:16px; }
  .related-grid .btn-buy { padding:6px 12px; font-size:8px; }

  /* Breadcrumb */
  .breadcrumb { padding:10px 16px; font-size:11px; }

  /* Lang switcher */
  .lang-switcher { top:8px !important; right:56px !important; padding:3px 6px !important; }
  .lang-switcher a { font-size:12px !important; }

  /* Shipping banner (if still used somewhere) */
  .shipping-banner { padding:32px 20px; grid-template-columns:1fr; }
}
