/* ==========================================================================
   WONDERKIDS TOYS - SISTEMA DE DISEÑO E-COMMERCE PROFESIONAL RETAIL
   Nivel: Producción Comercial / Google Ads High-Conversion 10/10
   ========================================================================== */

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

:root {
  /* Paleta Corporativa Principal */
  --brand-navy: #0f172a;
  --brand-dark: #090d16;
  --brand-blue: #1e40af;
  --brand-primary: #ef4444;       /* Rojo llamada de acción comercial */
  --brand-primary-hover: #dc2626;
  --brand-coral: #f97316;
  --brand-green: #15803d;        /* Verde confianza / Contraentrega */
  --brand-green-light: #22c55e;
  --brand-yellow: #f59e0b;       /* Rating stars */
  
  /* Superficies y Fondos */
  --bg-white: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --bg-accent: #f1f5f9;
  
  /* Textos y Bordes */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --border-subtle: #e2e8f0;
  --border-focus: #cbd5e1;
  
  /* Tipografías */
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Sombras y Elevación */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow-green: 0 10px 25px rgba(34, 197, 94, 0.35);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  background-color: var(--bg-white);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   1. BARRA SUPERIOR PROMOCIONAL (TOP TICKER BAR)
   ========================================================================== */
.top-announcement {
  background-color: var(--brand-navy);
  color: #ffffff;
  padding: 0.55rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-green-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-green-light);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: #cbd5e1;
}

/* ==========================================================================
   2. NAVEGACIÓN Y CABECERA PRINCIPAL (NAVBAR)
   ========================================================================== */
.main-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-grid {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  align-items: center;
  height: 85px;
  gap: 2rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--brand-navy);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-primary);
  margin-top: 2px;
}

.nav-center-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-primary);
}

.nav-badge-sale {
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  margin-left: 0.3rem;
}

