/* ══════════════════════════════════════════════
   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) {
  .product-img { animation: vialFloat 3s ease-in-out infinite; }
  .vial-placeholder img { animation: vialFloatSimple 3s ease-in-out infinite; }
}
@keyframes vialFloatSimple {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

:root {
  --primary: #1a1a2e;
  --accent: #c9a96e;
  --bg: #ffffff;
  --text: #1a1a2e;
  --muted: #8a8a9a;
  --border: #e8e4df;
  --light-bg: #faf8f5;
  --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:#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:linear-gradient(170deg,#faf8f5 0%,#f5f0ea 35%,#ede8e2 65%,#f5f2ee 100%);
  padding:72px 48px 56px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  max-width:1240px;
  margin:0 auto;
  position:relative;
  overflow:hidden;
}
.hero::before {
  content:'';
  position:absolute;
  top:-150px; right:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle, rgba(201,169,110,.08) 0%, transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.hero-left { position:relative; z-index:1; }
.hero-eyebrow {
  font-family:var(--font-headline);
  font-size:11px;
  font-weight:600;
  letter-spacing:4px;
  color:var(--accent);
  text-transform:uppercase;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-eyebrow::before {
  content:'';
  width:28px; height:2px;
  background:var(--accent);
}
.hero-headline {
  font-family:var(--font-headline);
  font-size:52px;
  font-weight:900;
  line-height:1.1;
  color:var(--primary);
  margin-bottom:20px;
  letter-spacing:-1px;
}
.hero-headline em { font-style:normal; color:var(--accent); }
.hero-sub {
  font-size:16px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:28px;
  max-width:440px;
}

/* COA verification banner */
.coa-banner {
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:16px 20px;
  margin-bottom:32px;
  max-width:420px;
  box-shadow:0 2px 12px rgba(26,26,46,.04);
}
.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:13px;
  color:var(--primary);
  font-weight:600;
}
.coa-banner-desc {
  font-size:11px;
  color:var(--muted);
  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:var(--primary); }

/* Hero CTAs */
.hero-ctas { display:flex; align-items:center; gap:20px; margin-bottom:32px; }
.btn-primary {
  background:var(--primary);
  color:#fff;
  padding:18px 40px;
  font-size:14px;
  font-weight:700;
  border:none;
  cursor:pointer;
  border-radius:10px;
  font-family:var(--font-headline);
  letter-spacing:.5px;
  transition:all .3s;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  text-align:center;
}
.btn-primary:hover { background:#2a2a3e; transform:translateY(-2px); box-shadow:0 8px 24px rgba(26,26,46,.25); }
.btn-primary svg { transition:transform .2s; }
.btn-primary:hover svg { transform:translateX(3px); }
.link-secondary {
  font-size:13px;
  color:var(--muted);
  text-decoration:none;
  font-weight:500;
  transition:color .2s;
  display:flex;
  align-items:center;
  gap:6px;
}
.link-secondary:hover { color:var(--primary); }
.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:var(--muted);
  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:var(--muted); 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:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:20px;
  text-align:center;
  box-shadow:0 4px 20px rgba(26,26,46,.07);
  transition:transform .2s, box-shadow .2s;
}
.vial-card:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(26,26,46,.12); }
.vial-placeholder {
  background:linear-gradient(145deg,#f5f0ea,#ede8e2);
  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 12px rgba(26,26,46,.18)) drop-shadow(0 2px 4px rgba(0,0,0,.08));
  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 20px rgba(26,26,46,.22)) drop-shadow(0 4px 8px rgba(0,0,0,.1));
}
.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 var(--border);
  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); }

