/* ============================================================
   LA KALOR — Hoja de estilos de marca
   "Viví lo que te hace sentir" — Momentos. Conexión. Placer.
   ============================================================ */

:root {
  --black: #0C0C0C;
  --red: #9B1C1C;
  --orange: #E85A1C;
  --cream: #E7D8C6;
  --gold: #D4AF37;

  /* fondo cálido para tarjetas de producto (no negro puro,
     para que el packaging oscuro no se pierda) */
  --card-bg: #18120E;
  --card-bg-light: #211812;

  --ink: #F4ECE2;
  --ink-muted: #C9B9A8;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;

  --radius: 4px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 24px; height: 24px; flex-shrink: 0; } /* default seguro; las clases más específicas lo pisan */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--orange);
  font-weight: 600;
}

.section {
  padding: 72px 0;
}
.section--tight { padding: 40px 0; }

.section-title {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink-muted);
}
.section-sub {
  color: var(--ink-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

/* ---------- BOTONES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(120deg, var(--orange), var(--red));
  color: #fff;
}
.btn--primary:hover { filter: brightness(1.08); }

.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover { background: rgba(212,175,55,.1); }

.btn--dark {
  background: var(--black);
  color: var(--cream);
  border-color: rgba(231,216,198,.25);
}

.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .72rem; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12,12,12,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212,175,55,.18);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 24px;
}
.logo { display: flex; align-items: center; }
.logo__img { height: 72px; width: auto; display: block; }
.logo__img--sm { height: 32px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-muted);
  font-weight: 600;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--orange); }

.header__actions { display: flex; align-items: center; gap: 16px; }
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.cart-link svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--orange);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(231,216,198,.3);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--ink);
}

.nav-dropdown { position: relative; }
.nav-dropdown__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-muted);
  font-weight: 600;
  cursor: default;
}
.nav-dropdown__label svg { width: 12px; height: 12px; }
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 14px;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 8px;
  padding: 10px;
  min-width: 220px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown__menu a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: .78rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-muted);
  white-space: nowrap;
}
.nav-dropdown__menu a:hover { background: rgba(232,90,28,.12); color: var(--orange); }

@media (max-width: 920px) {
  .main-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 18px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .25s ease;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-toggle { display: inline-flex; }
  .nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: none;
    padding: 6px 0 0 6px;
    margin-top: 8px;
  }
}

/* ---------- HERO (home) ---------- */
@keyframes glow-breathe {
  0%, 100% { opacity: .75; transform: scale(1); }
  40%       { opacity: 1;   transform: scale(1.07); }
  70%       { opacity: .88; transform: scale(1.03); }
}

.hero {
  position: relative;
  min-height: 88vh;
  background: #0C0C0C;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 90% at 78% 58%, rgba(212,165,40,.45) 0%, transparent 52%),
    radial-gradient(ellipse 40% 60% at 60% 26%, rgba(232,90,18,.32) 0%, transparent 48%),
    radial-gradient(ellipse 50% 55% at 92% 90%, rgba(180,50,8,.38) 0%, transparent 50%),
    radial-gradient(ellipse 28% 36% at 82% 46%, rgba(255,160,30,.22) 0%, transparent 44%);
  animation: glow-breathe 7s ease-in-out infinite;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, #0C0C0C 34%, rgba(12,12,12,.82) 50%, rgba(12,12,12,.25) 66%, rgba(12,12,12,0) 80%);
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 580px;
  padding: 120px 48px 80px max(48px, 5vw);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: .9;
  margin: 0 0 32px;
  letter-spacing: -.01em;
}
.hero__divider {
  width: 48px;
  height: 1px;
  background: var(--ink-muted);
  margin-bottom: 32px;
}
.hero__sub {
  font-family: var(--sans);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-muted);
  line-height: 2;
  margin: 0 0 48px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #fff;
  background: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 999px;
  padding: 16px 32px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.hero__cta:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

@media (max-width: 768px) {
  .hero { min-height: 75vh; }
  .hero::before { background: linear-gradient(to bottom, rgba(12,12,12,.6) 0%, rgba(12,12,12,.9) 100%); }
  .hero__content { padding: 80px 24px 60px; }
}

/* ---------- MOMENTO PICKER ---------- */
.momento-picker {
  background: var(--black);
  border-top: 1px solid rgba(212,175,55,.15);
  border-bottom: 1px solid rgba(212,175,55,.15);
  padding-top: 56px;
  padding-bottom: 64px;
}
.momento-picker__head {
  padding: 0 24px 48px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.momento-picker__head h2 {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--ink);
}
.momento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.momento-tile {
  border: 1.5px solid rgba(212,175,55,.5);
  border-radius: 8px;
  padding: 56px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  transition: background .2s ease, border-color .2s ease;
  min-height: 360px;
}
.momento-tile:hover { background: rgba(232,90,28,.06); border-color: var(--orange); }
.momento-tile__icon { width: 68px; height: 68px; color: var(--orange); }
.momento-tile__title {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--ink);
}
.momento-tile__sub { font-size: 1.05rem; color: var(--ink-muted); line-height: 1.6; }
.momento-tile__cta {
  margin-top: auto;
  padding: 10px 22px;
  border: 1.5px solid var(--orange);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  transition: background .2s ease, color .2s ease;
}
.momento-tile:hover .momento-tile__cta {
  background: var(--orange);
  color: #fff;
}
@media (max-width: 700px) {
  .momento-grid { gap: 14px; }
  .momento-tile { padding: 40px 24px 28px; min-height: 300px; }
  .momento-tile__icon { width: 52px; height: 52px; }
  .momento-tile__title { font-size: 1.1rem; }
  .momento-tile__sub { font-size: .95rem; }
}
@media (max-width: 480px) {
  .momento-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 20px; }
  .momento-tile { min-height: 200px; padding: 36px 28px; }
  .momento-tile__icon { width: 60px; height: 60px; }
  .momento-tile__title { font-size: 1.25rem; }
  .momento-tile__sub { font-size: 1rem; }
}

