/* THE CURE — Design System */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --black:   #0A0A0A;
  --dark:    #111111;
  --card:    #181818;
  --border:  #2A2A2A;
  --border2: #333333;
  --gold:    #E8C030;
  --gold2:   #F2D050;
  --gold-dim:#A88820;
  --white:   #F0EDE6;
  --muted:   #888888;
  --muted2:  #555555;
  --green:   #3A7A4A;
  --green2:  #4DB060;
  --red:     #C0392B;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --transition: 0.2s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 24px rgba(232,192,48,0.22);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Promo Ribbon ────────────────────────────────────────── */
#promo-ribbon {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  position: relative;
  z-index: 100;
}
#promo-ribbon a { color: var(--black); text-decoration: underline; }
#ribbon-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 16px; color: var(--black); opacity: 0.6;
  line-height: 1;
}
#ribbon-close:hover { opacity: 1; }

/* ── Nav ─────────────────────────────────────────────────── */
#nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-links a { color: var(--muted); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-search {
  flex: 1; max-width: 320px;
  position: relative;
}
.nav-search input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 9px 16px 9px 38px;
  color: var(--white);
  font-size: 13px;
  transition: border-color var(--transition);
  outline: none;
}
.nav-search input:focus { border-color: var(--gold-dim); }
.nav-search input::placeholder { color: var(--muted2); }
.nav-search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted2); pointer-events: none; font-size: 14px;
}
.nav-actions { display: flex; gap: 12px; align-items: center; margin-left: auto; }
.nav-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r);
  font-size: 13px; font-weight: 500;
  transition: all var(--transition);
}
.nav-btn-ghost {
  border: 1px solid var(--border2);
  color: var(--muted);
}
.nav-btn-ghost:hover { border-color: var(--gold-dim); color: var(--gold); }
.nav-btn-cart {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  position: relative;
}
.nav-btn-cart:hover { background: var(--gold2); }
.cart-count {
  background: var(--black);
  color: var(--gold);
  font-size: 11px; font-weight: 700;
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: -6px; right: -6px;
}
.hamburger { display: none; padding: 8px; color: var(--white); font-size: 22px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: center;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232,192,48,0.08) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 90%, rgba(58,122,74,0.06) 0%, transparent 50%);
}
.hero-img {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%; object-fit: cover; opacity: 0.35;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 80px 24px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title span { color: var(--gold); display: block; }
.hero-sub {
  max-width: 480px;
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: rgba(240,237,230,0.65);
  margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-outline { border: 1.5px solid var(--border2); color: var(--white); }
.btn-outline:hover { border-color: var(--gold-dim); color: var(--gold); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px; line-height: 1;
  color: var(--gold);
}
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; margin-top: 4px; text-transform: uppercase; }

/* ── Section scaffold ────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 16px; flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.03em;
}
.section-title span { color: var(--gold); }
.section-sub {
  font-size: 14px; color: var(--muted);
  max-width: 400px;
  margin-top: 8px;
  line-height: 1.6;
}

/* ── Category grid ───────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.cat-card:hover { border-color: var(--gold-dim); background: #1E1E1E; transform: translateY(-2px); }
.cat-icon { font-size: 30px; margin-bottom: 10px; display: block; }
.cat-name { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 0.04em; }
.cat-count { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ── Product card ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #1A1A1A;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.badge-sale { background: var(--red); color: #fff; }
.badge-strain { background: rgba(0,0,0,0.7); border: 1px solid var(--border2); color: var(--muted); }
.badge-indica { background: rgba(80,40,120,0.8); color: #D4AAFF; border: 1px solid rgba(180,120,255,0.3); }
.badge-sativa { background: rgba(120,80,20,0.8); color: var(--gold2); border: 1px solid rgba(200,150,62,0.3); }
.badge-hybrid { background: rgba(20,80,40,0.8); color: #80D4A0; border: 1px solid rgba(80,180,120,0.3); }
.badge-new { background: var(--gold); color: var(--black); }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card-name {
  font-size: 15px; font-weight: 600; line-height: 1.3;
  color: var(--white);
}
.product-card-cat { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border);
}
.price { font-size: 16px; font-weight: 700; color: var(--gold); }
.price-original { font-size: 12px; color: var(--muted2); text-decoration: line-through; margin-left: 6px; }
.stars { display: flex; gap: 2px; color: var(--gold); font-size: 11px; }
.rating-text { font-size: 11px; color: var(--muted); margin-left: 4px; }
.card-add-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600;
  transition: all var(--transition);
  flex-shrink: 0;
}
.card-add-btn:hover { background: var(--gold2); transform: scale(1.1); }

/* ── Filter bar ──────────────────────────────────────────── */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--border2);
  border-radius: 99px;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
  background: transparent;
}
.filter-btn:hover { border-color: var(--gold-dim); color: var(--white); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 600; }
.filter-select {
  padding: 8px 14px;
  border: 1px solid var(--border2);
  border-radius: var(--r);
  background: var(--card);
  color: var(--muted);
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.filter-select:focus { border-color: var(--gold-dim); }
.filter-count { font-size: 13px; color: var(--muted); margin-left: auto; }

/* ── Product page ────────────────────────────────────────── */
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  max-width: 1100px; margin: 0 auto;
  padding: 56px 24px;
}
.gallery-main {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--card);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.gallery-thumb {
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  overflow: hidden; cursor: pointer;
  border: 2px solid var(--border);
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-breadcrumb { font-size: 12px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.product-breadcrumb a:hover { color: var(--gold); }
.product-title-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.product-meta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.product-price-lg { font-size: 28px; font-weight: 700; color: var(--gold); }
.product-price-orig { font-size: 16px; color: var(--muted2); text-decoration: line-through; }
.divider { height: 1px; background: var(--border); }
.selector-label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-opt {
  padding: 9px 18px;
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.size-opt:hover { border-color: var(--gold-dim); color: var(--white); }
.size-opt.active { border-color: var(--gold); color: var(--gold); background: rgba(200,150,62,0.1); }
.qty-row { display: flex; gap: 12px; align-items: center; }
.qty-ctrl {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border2);
  border-radius: var(--r);
  overflow: hidden;
}
.qty-btn {
  width: 40px; height: 44px;
  background: var(--card);
  color: var(--white);
  font-size: 18px;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--border2); }
.qty-val {
  width: 48px; height: 44px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  font-weight: 600; font-size: 15px;
  border: none; outline: none;
}
.add-to-cart-btn {
  flex: 1;
  background: var(--gold);
  color: var(--black);
  padding: 14px 24px;
  border-radius: var(--r);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.add-to-cart-btn:hover { background: var(--gold2); transform: translateY(-1px); }
.contact-ctas { display: flex; gap: 10px; }
.cta-telegram {
  flex: 1; padding: 12px;
  background: #1A1A2E;
  border: 1px solid #2A3A5E;
  border-radius: var(--r);
  color: #6DA9E4;
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.cta-telegram:hover { background: #1E2A4A; border-color: #6DA9E4; }
.cta-whatsapp {
  flex: 1; padding: 12px;
  background: #1A2A1A;
  border: 1px solid #2A502A;
  border-radius: var(--r);
  color: #4DB060;
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.cta-whatsapp:hover { background: #1E3A1E; border-color: #4DB060; }

/* ── Product tabs ────────────────────────────────────────── */
.tabs { border-bottom: 1px solid var(--border); display: flex; gap: 0; margin-bottom: 24px; }
.tab-btn {
  padding: 12px 20px;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  background: none;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; font-size: 14px; line-height: 1.75; color: rgba(240,237,230,0.75); }
.tab-panel.active { display: block; }
.tab-panel p + p { margin-top: 12px; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.info-row:last-child { border-bottom: none; }
.info-key { color: var(--muted); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.info-val { font-weight: 500; color: var(--white); }

/* ── Cart ─────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.cart-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; background: var(--card); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 15px; }
.cart-item-variant { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--gold); margin-top: 8px; }
.cart-item-remove { color: var(--muted2); font-size: 18px; cursor: pointer; transition: color var(--transition); }
.cart-item-remove:hover { color: var(--red); }
.cart-qty-ctrl { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.cart-qty-btn { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border2); background: var(--card); color: var(--white); font-size: 15px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); }
.cart-qty-btn:hover { border-color: var(--gold-dim); }
.cart-qty-num { font-size: 14px; font-weight: 600; width: 24px; text-align: center; }

/* Discount progress */
.discount-bar-wrap { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; margin-bottom: 20px; }
.discount-header { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 13px; font-weight: 600; }
.discount-progress { background: var(--border); border-radius: 99px; height: 6px; overflow: hidden; }
.discount-fill { background: var(--gold); height: 100%; border-radius: 99px; transition: width 0.4s ease; }
.discount-tiers { display: flex; justify-content: space-between; margin-top: 10px; }
.discount-tier { text-align: center; }
.discount-tier-val { font-size: 13px; font-weight: 700; color: var(--gold); }
.discount-tier-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.discount-tier.unlocked .discount-tier-val { color: var(--green2); }
.discount-message { font-size: 13px; color: var(--muted); margin-top: 10px; text-align: center; }
.discount-message span { color: var(--gold2); font-weight: 600; }

/* Order summary */
.order-summary { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; position: sticky; top: 88px; }
.summary-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; }
.summary-row.total { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 8px; font-size: 18px; font-weight: 700; }
.summary-row.total .price { font-size: 22px; }
.summary-discount { color: var(--green2); }

/* ── Checkout ─────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.form-section { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; margin-bottom: 20px; }
.form-section-title { font-size: 15px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.form-section-num { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--black); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-grid { display: grid; gap: 16px; }
.form-grid-2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.form-input {
  background: var(--dark);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 11px 14px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus { border-color: var(--gold-dim); }
.form-input::placeholder { color: var(--muted2); }
.bitcoin-box {
  background: linear-gradient(135deg, rgba(232,192,48,0.08), rgba(0,0,0,0));
  border: 1px solid rgba(200,150,62,0.3);
  border-radius: var(--r-lg);
  padding: 24px;
}
.bitcoin-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--gold2); display: flex; align-items: center; gap: 8px; }
.bitcoin-sub { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.bitcoin-address {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: monospace;
  font-size: 12px;
  color: var(--gold2);
  word-break: break-all;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.copy-btn { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 6px 10px; font-size: 11px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all var(--transition); flex-shrink: 0; }
.copy-btn:hover { color: var(--gold); border-color: var(--gold-dim); }
.place-order-btn {
  width: 100%; padding: 16px;
  background: var(--gold); color: var(--black);
  border-radius: var(--r-lg);
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer;
}
.place-order-btn:hover { background: var(--gold2); transform: translateY(-1px); }

/* ── Popups ───────────────────────────────────────────────── */
.overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.8);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlay.open { opacity: 1; pointer-events: all; }
.popup {
  background: var(--dark);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.overlay.open .popup { transform: translateY(0); }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--border);
  border-radius: 50%;
  color: var(--muted);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.popup-close:hover { background: var(--border2); color: var(--white); }
.popup-icon { font-size: 48px; text-align: center; margin-bottom: 16px; }
.popup-title { font-family: var(--font-display); font-size: 42px; text-align: center; line-height: 1; margin-bottom: 8px; }
.popup-sub { font-size: 14px; color: var(--muted); text-align: center; margin-bottom: 28px; line-height: 1.6; }

/* Age gate */
#age-gate { background: rgba(0,0,0,0.97); }
#age-gate .popup { border-color: var(--gold-dim); max-width: 380px; }
.age-btns { display: flex; flex-direction: column; gap: 10px; }

/* Bitcoin popup */
#bitcoin-popup .popup { border-color: rgba(200,150,62,0.4); background: #0E0D0A; }
.btc-feature { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.btc-feature:last-child { border-bottom: none; }
.btc-feat-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; }

/* ── Toast ────────────────────────────────────────────────── */
#toast-container {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 12px 20px;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
  animation: toastIn 0.3s ease;
  pointer-events: all;
  min-width: 240px;
  white-space: nowrap;
}
.toast.success { border-color: var(--green2); }
.toast.success::before { content: '✓'; color: var(--green2); font-weight: 700; }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── WhatsApp float ──────────────────────────────────────── */
#wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 888;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition);
  font-size: 24px;
}
#wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name { font-family: var(--font-display); font-size: 36px; color: var(--gold); margin-bottom: 12px; }
.footer-brand-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(240,237,230,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(240,237,230,0.6); margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--muted); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: var(--muted); transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--white); }
.disclaimer-bar { background: rgba(200,150,62,0.06); border: 1px solid rgba(200,150,62,0.15); border-radius: var(--r); padding: 14px 20px; margin-bottom: 32px; font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── Empty state ─────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-title { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.empty-sub { color: var(--muted); font-size: 14px; }

/* ── Legal pages ─────────────────────────────────────────── */
.legal-content { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.legal-content h1 { font-family: var(--font-display); font-size: 52px; margin-bottom: 8px; }
.legal-content .updated { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 18px; font-weight: 700; margin: 32px 0 12px; color: var(--white); }
.legal-content p { font-size: 14px; color: rgba(240,237,230,0.7); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { margin: 12px 0 12px 20px; list-style: disc; }
.legal-content ul li { font-size: 14px; color: rgba(240,237,230,0.7); line-height: 1.7; margin-bottom: 6px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 16px; }
  .nav-search { display: none; }
  .hamburger { display: flex; }
  .hero-img { width: 100%; opacity: 0.15; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .hero-title { font-size: 64px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 52px; }
  .section { padding: 56px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── Currency Toggle ─────────────────────────────────────── */
.currency-toggle {
  display: flex;
  border: 1px solid var(--border2);
  border-radius: var(--r);
  overflow: hidden;
  flex-shrink: 0;
}
.currency-btn {
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .04em;
}
.currency-btn:hover { color: var(--white); background: var(--border); }
.currency-btn.active { background: var(--gold); color: var(--black); }

/* ── Weight tier selector ────────────────────────────────── */
.weight-tiers { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.weight-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  cursor: pointer;
  background: transparent;
  transition: all var(--transition);
  min-width: 72px;
}
.weight-btn:hover { border-color: var(--gold-dim); }
.weight-btn.active { border-color: var(--gold); background: rgba(200,150,62,0.1); }
.weight-btn-size { font-size: 13px; font-weight: 600; color: var(--white); }
.weight-btn-price { font-size: 12px; color: var(--gold); margin-top: 2px; font-weight: 600; }
.weight-btn.active .weight-btn-size { color: var(--gold); }

/* ── Price display ───────────────────────────────────────── */
.price-from-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.price-current { font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; }
.price-original-lg { font-size: 15px; color: var(--muted2); text-decoration: line-through; margin-left: 8px; }
