/* ============================================================
   LUGEVI — Catálogo Rena Ware El Salvador
   Paleta: Azul marino #1B2A4E · Coral #D9534F · Blanco
   Tipografía: Playfair Display Italic + Inter
   Mobile-first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600;1,700&display=swap');

/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  --navy:        #1B2A4E;
  --navy-deep:   #111d38;
  --navy-mid:    #243560;
  --navy-light:  #2e4278;
  --coral:       #D9534F;
  --coral-light: #e87c79;
  --coral-dark:  #b83a37;
  --coral-pale:  #fdecea;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --cream:       #FDF8F5;
  /* Rosa pastel — solo banner mamá */
  --rose-banner: #F5D5DC;
  --rose-mid:    #EBB8C3;
  --rose-dark:   #c47b8d;

  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 9999px;

  --shadow-xs: 0 1px 3px rgba(27,42,78,.07);
  --shadow-sm: 0 2px 10px rgba(27,42,78,.09);
  --shadow-md: 0 6px 24px rgba(27,42,78,.13);
  --shadow-lg: 0 16px 48px rgba(27,42,78,.18);

  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .26s;
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--gray-800);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* Eyebrow label */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  text-align: center;
  margin-bottom: 0.5rem;
}
.eyebrow--white { color: rgba(255,255,255,.55); }

/* Section headings */
.section-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.18;
  margin-bottom: 0.5rem;
}
.section-title--white { color: var(--white); }
.section-title em { color: var(--coral); font-style: italic; }

.section-rule {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--coral-dark), var(--coral-light));
  margin: 0.7rem auto 0.65rem;
  border-radius: var(--r-full);
}

.section-sub {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.92rem;
  margin-bottom: 2.75rem;
  max-width: 520px;
  margin-inline: auto;
  display: block;
  margin-bottom: 2.75rem;
}
.section-sub--white { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.5rem;
  border-radius: var(--r-full);
  border: none;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease),
    color var(--dur);
}
.btn:active { transform: scale(0.97) !important; }

.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(217,83,79,.35);
}
.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,83,79,.45);
}

.btn-coral-outline {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-coral-outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27,42,78,.30);
}
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,42,78,.40);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.10);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   BARRA DE URGENCIA
══════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, var(--coral-dark) 0%, var(--coral) 50%, var(--coral-dark) 100%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  position: relative;
  z-index: 700;
}
.urgency-bar span i { margin-right: 0.35rem; }
.urgency-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.20);
  border: none;
  color: var(--white);
  font-size: 0.8rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--dur);
  line-height: 1;
}
.urgency-close:hover { background: rgba(255,255,255,.35); }

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 600;
  background: var(--navy);
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 2px 14px rgba(27,42,78,.28);
}

/* ── Logo mini en topbar ── */
.topbar-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0;
  user-select: none;
}
.tb-lu,
.tb-vi {
  font-weight: 800;
  font-style: normal;
  color: var(--white);
  letter-spacing: -0.01em;
}
.tb-ge {
  font-style: italic;
  font-weight: 600;
  color: var(--coral-light);
  letter-spacing: 0.01em;
  font-size: 1.05em;
}

.topbar-nav {
  display: none;
  list-style: none;
  gap: 1.75rem;
}
@media (min-width: 700px) {
  .topbar-nav {
    display: flex;
    align-items: center;
  }
  .topbar-nav a {
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.58);
    transition: color var(--dur);
  }
  .topbar-nav a:hover { color: var(--white); }
}

.topbar-cta {
  padding: 0.42rem 1.15rem;
  font-size: 0.76rem;
}

/* ══════════════════════════════════════
   HEADER / HERO
══════════════════════════════════════ */
.site-header {
  background: var(--white);
  text-align: center;
  padding: 3.75rem 1.25rem 4.5rem;
  position: relative;
  overflow: hidden;
}

/* Fondo geométrico sutil */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 55%, rgba(27,42,78,.045) 0%, transparent 52%),
    radial-gradient(circle at 88% 18%, rgba(217,83,79,.05) 0%, transparent 48%),
    radial-gradient(circle at 55% 90%, rgba(245,213,220,.40) 0%, transparent 55%);
  pointer-events: none;
}

.header-inner { position: relative; z-index: 1; }

/* ── Escudo / monograma ── */
.header-crest {
  width: 68px;
  height: 68px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  position: relative;
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(27,42,78,.05), 0 4px 16px rgba(27,42,78,.10);
}
.header-crest::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(217,83,79,.35);
  border-radius: 50%;
}
.header-crest span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

/* ══════════════════════════════════════
   LOGO LUgeVI — tipografía diferenciada
══════════════════════════════════════ */
.logo-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  line-height: 1;
  margin-bottom: 0.6rem;
  user-select: none;
}

/* LU — serif bold, azul marino, mayúscula */
.logo-lu {
  font-family: var(--font-serif);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(2.8rem, 8.5vw, 5.2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* ge — serif cursiva elegante, coral, minúscula */
.logo-ge {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(3.2rem, 9.5vw, 5.8rem); /* ligeramente más grande por ser cursiva */
  color: var(--coral);
  letter-spacing: 0.01em;
  margin-inline: 0.04em;
  line-height: 0.9;
  position: relative;
  top: 0.06em; /* descenso óptico para alinear baseline */
}

/* VI — serif bold, azul marino, mayúscula */
.logo-vi {
  font-family: var(--font-serif);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(2.8rem, 8.5vw, 5.2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* Línea coral decorativa */
.header-coral-rule {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coral) 30%, var(--coral) 70%, transparent);
  margin: 0 auto 1rem;
  border-radius: var(--r-full);
}

/* Subtítulo en mayúsculas espaciadas */
.header-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 1.8vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
}

/* Trust bar — íconos de garantía */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}
.hero-trust-item {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.02em;
}
.hero-trust-item i { color: var(--coral); font-size: 0.7rem; }
.hero-trust-sep { color: var(--gray-200); font-size: 1rem; }

/* Píldoras de info */
.header-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.header-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.73rem;
  font-weight: 500;
  padding: 0.38rem 0.9rem;
  border-radius: var(--r-full);
  background: var(--gray-50);
  transition: border-color var(--dur), color var(--dur), background var(--dur);
}
.header-pill i { color: var(--coral); font-size: 0.68rem; }
.header-pill:hover {
  border-color: var(--coral);
  color: var(--navy);
  background: var(--coral-pale);
}

/* Wave SVG */
.header-wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; line-height: 0;
  pointer-events: none;
}
.header-wave svg { width: 100%; height: 40px; display: block; }

/* ══════════════════════════════════════
   BANNER PROMO MAMÁ
   INICIO PROMO MENSUAL - EDITAR AQUÍ
══════════════════════════════════════ */
.promo-banner {
  background: var(--cream);
  border-top: 3px solid var(--rose-mid);
  border-bottom: 3px solid var(--rose-mid);
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.promo-banner::before,
.promo-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.promo-banner::before {
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--rose-banner) 0%, transparent 68%);
  top: -160px; left: -100px;
  opacity: 0.5;
}
.promo-banner::after {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--rose-banner) 0%, transparent 68%);
  bottom: -130px; right: -70px;
  opacity: 0.45;
}
.promo-flower {
  position: absolute;
  font-size: 4rem;
  opacity: 0.11;
  pointer-events: none;
  line-height: 1;
}
.promo-flower--tl { top: 0.5rem; left: 0.5rem; transform: rotate(-20deg); font-size: 3rem; }
.promo-flower--tr { top: 0.5rem; right: 0.5rem; transform: rotate(15deg); font-size: 2.5rem; }
.promo-flower--bl { bottom: 0.5rem; left: 1rem; transform: rotate(10deg); font-size: 2rem; }
.promo-flower--br { bottom: 0.5rem; right: 1rem; transform: rotate(-10deg); font-size: 2.5rem; }

