/* ══════════════════════════════════════════════
   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: #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:720px; 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 { border-color:var(--accent); box-shadow:0 8px 32px rgba(201,169,110,.15); }
.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 { 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: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(-8px); box-shadow:0 24px 56px rgba(26,26,46,.13); border-color:rgba(201,169,110,.3); }
.product-img {
  position:relative;
  top:auto;
  left:auto;
  transform:none;
  width:100%;
  height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
  transition:all .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background:linear-gradient(160deg,#0c0c1e 0%,#141428 60%,#0a0a18 100%);
  border-bottom:1px solid rgba(201,169,110,.08);
}
.product-card:hover .product-img {
  transform:none;
  background:linear-gradient(160deg,#0f0f22 0%,#181830 60%,#0d0d1c 100%);
}
.product-img img {
  max-width:130px;
  max-height:175px;
  object-fit:contain;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,.55)) drop-shadow(0 2px 6px rgba(201,169,110,.1));
  transition:all .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-img img {
  transform:translateY(-6px) scale(1.05);
  filter:drop-shadow(0 16px 32px rgba(0,0,0,.55)) drop-shadow(0 4px 10px rgba(201,169,110,.15));
}
.product-img::after { display:none; }
.product-card:hover .product-img::after { display:none; }
.product-label {
  position:absolute;
  top:12px; right:12px;
  background:rgba(15,15,26,.7);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.1);
  color:#f0ece4;
  font-size:8px;
  font-weight:700;
  padding:4px 12px;
  border-radius:20px;
  letter-spacing:1.5px;
  font-family:var(--font-body);
  text-transform:uppercase;
  z-index:3;
}
.product-label.green { background:rgba(34,197,94,.15); border-color:rgba(34,197,94,.3); color:#22c55e; }
.product-label.gold { background:rgba(201,169,110,.15); border-color:rgba(201,169,110,.3); color:var(--accent); }
.product-body { padding:20px 22px 22px; flex:1; display:flex; flex-direction:column; }
.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-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:16px; border-top:1px solid var(--border); margin-top:auto; }
.product-price { font-family:var(--font-body); font-size:22px; font-weight:700; color:var(--primary); letter-spacing:-0.3px; }
.product-coa { font-size:10px; color:var(--success); font-weight:600; }
.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); }

/* ── 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; }