.header-cta-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.btn-header-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-header-whatsapp:hover {
  background-color: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.cart-icon-btn {
  background: var(--bg-accent);
  border: 1px solid var(--border-subtle);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.cart-icon-btn:hover {
  background: #e2e8f0;
}

.cart-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* ==========================================================================
   3. SECCIÓN HERO DE ALTA CONVERSIÓN CON FOTOGRAFÍA REAL
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  padding: 4.5rem 0 5.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid-2col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.trust-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.rating-stars {
  color: var(--brand-yellow);
  font-size: 0.9rem;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.1rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--brand-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-highlight-red {
  color: var(--brand-primary);
  position: relative;
  display: inline-block;
}

.hero-subtitle-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.hero-cta-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary-action {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.btn-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.5);
}

.btn-secondary-action {
  background: #ffffff;
  color: var(--brand-navy);
  border: 2px solid var(--border-subtle);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1.05rem 2rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.btn-secondary-action:hover {
  border-color: var(--brand-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero-guarantees-inline {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.75rem;
}

.guarantee-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.check-green-icon {
  color: var(--brand-green);
  font-weight: 900;
}

.hero-visual-frame {
  position: relative;
}

.hero-main-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.hero-badge-floating {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: #ffffff;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-float-icon {
  width: 48px;
  height: 48px;
  background-color: #dcfce7;
  color: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
}

.badge-float-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--brand-navy);
}

.badge-float-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   4. SECCIÓN CÓMO FUNCIONA EL PAGO CONTRAENTREGA (INFOGRAFÍA)
   ========================================================================== */
.how-it-works-section {
  padding: 4.5rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 1.5rem;
}

.step-number-bubble {
  width: 56px;
  height: 56px;
  background: var(--bg-accent);
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  border: 2px solid var(--border-subtle);
  transition: var(--transition);
}

.step-card:hover .step-number-bubble {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  transform: scale(1.1);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.step-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   5. FORMULARIO CONTRAENTREGA RÁPIDO CON SELECTOR DE BUNDLES
   ========================================================================== */
.cod-express-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.cod-container-card {
  background: #ffffff;
  border: 2px solid var(--brand-navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
}

.cod-banner-top {
  background: var(--brand-navy);
  color: #ffffff;
  padding: 1.5rem 2rem;
  text-align: center;
}

.cod-top-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.cod-top-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.cod-inner-padding {
  padding: 2.5rem;
}

.step-label-form {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bundle-options-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.bundle-item-card {
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  background: var(--bg-subtle);
}

.bundle-item-card:hover, .bundle-item-card.active {
  border-color: var(--brand-green);
  background-color: #f0fdf4;
  box-shadow: var(--shadow-md);
}

.bundle-badge-corner {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bundle-header-flex {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.bundle-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brand-navy);
}

.bundle-price-big {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--brand-green);
  margin-bottom: 0.25rem;
}

.bundle-savings-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.form-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.input-styled {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: border-color 0.2s;
}

.input-styled:focus {
  border-color: var(--brand-navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.btn-submit-cod-order {
  width: 100%;
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow-green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  margin-top: 1.5rem;
}

.btn-submit-cod-order:hover {
  background: linear-gradient(135deg, #166534 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.5);
}

.form-security-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   6. CATÁLOGO PRODUCTOS CON FOTOGRAFÍAS REALES Y ESPECIFICACIONES
   ========================================================================== */
.catalog-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.section-head-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.section-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 900;
  color: var(--brand-navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-lead-text {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.catalog-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-muted);
  border: 1.5px solid var(--border-subtle);
  background: #ffffff;
  transition: var(--transition);
}

.filter-tab-btn:hover, .filter-tab-btn.active {
  background: var(--brand-navy);
  color: #ffffff;
  border-color: var(--brand-navy);
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-commerce-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-commerce-card:hover {
  border-color: var(--brand-navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-image-container {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f1f5f9;
}

.product-real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-commerce-card:hover .product-real-photo {
  transform: scale(1.08);
}

.product-badge-float {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-age-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.product-content-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.product-category-crumb {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.product-rating-stars {
  color: var(--brand-yellow);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.rating-count-text {
  color: var(--text-light);
  font-size: 0.78rem;
}

.product-stock-warning {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 1.25rem;
}

.price-container-flex {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.price-current-large {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-navy);
}

.price-old-strikethrough {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 600;
}

.btn-card-buy-fast {
  width: 100%;
  background: var(--brand-navy);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-card-buy-fast:hover {
  background: var(--brand-primary);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
}

/* ==========================================================================
   7. SECCIÓN BANNER FLASH SALE (CUENTA REGRESIVA EN VIVO)
   ========================================================================== */
.flash-sale-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #090d16 0%, #1e293b 100%);
  color: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.flash-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.flash-tag-red {
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flash-title-big {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.countdown-clock-row {
  display: flex;
  gap: 1.25rem;
  margin: 2rem 0;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  min-width: 85px;
  text-align: center;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.countdown-lbl {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.35rem;
}

/* ==========================================================================
   8. TESTIMONIOS REALES CON FOTOS Y CIUDADES
   ========================================================================== */
.reviews-section {
  padding: 6rem 0;
  background-color: var(--bg-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.reviews-cards-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-customer-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.customer-profile-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.customer-avatar-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.customer-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--brand-navy);
}

.customer-city-verified {
  font-size: 0.78rem;
  color: var(--brand-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.review-body-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.purchased-product-tag {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   9. PREGUNTAS FRECUENTES INTERACTIVAS (FAQ ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
}

.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  transition: var(--transition);
}

.faq-card-item:hover {
  border-color: var(--border-focus);
}

.faq-trigger-btn {
  width: 100%;
  padding: 1.35rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: background 0.2s;
}

.faq-card-item.active .faq-trigger-btn {
  background: var(--bg-subtle);
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--brand-primary);
  transition: transform 0.3s;
}

.faq-card-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-body-content {
  display: none;
  padding: 1.5rem 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
}

.faq-card-item.active .faq-body-content {
  display: block;
}

/* ==========================================================================
   10. PIE DE PÁGINA CORPORATIVO COMPLETO (GOOGLE ADS COMPLIANT)
   ========================================================================== */
.main-footer {
  background-color: var(--brand-navy);
  color: #94a3b8;
  padding: 5rem 0 2.5rem 0;
  font-size: 0.9rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-column-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
}

.footer-desc-text {
  line-height: 1.7;
  max-width: 360px;
}

.footer-column-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  color: #cbd5e1;
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.logistics-seals-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* ==========================================================================
   11. BOTÓN FLOTANTE DE WHATSAPP 24/7
   ========================================================================== */
.floating-whatsapp-trigger {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition);
}

.floating-whatsapp-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   12. RESPONSIVIDAD MOBILE-FIRST
   ========================================================================== */
@media (max-width: 1024px) {
  .header-grid {
    grid-template-columns: 1fr auto;
  }
  .nav-center-menu {
    display: none;
  }
  .hero-grid-2col {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle-lead {
    margin: 0 auto 2.25rem auto;
  }
  .hero-cta-bar, .hero-guarantees-inline {
    justify-content: center;
  }
  .hero-badge-floating {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
  }
  .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flash-grid-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .countdown-clock-row {
    justify-content: center;
  }
  .reviews-cards-3col {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .announcement-right {
    display: none;
  }
  .product-cards-grid {
    grid-template-columns: 1fr;
  }
  .bundle-options-wrap, .form-2col-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .cod-inner-padding {
    padding: 1.5rem;
  }
}