.promo-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: auto;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--rose-banner);
  color: var(--rose-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.32rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
  border: 1px solid var(--rose-mid);
}
.promo-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 0.75rem;
}
.promo-title em {
  font-style: italic;
  color: var(--rose-dark);
}
.promo-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.promo-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--coral);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.75rem;
  box-shadow: 0 3px 12px rgba(217,83,79,.30);
}
.promo-date i { font-size: 0.72rem; }
.promo-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
/* ── Variante especial Día de la Madre ── */
.promo-mama {
  background: linear-gradient(135deg, #fff0f5 0%, #fde8f0 40%, #fff8ec 100%);
  border-top: 3px solid #c8860a;
  border-bottom: 3px solid #c8860a;
}
.promo-mama::before {
  background: radial-gradient(circle, rgba(248,180,200,.55) 0%, transparent 68%);
}
.promo-mama::after {
  background: radial-gradient(circle, rgba(200,134,10,.18) 0%, transparent 68%);
}
.promo-deco {
  position: absolute;
  font-size: 4rem;
  opacity: 0.13;
  pointer-events: none;
  line-height: 1;
}
.promo-deco--tl { top: 0.5rem; left: 0.5rem; transform: rotate(-20deg); font-size: 3rem; }
.promo-deco--tr { top: 0.5rem; right: 0.5rem; transform: rotate(15deg); font-size: 2.5rem; }
.promo-deco--bl { bottom: 0.5rem; left: 1rem; transform: rotate(10deg); font-size: 2rem; }
.promo-deco--br { bottom: 0.5rem; right: 1rem; transform: rotate(-10deg); font-size: 2.5rem; }

.promo-badge--gold {
  background: var(--coral-pale);
  color: var(--coral-dark);
  border: 1px solid rgba(217,83,79,.25);
}
.promo-badge--gold i { color: var(--coral); }

.promo-title--mama {
  font-style: italic;
  color: var(--navy);
}
.promo-title--mama em {
  color: var(--coral);
  font-style: italic;
}
.promo-date--mama {
  background: var(--coral);
  box-shadow: 0 3px 12px rgba(217,83,79,.30);
}

/* ── Hero price highlight ── */
.hero-price-highlight {
  text-align: center;
}
.hero-price-desde {
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 1.8vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}
.hero-price-desde strong {
  color: #ff6b6b;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  font-weight: 800;
  text-shadow: 0 1px 8px rgba(200,60,60,0.35);
}
.hero-price-sub {
  font-size: 0.72rem;
  color: var(--gray-600);
  letter-spacing: 0.04em;
}

/* FIN PROMO MENSUAL */

/* ══════════════════════════════════════
   POR QUÉ RENA WARE — fondo azul marino
══════════════════════════════════════ */
.why-section {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,83,79,.4), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }

.why-card {
  text-align: center;
  padding: 2rem 1.1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.04);
  transition:
    background var(--dur),
    border-color var(--dur),
    transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(217,83,79,.40);
  transform: translateY(-5px);
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 56px; height: 56px;
  border: 1.5px solid rgba(217,83,79,.60);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
  background: rgba(217,83,79,.08);
}
.why-card:hover .why-icon {
  background: rgba(217,83,79,.18);
  border-color: var(--coral);
  transform: scale(1.08);
}
.why-icon i {
  font-size: 1.25rem;
  color: var(--coral-light);
}
.why-card h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.77rem;
  color: rgba(255,255,255,.52);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   PRODUCTOS DEL MES
   ✎ INICIO PRODUCTOS DEL MES - EDITAR AQUÍ CADA MES
══════════════════════════════════════ */
.products-section {
  padding: 5rem 0 5.5rem;
  background: var(--off-white);
  position: relative;
}
.products-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--coral) 40%, var(--coral-light) 60%, transparent);
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 580px)  { .products-grid { gap: 1.15rem; } }
@media (min-width: 860px)  { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; } }
@media (min-width: 1100px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

/* ── Tarjeta producto ── */
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral);
}
.product-card:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

/* Imagen / Placeholder */
.product-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-50);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

/* ── Placeholder elegante ── */
@keyframes ph-pulse {
  0%   { transform: scale(1);    opacity: 1;    }
  50%  { transform: scale(1.12); opacity: 0.75; }
  100% { transform: scale(1);    opacity: 1;    }
}

.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(155deg, #F5D5DC 0%, #fce8ec 45%, #fff 100%);
  border: 1px solid rgba(217,83,79,.22);
  border-bottom: none;
  transition: transform 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.product-card:hover .product-img-placeholder { transform: scale(1.04); }

/* Destello suave en esquina superior derecha */
.product-img-placeholder::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(255,255,255,.7) 0%, transparent 70%);
  pointer-events: none;
}

/* Línea inferior coral al hacer hover */
.product-img-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--coral) 35%, var(--coral-light) 65%, transparent);
  opacity: 0;
  transition: opacity var(--dur);
}
.product-card:hover .product-img-placeholder::after { opacity: 1; }

/* Badge "📸 Foto pronto" — esquina superior izquierda */
.ph-badge-foto {
  position: absolute;
  top: 0.55rem; left: 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--coral);
  background: rgba(245,213,220,.92);
  border: 1px solid rgba(217,83,79,.30);
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
  z-index: 3;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 6px rgba(217,83,79,.12);
}

/* Ícono central con animación de pulso */
.ph-icon {
  font-size: 3rem;
  z-index: 1;
  animation: ph-pulse 3s ease-in-out infinite;
  display: block;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(217,83,79,.18));
}

/* Texto «Foto en producción» — azul marino itálica */
.ph-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--navy);
  z-index: 1;
  margin-top: 0.1rem;
}

/* Texto «Disponible pronto» — gris pequeño */
.ph-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: #aaa;
  z-index: 1;
  letter-spacing: 0.03em;
}

/* ── Ribbon badge ── */
.product-ribbon {
  position: absolute;
  top: 0; left: 0;
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.24rem 0.8rem;
  border-bottom-right-radius: var(--r-md);
  z-index: 2;
  box-shadow: 2px 2px 10px rgba(217,83,79,.35);
}

/* ── Cuerpo tarjeta ── */
.product-body {
  padding: 1.1rem 1rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

/* Código en coral */
.product-code {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.28rem;
}

/* Nombre en serif cursiva azul marino */
.product-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.88rem, 2vw, 1.02rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.8rem;
  flex: 1;
  min-height: 2.6em;
}

/* Separador delgado */
.product-sep {
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--coral), transparent);
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

/* ══════════════════════════════════════
   JERARQUÍA DE PRECIOS — NUEVA VERSIÓN
   Cuota mensual = GRANDE (coral)
   Contado = pequeño (gris)
══════════════════════════════════════ */

