/* ===========================================================
   X-Treme Labs — estilos compartidos (público)
   Extraído del boceto 1 + estilos de tienda/sliders
   =========================================================== */

:root {
  --bg: #09090b;
  --marble-base: #0c0c0e;
  --fondo-web: url("../../concept/fondo_web.jpeg");
  /* Proporción fondo_web.jpeg (2752×1536) → alto de cada repetición */
  --fondo-tile-h: calc(100vw * 1536 / 2752);
  --bg-card: rgba(10, 10, 12, 0.88);
  --gold: #d4af37;
  --gold-light: #f0d78c;
  --gold-glow: rgba(212, 175, 55, 0.45);
  --red: #c41e3a;
  --text: #f2f2f2;
  --muted: #b0b0b0;
  --border: rgba(212, 175, 55, 0.25);
  --radius: 14px;
  --nav-h: 76px;
  --wa: #25d366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--marble-base);
  min-height: 100%;
}
body {
  position: relative;
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--marble-base);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100vh;
  min-height: 100dvh;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}
body > header,
body > section,
body > main,
body > footer {
  position: relative;
  z-index: 1;
}
h1, h2, h3, .section-title, .brand-serif {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}
.script-glow {
  text-shadow: 0 0 28px var(--gold-glow), 0 2px 10px rgba(0, 0, 0, 0.95);
}

/* Fondo mármol: scrollea con la página y se repite en vertical */
.site-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--marble-base);
}
.marble-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--marble-base);
  background-image: var(--fondo-web);
  background-repeat: repeat-y;
  background-size: 100% var(--fondo-tile-h);
  background-position: center top;
}
.marble-veil {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent calc(var(--fondo-tile-h) - 24px),
      rgba(0, 0, 0, 0.22) calc(var(--fondo-tile-h) - 12px),
      transparent var(--fondo-tile-h)
    ),
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(0, 0, 0, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 100% 35% at 50% 100%, rgba(0, 0, 0, 0.35) 0%, transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.22) 100%);
}
.stat,
.benefit,
.protocol-card,
.testimonial,
.contact-card,
.about-visual,
.cta-final { backdrop-filter: blur(10px); }

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

.container { width: min(1180px, 92vw); margin: 0 auto; }

.script-glow {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.4rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px var(--gold-glow));
  line-height: 1.1;
}
.brand-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, #8a6d1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-line {
  width: 120px;
  height: 2px;
  margin: 1rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 12px var(--gold-glow);
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.section-title .title-accent {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* ——— BOTONES ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a0a0a;
  box-shadow: 0 0 28px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px var(--gold-glow); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); box-shadow: 0 0 20px var(--gold-glow); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.72rem; }

/* ——— NAV ——— */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 52px; width: auto; }
.nav-desktop {
  display: none;
  gap: 1.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
}
.cart-btn span {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.menu-toggle {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8, 8, 10, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  display: flex;
  align-items: center;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
.hero-logo { display: flex; justify-content: center; align-items: center; width: 100%; }
.hero-logo img {
  width: auto; height: auto;
  max-width: min(92vw, 400px);
  max-height: min(52vh, 480px);
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.35));
}
.hero-content { text-align: center; }
.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hero h1 .accent-red { color: var(--red); font-size: 0.55em; display: block; letter-spacing: 0.3em; margin-bottom: 0.5rem; }
.hero-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: #c8c8c8;
  max-width: 520px;
  margin: 1rem auto 2rem;
  letter-spacing: 0.05em;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  padding: 1.25rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold);
}
.stat span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

/* ——— MARQUEE ——— */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}
.marquee {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: marquee-scroll var(--marquee-duration, 35s) linear infinite;
}
.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 3rem;
  padding-right: 3rem;
}
.marquee-track span {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track span em { color: var(--gold); font-style: normal; }
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ——— SECCIONES ——— */
section { padding: 5rem 0; }
section.alt { background: transparent; }

/* Beneficios */
.benefits { display: grid; gap: 1rem; }
.benefit {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.benefit-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 0 20px var(--gold-glow);
}
.benefit h3 { font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.benefit p { font-size: 0.85rem; color: var(--muted); }

/* Nosotros */
.about-grid { display: grid; gap: 2rem; align-items: center; }
.about-visual {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--bg-card);
  text-align: center;
}
.about-visual .logo-limpio { max-width: 220px; margin: 0 auto 1rem; border-radius: var(--radius); }
.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }
.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--gold-light);
  font-style: italic;
}