/* ---------- MOMENTO PAGE HERO ---------- */
.momento-hero {
  background: linear-gradient(180deg, #1a1210, var(--black));
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.momento-hero__icon {
  width: 46px; height: 46px; color: var(--orange); margin-bottom: 18px;
}
.momento-hero h1 {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.05;
  background-image: linear-gradient(100deg in srgb, var(--ink) 40%, var(--gold) 48%, var(--orange) 56%, var(--ink) 65%);
  background-size: 260% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: momento-heat-sweep 3.2s cubic-bezier(.25,.65,.3,1) forwards;
}
@keyframes momento-heat-sweep {
  from { background-position: 100% 0; }
  to { background-position: 0% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .momento-hero h1 {
    animation: none;
    background-position: 0% 0;
  }
}
.momento-hero .section-sub { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); font-style: italic; }
.momento-hero p.copy { color: var(--ink-muted); max-width: 640px; margin-top: 14px; }

.breadcrumb {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- PRODUCT GRID / CARDS ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.14);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.4); }

.product-card__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 40%, rgba(232,90,28,.5), rgba(212,175,55,.24) 42%, rgba(212,175,55,.08) 65%, var(--card-bg) 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 9px;
  border-radius: 999px;
}
.product-card__badge--soon {
  background: transparent;
  border: 1px solid rgba(231,216,198,.4);
  color: var(--ink-muted);
}
.product-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card__brand { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); }
.product-card__name { font-family: var(--sans); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.product-card__desc { font-size: .82rem; color: var(--ink-muted); flex: 1; }
.product-card__momentos { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0; }
.tag {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-muted);
  border: 1px solid rgba(231,216,198,.25);
  border-radius: 999px;
  padding: 3px 9px;
}
.tag:hover { border-color: var(--orange); color: var(--orange); }
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.price { font-family: var(--sans); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.price--query { font-size: .85rem; color: var(--ink-muted); font-family: var(--sans); }

/* Stock en vivo (lo completa assets/js/stock.js; vacío hasta que el backend esté desplegado) */
.stock-badge { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-muted); }
.stock-badge:empty { display: none; }
.stock-badge--out { color: var(--red); }

/* placeholder art shapes (SVG inline currency, sin foto real todavía) */
.placeholder-art { width: 60%; height: 60%; color: var(--gold); opacity: .85; }

/* mockup de packaging de los productos reales */
.product-real-art { width: 78%; height: 78%; max-width: 260px; max-height: 260px; }

/* foto real del producto — transparente para que la gradiente de la card se vea */
.product-photo { width: 90%; height: 90%; object-fit: contain; display: block; }

/* ---------- CATALOGO "YA QUE QUIERO..." ---------- */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 20px 0 32px;
  border-bottom: 1px solid rgba(212,175,55,.15);
  margin-bottom: 32px;
}
.catalog-toolbar input[type="search"],
.catalog-toolbar select {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.25);
  color: var(--ink);
  padding: 11px 16px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .85rem;
}
.catalog-toolbar input[type="search"] { min-width: 240px; flex: 1; }
.catalog-toolbar select { cursor: pointer; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(231,216,198,.25);
  color: var(--ink-muted);
  cursor: pointer;
  background: transparent;
  font-family: var(--sans);
}
.chip { text-decoration: none; display: inline-block; }
.chip:hover { border-color: var(--orange); color: var(--orange); }
.chip.is-active { background: var(--orange); border-color: var(--orange); color: #fff; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-muted); }

.catalog-category { scroll-margin-top: 90px; margin-bottom: 40px; }
.catalog-category__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,175,55,.2);
}