/* Precio mensual — PRINCIPAL, grande, coral */
.product-monthly-main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.8vw, 1.9rem);
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.product-monthly-main .monthly-amount {
  font-size: inherit;
  color: inherit;
  font-weight: 800;
}
.product-monthly-main .monthly-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--coral-light);
  letter-spacing: 0.02em;
}

/* Texto de cuotas sin intereses */
.product-cuotas {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
}
.product-cuotas .cuota-highlight {
  color: var(--navy);
  font-weight: 700;
}

/* Precio contado — SECUNDARIO, muy pequeño, gris claro */
.product-price-contado {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 400;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.product-price-contado::before {
  content: 'ó';
  font-style: italic;
  color: var(--gray-400);
}
.product-price-contado strong {
  font-weight: 600;
  color: var(--gray-600);
}
/* ✎ FIN PRODUCTOS DEL MES */

/* Botón coral */
.btn-product {
  width: 100%;
  padding: 0.62rem 0.8rem;
  font-size: 0.79rem;
  margin-top: auto;
  border-radius: var(--r-md);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   FORMAS DE PAGO
══════════════════════════════════════ */
.payment-section {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
}
.payment-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gray-100);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 800px) { .payment-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.payment-card {
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--coral);
  border-radius: var(--r-lg);
  padding: 1.75rem 1rem;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur),
    border-top-color var(--dur);
  box-shadow: var(--shadow-xs);
}
.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--navy);
}
.payment-icon {
  width: 52px; height: 52px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.payment-card:hover .payment-icon {
  background: var(--navy);
  transform: scale(1.08);
}
.payment-icon i {
  font-size: 1.15rem;
  color: var(--navy);
  transition: color var(--dur);
}
.payment-card:hover .payment-icon i { color: var(--white); }
.payment-card h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.payment-card p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ══════════════════════════════════════
   ENTREGA
══════════════════════════════════════ */
.delivery-section {
  padding: 5rem 0;
  background: var(--off-white);
}
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .delivery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.delivery-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  position: relative;
  overflow: hidden;
}
.delivery-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral-dark), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.delivery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.delivery-card:hover::after { transform: scaleX(1); }

.delivery-zone {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 0.85rem;
}
.delivery-card h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.delivery-card h3 i { color: var(--coral); margin-right: 0.3rem; }
.delivery-time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.delivery-card > p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
}
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.faq-item.open {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: color var(--dur), background var(--dur);
}
.faq-btn:hover {
  color: var(--coral);
  background: var(--gray-50);
}
.faq-item.open .faq-btn { color: var(--coral); }
.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur), border-color var(--dur), transform 0.32s var(--ease);
}
.faq-chevron i { font-size: 0.72rem; color: var(--gray-400); transition: color var(--dur); }
.faq-item.open .faq-chevron {
  background: var(--coral);
  border-color: var(--coral);
  transform: rotate(180deg);
}
.faq-item.open .faq-chevron i { color: var(--white); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  padding: 0.9rem 1.25rem 1.15rem;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
}

/* ══════════════════════════════════════
   FOOTER — azul marino
══════════════════════════════════════ */
.site-footer {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: rgba(255,255,255,.72);
  position: relative;
  padding-top: 0;
  text-align: center;
}
.footer-wave {
  line-height: 0;
  overflow: hidden;
}
.footer-wave svg { width: 100%; height: 44px; display: block; }
.footer-inner {
  padding: 2.5rem 1.25rem 3rem;
}

/* Logo footer — LUgeVI */
.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
}
.footer-logo .fl-lu,
.footer-logo .fl-vi {
  font-weight: 800;
  font-style: normal;
  color: var(--white);
}
.footer-logo .fl-ge {
  font-style: italic;
  font-weight: 600;
  color: var(--coral-light);
  font-size: 1.1em;
  margin-inline: 0.03em;
}

.footer-coral-rule {
  width: 50px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
  margin: 0.6rem auto 1rem;
  border-radius: var(--r-full);
}
.footer-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,.50);
  margin-bottom: 0.4rem;
}
.footer-code {
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 0.55rem;
}
.footer-code strong { color: var(--coral-light); font-weight: 700; }
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--dur);
}
.footer-email i { color: var(--coral-light); }
.footer-email:hover { color: var(--white); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.10);
  margin: 1.5rem 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  margin-bottom: 1.25rem;
}
.footer-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.50);
  transition: color var(--dur);
}
.footer-nav a:hover { color: var(--coral-light); }
.footer-notice {
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.footer-notice i { color: var(--coral-light); font-size: 0.7rem; }
.footer-copy {
  font-size: 0.73rem;
  color: rgba(255,255,255,.30);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   FAB (botón flotante)
══════════════════════════════════════ */
.fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 500;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--r-full);
  padding: 0.75rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 24px rgba(217,83,79,.50);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  animation: fabPulse 2.8s ease-in-out infinite;
}
.fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 30px rgba(217,83,79,.55);
  animation: none;
}
.fab-label { font-family: var(--font-sans); }

@keyframes fabPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(217,83,79,.50); }
  50%      { box-shadow: 0 6px 34px rgba(217,83,79,.70), 0 0 0 8px rgba(217,83,79,.10); }
}

/* ══════════════════════════════════════
   MODAL DE CONTACTO
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(17,29,56,.70);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.25rem 1.75rem 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.30s var(--ease);
}
.modal-overlay.active .modal-box {
  transform: none;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  font-size: 1.1rem;
  color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--dur), color var(--dur);
  line-height: 1;
}
.modal-close:hover { background: var(--coral); color: var(--white); }
.modal-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.modal-icon { font-size: 2rem; display: block; margin-bottom: 0.6rem; }
.modal-header h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.modal-header p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Form fields */
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.required { color: var(--coral); }
.form-control {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,78,.10);
}
.form-control[readonly] {
  background: var(--gray-50);
  color: var(--gray-600);
  cursor: default;
}
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 80px; }

.btn-submit {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 0.92rem;
  margin-top: 0.5rem;
  border-radius: var(--r-md);
}

