/* ═══════════════════════════════════════════════════
   FriendlyPOS — styles.css
   Tipografía: DM Sans | Acento: #ff6d33
   ═══════════════════════════════════════════════════ */

:root {
  --orange: #ff6d33;
  --orange-dk: #e0561e;
  --orange-bg: #fff5f1;
  --orange-border: #ffd4c2;
  --purple: #6c47ff;
  --purple-bg: #f0ecff;
  --purple-border: #c9baff;
  --green: #16a34a;
  --green-bg: #f0fdf4;
  --txt: #111827;
  --txt-2: #6b7280;
  --txt-3: #9ca3af;
  --border: #e5e7eb;
  --border-hover: #d1d5db;
  --bg: #f9fafb;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --footer-h: 88px;
  /* Variables del sitio global */
  --orange-light: #FF8559;
  --orange-50: #FFF4F0;
  --dark: #111;
  --gray: #6B6B6B;
  --gray-light: #999;
  --surface: #F7F7F8;
  --max-w: 1400px;
  --radius: 1.25rem;
  --navy-1: #0a0e27;
  --navy-2: #111640;
  --navy-3: #0d1033;
  --header-bg: rgba(255,255,255,.95);
  --header-border: #E8E8E8;
  --text: #111;
  --text-secondary: #6B6B6B;
  --card-bg: #FFF;
  --card-border: #E8E8E8;
}

/* Tema oscuro */
[data-theme="dark"] {
  --bg: #0B0D11;
  --white: #161920;
  --txt: #F0F0F2;
  --txt-2: #9CA3AF;
  --txt-3: #6B7280;
  --border: rgba(255,255,255,.08);
  --border-hover: rgba(255,255,255,.15);
  --orange-bg: rgba(255,107,53,.08);
  --orange-border: rgba(255,107,53,.2);
  --header-bg: rgba(11,13,17,.92);
  --header-border: rgba(255,255,255,.06);
  --card-bg: #161920;
  --card-border: rgba(255,255,255,.08);
  --text-secondary: #9CA3AF;
  --gray: #9CA3AF;
  --gray-light: #6B7280;
  --surface: #12151B;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--txt);
  padding-bottom: var(--footer-h);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
input[type="radio"] { display: none; }
a { text-decoration: none; color: inherit; }

/* ─── PRELOADER ──────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader-logo {
  width: 120px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* ─── POPUP ──────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .35s;
}
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup-box {
  background: var(--white);
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  position: relative;
  transform: translateY(20px) scale(.96);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
}
.popup-overlay.show .popup-box { transform: translateY(0) scale(1); }
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.popup-close:hover { background: var(--surface); }
.popup-box h2 {
  font-family: 'Sora', 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--dark);
  line-height: 1.2;
}
.popup-box .popup-sub { font-size: .88rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.5; }
.popup-form { display: flex; flex-direction: column; gap: .85rem; }
.popup-input {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.popup-input:focus { border-color: var(--orange); }
.popup-phone-row { display: flex; gap: .5rem; }
.popup-phone-prefix {
  width: 80px;
  flex-shrink: 0;
  padding: .8rem .75rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .85rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--gray);
  text-align: center;
  outline: none;
}
.popup-select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  appearance: none;
  background: var(--white);
  transition: border-color .2s;
}
.popup-select:focus { border-color: var(--orange); }
.popup-submit {
  width: 100%;
  padding: .9rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 6px 20px rgba(255,107,53,.25);
}
.popup-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,53,.35); }

/* ─── TOPBAR ─────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--navy-1), var(--navy-2), var(--navy-3));
  height: 42px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,107,53,.1);
}
.topbar::before, .topbar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.topbar::before { left: 0; background: linear-gradient(90deg, var(--navy-1), transparent); }
.topbar::after  { right: 0; background: linear-gradient(270deg, var(--navy-3), transparent); }
.topbar-glow {
  position: absolute;
  top: -30px;
  width: 250px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255,107,53,.18), transparent 70%);
  animation: glowM 8s ease-in-out infinite alternate;
  filter: blur(2px);
}
.topbar-glow:nth-child(1) { left: 25%; }
.topbar-glow:nth-child(2) { left: 65%; animation-delay: 4s; }
.topbar-glow:nth-child(3) { left: 45%; animation-delay: 2s; width: 150px; height: 50px; }
@keyframes glowM { 0% { transform: translateX(-50px); } 100% { transform: translateX(50px); } }
.topbar-track {
  display: flex;
  align-items: center;
  height: 100%;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.topbar-track:hover { animation-play-state: paused; }
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0 2.5rem;
  font-family: 'Montserrat', 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
}
.topbar-item .emoji { font-size: .95rem; }
.topbar-item .hl { color: var(--orange-light); font-weight: 800; text-shadow: 0 0 12px rgba(255,107,53,.4); }
.topbar-sep {
  width: 5px; height: 5px;
  flex-shrink: 0;
  background: var(--orange);
  clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  opacity: .5;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── HEADER ─────────────────────────────────────── */
.header {
  position: sticky;
  top: 42px;
  z-index: 90;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--header-border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.header-logo img { height: 38px; width: auto; }
.header-nav { display: flex; gap: 2rem; list-style: none; }
.header-nav a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
  transition: color .2s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform .25s;
}
.header-nav a:hover { color: var(--orange); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--orange); background: var(--orange-50); }
.theme-toggle svg { width: 18px; height: 18px; transition: transform .4s, opacity .3s; }
.theme-toggle .i-sun { position: absolute; color: var(--orange); opacity: 0; transform: rotate(-90deg) scale(.5); }
.theme-toggle .i-moon { color: var(--text-secondary); }
[data-theme="dark"] .theme-toggle .i-moon { opacity: 0; transform: rotate(90deg) scale(.5); }
[data-theme="dark"] .theme-toggle .i-sun { opacity: 1; transform: rotate(0) scale(1); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(255,107,53,.25);
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,.35); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--orange); padding: .5rem; }
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 85;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: all .3s;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  z-index: 86;
  width: 280px; height: 100%;
  background: var(--white);
  box-shadow: -8px 0 30px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: .85rem 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-close { position: absolute; top: 1.25rem; right: 1.25rem; background: none; border: none; cursor: pointer; color: var(--gray); padding: .5rem; }

