/* ==========================================================
   Vapistería — Prototipo FLAT (sin degradados)
   Colores planos · Tipografía moderna · Bordes sutiles
   ========================================================== */

:root {
  --bg: #0e0e12;
  --bg-soft: #15151b;
  --bg-card: #1a1a22;
  --bg-elevated: #20202a;
  --border: #262631;
  --border-strong: #353542;
  --text: #f4f4f7;
  --text-muted: #9b9bab;
  --text-dim: #6c6c7a;
  --accent: #0081bf;
  --accent-hover: #0094db;
  --accent-soft: rgba(0, 129, 191, 0.14);
  --accent-border: rgba(0, 129, 191, 0.4);
  --warn: #ff5e7a;
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; }
body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============== Botones ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent-hover); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--bg-elevated); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn--small {
  padding: 9px 16px;
  font-size: 13px;
  background: var(--text);
  color: var(--bg);
}
.btn--small:hover { background: var(--accent); }

/* ============== Modal verificación edad ============== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 240ms ease;
}
.age-gate.is-hidden { display: none; }

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.age-gate__card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: cardIn 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.age-gate__badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--bg);
}

.age-gate__title {
  margin: 0 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.age-gate__subtitle {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.age-gate__actions .btn { width: 100%; }

.age-gate__legal {
  margin: 0;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ============== Nav ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(14, 14, 18, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.nav.is-scrolled { border-bottom-color: var(--border); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__logo {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
}
.nav .nav__brand-text { display: none; }
.footer .nav__logo { width: 44px; height: 44px; }
.nav__brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
}
.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.icon-btn:hover { background: var(--bg-elevated); border-color: var(--accent); }

/* ============== Sidenav vertical (desktop) ============== */
.sidenav {
  position: fixed;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  z-index: 40;
  pointer-events: auto;
}
.sidenav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidenav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: color var(--transition), background var(--transition);
}
.sidenav a:hover { color: var(--text); }
.sidenav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.sidenav__label {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}
.sidenav:hover .sidenav__label,
.sidenav a.is-active .sidenav__label {
  opacity: 1;
  transform: translateX(0);
}
.sidenav a.is-active { color: var(--text); }
.sidenav a.is-active .sidenav__dot {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(0, 129, 191, 0.18);
}

/* ============== Drawer móvil ============== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition), visibility 0s linear var(--transition);
}
.drawer.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity var(--transition);
}
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 12, 0.7);
  backdrop-filter: blur(12px);
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: var(--bg-card);
  border-left: 1px solid var(--border-strong);
  padding: 80px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__panel a {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.drawer__panel a:hover { background: var(--bg-elevated); color: var(--accent); }
.drawer__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer__close:hover { border-color: var(--accent); color: var(--accent); }

.nav__burger { display: inline-flex; }
body.is-locked .drawer { pointer-events: auto; }

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: 96px 0 100px;
  border-bottom: 1px solid var(--border);
}
.hero__glow { display: none; }
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.hero__copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__lead { margin-left: auto; margin-right: auto; text-align: center; }
.hero__cta { justify-content: center; }
.hero__stats { justify-content: center; }
.hero__eyebrow {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero__title {
  margin: 0 0 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero__title-accent { color: var(--accent); }

.hero__lead {
  margin: 0 0 32px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__stats {
  display: flex;
  gap: 36px;
}
.hero__stats > div {
  display: flex;
  flex-direction: column;
}
.hero__stats strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
}
.hero__stats span {
  font-size: 13px;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__device {
  position: relative;
  width: 180px;
  height: 360px;
}
.hero__device-body {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.hero__device-screen {
  position: absolute;
  top: 28px;
  left: 24px;
  right: 24px;
  height: 80px;
  border-radius: 10px;
  background: var(--accent);
}
.hero__device-button {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
}
.hero__vapor { display: none; }

/* ============== Sections ============== */
.section {
  padding: 96px 0;
  position: relative;
}
.section--alt { background: var(--bg-soft); }
.section--cta { padding-bottom: 120px; }
.section__header {
  margin-bottom: 48px;
  text-align: center;
}
.section__header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  gap: 24px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section__title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.link-arrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  transition: color var(--transition);
}
.link-arrow:hover { color: var(--text); }