/* ══════════════════════════════════════
   HINT ZOOM EN IMAGEN DE TARJETA
══════════════════════════════════════ */
.img-zoom-hint {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(27,42,78,.72);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.6rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.product-img-wrap:hover .img-zoom-hint {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   MODAL CARRUSEL DE PRODUCTO
══════════════════════════════════════ */
.carousel-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(10,16,35,.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}
.carousel-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.carousel-box {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 700px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.30s var(--ease);
}
.carousel-overlay.active .carousel-box {
  transform: none;
}

/* ── Botón cerrar ── */
.carousel-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 1.5px solid var(--gray-200);
  font-size: 1.15rem;
  color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  line-height: 1;
}
.carousel-close:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

/* ── Header del carrusel ── */
.carousel-header {
  padding: 0.65rem 3rem 0.45rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

/* ── Etiqueta de tipo de combo ── */
.carousel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 0.3rem;
  line-height: 1.4;
  max-width: 100%;
  white-space: normal;
  text-align: left;
}
/* Por defecto: coral — "Combo exclusivo" */
.carousel-badge--coral {
  background: var(--coral-pale);
  color: var(--coral-dark);
  border: 1px solid rgba(217,83,79,.25);
}
.carousel-badge--coral i { color: var(--coral); }

/* Excepción 314629 Jumbo: azul marino */
.carousel-badge--navy {
  background: rgba(27,42,78,.08);
  color: var(--navy);
  border: 1px solid rgba(27,42,78,.18);
}
.carousel-badge--navy i { color: var(--navy); }

.carousel-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

/* ── Pista de slides ── */
.carousel-track-wrap {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 0;
  background: var(--gray-50);
  cursor: grab;
}
.carousel-track-wrap:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.38s var(--ease);
  will-change: transform;
  min-height: 320px;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  user-select: none;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Label del slide (abajo) */
.carousel-slide-label {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(27,42,78,.65);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

/* Placeholder cuando no hay imagen */
.carousel-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(145deg, #eef1f8 0%, #dde2ef 55%, #e8ecf5 100%);
  color: var(--navy);
}
.carousel-placeholder i {
  font-size: 3rem;
  opacity: 0.15;
}
.carousel-placeholder span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--coral);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(217,83,79,.3);
  padding: 0.2rem 0.8rem;
  border-radius: var(--r-full);
}
.carousel-placeholder small {
  font-size: 0.72rem;
  color: var(--gray-600);
}

/* ── Flechas de navegación ── */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition:
    background var(--dur),
    border-color var(--dur),
    color var(--dur),
    transform var(--dur) var(--ease),
    box-shadow var(--dur);
  box-shadow: 0 2px 12px rgba(0,0,0,.14);
  z-index: 5;
}
.carousel-arrow:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(217,83,79,.45);
}
.carousel-arrow:disabled {
  opacity: 0.30;
  pointer-events: none;
}
.carousel-arrow--prev {
  left: 0.75rem;
  transform: translateY(-50%);
}
.carousel-arrow--next {
  right: 0.75rem;
  transform: translateY(-50%);
}
/* Compensar header height para centrar flechas en el area de imagen */
.carousel-box .carousel-arrow--prev,
.carousel-box .carousel-arrow--next {
  top: calc(50% + 30px);
}

/* ── Indicadores de puntos ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 1rem 0.2rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background var(--dur),
    transform var(--dur) var(--ease),
    width var(--dur) var(--ease);
  flex-shrink: 0;
}
.carousel-dot.active {
  background: var(--coral);
  width: 22px;
  border-radius: var(--r-full);
}
.carousel-dot:hover:not(.active) {
  background: var(--gray-400);
  transform: scale(1.2);
}

/* ── Contador numérico ── */
.carousel-counter {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  padding-bottom: 0.2rem;
  flex-shrink: 0;
}

/* ── CTA dentro del carrusel ── */
.carousel-cta {
  padding: 0.45rem 1.25rem 0.65rem;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  border-top: 1px solid var(--gray-100);
}
.carousel-cta .btn {
  font-size: 0.88rem;
  padding: 0.7rem 2rem;
  width: 100%;
  max-width: 340px;
}

/* ══════════════════════════════════════
   RESPONSIVE — Desktop refinements
══════════════════════════════════════ */
@media (min-width: 700px) {
  .hero-trust-sep { display: inline; }
  .carousel-track { min-height: 380px; }
  .carousel-slide img { max-height: 480px; }
  .carousel-arrow { width: 44px; height: 44px; font-size: 1rem; }
}
@media (max-width: 699px) {
  .hero-trust-sep { display: none; }
  .hero-trust-bar { flex-direction: column; gap: 0.35rem; }
  .fab-label { display: none; }
  .fab { padding: 0.9rem; font-size: 1rem; border-radius: 50%; }
  .carousel-track { min-height: 260px; }
  .carousel-slide img { max-height: 300px; }
  .carousel-arrow { width: 34px; height: 34px; font-size: 0.78rem; }
  .carousel-arrow--prev { left: 0.4rem; }
  .carousel-arrow--next { right: 0.4rem; }
  .carousel-badge { font-size: 0.6rem; padding: 0.22rem 0.65rem; }
}
@media (min-width: 1024px) {
  .site-header { padding: 4.5rem 1.25rem 5.5rem; }
  .promo-banner { padding: 4.5rem 1.25rem; }
  .carousel-box { max-width: 760px; }
  .carousel-track { min-height: 440px; }
  .carousel-slide img { max-height: 520px; }
}

/* ══════════════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════════════ */
.testimonios-section {
  background: #fff;
  padding: 5rem 0;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.testimonio-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 4px 24px rgba(27,42,78,.08);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonio-card:hover {
  box-shadow: 0 12px 40px rgba(27,42,78,.15);
  transform: translateY(-4px) scale(1.02);
}

.testimonio-stars {
  display: flex;
  gap: 0.2rem;
  color: #f5c518;
  font-size: 1rem;
}

.testimonio-texto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.97rem;
  color: var(--gray-700, #374151);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.testimonio-autor {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 0.85rem;
}
.testimonio-nombre {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coral);
}
.testimonio-lugar {
  font-size: 0.75rem;
  color: var(--gray-400, #9ca3af);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.testimonio-lugar i { font-size: 0.65rem; color: var(--coral); }

/* ══════════════════════════════════════════════════
   GARANTÍA OFICIAL
══════════════════════════════════════════════════ */
.garantia-section {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.garantia-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}

.garantia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.garantia-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--white);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.garantia-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-4px);
}
.garantia-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(200,134,10,.18);
  border: 2px solid #c8860a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.4rem;
  color: #f5d87e;
}
.garantia-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.garantia-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

.garantia-nota {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.garantia-nota i { color: #f5d87e; }

/* ══════════════════════════════════════════════════
   TIPS — CUIDÁ TU RENA WARE
══════════════════════════════════════════════════ */
.tips-section {
  background: linear-gradient(180deg, #fff 0%, #fff0f5 40%, #fff 100%);
  padding: 5rem 0;
}

.tips-title-coral em {
  color: var(--coral);
  font-style: italic;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tip-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,42,78,.08);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.tip-card:hover {
  box-shadow: 0 14px 44px rgba(27,42,78,.15);
  transform: translateY(-4px) scale(1.02);
}

.tip-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-50);
}
.tip-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}
.tip-card:hover .tip-img-wrap img {
  transform: scale(1.06);
}
.tip-img-placeholder {
  background: linear-gradient(145deg, #eef1f8 0%, #dde2ef 100%);
}

/* Badge Regla de Oro en tip-04 */
.tip-ribbon {
  position: absolute;
  top: 0.75rem;
  right: 0;
  left: auto;
  font-size: 0.62rem;
  padding: 0.22rem 0.7rem;
  border-radius: var(--r-full) 0 0 var(--r-full);
  z-index: 3;
}

.tip-num {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--coral);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.14);
  z-index: 2;
}