/* ── 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:56px 48px;
  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:36px;
  font-weight:800;
  letter-spacing:-0.5px;
}
.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 — dark/gold palette */
.cat-toxins {
  background:linear-gradient(135deg,#faf8f5 0%,#f5f0ea 50%,#faf7f3 100%);
}
.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 { border-color:var(--accent); box-shadow:0 8px 32px rgba(201,169,110,.15); }
.cat-toxins .product-category { color:#8b6914; }

/* Dermal Fillers — rose/blush palette */
.cat-fillers {
  background:linear-gradient(135deg,#fdf5f5 0%,#faf0f0 50%,#fdf7f7 100%);
}
.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 { border-color:#a04060; box-shadow:0 8px 32px rgba(160,64,96,.1); }
.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 { border-color:#2a5fa0; box-shadow:0 8px 32px rgba(42,95,160,.1); }
.cat-boosters .product-category { color:#2a5fa0; }

/* ── PRODUCT CARDS (grid) ── */
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.product-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:visible;
  transition:all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:0 4px 20px rgba(26,26,46,.06);
  position:relative;
  padding-top:138px;
  margin-top:58px;
}
.product-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(26,26,46,.14); border-color:#c0b8a8; }
.product-img {
  position:absolute;
  top:-40px;
  left:50%;
  transform:translateX(-50%);
  width:218px;
  height:218px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
  transition:all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-img {
  transform:translateX(-50%) translateY(-10px) scale(1.06);
}
.product-img img {
  max-width:184px;
  max-height:196px;
  object-fit:contain;
  filter:drop-shadow(0 6px 12px rgba(26,26,46,.18)) drop-shadow(0 2px 4px rgba(0,0,0,.08));
  transition:all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-img img {
  filter:drop-shadow(0 12px 24px rgba(26,26,46,.22)) drop-shadow(0 4px 8px rgba(0,0,0,.1));
}
.product-img::after {
  content:'';
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:10px;
  background:radial-gradient(ellipse, rgba(26,26,46,.08) 0%, transparent 70%);
  border-radius:50%;
  transition:all .4s ease;
}
.product-card:hover .product-img::after {
  width:50px;
  height:8px;
  opacity:.5;
}
.product-label {
  position:absolute;
  top:12px; right: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);
  z-index:3;
}
.product-label.green { background:var(--success); }
.product-label.gold { background:var(--accent); color:#1a1a2e; }
.product-body { padding:16px 20px 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; padding-top:14px; border-top:1px solid var(--border); }
.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:#2a2a3e; }

/* ── SHIPPING INDICATOR ── */
.product-shipping {
  display:flex;
  align-items:center;
  gap:5px;
  font-size:11px;
  color:var(--accent);
  font-weight:600;
  margin-top:4px;
}
.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; }

/* ══════════════════════════════════════════════
   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,#f5f0ea,#ede8e2);
  height:400px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  position:relative;
  overflow:visible;
}
.product-page-img img {
  max-height:350px;
  max-width:250px;
  object-fit:contain;
  filter:drop-shadow(0 10px 20px rgba(26,26,46,.18)) drop-shadow(0 4px 8px rgba(0,0,0,.08));
  position:relative;
  top:-20px;
  transition:all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-page-img img:hover {
  transform:translateY(-10px) scale(1.03);
}
.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:#2a2a3e; }
.product-page-shipping {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--accent);
  font-weight:600;
  margin-bottom:8px;
}
.product-page-shipping svg { flex-shrink:0; }
.product-page-free {
  font-size:12px;
  color:var(--muted);
  margin-bottom:20px;
}
.product-page-trust {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:24px;
}
.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; }
.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:#3a3a4c;
  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; }

/* ══════════════════════════════════════════════
   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:#3a3a4c;
  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:#3a3a4c; 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 ── */
.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:#3a3a4c;
  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:#3a3a4c; line-height:1.8; margin-bottom:14px; }
.legal-page ul { padding-left:24px; margin-bottom:14px; }
.legal-page li { font-size:14px; color:#3a3a4c; line-height:1.8; margin-bottom:4px; }

/* ══════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════ */
.newsletter-section {
  background:linear-gradient(135deg, #faf8f5 0%, #f5f0ea 100%);
  padding:64px 48px;
  text-align:center;
}
.newsletter-inner {
  max-width:560px;
  margin:0 auto;
  background:#fff;
  border-radius:16px;
  padding:48px 40px;
  box-shadow:0 4px 24px rgba(26,26,46,.06);
  border:1px solid var(--border);
}
.newsletter-inner h2 {
  font-family:var(--font-headline);
  font-size:28px;
  font-weight:800;
  color:var(--primary);
  margin-bottom:8px;
}
.newsletter-inner p {
  font-size:14px;
  color:var(--muted);
  margin-bottom:24px;
  line-height:1.6;
}
.newsletter-form {
  display:flex;
  gap:10px;
  justify-content:center;
}
.newsletter-form input[type="email"] {
  padding:14px 18px;
  border:1px solid var(--border);
  border-radius:10px;
  font-size:14px;
  font-family:var(--font-body);
  min-width:260px;
  outline:none;
  transition:border-color .2s;
}
.newsletter-form input[type="email"]:focus {
  border-color:var(--accent);
}
.newsletter-form button {
  padding:14px 28px;
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
  font-family:var(--font-headline);
  cursor:pointer;
  transition:background .2s;
  white-space:nowrap;
}
.newsletter-form button:hover {
  background:var(--accent);
  color:#1a1a2e;
}
.newsletter-msg {
  margin-top:16px;
  font-size:13px;
  color:var(--success);
  font-weight:600;
  display:none;
}
.newsletter-msg.show { display:block; }

/* ══════════════════════════════════════════════
   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:#3a3a4c; 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-right { margin-top:16px; }
  .cat-section { padding:48px 24px; }
  .products-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; }
  .product-page-img { height:300px; }
}
@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; }
  .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:36px; }
  .cat-section-title { font-size:28px; }
  .coa-banner { max-width:100%; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .related-grid { grid-template-columns:repeat(2,1fr); }
  .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; font-size:10px; }
  .cookie-banner { padding:16px; flex-direction:column; }
  .cookie-banner button { padding:14px 24px; font-size:14px; width:100%; }
  .mobile-nav { top:60px; }
  .products-grid { gap:40px; }
  .product-card { margin-top:30px; padding-top:80px; }
  .product-img { width:120px; height:120px; top:-25px; }
  .product-img img { max-width:100px; max-height:110px; }
  .product-footer { flex-direction:column; gap:10px; }
  .btn-buy { padding:14px 24px; font-size:13px; width:100%; text-align:center; }
  .product-page-buy { padding:18px 32px; font-size:16px; width:100%; text-align:center; }
  .product-page-img { height:280px; }
  .product-page-img img { max-height:240px; max-width:180px; top:-15px; }
  .vial-placeholder img { max-height:120px; max-width:90px; top:-20px; }
  .logo { font-size:18px; }
  .logo svg { width:26px; height:26px; }
}
@media (max-width:480px) {
  .hero-products { grid-template-columns:1fr; gap:60px; }
  .hero-stats { flex-wrap:wrap; gap:16px; justify-content:center; }
  .hero-ctas { flex-direction:column; align-items:stretch; }
  .btn-primary { justify-content:center; }
  .link-secondary { justify-content:center; }
  .trust-inline { flex-wrap:wrap; gap:16px; justify-content:center; }
  .hero-headline { font-size:30px; }
  .hero-sub { font-size:14px; }
  .cat-section-title { font-size:24px; }
  .products-grid { grid-template-columns:1fr; max-width:340px; margin:0 auto; gap:70px; }
  .related-grid { grid-template-columns:1fr; }
  .product-card { margin-top:50px; padding-top:95px; }
  .product-img { width:160px; height:160px; top:-45px; }
  .product-img img { max-width:138px; max-height:150px; }
  .product-body { padding:12px 16px 16px; }
  .product-page-img { height:240px; }
  .product-page-img img { max-height:200px; max-width:160px; top:-10px; }
  .btn-buy { padding:16px 20px; font-size:14px; width:100%; text-align:center; }
  .product-page-buy { padding:18px 24px; font-size:16px; width:100%; }
  .vial-card { padding:16px; }
  .vial-placeholder { height:115px; }
  .vial-placeholder img { max-height:161px; max-width:127px; top:-28px; }
  .breadcrumb { font-size:11px; }
  .product-name { font-size:16px; }
  .product-price { font-size:18px; }
  .product-label { font-size:8px; padding:3px 8px; }
  .newsletter-section { padding:48px 20px; }
  .newsletter-inner { padding:32px 20px; }
  .newsletter-inner h2 { font-size:22px; }
  .newsletter-form { flex-direction:column; }
  .newsletter-form input { min-width:auto; }
}


/* ════════════════════════════════════════════════════════════
   K-PREMIUM LUXURY UPGRADE
   Playfair Display · Montserrat · Warm Cream · Dark Editorial
   ════════════════════════════════════════════════════════════ */

/* ── New variables ── */
:root {
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --warm-cream: #f7f3ed;
  --deep-cream: #ede6d9;
  --ink: #0a0a12;
  --champagne: #c9a96e;
}
body { font-family: var(--font-sans); }

/* ── NAV upgrade ── */
nav { height: 76px; }
nav ul li a { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.8px; font-weight: 600; text-transform: uppercase; }
.logo { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 0.5px; }
.nav-contact { font-family: var(--font-sans); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

/* ── HERO — dark editorial ── */
.hero {
  background: linear-gradient(150deg, #060610 0%, #0c0c1c 45%, #0f0f20 100%);
  max-width: 100%;
  border-bottom: 1px solid rgba(201,169,110,.1);
  padding: 80px 64px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,.07) 0%, transparent 60%);
  top: 0; left: 0; right: 0; bottom: 0; width: auto; height: auto;
  border-radius: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(140,100,220,.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-eyebrow {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 6px;
  font-weight: 500;
  text-transform: uppercase;
}
.hero-eyebrow::before { background: rgba(201,169,110,.5); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: #f0ece4;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub {
  color: rgba(240,236,228,.5);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
}
.coa-banner {
  background: rgba(255,255,255,.04);
  border-color: rgba(201,169,110,.2);
}
.coa-banner-title { color: #e0d8c8; }
.coa-banner-desc { color: rgba(224,216,200,.45); }
.coa-banner-link { color: var(--accent); }
.btn-primary {
  background: var(--accent);
  color: #0a0a12;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 8px;
}
.btn-primary:hover {
  background: #d4b97a;
  box-shadow: 0 8px 28px rgba(201,169,110,.35);
  transform: translateY(-2px);
}
.link-secondary { color: rgba(240,236,228,.4); font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.5px; }
.link-secondary:hover { color: #f0ece4; }
.trust-inline-item { color: rgba(240,236,228,.4); font-family: var(--font-sans); font-size: 11px; }
/* Hero right cards */
.vial-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(201,169,110,.12);
}
.vial-card:hover { background: rgba(255,255,255,.06); border-color: rgba(201,169,110,.3); box-shadow: 0 12px 40px rgba(201,169,110,.1); }
.vial-name { color: #e8e0d0; font-family: var(--font-display); font-size: 14px; }
.vial-desc { color: rgba(232,224,208,.45); }
.vial-price { color: var(--accent); font-family: var(--font-sans); }
.vial-placeholder { background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(201,169,110,.04)); }
.hero-stats { background: rgba(255,255,255,.03); border-color: rgba(201,169,110,.1); }
.stat-num { color: #e8e0d0; font-family: var(--font-display); font-size: 22px; }
.stat-lbl { color: rgba(232,224,208,.4); font-family: var(--font-sans); letter-spacing: 1.5px; }

/* ── SECTIONS — warmer backgrounds ── */
.cat-section { padding: 88px 64px; }
.cat-section-title { font-family: var(--font-display); font-size: 42px; font-weight: 700; letter-spacing: -0.3px; }
.cat-section-desc { font-family: var(--font-sans); font-size: 15px; line-height: 1.7; }
.cat-section-sub { font-family: var(--font-sans); font-size: 10px; letter-spacing: 3.5px; }
.cat-toxins { background: linear-gradient(160deg, var(--warm-cream) 0%, #f3ece1 100%); }
.cat-fillers { background: #fff; }

/* Product cards — luxury upgrade */
.product-card {
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(26,26,46,.05);
  transition: all .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover {
  box-shadow: 0 24px 64px rgba(26,26,46,.13);
  transform: translateY(-8px);
}
.product-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.product-price { font-family: var(--font-sans); font-size: 18px; font-weight: 700; letter-spacing: -0.3px; }
.product-category { font-family: var(--font-sans); font-size: 10px; letter-spacing: 2.5px; }
.product-desc { font-family: var(--font-sans); font-size: 12px; line-height: 1.5; }
.product-coa { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.5px; }
.btn-buy { font-family: var(--font-sans); font-size: 11px; letter-spacing: 1.5px; }

/* Product treatment tags */
.product-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0 6px; }
.product-tag {
  font-size: 10px;
  background: var(--warm-cream);
  color: #8b6914;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.cat-fillers .product-tag { background: #fdf0f3; color: #a04060; }

/* ── TREATMENT SECTION ── */
.treatment-section {
  background: var(--warm-cream);
  padding: 96px 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.treatment-inner { max-width: 1160px; margin: 0 auto; }
.treatment-header { text-align: center; margin-bottom: 64px; }
.treatment-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.treatment-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,44px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.2;
}
.treatment-header p {
  font-size: 15px;
  color: var(--muted);
  font-family: var(--font-sans);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}
.treatment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.treatment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 20px 24px;
  text-align: center;
  transition: all .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.treatment-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 36px rgba(201,169,110,.14);
  transform: translateY(-5px);
}
.treatment-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #f5f0e8, var(--warm-cream));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(201,169,110,.2);
}
.cat-fillers-card .treatment-icon { background: linear-gradient(135deg, #fdf0f3, #fdf8f9); border-color: rgba(160,64,96,.1); }
.treatment-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.treatment-products { font-size: 11px; color: var(--muted); line-height: 1.5; font-family: var(--font-sans); }
.treatment-card-product-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* ── CLINIC TRUST SECTION ── */
.clinic-trust-section {
  background: linear-gradient(150deg, #060610 0%, #0d0d1e 100%);
  padding: 96px 64px;
  border-top: 1px solid rgba(201,169,110,.06);
}
.clinic-trust-inner { max-width: 1160px; margin: 0 auto; }
.clinic-trust-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 48px;
}
.clinic-trust-headline {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,44px);
  font-weight: 700;
  color: #f0ece4;
  max-width: 420px;
  line-height: 1.2;
}
.clinic-trust-headline em { font-style: italic; color: var(--accent); }
.clinic-trust-sub {
  font-size: 15px;
  color: rgba(240,236,228,.45);
  font-family: var(--font-sans);
  max-width: 380px;
  line-height: 1.7;
  margin-top: 16px;
  font-weight: 400;
}
/* Authorized seal */
.authorized-seal-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.authorized-seal-ring {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(201,169,110,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, rgba(201,169,110,.04) 0%, transparent 70%);
}
.authorized-seal-inner {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: rgba(201,169,110,.06);
}
.authorized-seal-star { color: var(--accent); font-size: 14px; line-height: 1; }
.authorized-seal-text1 {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}
.authorized-seal-text2 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #f0ece4;
  text-align: center;
}
.authorized-seal-label {
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(240,236,228,.35);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Quote cards */
.clinic-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.clinic-quote-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,169,110,.1);
  border-radius: 16px;
  padding: 28px 24px 24px;
  transition: border-color .3s;
}
.clinic-quote-card:hover { border-color: rgba(201,169,110,.25); }
.clinic-quote-stars { color: var(--accent); font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
.clinic-quote-text {
  font-size: 14px;
  color: rgba(240,236,228,.65);
  line-height: 1.75;
  font-family: var(--font-sans);
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 400;
}
.clinic-quote-author {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.3px;
}
.clinic-quote-role { font-size: 11px; color: rgba(240,236,228,.3); margin-top: 3px; font-family: var(--font-sans); }

/* Stats row */
.clinic-stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  padding-top: 56px;
  border-top: 1px solid rgba(201,169,110,.08);
  margin-top: 56px;
  flex-wrap: wrap;
}
.clinic-stat-item { text-align: center; flex: 1; min-width: 140px; padding: 0 24px; border-right: 1px solid rgba(201,169,110,.08); }
.clinic-stat-item:last-child { border-right: none; }
.clinic-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.clinic-stat-lbl {
  display: block;
  font-size: 10px;
  color: rgba(240,236,228,.35);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* ── FOOTER upgrade ── */
footer { font-family: var(--font-sans); }
.footer-col h4 { font-family: var(--font-sans); font-size: 10px; letter-spacing: 3px; }
.footer-col ul li a { font-family: var(--font-sans); font-size: 13px; }

/* ── NEWSLETTER upgrade ── */
.newsletter-section { background: var(--deep-cream); }
.newsletter-inner h2 { font-family: var(--font-display); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .clinic-quotes { grid-template-columns: 1fr; }
  .clinic-trust-top { flex-direction: column; align-items: flex-start; }
  .cat-section { padding: 60px 28px; }
  .treatment-section { padding: 64px 28px; }
  .clinic-trust-section { padding: 64px 28px; }
}
@media (max-width: 480px) {
  .treatment-grid { grid-template-columns: 1fr 1fr; }
  .clinic-stats-row { gap: 24px; }
  .clinic-stat-item { border-right: none; }
}
