/* ============ RESET / TOKENS ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0a0a0b;
  color: #f5f5f0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:root {
  --bg: #0a0a0b;
  --bg-elev: #131316;
  --bg-card: #16161a;
  --border: #24242a;
  --border-strong: #34343c;
  --text: #f5f5f0;
  --text-mute: #8a8a92;
  --text-dim: #5a5a62;
  --accent: #c5ff3d;
  --accent-dim: #8eb828;
  --danger: #ff4d6d;
  --warning: #ffb84d;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --container: 1320px;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ============ AGE GATE ============ */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10,10,11,0.96);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease-out;
}
.age-gate.is-hidden { display: none; }
.age-gate__panel {
  max-width: 460px;
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}
.age-gate__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 32px;
}
.age-gate__title {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.age-gate__copy {
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.age-gate__actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.age-gate__legal {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ============ TOPBAR ============ */
.topbar {
  background: var(--accent);
  color: #0a0a0b;
  font-size: 12px;
  font-weight: 500;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.topbar__dot {
  width: 6px;
  height: 6px;
  background: #0a0a0b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.topbar__link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.logo__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo__mark--lg { font-size: 32px; }
.nav {
  display: flex;
  gap: 4px;
  justify-self: center;
}
.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  border-radius: 999px;
  transition: all 0.15s;
}
.nav__link:hover {
  color: var(--text);
  background: var(--bg-elev);
}
.nav__link--accent {
  color: var(--accent);
}
.nav__link--accent:hover { background: rgba(197,255,61,0.1); }
.header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.15s;
  position: relative;
}
.icon-btn:hover { background: var(--bg-elev); }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: #0a0a0b;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg);
}

/* search drawer */
.search-drawer {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  display: none;
}
.search-drawer.is-open { display: block; }
.search-drawer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}
.search-drawer__inner svg { color: var(--text-mute); }
.search-drawer__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 22px;
  color: var(--text);
  font-family: var(--font-display);
}
.search-drawer__input::placeholder { color: var(--text-dim); }
.search-drawer__close {
  font-size: 11px;
  color: var(--text-mute);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--font-display);
}
.search-drawer__suggest {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.suggest__label {
  font-size: 12px;
  color: var(--text-mute);
}
.suggest__chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  transition: border-color 0.15s;
}
.suggest__chip:hover { border-color: var(--accent); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.15s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--primary {
  background: var(--accent);
  color: #0a0a0b;
}
.btn--primary:hover { background: #d8ff5e; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--bg-elev); border-color: var(--text-mute); }
.btn--success { background: #5dd99c !important; }

/* ============ HERO ============ */
.hero {
  padding: 64px 32px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197,255,61,0.08), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 600px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mute);
  margin-bottom: 28px;
}
.pulse {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__title-dot {
  color: var(--accent);
  display: inline-block;
  font-weight: 400;
}
.hero__lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 480px;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 460px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 12px;
  color: var(--text-mute);
}

/* hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__product-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 440px;
  position: relative;
}
.hero__product-img {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.device-svg {
  height: 100%;
  filter: drop-shadow(0 30px 60px rgba(197,255,61,0.15));
  animation: float 6s ease-in-out infinite;
}
.hero__product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.hero__product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hero__product-eyebrow {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero__product-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
}
.hero__product-price { text-align: right; }
.price__old {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-right: 8px;
}
.price__now {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
}

.hero__floating-tag {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float 7s ease-in-out infinite;
}
.hero__floating-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero__floating-tag--1 { top: 20%; left: -8%; animation-delay: -1s; }
.hero__floating-tag--2 { top: 8%; right: -4%; animation-delay: -3s; }
.hero__floating-tag--3 {
  bottom: 12%;
  left: -12%;
  background: var(--accent);
  color: #0a0a0b;
  border-color: var(--accent);
  font-weight: 700;
  animation-delay: -5s;
}

/* marquee */
.marquee {
  margin-top: 80px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.marquee__item { color: var(--text); }
.marquee__sep { color: var(--accent); }

/* ============ SECTION ============ */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 32px;
}
.section--alt {
  background: var(--bg-elev);
  max-width: none;
  margin: 0;
}
.section--alt > .section__header,
.section--alt > .prod-grid,
.section--alt > .testimonials {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.section--alt {
  padding-left: 32px;
  padding-right: 32px;
}
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.section__filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 500;
  transition: all 0.15s;
}
.chip:hover { color: var(--text); border-color: var(--border-strong); }
.chip--active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.15s;
}
.link-arrow:hover { gap: 10px; }