.tip-body {
  padding: 1.25rem 1.1rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tip-titulo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.tip-titulo span {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gray-400, #9ca3af);
}
.tip-desc {
  font-size: 0.85rem;
  color: var(--gray-600, #4b5563);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — NUEVAS SECCIONES
══════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .garantia-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════
   ARMA TU PAQUETE
══════════════════════════════════════════════════ */
.arma-section {
  background: #fff;
  padding-bottom: 4rem;
}

/* Banner horizontal */
.arma-banner {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.arma-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.arma-banner-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 42%, rgba(255,255,255,0.10) 70%, transparent 100%);
}
.arma-banner-text {
  max-width: 520px;
  padding: 2.5rem 2rem 2.5rem 4%;
}
.arma-titulo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  color: var(--coral);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}
.arma-subtitulo {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.arma-desc {
  font-size: 0.88rem;
  color: #444;
  margin-bottom: 1.3rem;
  line-height: 1.55;
}
.arma-cta-btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.92rem;
}

/* Info bar */
.arma-info-bar {
  background: #fff0f5;
  border-top: 2px solid var(--coral);
  border-bottom: 2px solid rgba(217,83,79,.15);
  padding: 0.75rem 1rem;
  text-align: center;
}
.arma-info-bar p {
  font-size: 0.88rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}
.arma-info-icon { font-size: 1rem; margin-right: 0.3rem; }

/* Categorías */
.arma-categorias-wrap {
  margin-top: 3rem;
}
.arma-cats-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.arma-cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.arma-cat-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(27,42,78,.06);
  transition: box-shadow 0.25s var(--ease);
}
.arma-cat-item:has(.arma-cat-btn[aria-expanded="true"]) {
  border-color: var(--coral);
  box-shadow: 0 6px 24px rgba(217,83,79,.12);
}

.arma-cat-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s var(--ease);
}
.arma-cat-btn:hover { background: #fff8f9; }
.arma-cat-btn[aria-expanded="true"] { background: #fff0f3; }

.arma-cat-icon { font-size: 1.7rem; line-height: 1; flex-shrink: 0; }
.arma-cat-name {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.arma-chevron {
  color: var(--coral);
  font-size: 0.8rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.arma-cat-btn[aria-expanded="true"] .arma-chevron {
  transform: rotate(180deg);
}

.arma-cat-body {
  padding: 0 1.25rem 1.25rem;
  background: #fff;
  animation: catBodyIn 0.25s var(--ease) both;
}
@keyframes catBodyIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.arma-prod-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
}
.arma-prod-list li {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
}

.btn-cat-consultar {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-cat-consultar:hover {
  background: #b83c3a;
  transform: translateY(-1px);
}

/* Calculadora */
.arma-calc-wrap {
  margin-top: 2.5rem;
  background: var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27,42,78,.18);
}
.arma-calc-header {
  padding: 0.85rem 1.5rem 0.65rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.arma-calc-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.15rem;
  font-style: italic;
}
.arma-calc-sub {
  font-size: 0.73rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.arma-calc-body {
  padding: 0.9rem 1.5rem 1.1rem;
}
.arma-calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.arma-calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.arma-calc-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.arma-calc-input-wrap,
.arma-calc-select-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.20);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.arma-calc-input-wrap:focus-within,
.arma-calc-select-wrap:focus-within {
  border-color: var(--coral);
}
.arma-calc-prefix {
  padding: 0 0.6rem 0 0.9rem;
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  font-weight: 700;
}
.arma-calc-input-wrap input,
.arma-calc-select-wrap select {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem 0.45rem 0;
  font-family: var(--font-sans);
  width: 100%;
}
.arma-calc-select-wrap select {
  padding-left: 0.9rem;
  cursor: pointer;
}
.arma-calc-input-wrap input::placeholder { color: rgba(255,255,255,.3); }
.arma-calc-input-wrap input::-webkit-inner-spin-button,
.arma-calc-input-wrap input::-webkit-outer-spin-button { display: none; }
select option { background: var(--navy); color: #fff; }

.arma-calc-resultado {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
  text-align: center;
}
.arma-calc-hint {
  color: rgba(255,255,255,.38);
  font-size: 0.88rem;
  margin: 0;
}
.arma-calc-cuota {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--coral);
  margin: 0;
  line-height: 1;
  font-family: var(--font-sans);
}
.arma-calc-cuota-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  letter-spacing: 0.06em;
}
.arma-calc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.15rem;
}
.arma-calc-badge--ok {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.35);
  color: #4ade80;
}
.arma-calc-badge--warn {
  background: rgba(234,179,8,.12);
  border: 1px solid rgba(234,179,8,.35);
  color: #fbbf24;
}
.arma-calc-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
}

/* Franja bancos */
.arma-bancos-franja {
  margin-top: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 6px 12px 5px;
  box-shadow: 0 2px 14px rgba(255,255,255,.18);
  text-align: center;
}
.arma-bancos-label {
  font-size: 0.68rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 0.3rem;
  text-transform: uppercase;
}
.arma-bancos-canvas {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  height: 62px;
}
.arma-bancos-nota {
  font-size: 0.67rem;
  color: #aaa;
  margin: 0.25rem 0 0;
  font-style: italic;
}

/* Responsive logos bancos */
@media (max-width: 699px) {
  .arma-bancos-canvas { height: 44px; }
  .arma-bancos-label { font-size: 0.7rem; }
}