/* ─── LAYOUT PRINCIPAL ──────────────────────────── */
.page-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  max-width: 1200px;
  margin: 32px auto;
  gap: 32px;
  padding: 0 24px;
  align-items: start;
}

/* ─── SHOWCASE IZQUIERDO ─────────────────────────── */
.showcase {
  position: sticky;
  top: 130px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.showcase-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--orange-bg);
  color: var(--orange-dk);
  border: 1px solid var(--orange-border);
  width: fit-content;
}
.showcase-badge.is-preventa {
  background: var(--purple-bg);
  color: var(--purple);
  border-color: var(--purple-border);
}
.showcase-title { font-size: 22px; font-weight: 600; color: var(--txt); line-height: 1.25; }
.showcase-sub { font-size: 13px; color: var(--txt-2); margin-top: -8px; line-height: 1.5; }
.showcase-price-row { display: flex; align-items: baseline; gap: 10px; }
.price-old { font-size: 13px; color: var(--txt-3); text-decoration: line-through; }
.price-main { font-size: 26px; font-weight: 600; color: var(--orange); }
.price-iva { font-size: 12px; color: var(--txt-3); }

/* Imagen principal */
.main-img-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
  cursor: zoom-in;
}

/* ─── ZOOM LIGHTBOX ──────────────────────────────── */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  backdrop-filter: blur(4px);
}
.zoom-overlay.open { opacity: 1; pointer-events: all; }
.zoom-overlay img {
  max-width: min(90vw, 600px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  transform: scale(0.92);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.zoom-overlay.open img { transform: scale(1); }
.zoom-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  backdrop-filter: blur(8px);
}
.zoom-close:hover { background: rgba(255,255,255,.22); }
.zoom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
  backdrop-filter: blur(8px);
  z-index: 10;
}
.zoom-arrow:hover { background: rgba(255,255,255,.25); transform: translateY(-50%) scale(1.08); }
.zoom-arrow-left  { left: 20px; }
.zoom-arrow-right { right: 20px; }
.zoom-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.35);
  padding: 4px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

/* Thumbnails */
.thumb-row { display: flex; gap: 8px; }
.thumb-btn {
  position: relative;
  width: 58px; height: 58px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  padding: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s;
}
.thumb-btn:hover { border-color: var(--border-hover); }
.thumb-btn.active { border-color: var(--orange); }
.thumb-btn img { width: 100%; height: 100%; object-fit: contain; }