/* Contacto dual WhatsApp */
.contact-cards { display: grid; gap: 1.25rem; }
.contact-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
}
.contact-card.primary { border-color: var(--gold); }
.contact-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h3 { text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; }
.phone-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* CTA final */
.cta-final {
  text-align: center;
  padding: 4rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 70%),
    var(--bg-card);
}
.cta-final h2 { margin-bottom: 1rem; }

/* ——— FOOTER ——— */
footer {
  padding: 3rem 0 2rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); max-width: 280px; }
.footer-links h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: var(--muted); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ===========================================================
   TIENDA
   =========================================================== */
.shop-main { padding-top: calc(var(--nav-h) + 1.5rem); padding-bottom: 5.5rem; }
.shop-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
}
.shop-top p { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }
.search-bar { flex: 1; min-width: 220px; max-width: 360px; display: flex; gap: 0.5rem; }
.search-bar input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}
.search-bar input::placeholder { color: var(--muted); }
.search-bar input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 16px var(--gold-glow); }

/* ——— SLIDERS (destacados / combos) ——— */
.slider-section { margin-top: 1.75rem; padding: 0; }
.slider-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.slider-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.slider-head .section-label { text-align: left; margin: 0; }
.slider {
  position: relative;
}
.slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.25rem 1rem;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.slider-track::-webkit-scrollbar { height: 8px; }
.slider-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.slider-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.slider-track > * {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 230px;
}
.slider-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(12,12,14,0.9);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  display: none;
  place-items: center;
  box-shadow: 0 0 20px var(--gold-glow);
}
.slider-btn.prev { left: -10px; }
.slider-btn.next { right: -10px; }
.slider:hover .slider-btn { display: grid; }