/* Responsive */
@media (max-width: 699px) {
  .arma-banner { height: 260px; }
  .arma-banner-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 55%, rgba(255,255,255,0.6) 100%);
    align-items: flex-start;
  }
  .arma-banner-text {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
  }
  .arma-titulo { font-size: 1.25rem; }
  .arma-subtitulo { font-size: 0.95rem; }
  .arma-cats-grid { grid-template-columns: 1fr; }
  .arma-calc-inputs { grid-template-columns: 1fr; }
  .arma-calc-header,
  .arma-calc-body { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* Móvil */
@media (max-width: 699px) {
  /* Testimonios: carrusel horizontal */
  .testimonios-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    grid-template-columns: unset;
  }
  .testimonio-card {
    min-width: 85vw;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  /* Garantía: columna */
  .garantia-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Tips: 2x2 */
  .tips-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .tip-body { padding: 0.9rem 0.85rem 1rem; }
  .tip-titulo { font-size: 0.88rem; }
  .tip-desc { font-size: 0.78rem; }
}

/* ══════════════════════════════════════════════════
   WIZARD MODAL — 4 pasos
══════════════════════════════════════════════════ */
.modal-box--wizard {
  max-width: 620px;
  width: 95vw;
  max-height: 92vh;
  overflow-y: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.modal-box--wizard .modal-header {
  padding: 1.4rem 1.75rem 0.9rem;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.modal-box--wizard .modal-close {
  top: 1rem; right: 1rem;
}

/* Barra de progreso */
.wiz-progress {
  background: var(--gray-100);
  height: 5px;
  position: relative;
  flex-shrink: 0;
}
.wiz-bar {
  height: 100%;
  background: var(--coral);
  transition: width 0.4s var(--ease);
  width: 25%;
}
.wiz-steps-labels {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 1.75rem 0;
}
.wiz-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.wiz-lbl.active { color: var(--coral); }
.wiz-lbl.done   { color: var(--navy); }

.wiz-step-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0.2rem 0 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Pasos */
.wiz-step {
  padding: 1.25rem 1.75rem 0.5rem;
  animation: stepIn 0.32s var(--ease) both;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
.wiz-step.slide-back {
  animation: stepBack 0.32s var(--ease) both;
}
@keyframes stepBack {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wiz-step-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wiz-step-title i { color: var(--coral); font-size: 0.95rem; }
.wiz-step-title small {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
}

/* Grid de 2 columnas en formulario */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

/* Errores */
.field-error {
  display: block;
  font-size: 0.72rem;
  color: var(--coral);
  margin-top: 0.2rem;
  min-height: 0.9rem;
  font-weight: 600;
}

/* Radio buttons personalizados */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.radio-group--small {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
}
.radio-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  font-size: 0.85rem;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  width: 100%;
}
.radio-box i { color: var(--gray-400); font-size: 0.9rem; transition: color 0.2s; }
.radio-box small { font-size: 0.72rem; color: var(--gray-500); }
.radio-option input[type="radio"]:checked + .radio-box {
  border-color: var(--coral);
  background: #fff5f5;
  color: var(--coral);
  font-weight: 700;
}
.radio-option input[type="radio"]:checked + .radio-box i { color: var(--coral); }
.radio-group--small .radio-box {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  width: auto;
}

/* Referencias */
.wiz-refs-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.8rem 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.wiz-refs-title i { color: var(--coral); }

/* Checkbox consentimiento */
.wiz-consent { margin-top: 1rem; }
.wiz-consent-simple {
  padding: 0 1.75rem 0.5rem;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--navy);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--coral);
  margin-top: 1px;
  cursor: pointer;
}

/* Privacidad */
.wiz-privacy {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
  line-height: 1.55;
  padding: 0.6rem 0.75rem;
  background: var(--gray-50);
  border-radius: var(--r-lg);
  border-left: 3px solid var(--gray-200);
}

/* Navegación */
.wiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem 1.4rem;
  border-top: 1px solid var(--gray-100);
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-wiz-prev {
  background: var(--gray-100);
  color: var(--navy);
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
}
.btn-wiz-prev:hover { background: var(--gray-200); }
.btn-wiz-next {
  margin-left: auto;
  min-width: 130px;
  justify-content: center;
}
.btn-wiz-send {
  background: #22a05a;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(34,160,90,.28);
}
.btn-wiz-send:hover { background: #1a8a4a; transform: translateY(-1px); }

/* Pantalla de éxito */
.wiz-success {
  text-align: center;
  padding: 2.5rem 2rem;
}
.wiz-success-icon { font-size: 3.5rem; margin-bottom: 0.75rem; }
.wiz-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.wiz-success p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}
.wiz-success strong { color: var(--coral); }

/* Responsive wizard */
@media (max-width: 599px) {
  .modal-box--wizard { width: 100vw; max-height: 100dvh; border-radius: 0; }
  .wiz-step { padding: 1rem 1.1rem 0.5rem; }
  .wiz-nav  { padding: 0.85rem 1.1rem 1.1rem; }
  .wiz-steps-labels { padding: 0.4rem 1rem 0; }
  .form-row-2 { grid-template-columns: 1fr; }
  .wiz-consent-simple { padding: 0 1.1rem 0.5rem; }
  .radio-group--small { gap: 0.35rem; }
  .radio-group--small .radio-box { font-size: 0.78rem; padding: 0.4rem 0.7rem; }
}

/* ==========================================================
   RESPONSIVE MÓVIL COMPLETO — corrección general
   ≤ 480px  smartphones pequeños y medianos
   ========================================================== */
@media (max-width: 480px) {

  /* Contenedor */
  .container { padding-inline: 1rem; }

  /* Topbar */
  .topbar { padding: 0.6rem 1rem; gap: 0.4rem; }
  .topbar-brand { font-size: 1.05rem; }
  .topbar-cta { padding: 0.35rem 0.8rem; font-size: 0.68rem; }

  /* Hero */
  .site-header { padding: 2.25rem 1rem 2.75rem; }
  .header-crest { width: 48px; height: 48px; margin-bottom: 0.9rem; }
  .logo-lu, .logo-vi { font-size: clamp(2rem, 11vw, 2.8rem); }
  .logo-ge           { font-size: clamp(2.3rem, 12vw, 3.1rem); }
  .header-subtitle   { font-size: 0.56rem; letter-spacing: 0.12em; margin-bottom: 1rem; }
  .hero-trust-item   { font-size: 0.68rem; }
  .header-pill       { font-size: 0.66rem; padding: 0.25rem 0.6rem; }

  /* Urgency bar */
  .urgency-bar { font-size: 0.65rem; padding: 0.45rem 2.5rem 0.45rem 0.75rem; }

  /* Textos de sección */
  .eyebrow       { font-size: 0.6rem; }
  .section-title { font-size: clamp(1.35rem, 6vw, 1.8rem); }
  .section-sub   { font-size: 0.8rem; }

  /* Promo banner */
  .promo-banner  { padding: 2.25rem 1rem; }
  .promo-title   { font-size: clamp(1.4rem, 7vw, 1.9rem); }
  .promo-sub     { font-size: 0.8rem; }
  .promo-dates   { font-size: 0.7rem; }
  .promo-btn     { font-size: 0.8rem; padding: 0.6rem 1.35rem; }

  /* Por qué Rena Ware */
  .porque-section { padding: 2.75rem 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.7rem; }
  .why-card { padding: 1.1rem 0.7rem; }
  .why-icon { width: 42px; height: 42px; margin-bottom: 0.65rem; }
  .why-icon i { font-size: 0.95rem; }
  .why-card h3 { font-size: 0.66rem; }
  .why-card p  { font-size: 0.68rem; }

  /* Catálogo — 1 columna en móvil pequeño */
  .products-section { padding: 2.75rem 0 3rem; }
  .products-grid { grid-template-columns: 1fr !important; gap: 0.9rem; }
  .product-img-wrap { aspect-ratio: 16 / 9; }
  .ph-icon  { font-size: 2rem; }
  .ph-label { font-size: 0.7rem; }
  .ph-sub   { font-size: 0.6rem; }
  .ph-badge-foto { font-size: 0.58rem; padding: 0.14rem 0.45rem; }
  .product-body { padding: 0.85rem 0.9rem 0.95rem; }
  .product-name { font-size: 0.85rem; }
  .monthly-amount { font-size: 1.55rem; }
  .product-cuotas      { font-size: 0.73rem; }
  .product-price-contado { font-size: 0.73rem; }
  .btn-product { font-size: 0.8rem; padding: 0.55rem 0.9rem; }

  /* Arma tu Paquete — banner */
  .arma-banner { height: 210px; }
  .arma-titulo    { font-size: 1.05rem; line-height: 1.3; }
  .arma-subtitulo { font-size: 0.82rem; }
  .arma-desc      { font-size: 0.72rem; }
  .arma-btn       { font-size: 0.76rem; padding: 0.45rem 1rem; }
  .arma-info-bar  { font-size: 0.7rem;  padding: 0.6rem 0.8rem; }

  /* Acordeón categorías */
  .arma-cats-grid   { grid-template-columns: 1fr; gap: 0.5rem; }
  .arma-cat-header  { padding: 0.7rem 0.9rem; }
  .arma-cat-title   { font-size: 0.8rem; }
  .arma-cat-icon    { font-size: 1rem; }
  .arma-products-list { padding: 0.7rem 0.9rem; gap: 0.35rem; }
  .arma-product-pill  { font-size: 0.7rem; padding: 0.22rem 0.6rem; }
  .arma-cat-btn       { font-size: 0.73rem; padding: 0.42rem 0.9rem; }

  /* Calculadora */
  .arma-calc-header { padding: 0.7rem 0.9rem 0.45rem; }
  .arma-calc-title  { font-size: 0.95rem; }
  .arma-calc-body   { padding: 0.7rem 0.9rem 0.85rem; }
  .arma-calc-inputs { grid-template-columns: 1fr; gap: 0.55rem; }
  .arma-calc-cuota  { font-size: 1.55rem; }
  .arma-bancos-franja { padding: 4px 7px 3px; margin-top: 8px; }
  .arma-bancos-label  { font-size: 0.58rem; }
  .arma-bancos-canvas { height: 36px; }
  .arma-bancos-nota   { font-size: 0.58rem; }

  /* Formas de Pago */
  .payment-section { padding: 2.75rem 0; }
  .payment-grid { grid-template-columns: 1fr !important; gap: 0.7rem; }
  .payment-card { padding: 1.2rem 0.9rem; }
  .payment-icon { width: 42px; height: 42px; }
  .payment-card h3 { font-size: 0.73rem; }
  .payment-card p  { font-size: 0.74rem; }

  /* Entrega */
  .delivery-section { padding: 2.75rem 0; }
  .delivery-grid { grid-template-columns: 1fr !important; gap: 0.7rem; }
  .delivery-card { padding: 1.35rem 1rem; }
  .delivery-time  { font-size: 1.2rem; }
  .delivery-card h3 { font-size: 0.8rem; }
  .delivery-card > p { font-size: 0.74rem; }

  /* Tips */
  .tips-section { padding: 2.75rem 0; }
  .tips-grid { grid-template-columns: 1fr !important; gap: 0.85rem; }
  .tip-img-wrap { aspect-ratio: 16 / 9; }
  .tip-body   { padding: 0.8rem 0.85rem 0.95rem; }
  .tip-titulo { font-size: 0.83rem; }
  .tip-desc   { font-size: 0.74rem; }
  .tip-num    { width: 28px; height: 28px; font-size: 0.72rem; }

  /* Testimonios */
  .testimonios-section { padding: 2.75rem 0; }
  .testimonio-card  { min-width: 80vw; padding: 1.35rem 1.1rem; }
  .testimonio-texto { font-size: 0.85rem; }
  .testimonio-nombre { font-size: 0.82rem; }

  /* Garantía */
  .garantia-section { padding: 2.75rem 0; }
  .garantia-grid { grid-template-columns: 1fr !important; gap: 0.8rem; }
  .garantia-card { padding: 1.4rem 1rem; }
  .garantia-icon { width: 48px; height: 48px; font-size: 1.15rem; }
  .garantia-card h3 { font-size: 0.92rem; }
  .garantia-card p  { font-size: 0.8rem; }

  /* FAQ */
  .faq-section { padding: 2.75rem 0; }
  .faq-btn { padding: 0.8rem 0.95rem; font-size: 0.8rem; }
  .faq-answer-inner p { font-size: 0.8rem; padding: 0.7rem 0.95rem 0.95rem; }

  /* Footer */
  .footer-inner { padding: 1.75rem 1rem 2.25rem; }
  .footer-logo  { font-size: 1.7rem; }
  .footer-nav   { flex-wrap: wrap; gap: 0.35rem 0.8rem; justify-content: center; }
  .footer-nav a { font-size: 0.68rem; }
  .footer-copy  { font-size: 0.66rem; }
  .footer-nota  { font-size: 0.68rem; }

  /* Wizard en móvil muy pequeño */
  .wiz-step-title { font-size: 0.92rem; }
  .wiz-steps-labels { display: none; }
  .btn-wiz-send { font-size: 0.83rem; padding: 0.58rem 1.2rem; }
}

/* ==========================================================
   TABLET PEQUEÑA — 481px a 699px
   ========================================================== */
@media (min-width: 481px) and (max-width: 699px) {
  .container { padding-inline: 1.25rem; }

  /* Productos: 2 columnas */
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .product-img-wrap { aspect-ratio: 4 / 3; }

  /* Why: 2 o 3 columnas */
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Payment: 2 columnas */
  .payment-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Tips: 2 columnas */
  .tips-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Garantía y Entrega: 1 columna */
  .garantia-grid { grid-template-columns: 1fr !important; }
  .delivery-grid { grid-template-columns: 1fr !important; }

  /* Arma tu paquete */
  .arma-cats-grid  { grid-template-columns: 1fr; }
  .arma-calc-inputs { grid-template-columns: 1fr; }
  .arma-banner { height: 240px; }
}

/* ==========================================================
   REGLA GLOBAL — imágenes nunca se estiran
   ========================================================== */
img { max-width: 100%; height: auto; display: block; }

.arma-banner-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.tip-img-wrap img,
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE MÓVIL COMPLETO — corrección general
   Aplica a pantallas ≤ 480px (smartphones típicos)
══════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Contenedor base ── */
  .container { padding-inline: 1rem; }

  /* ── Topbar / Nav ── */
  .topbar {
    padding: 0.65rem 1rem;
    gap: 0.5rem;
  }
  .topbar-brand { font-size: 1.1rem; }
  .topbar-cta {
    padding: 0.38rem 0.85rem;
    font-size: 0.7rem;
  }

  /* ── Header / Hero ── */
  .site-header { padding: 2.5rem 1rem 3rem; }
  .header-crest { width: 52px; height: 52px; margin-bottom: 1rem; }
  .logo-lu, .logo-vi { font-size: clamp(2.2rem, 11vw, 3rem); }
  .logo-ge { font-size: clamp(2.5rem, 12vw, 3.4rem); }
  .header-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
  }
  .hero-trust-bar { gap: 0.3rem; }
  .hero-trust-item { font-size: 0.7rem; }
  .header-pills { gap: 0.4rem; }
  .header-pill { font-size: 0.68rem; padding: 0.28rem 0.65rem; }
  .hero-price-highlight { margin-top: 1rem; }

  /* ── Urgency bar ── */
  .urgency-bar {
    font-size: 0.68rem;
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    text-align: left;
  }

  /* ── Sección eyebrow / títulos ── */
  .eyebrow { font-size: 0.62rem; }
  .section-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .section-sub { font-size: 0.82rem; }

  /* ── Promo Banner Día de la Madre ── */
  .promo-banner { padding: 2.5rem 1rem; }
  .promo-badge { font-size: 0.6rem; padding: 0.3rem 0.75rem; }
  .promo-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .promo-sub { font-size: 0.82rem; }
  .promo-dates { font-size: 0.72rem; }
  .promo-btn { font-size: 0.82rem; padding: 0.65rem 1.5rem; }

  /* ── Por qué Rena Ware ── */
  .porque-section { padding: 3rem 0; }
  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }
  .why-card { padding: 1.25rem 0.75rem; }
  .why-icon { width: 44px; height: 44px; margin-bottom: 0.75rem; }
  .why-icon i { font-size: 1rem; }
  .why-card h3 { font-size: 0.68rem; }
  .why-card p { font-size: 0.7rem; }

  /* ── Catálogo de Productos ── */
  .products-section { padding: 3rem 0 3.5rem; }
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .product-card { border-radius: 12px; }
  .product-img-wrap { aspect-ratio: 16 / 9; }
  .ph-icon { font-size: 2.2rem; }
  .ph-label { font-size: 0.72rem; }
  .ph-sub { font-size: 0.62rem; }
  .product-body { padding: 0.9rem 1rem 1rem; }
  .product-name { font-size: 0.88rem; }
  .monthly-amount { font-size: 1.6rem; }
  .product-cuotas { font-size: 0.75rem; }
  .product-price-contado { font-size: 0.75rem; }
  .btn-product { font-size: 0.82rem; padding: 0.6rem 1rem; }

  /* ── Arma tu Paquete ── */
  .arma-section { padding: 0; }
  .arma-banner { height: 220px; }
  .arma-titulo { font-size: 1.1rem; line-height: 1.3; }
  .arma-subtitulo { font-size: 0.85rem; }
  .arma-desc { font-size: 0.75rem; }
  .arma-btn { font-size: 0.78rem; padding: 0.5rem 1.1rem; }
  .arma-info-bar { font-size: 0.72rem; padding: 0.65rem 0.85rem; }

  /* Acordeón categorías */
  .arma-cats-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .arma-cat-header { padding: 0.75rem 1rem; }
  .arma-cat-icon { font-size: 1.1rem; }
  .arma-cat-title { font-size: 0.82rem; }
  .arma-products-list { padding: 0.75rem 1rem; gap: 0.4rem; }
  .arma-product-pill { font-size: 0.72rem; padding: 0.25rem 0.65rem; }
  .arma-cat-btn { font-size: 0.75rem; padding: 0.45rem 1rem; }

  /* Calculadora */
  .arma-calc-wrap { border-radius: 14px; }
  .arma-calc-header { padding: 0.75rem 1rem 0.5rem; }
  .arma-calc-title { font-size: 1rem; }
  .arma-calc-body { padding: 0.75rem 1rem 0.9rem; }
  .arma-calc-inputs { grid-template-columns: 1fr; gap: 0.6rem; }
  .arma-calc-cuota { font-size: 1.6rem; }
  .arma-bancos-franja { padding: 5px 8px 4px; }
  .arma-bancos-label { font-size: 0.6rem; }
  .arma-bancos-canvas { height: 38px; }
  .arma-bancos-nota { font-size: 0.6rem; }

  /* ── Formas de Pago ── */
  .payment-section { padding: 3rem 0; }
  .payment-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }
  .payment-card { padding: 1.25rem 1rem; }
  .payment-icon { width: 44px; height: 44px; }
  .payment-card h3 { font-size: 0.75rem; }
  .payment-card p { font-size: 0.76rem; }

  /* ── Entrega ── */
  .delivery-section { padding: 3rem 0; }
  .delivery-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }
  .delivery-card { padding: 1.5rem 1rem; }
  .delivery-time { font-size: 1.25rem; }
  .delivery-card h3 { font-size: 0.82rem; }
  .delivery-card > p { font-size: 0.76rem; }

  /* ── Tips / Cuidado ── */
  .tips-section { padding: 3rem 0; }
  .tips-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .tip-img-wrap { aspect-ratio: 16 / 9; }
  .tip-body { padding: 0.85rem 0.9rem 1rem; }
  .tip-titulo { font-size: 0.85rem; }
  .tip-desc { font-size: 0.76rem; }
  .tip-num { width: 30px; height: 30px; font-size: 0.75rem; }

  /* ── Testimonios ── */
  .testimonios-section { padding: 3rem 0; }
  .testimonio-card { min-width: 82vw; padding: 1.5rem 1.25rem; }
  .testimonio-texto { font-size: 0.88rem; }
  .testimonio-nombre { font-size: 0.85rem; }

  /* ── Garantía ── */
  .garantia-section { padding: 3rem 0; }
  .garantia-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }
  .garantia-card { padding: 1.5rem 1rem; }
  .garantia-icon { width: 50px; height: 50px; font-size: 1.2rem; }
  .garantia-card h3 { font-size: 0.95rem; }
  .garantia-card p { font-size: 0.82rem; }

  /* ── FAQ ── */
  .faq-section { padding: 3rem 0; }
  .faq-btn { padding: 0.85rem 1rem; font-size: 0.82rem; }
  .faq-answer-inner p { font-size: 0.82rem; padding: 0.75rem 1rem 1rem; }

  /* ── Footer ── */
  .footer-inner { padding: 2rem 1rem 2.5rem; }
  .footer-logo { font-size: 1.8rem; }
  .footer-nav { flex-wrap: wrap; gap: 0.4rem 0.85rem; justify-content: center; }
  .footer-nav a { font-size: 0.7rem; }
  .footer-copy { font-size: 0.68rem; }
  .footer-nota { font-size: 0.7rem; }

  /* ── Modal / Wizard en móvil muy pequeño ── */
  .modal-box--wizard { border-radius: 0; }
  .wiz-step-title { font-size: 0.95rem; }
  .wiz-steps-labels { display: none; } /* ahorramos espacio, queda el texto "Paso X de Y" */
  .btn-wiz-send { font-size: 0.85rem; padding: 0.6rem 1.25rem; }
}