/* Características */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--txt-2);
  line-height: 1.45;
}
.feat-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}

/* Garantías */
.guarantee-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.guarantee-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--txt-2);
  font-weight: 500;
}
.guarantee-pill svg { color: var(--orange); flex-shrink: 0; }

/* ─── DESPACHO ───────────────────────────────────── */
.dispatch-info {
  margin-top: -4px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dispatch-row { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--txt-2); line-height: 1.4; }
.dispatch-row b { font-weight: 600; color: var(--txt); }
.dispatch-row.indent { padding-left: 20px; color: var(--txt-3); font-size: 11px; }
.dispatch-row svg { flex-shrink: 0; color: var(--orange); }

/* ─── CONFIGURADOR ───────────────────────────────── */
.configurator { display: flex; flex-direction: column; gap: 12px; }
.config-header { margin-bottom: 4px; }
.config-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--orange);
  border: 1px solid var(--orange-border);
  background: var(--orange-bg);
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 6px;
}
.config-h2 { font-size: 24px; font-weight: 600; color: var(--txt); }
.config-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec-heading { margin-bottom: 2px; }
.sec-title { font-size: 14px; font-weight: 600; color: var(--txt); display: flex; align-items: center; gap: 8px; }
.sec-desc { font-size: 12px; color: var(--txt-3); margin-top: 2px; }

/* ─── PROD CARD ──────────────────────────────────── */
.prod-card {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  background: var(--bg);
}
.prod-card:hover { border-color: var(--border-hover); background: var(--white); }
.prod-card.selected { border-color: var(--orange); background: var(--orange-bg); }
.prod-img-col {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
}
.prod-img-col img { width: 100%; height: 100%; object-fit: contain; }
.prod-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.prod-name { font-size: 13.5px; font-weight: 600; color: var(--txt); }
.prod-desc { font-size: 11.5px; color: var(--txt-2); line-height: 1.35; }
.prod-tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 2px 7px;
  border-radius: 4px;
  width: fit-content;
}
.prod-tag.orange { background: var(--orange-bg); color: var(--orange-dk); border: 1px solid var(--orange-border); }
.prod-tag.purple { background: var(--purple-bg); color: var(--purple); border: 1px solid var(--purple-border); }
.prod-pricing { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; flex-shrink: 0; }
.card-old { font-size: 11px; color: var(--txt-3); text-decoration: line-through; }
.card-price { font-size: 15px; font-weight: 600; color: var(--txt); }
.card-iva { font-size: 10px; color: var(--txt-3); }

/* ─── RADIO DOT ──────────────────────────────────── */
.radio-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
}
.radio-dot.active, .prod-card.selected .radio-dot { border-color: var(--orange); background: var(--orange); }
.radio-dot.sm { width: 15px; height: 15px; }
.radio-inner { width: 6px; height: 6px; border-radius: 50%; background: transparent; transition: background .15s; }
.radio-dot.active .radio-inner,
.prod-card.selected .radio-dot .radio-inner { background: var(--white); }

/* ─── TEXT CARD ──────────────────────────────────── */
.text-card {
  display: grid;
  grid-template-columns: 34px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  background: var(--bg);
}
.text-card:hover { border-color: var(--border-hover); background: var(--white); }
.text-card.selected { border-color: var(--orange); background: var(--orange-bg); }
.text-card-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-2);
  flex-shrink: 0;
}
.text-card.selected .text-card-icon { border-color: var(--orange-border); color: var(--orange); background: var(--orange-bg); }
.text-card-body { display: flex; flex-direction: column; gap: 1px; }
.text-card-title { font-size: 13px; font-weight: 600; color: var(--txt); }
.text-card-sub { font-size: 11px; color: var(--txt-3); }
.text-card-price { font-size: 13px; font-weight: 600; color: var(--txt); flex-shrink: 0; white-space: nowrap; }