/* ---------- PRODUCT DETAIL ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 48px 0 80px;
}
.product-detail__photo {
  aspect-ratio: 1/1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 37%, rgba(232,90,28,.55), rgba(212,175,55,.26) 42%, rgba(212,175,55,.09) 65%, var(--card-bg) 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid rgba(212,175,55,.16);
}
.product-detail__info .product-card__brand { font-size: .78rem; }
.product-detail__info h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 6px; }
.product-detail__price { font-family: var(--serif); font-size: 2rem; color: var(--gold); margin: 18px 0; }
.product-detail__desc { color: var(--ink-muted); margin-bottom: 24px; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 999px;
  overflow: hidden;
}
.qty-control button {
  background: none; border: none; color: var(--ink);
  width: 38px; height: 38px; cursor: pointer; font-size: 1.1rem;
}
.qty-control button:hover { color: var(--orange); }
.qty-control input {
  width: 40px; text-align: center; background: none; border: none; color: var(--ink); font-family: var(--sans);
}
.product-detail__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.also-momentos { margin-top: 28px; }
.also-momentos .tag { margin-right: 6px; }
.related { padding: 20px 0 80px; }

/* ---------- CARRITO ---------- */
.cart-page { padding: 48px 0 100px; }
.cart-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.cart-row {
  display: grid;
  grid-template-columns: 84px 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.14);
  border-radius: 10px;
  padding: 14px;
}
.cart-row__photo {
  width: 84px; height: 84px; border-radius: 8px; flex-shrink: 0;
  background: radial-gradient(circle at 50% 35%, rgba(232,90,28,.22), rgba(212,175,55,.06) 45%, var(--card-bg) 75%);
  overflow: hidden;
}
.cart-row__img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }
.cart-row__name { font-family: var(--sans); font-weight: 700; font-size: 1rem; }
.cart-row__momento { font-size: .78rem; color: var(--ink-muted); font-family: var(--sans); }
.cart-row__remove { background: none; border: none; color: var(--ink-muted); cursor: pointer; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.cart-row__remove:hover { color: var(--red); }
.cart-summary {
  border-top: 1px solid rgba(212,175,55,.2);
  padding-top: 24px;
  display: flex;
  justify-content: flex-end;
}
.cart-summary__box { width: 100%; max-width: 360px; text-align: right; }
.cart-summary__line { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--ink-muted); font-size: .9rem; }
.cart-summary__total { display: flex; justify-content: space-between; font-family: var(--sans); font-weight: 700; font-size: 1.4rem; margin: 14px 0 22px; }
#cart-empty { display: none; }
#cart-empty.is-visible { display: block; }
#cart-filled.is-hidden { display: none; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(212,175,55,.18);
  padding: 56px 0 28px;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--orange);
  font-size: 1.3rem;
  margin-bottom: 34px;
}
.footer-values {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.footer-value { display: flex; align-items: center; gap: 10px; color: var(--ink-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-value svg { width: 20px; height: 20px; color: var(--orange); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink-muted);
  font-size: .78rem;
}
.footer-manifest { text-align: right; }
.footer-manifest strong { display: block; color: var(--cream); font-family: var(--serif); font-size: 1rem; font-weight: 500; }

/* ---------- MISC ---------- */
.whatsapp-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  z-index: 150;
  transition: transform .2s ease;
}
.whatsapp-bubble svg { width: 38px; height: 38px; }
.whatsapp-bubble:hover { transform: scale(1.08); }
@media (max-width: 480px) {
  .whatsapp-bubble { width: 60px; height: 60px; bottom: 16px; right: 16px; }
  .whatsapp-bubble svg { width: 34px; height: 34px; }
}

.toast {
  position: fixed;
  bottom: 104px;
  right: 24px;
  background: var(--gold);
  color: var(--black);
  padding: 14px 22px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transform: translateY(20px);
  opacity: 0;
  transition: all .25s ease;
  z-index: 200;
}
.toast.is-visible { transform: translateY(0); opacity: 1; }

.cart-popup {
  position: fixed;
  bottom: 104px;
  right: 24px;
  width: 280px;
  max-width: calc(100vw - 32px);
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.4);
  border-radius: 10px;
  padding: 18px 18px 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
  z-index: 200;
}
.cart-popup.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cart-popup__close {
  position: absolute;
  top: 10px; right: 12px;
  background: none; border: none;
  color: var(--ink-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.cart-popup__close:hover { color: var(--ink); }
.cart-popup__head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 10px;
  padding-right: 18px;
}
.cart-popup__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: .72rem;
  flex-shrink: 0;
}
.cart-popup__name { font-size: .9rem; color: var(--ink-muted); margin-bottom: 14px; }
.cart-popup__qty { margin-bottom: 16px; }
.cart-popup__actions { display: flex; flex-direction: column; gap: 8px; }
.cart-popup__actions .btn { justify-content: center; width: 100%; }

.age-gate {
  position: fixed; inset: 0; z-index: 500;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; text-align: center;
}
.age-gate__box { max-width: 420px; }
.age-gate__box h2 { font-size: 2rem; }
.age-gate__box p { color: var(--ink-muted); margin-bottom: 26px; }
.age-gate__actions { display: flex; gap: 14px; justify-content: center; }
.age-gate.is-hidden { display: none; }

@media (max-width: 700px) {
  .product-detail { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 60px 1fr; grid-template-areas: "photo name" "photo qty" "photo remove"; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-manifest { text-align: left; }
}