/* ============ CATEGORIES GRID ============ */
.cat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 16px;
}
.cat-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.cat-card__visual {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #1a1a1f, #0d0d0f);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cat-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(197,255,61,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-card:hover .cat-card__visual::after { opacity: 1; }
.cat-svg { height: 60%; }
.cat-card--lg .cat-svg { height: 70%; }
.cat-card__body {
  padding: 20px;
  border-top: 1px solid var(--border);
}
.cat-card__count {
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.cat-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.cat-card--lg .cat-card__title { font-size: 28px; }
.cat-card__desc {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.4;
}

/* ============ PRODUCT GRID ============ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.prod-card__media {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #1d1d22, #101012);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.prod-card__img {
  width: 60%;
  transition: transform 0.3s;
}
.prod-card:hover .prod-card__img { transform: scale(1.05); }
.prod-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  z-index: 2;
}
.prod-card__badge--hot { background: var(--accent); color: #0a0a0b; }
.prod-card__badge--sale { background: var(--danger); color: #fff; }
.prod-card__badge--new { background: var(--text); color: var(--bg); }
.prod-card__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10,10,11,0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  z-index: 2;
  transition: color 0.15s;
}
.prod-card__wish:hover { color: var(--danger); }
.prod-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.prod-card__brand {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
}
.prod-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  flex: 1;
}
.prod-card__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tag {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.prod-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.prod-card__price .price__now { font-size: 18px; }
.prod-card__price .price__old { font-size: 12px; }
.prod-card__rating {
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  font-family: var(--font-display);
}
.prod-card__rating span { color: var(--text-dim); }

/* ============ PROMO BANNER ============ */
.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #131316, #1a1a20);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: center;
}
.promo-banner__content {
  padding: 64px 56px;
}
.promo-banner__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(197,255,61,0.1);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.promo-banner__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.promo-banner__copy {
  font-size: 15px;
  color: var(--text-mute);
  margin-bottom: 32px;
  max-width: 380px;
  line-height: 1.55;
}
.promo-banner__visual {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.promo-svg {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* ============ BENEFITS ============ */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benefit {
  padding: 36px 32px;
  display: flex;
  gap: 16px;
  border-right: 1px solid var(--border);
}
.benefit:last-child { border-right: none; }
.benefit__icon { color: var(--accent); flex-shrink: 0; }
.benefit h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.benefit p {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
}

/* ============ FLAVORS ============ */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.flavor-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.flavor-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--flavor);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.15;
  transition: opacity 0.3s;
}
.flavor-card:hover { border-color: var(--flavor); transform: translateY(-2px); }
.flavor-card:hover::before { opacity: 0.4; }
.flavor-card__swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--flavor);
  position: relative;
  z-index: 1;
}
.flavor-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.flavor-card__count {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

/* ============ TESTIMONIALS ============ */
.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.trust-pill__stars { color: var(--accent); font-size: 14px; letter-spacing: 0.05em; }
.trust-pill strong { font-family: var(--font-display); font-size: 16px; }
.trust-pill__src { font-size: 12px; color: var(--text-mute); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial__rating {
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}
.avatar--1 { background: #ff6b9d; color: #1a0410; }
.avatar--2 { background: #6bd6ff; color: #04101a; }
.avatar--3 { background: #c5ff3d; color: #101a04; }
.testimonial__name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.testimonial__date { font-size: 11px; color: var(--text-dim); }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.newsletter p { color: var(--text-mute); max-width: 480px; }
.newsletter__form {
  display: flex;
  gap: 8px;
  background: var(--bg);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.newsletter__form input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  padding: 12px 20px;
  width: 280px;
  font-size: 14px;
}
.newsletter__form input::placeholder { color: var(--text-dim); }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 32px 32px;
  background: var(--bg);
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--text-mute);
  margin: 16px 0 24px;
  max-width: 280px;
  line-height: 1.55;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  transition: all 0.15s;
}
.footer__social a:hover { color: var(--accent); border-color: var(--accent); }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 13px;
  color: var(--text-mute);
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--accent); }
.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pay-methods span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__bottom p {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer__cif { font-size: 10px !important; }

/* ============ ANIMATIONS ============ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav { display: none; }
  .header__inner { grid-template-columns: auto 1fr; }
  .nav { grid-column: 1/-1; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card--lg { grid-column: 1/-1; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-banner { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: none; }
  .benefit:nth-child(1), .benefit:nth-child(2) { border-bottom: 1px solid var(--border); }
  .flavor-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .header__inner { padding: 14px 20px; }
  .topbar__inner { padding: 8px 16px; font-size: 11px; }
  .topbar__link { display: none; }
  .hero { padding: 40px 20px 0; }
  .hero__title { font-size: clamp(40px, 12vw, 64px); }
  .section { padding: 64px 20px; }
  .section__header { margin-bottom: 32px; }
  .cat-grid, .prod-grid, .flavor-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-banner__content { padding: 40px 28px; }
  .benefits { grid-template-columns: 1fr; }
  .benefit { border-right: none !important; border-bottom: 1px solid var(--border); }
  .benefit:last-child { border-bottom: none; }
  .newsletter { padding: 32px 24px; }
  .newsletter__form { flex-direction: column; border-radius: 12px; padding: 8px; }
  .newsletter__form input { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__floating-tag--1, .hero__floating-tag--2 { display: none; }
}

/* ============================================================================
   TEMA CLARO — se activa con html.theme-light
   ============================================================================ */
html.theme-light {
  --bg:           #ffffff;
  --bg-elev:      #f7f7f5;
  --bg-card:      #ffffff;
  --border:       #e8e8e2;
  --border-strong:#d4d4ce;
  --text:         #18181b;
  --text-mute:    #555560;
  --text-dim:     #888894;
  --accent:       #4d8a00;
  --accent-dim:   #6ea800;
  --danger:       #dc2640;
  --warning:      #c47200;
}
html.theme-light body { background: #ffffff; color: #18181b; }
html.theme-light .topbar { background: var(--accent); color: #ffffff; }
html.theme-light .header { background: rgba(255,255,255,0.95); border-bottom: 1px solid var(--border); }
html.theme-light .nav__link:hover { background: rgba(0,0,0,0.04); }
html.theme-light .icon-btn:hover  { background: rgba(0,0,0,0.05); }
html.theme-light .btn--ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
html.theme-light .btn--ghost:hover { background: var(--bg-elev); }
html.theme-light .age-gate { background: rgba(255,255,255,0.96); }
html.theme-light .prod-card { background: #ffffff; border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
html.theme-light .prod-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
html.theme-light .prod-card__badge--new   { background: #18181b; color: #fff; }
html.theme-light .footer { background: #f7f7f5; border-top: 1px solid var(--border); color: var(--text); }
html.theme-light footer { background: #f7f7f5; }
html.theme-light .filters__sticky,
html.theme-light .panel,
html.theme-light .modal,
html.theme-light .auth-card,
html.theme-light .summary,
html.theme-light .acct-pane,
html.theme-light .order-card,
html.theme-light .co-section,
html.theme-light .lr-form { background: #ffffff; border-color: var(--border); }
html.theme-light input,
html.theme-light textarea,
html.theme-light select { background: #f7f7f5; color: #18181b; border-color: var(--border); }
html.theme-light input:focus,
html.theme-light textarea:focus,
html.theme-light select:focus { border-color: var(--accent); }
html.theme-light pre, html.theme-light code { background: #f0f0eb; }
html.theme-light .tag { background: #f0f0eb; color: var(--text-mute); border-color: var(--border); }