/* Combo card específico */
.combo-card .p-img { font-size: 2rem; }
.combo-card .combo-includes {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

/* ——— BODY tienda: categorías + grilla ——— */
.shop-body { display: grid; gap: 1.5rem; margin-top: 2rem; align-items: start; }
.sidebar {
  padding: 1.25rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: fit-content;
}
.sidebar h3 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cat-list { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-list a:hover { color: var(--text); border-color: var(--border); }
.cat-list a.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
}
.cat-list a .count { font-size: 0.7rem; opacity: 0.7; }
.cat-list .cat-meta { display: inline-flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.cat-list a .caret { font-size: 0.95rem; opacity: 0.6; transition: transform 0.2s; line-height: 1; }
.cat-list li.expanded > a .caret { transform: rotate(90deg); }

/* Subcategorías: contraídas por defecto, se despliegan al tocar el padre */
.subcat-list { list-style: none; margin: 0.25rem 0 0.4rem 0.75rem; padding-left: 0.6rem; border-left: 1px solid var(--border); flex-direction: column; gap: 0.2rem; display: none; }
.cat-list > li.expanded > .subcat-list { display: flex; }
.subcat-list a { font-size: 0.8rem; padding: 0.45rem 0.7rem; }

/* Categorías como chips (móvil) */
.cat-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.cat-chip {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.cat-chip.active, .cat-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

/* Contenido de la tienda (a la derecha de las categorías) */
.shop-content { min-width: 0; }
#slidersBlock[hidden] { display: none; }
#slidersBlock .slider-section:first-child { margin-top: 0; }

/* Desplegable de categorías (móvil) */
.cat-select-wrap { margin-bottom: 1.5rem; }
.cat-select-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.cat-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.cat-select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 16px var(--gold-glow); }

/* Grilla de productos */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.product-grid[hidden] { display: none; }
.p-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px var(--gold-glow);
}
.p-img {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #151515, #080808);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.p-img img { width: 100%; height: 100%; object-fit: cover; }
.p-tag {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
}
.p-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.p-body h3 { font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.p-body .meta { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.5rem; }
.p-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-top: auto;
  margin-bottom: 0.75rem;
}
.p-actions { display: flex; gap: 0.4rem; }
.p-actions .btn { flex: 1; padding: 0.5rem; font-size: 0.65rem; }
.empty-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
  font-size: 0.9rem;
}

/* ——— BARRA CARRITO ——— */
.cart-bar {
  position: fixed;
  bottom: 1rem;
  left: 0; right: 0;
  z-index: 95;
  padding: 0 1rem;
  pointer-events: none;
  transform: translateY(150%);
  transition: transform 0.3s ease;
}
.cart-bar.show { transform: translateY(0); }
.cart-bar-inner {
  pointer-events: auto;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(12, 12, 14, 0.95);
  border: 1px solid var(--gold);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px var(--gold-glow);
}
.cart-bar-inner strong { font-size: 0.85rem; letter-spacing: 0.05em; }
.cart-bar-inner .sub { font-size: 0.75rem; color: var(--muted); }
.cart-bar .total { font-family: "Cormorant Garamond", serif; font-size: 1.2rem; color: var(--gold); }

/* ——— MODAL CARRITO ——— */
.cart-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 160;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.cart-modal-backdrop.show { opacity: 1; visibility: visible; }
.cart-modal {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: rgba(10,10,12,0.98);
  border-left: 1px solid var(--border);
  z-index: 161;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.cart-modal.show { transform: translateX(0); }
.cart-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cart-modal-head h3 { text-transform: uppercase; letter-spacing: 0.1em; font-size: 1rem; }
.cart-close { background: transparent; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
}
.cart-item h4 { font-size: 0.85rem; letter-spacing: 0.03em; }
.cart-item .ci-price { font-family: "Cormorant Garamond", serif; color: var(--gold); font-size: 1rem; }
.qty { display: flex; align-items: center; gap: 0.5rem; }
.qty button {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}
.qty button:hover { border-color: var(--gold); color: var(--gold); }
.ci-remove { background: transparent; border: none; color: var(--muted); cursor: pointer; font-size: 0.75rem; }
.ci-remove:hover { color: var(--red); }
.cart-foot { margin-top: 1rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.cart-foot .row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cart-foot .row .total { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--gold); }
.cart-foot .btn { width: 100%; }
.cart-empty { text-align: center; color: var(--muted); padding: 2rem 1rem; font-size: 0.9rem; }

/* ——— WhatsApp FAB ——— */
.wa-fab-wrap {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-fab-menu {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  pointer-events: none;
}
.wa-fab-wrap.open .wa-fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-fab-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wa-fab-option:hover { border-color: var(--wa); box-shadow: 0 0 20px rgba(37, 211, 102, 0.25); }
.wa-fab-option-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.wa-fab-option strong { display: block; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.wa-fab-option small { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 0.1rem; }
.wa-fab-trigger {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--wa);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  display: grid;
  place-items: center;
}
.wa-fab-wrap.open .wa-fab-trigger { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2); }
.wa-fab-trigger svg { width: 28px; height: 28px; fill: currentColor; }
.wa-fab-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.wa-fab-backdrop.show { opacity: 1; visibility: visible; }

/* Footer tienda */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-row img { max-height: 88px; width: auto; max-width: min(100%, 320px); margin-bottom: 1rem; }
.footer-row p { font-size: 0.85rem; color: var(--muted); max-width: 300px; }
.footer-row-links { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; }
.footer-row-links a { font-size: 0.85rem; color: var(--muted); }
.footer-row-links a:hover { color: var(--gold); }
.footer-copy {
  width: 100%;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.08em;
}

/* ——— RESPONSIVE ——— */
@media (min-width: 600px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .hero-layout { grid-template-columns: minmax(300px, 42%) 1fr; gap: 2rem 3.5rem; }
  .hero-logo { justify-content: flex-end; padding-right: clamp(0.25rem, 1.5vw, 1rem); transform: translateX(clamp(2rem, 4vw, 3.75rem)); }
  .hero-logo img { max-width: 100%; max-height: min(76vh, 620px); }
  .hero-content { transform: translateX(clamp(-0.75rem, -1.5vw, -1.5rem)); }
  .about-grid { grid-template-columns: 1fr 1.2fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .wa-fab-wrap { bottom: 6rem; right: 2rem; }
}
@media (min-width: 900px) {
  .shop-body { grid-template-columns: 240px 1fr; }
  .cat-chips { display: none; }
  .cat-select-wrap { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .benefits { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 899px) {
  .sidebar { display: none; }
}