/* ============== Categorías ============== */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat {
  position: relative;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.cat:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: var(--bg-elevated);
}
.cat__icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.cat h4 {
  position: relative;
  margin: 0 0 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.cat p {
  position: relative;
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}
.cat__arrow {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 20px;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}
.cat:hover .cat__arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ============== Productos ============== */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.product:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.product__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__media::after {
  content: '';
  width: 56%;
  aspect-ratio: 1 / 1.6;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.product__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--bg);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-strong);
  color: var(--text);
  z-index: 1;
}
.product__tag--hot {
  background: var(--warn);
  border-color: transparent;
  color: #fff;
}
.product__body { padding: 18px; }
.product__brand {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.product__title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.product__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.product__price-old {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 500;
}

/* ============== Instagram ============== */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ig-post {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition);
}
.ig-post:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ig-post:hover img { transform: scale(1.05); }

.ig-post__type {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ig-post__overlay {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.78) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.ig-post:hover .ig-post__overlay { opacity: 1; }

.ig-post__caption {
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-post__date {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============== Marcas ============== */
.brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.brand {
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition), border-color var(--transition);
}
.brand:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* ============== Reseñas Google ============== */
.reviews {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding: 0 24px;
  padding: 4px 0 24px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  scrollbar-width: none;
}
.reviews::-webkit-scrollbar { display: none; }

.review {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.review__avatar--img { padding: 0; object-fit: cover; }
.review__head strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.review__meta {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.review__stars {
  font-size: 16px;
  color: #ffb547;
  letter-spacing: 2px;
}
.review__stars span { color: var(--border-strong); }

.review__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.review--skel { position: relative; min-height: 200px; }
.review__skel {
  position: absolute;
  inset: 22px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--bg-elevated) 0%, var(--bg-card) 50%, var(--bg-elevated) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.reviews__nav {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.reviews__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.reviews__btn:hover { border-color: var(--accent); color: var(--accent); }

.reviews__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.reviews__disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 460px;
  text-align: right;
}

/* ============== CTA tienda física ============== */
.cta {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
}
.cta__copy { position: relative; }
.cta__copy p {
  color: var(--text-muted);
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 440px;
}
.cta__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta__details strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 6px;
}
.cta__details span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
.cta__map {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.cta__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05) brightness(0.85);
  transition: filter var(--transition);
}
.cta__map:hover iframe { filter: none; }

/* ============== Footer ============== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__inner--three { grid-template-columns: 1fr 1.4fr 1fr; }
.footer__col h5 {
  margin: 0 0 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}
.footer__col a {
  display: inline-block;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--accent); }
.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.footer__list svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.footer__list a { color: var(--text-muted); }
.footer__dist {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-muted);
}
.footer__list--hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.footer__list--hours span { color: var(--text-muted); }
.footer__list--hours strong { color: var(--text); font-weight: 500; font-size: 13px; text-align: right; }
.footer__closed { color: var(--text-dim) !important; font-style: italic; }
.footer__col--brand p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  gap: 16px;
  flex-wrap: wrap;
}

/* ============== Animaciones ============== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

/* ============== Responsive ============== */
@media (max-width: 1080px) {
  .sidenav { display: none; }
}

@media (max-width: 960px) {
  .hero__inner { gap: 32px; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .brands { grid-template-columns: repeat(3, 1fr); }
  .cta { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
  .footer__inner, .footer__inner--three { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 64px; }
  .hero__stats { gap: 20px; }
  .hero__stats strong { font-size: 22px; }
  .section { padding: 64px 0; }
  .section__header--split { flex-direction: column; align-items: flex-start; }
  .cats, .products { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .brands { grid-template-columns: repeat(2, 1fr); }
  .footer__inner, .footer__inner--three { grid-template-columns: 1fr; gap: 32px; }
  .cta { padding: 28px; }
  .cta__details { grid-template-columns: 1fr; gap: 16px; }
  .age-gate__card { padding: 32px 24px 24px; }
  .age-gate__title { font-size: 24px; }
  .review { flex: 0 0 86%; }
  .reviews__footer { flex-direction: column; align-items: flex-start; }
  .reviews__disclaimer { text-align: left; }
}