/* ── Tablet pequeña: 481px – 699px ── */
@media (min-width: 481px) and (max-width: 699px) {

  .container { padding-inline: 1.25rem; }

  /* Productos: 1 columna en tablet pequeña */
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .product-img-wrap { aspect-ratio: 4 / 3; }

  /* Why: 2 columnas */
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Payment: 2 columnas */
  .payment-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Tips: 2 columnas */
  .tips-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Garantía: 1 columna */
  .garantia-grid { grid-template-columns: 1fr !important; }

  /* Entrega: 1 columna */
  .delivery-grid { grid-template-columns: 1fr !important; }

  /* Arma tu paquete */
  .arma-cats-grid { grid-template-columns: 1fr; }
  .arma-calc-inputs { grid-template-columns: 1fr; }
  .arma-banner { height: 240px; }
}

/* ── Imágenes y medios: nunca se estiran ── */
img, canvas, video {
  max-width: 100%;
  height: auto;
}
.arma-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tip-img-wrap img,
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ════════════════════════════════════════════════════════════
   WIZARD RESPONSIVE — BLOQUE ÚNICO Y LIMPIO
   (reemplaza todos los duplicados anteriores)
   ════════════════════════════════════════════════════════════ */

/* Ocultar labels del wizard en móvil/tablet, mostrar solo "PASO X DE 4" */
@media (max-width: 768px) {
  .wiz-steps-labels { display: none !important; }
  .wiz-step-text    { display: block; text-align: center; font-weight: 700; }
}

/* Prevenir scroll horizontal global en móvil */
@media (max-width: 640px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}

/* Botones icon-only del wizard (Anterior y Siguiente) */
.btn-wiz-prev.icon-only,
.btn-wiz-next.icon-only,
#wizPrev.icon-only,
#wizNext.icon-only {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* En móvil, refuerzo con !important para los icon-only */
@media (max-width: 640px) {
  .wiz-nav button.icon-only,
  .wiz-nav button[aria-label="Paso anterior"],
  .wiz-nav button[aria-label="Paso siguiente"] {
    width: 2.75rem !important;
    height: 2.75rem !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Botón "Enviar solicitud": estilos cuando está deshabilitado */
.btn-wiz-send:disabled,
#wizSend:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}
