/* ==========================================================================
   FUEGO SMASH BURGER — SISTEMA DE DISEÑO GASTRONÓMICO URBANO
   Paleta: Carbón profundo, Crema cálido, Rojo brasa, Amarillo mostaza/queso
   Tipografía: Outfit (Headings/Display) + Inter (Body/UI/Precios)
   ========================================================================== */

:root {
  /* Paleta cromática */
  --color-bg-dark: #0d0e11;
  --color-bg-card: #15171c;
  --color-bg-card-hover: #1c1f26;
  --color-surface: #222630;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-glow: rgba(245, 158, 11, 0.3);
  
  --color-brand-primary: #ff4500;       /* Rojo brasa potente */
  --color-brand-primary-hover: #e03d00;
  --color-brand-secondary: #f59e0b;     /* Mostaza / Cheddar dorado */
  --color-brand-secondary-hover: #d97706;
  --color-brand-accent: #ff8c00;        /* Naranja tostado */

  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dark: #0f172a;
  
  --color-success: #10b981;
  --color-badge: #dc2626;

  /* Tipografías */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Espaciados y transiciones */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.25);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset y base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #1a1612 0%, var(--color-bg-dark) 55%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

/* Contenedor estándar */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #b91c1c, #ea580c, #b91c1c);
  background-size: 200% 100%;
  animation: shimmerBar 8s ease infinite;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes shimmerBar {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.main-header {
  position: sticky;
  top: 36px;
  z-index: 99;
  background: rgba(13, 14, 17, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.brand-logo .flame-icon {
  width: 32px;
  height: 32px;
  color: var(--color-brand-primary);
  filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.6));
}

.brand-logo span {
  color: var(--color-brand-secondary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-brand-secondary);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-button-trigger {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.cart-button-trigger:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-brand-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.cart-badge {
  background: var(--color-brand-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.mobile-menu-toggle {
  display: none;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 0.4rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--color-brand-secondary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}

.hero-title .highlight-fire {
  background: linear-gradient(135deg, #ff4500 0%, #f59e0b 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand-primary), #ff6314);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.35);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 69, 0, 0.5);
  background: linear-gradient(135deg, #e03d00, #ff5700);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Micro badges bajo CTA */
.hero-badges-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-badge-icon {
  color: var(--color-brand-secondary);
  font-size: 1.25rem;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
}

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

/* Hero Media Visual */
.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-bg-card);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-card:hover img {
  transform: scale(1.04);
}

.floating-delivery-pill {
  position: absolute;
  bottom: 25px;
  left: -20px;
  background: rgba(21, 23, 28, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  animation: floatSubtle 4s ease-in-out infinite;
}

@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-score-pill {
  position: absolute;
  top: 25px;
  right: -20px;
  background: rgba(21, 23, 28, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ==========================================================================
   TRUST PILLARS (4 PILARES DE CONFIANZA GASTRONÓMICA)
   ========================================================================== */
.trust-strip-section {
  padding: 2.5rem 0;
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(255, 69, 0, 0.12);
  color: var(--color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid rgba(255, 69, 0, 0.25);
}

.trust-item:nth-child(2) .trust-icon-box {
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-brand-secondary);
  border-color: rgba(245, 158, 11, 0.25);
}

.trust-item:nth-child(3) .trust-icon-box {
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-success);
  border-color: rgba(16, 185, 129, 0.25);
}

.trust-item:nth-child(4) .trust-icon-box {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.25);
}

.trust-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.trust-text p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   PROMO LIVE BANNER / COUNTDOWN (URGENCIA CRO)
   ========================================================================== */
.promo-banner-section {
  padding: 2.5rem 0;
}

.promo-card {
  background: linear-gradient(135deg, #1e130c 0%, #15171c 60%, #12100e 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.promo-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.promo-badge-tag {
  display: inline-block;
  background: var(--color-badge);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.promo-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 500px;
}

.countdown-box-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.time-block {
  background: #000000;
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 64px;
}

.time-number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-brand-secondary);
  line-height: 1;
}

.time-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
  font-weight: 600;
}

.time-sep {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-brand-primary);
}

/* ==========================================================================
   MENÚ INTERACTIVO & FILTROS
   ========================================================================== */
.menu-section {
  padding: 4.5rem 0;
  position: relative;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-subheading {
  color: var(--color-brand-secondary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 0.85rem;
}

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

/* Filtros de categorías */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--color-surface);
}

.filter-btn.active {
  background: var(--color-brand-secondary);
  color: #000000;
  border-color: var(--color-brand-secondary);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

/* Grilla de productos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.15);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #000000;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

.card-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-badge);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.card-badge-top.combo {
  background: #ea580c;
}

.card-badge-top.popular {
  background: #e11d48;
}

.card-badge-top.especial {
  background: #8b5cf6;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.card-category {
  font-size: 0.75rem;
  color: var(--color-brand-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-rating {
  font-size: 0.8rem;
  color: #fbbf24;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.ingredient-tag {
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 1.15rem;
  margin-top: auto;
}

.price-container {
  display: flex;
  flex-direction: column;
}

.price-old {
  font-size: 0.8rem;
  color: #64748b;
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
}

.btn-add-cart {
  background: var(--color-brand-secondary);
  color: #000000;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all var(--transition-fast);
}

.btn-add-cart:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   PROCESO SMASH — EL SECRETO MAILLARD
   ========================================================================== */
.process-section {
  padding: 5rem 0;
  background: #111317;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

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

.process-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.process-card:hover {
  border-color: rgba(255, 69, 0, 0.4);
  transform: translateY(-5px);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}

.process-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 69, 0, 0.12);
  color: var(--color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 69, 0, 0.25);
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.process-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ==========================================================================
   INFOGRAFÍA DE PAGO CONTRAENTREGA (COD) — 4 PASOS
   ========================================================================== */
.cod-section {
  padding: 4.5rem 0;
  background: radial-gradient(circle at 50% 50%, #1c1510 0%, #0d0e11 80%);
}

.cod-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.cod-step-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.25rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition-fast);
}

.cod-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-brand-secondary);
}

.cod-step-badge {
  width: 38px;
  height: 38px;
  background: var(--color-brand-secondary);
  color: #000000;
  font-weight: 900;
  font-family: var(--font-display);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.cod-step-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cod-step-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   DELIVERY & ZONAS DE COBERTURA EN COLOMBIA
   ========================================================================== */
.delivery-zones-section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--color-border);
}

.zones-wrapper {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.zones-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.zone-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.zone-chip svg {
  color: var(--color-success);
  min-width: 18px;
}

.delivery-estimate-card {
  background: linear-gradient(135deg, #201a14, #121316);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 1.85rem;
}

.estimate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.estimate-row:last-child {
  border-bottom: none;
}

.estimate-row span:first-child {
  color: var(--color-text-muted);
}

.estimate-row span:last-child {
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   RESEÑAS REALES DE CLIENTES (SOCIAL PROOF)
   ========================================================================== */
.reviews-section {
  padding: 4.5rem 0;
  background: #111317;
}

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

.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.review-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-brand-secondary);
}

.author-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.verified-icon {
  color: var(--color-success);
  font-size: 0.85rem;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   UBICACIÓN Y HORARIOS (LOCALIZACIÓN COLOMBIA)
   ========================================================================== */
.location-section {
  padding: 4.5rem 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.location-details-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.location-demo-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-brand-secondary);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.loc-icon {
  color: var(--color-brand-primary);
  font-size: 1.4rem;
  margin-top: 0.2rem;
}

.loc-text strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.loc-text p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.map-card-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  height: 380px;
  position: relative;
}

.map-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(21, 23, 28, 0.95);
  border: 2px solid var(--color-brand-primary);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   FAQ (PREGUNTAS FRECUENTES)
   ========================================================================== */
.faq-section {
  padding: 4.5rem 0;
  background: #111317;
  border-top: 1px solid var(--color-border);
}

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

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.4);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-question:hover {
  color: var(--color-brand-secondary);
}

.faq-arrow {
  transition: transform var(--transition-fast);
  color: var(--color-brand-secondary);
  font-size: 1.2rem;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ==========================================================================
   FOOTER INSTITUCIONAL COMPLETO
   ========================================================================== */
.main-footer {
  background: #090a0d;
  border-top: 1px solid var(--color-border);
  padding: 4.5rem 0 2rem;
  color: var(--color-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-brand-secondary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   OFF-CANVAS CARRITO SLIDE-OVER DRAWER
   ========================================================================== */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 450px;
  background: #14161b;
  border-left: 1px solid var(--color-border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
}

.cart-drawer-backdrop.open .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-cart-btn {
  color: var(--color-text-muted);
  font-size: 1.35rem;
  padding: 0.25rem;
}

.close-cart-btn:hover {
  color: #ffffff;
}

.cart-items-body {
  padding: 1.25rem 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-text-muted);
}

.cart-empty-state svg {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  opacity: 0.35;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.cart-item-price {
  font-size: 0.88rem;
  color: var(--color-brand-secondary);
  font-weight: 700;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--color-surface);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.qty-btn:hover {
  background: var(--color-brand-secondary);
  color: #000000;
}

.item-qty-value {
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.btn-remove-item {
  color: #ef4444;
  font-size: 0.85rem;
  margin-left: auto;
  padding: 0.3rem;
}

/* Footer del carrito / Formulario WhatsApp */
.cart-footer-checkout {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: #0f1115;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  padding: 0.75rem 0;
  border-top: 1px dashed var(--color-border);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.cart-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-group-input {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group-input label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.form-input-field {
  background: #191c23;
  border: 1px solid var(--color-border);
  color: #ffffff;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
}

.form-input-field:focus {
  outline: none;
  border-color: var(--color-brand-secondary);
}

.btn-whatsapp-order {
  width: 100%;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.95rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
}

.btn-whatsapp-order:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   BOTÓN FLOTANTE PERMANENTE DE WHATSAPP (CRO)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
}

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

.floating-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1e222b;
  color: #ffffff;
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   RESPONSIVE (MOBILE-FIRST BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-tag {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-badges-strip {
    justify-content: center;
  }
  .hero-media-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
  .floating-delivery-pill {
    left: 10px;
  }
  .floating-score-pill {
    right: 10px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .countdown-box-wrapper {
    align-items: center;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .cod-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zones-wrapper {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .cod-steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .zones-list {
    grid-template-columns: 1fr;
  }
}