/* ─── INFO BOX RESERVA ───────────────────────────── */
.reserva-info-box {
  background: linear-gradient(135deg, rgba(255,109,51,.06), rgba(255,109,51,.03));
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.reserva-info-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: var(--orange-bg);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.reserva-info-text { flex: 1; }
.reserva-info-text strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
}
.reserva-info-text p {
  font-size: 11.5px;
  color: var(--txt-2);
  line-height: 1.55;
  margin: 0;
}
.reserva-info-text p span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--orange-bg);
  color: var(--orange-dk);
  font-weight: 700;
  font-size: 11px;
  padding: 1px 7px;
  border-radius: 20px;
  border: 1px solid var(--orange-border);
  margin-top: 5px;
}

/* ─── STICKY FOOTER PRODUCTO ─────────────────────── */
.sticky-footer {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  height: var(--footer-h);
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}
.footer-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-product { display: flex; flex-direction: column; gap: 2px; min-width: 150px; }
.footer-prod-name { font-size: 13px; font-weight: 600; color: var(--txt); }
.footer-prod-qty { font-size: 11px; color: var(--txt-3); }
.footer-total { flex: 1; }
.footer-label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; color: var(--txt-3); margin-bottom: 2px; }
.footer-amount-row { display: flex; align-items: baseline; gap: 6px; }
.footer-amount { font-size: 26px; font-weight: 600; color: var(--orange); }
.footer-iva { font-size: 12px; color: var(--txt-3); }
.footer-cuotas { display: block; font-size: 10.5px; color: var(--txt-3); margin-top: 1px; }
.pay-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 24px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s, transform .1s;
  white-space: nowrap;
  flex-shrink: 0;
}
.pay-btn:hover { background: var(--orange-dk); }
.pay-btn:active { transform: scale(0.98); }
.pay-btn.mode-reservar {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  box-shadow: 0 4px 16px rgba(109,71,255,.35);
}
.pay-btn.mode-reservar:hover { background: linear-gradient(135deg, #6d28d9, #4c1d95); }

/* ─── FOOTER GLOBAL ──────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--navy-1), #060820);
  color: #fff;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 20%;
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,107,53,.05), transparent 70%);
  pointer-events: none;
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.footer-brand { padding-right: 2rem; }
.footer-brand img { height: 42px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .3s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 500; transition: all .2s; }
.footer-col a:hover { color: var(--orange-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .85rem; }
.footer-contact-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,107,53,.08);
  border: 1px solid rgba(255,107,53,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.footer-contact-icon svg { width: 15px; height: 15px; }
.footer-contact .sub { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); display: block; margin-bottom: .15rem; }
.footer-contact a { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 500; }
.footer-contact a:hover { color: var(--orange-light); }
.footer-divider { max-width: var(--max-w); margin: 0 auto; border: none; border-top: 1px solid rgba(255,255,255,.05); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ─── WHATSAPP FAB ───────────────────────────────── */
.wa-wrap { position: fixed; bottom: 2rem; right: 2rem; z-index: 50; }
.wa-menu {
  position: absolute;
  bottom: 70px; right: 0;
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  padding: .5rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s;
}
.wa-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.wa-menu a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .85rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  transition: background .2s;
}
.wa-menu a:hover { background: var(--surface); }
.wa-menu a svg { width: 18px; height: 18px; color: var(--orange); }
.wa-fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .25s;
  cursor: pointer;
  border: none;
}
.wa-fab:hover { transform: scale(1.12); }
.wa-fab svg { width: 28px; height: 28px; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .mobile-toggle { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .page-wrapper { grid-template-columns: 1fr; padding: 16px; margin: 16px auto; gap: 16px; }
  .showcase { position: static; }
  .prod-card, .counter-card { grid-template-columns: 52px 1fr auto auto; gap: 10px; }
  .prod-img-col { width: 52px; height: 52px; }
  .footer-product { display: none; }
  .footer-inner { gap: 16px; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { padding-right: 0; }
  .footer-social { justify-content: center; }
  .footer-contact li { justify-content: center; }
  .topbar { height: 36px; }
  .header { top: 36px; }
}
@media (max-width: 560px) {
  .guarantee-row { grid-template-columns: 1fr 1fr; }
  .footer-amount { font-size: 22px; }
  .pay-btn { padding: 12px 20px; font-size: 13px; }
  .text-card { grid-template-columns: 34px 1fr auto; }
  .text-card .radio-dot { display: none; }
  .zoom-arrow { width: 36px; height: 36px; }
  .zoom-arrow-left  { left: 10px; }
  .zoom-arrow-right { right: 10px; }
}