/* ══════════════════════════════════════════════════
   COUNTRY CARTAGENA — Paleta Caribeña
   Fuentes: Bebas Neue (headings) · Poppins (body)
══════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #FFFDF8;        /* blanco arena cálido */
  --yellow:    #E8A020;        /* amarillo arena — dunas de Cartagena */
  --cyan:      #0891A8;        /* azul mar Caribe */
  --coral:     #F0621A;        /* naranja atardecer costeño */
  --sand:      #D4A055;        /* arena dorada */
  --leaf:      #2DB660;        /* verde palma tropical */
  --purple:    #C8A0FF;
  --tropical:  #F0621A;
  --tropGreen: #2DB660;
  --white:     #FFFDF8;        /* blanco cálido */
  --muted:     rgba(80, 48, 12, 0.55);
  --border:    rgba(200, 140, 40, 0.18);
  --section-gap: 96px;
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse 700px 500px at 0%   0%,  rgba(255,87,34,0.09)   0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 100% 100%, rgba(0,201,167,0.09)  0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 60%  50%,  rgba(255,184,0,0.04)  0%, transparent 60%),
    var(--bg);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ══════════════════════════════════════════════════
   NAVBAR SIMPLIFICADO (con tabs)
══════════════════════════════════════════════════ */
.nav-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity .15s, transform .15s;
  flex-shrink: 0;
}
.nav-order-btn:hover { opacity: .88; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════
   SISTEMA DE PESTAÑAS
══════════════════════════════════════════════════ */
.tab-nav-wrap {
  position: sticky;
  top: 65px;
  z-index: 90;
  background: rgba(6,12,11,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.tab-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* Distribuir uniformemente */
  justify-content: space-around;
}
.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 0;
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  min-width: 0;
}

.tab-btn i {
  font-size: 20px;
  transition: color .15s, transform .2s;
  display: block;
}

.tab-btn span {
  font-size: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.tab-btn:hover {
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.04);
}
.tab-btn:hover i { transform: translateY(-2px); }

.tab-btn.active {
  color: var(--white);
  border-bottom-color: var(--yellow);
  background: linear-gradient(to top, rgba(255,184,0,0.10) 0%, transparent 100%);
}
.tab-btn.active i {
  color: var(--yellow);
  filter: drop-shadow(0 0 6px rgba(255,184,0,0.60));
}

/* Panels: solo el activo es visible */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ══════════════════════════════════════════════════
   PESTAÑA HOME
══════════════════════════════════════════════════ */

/* ── Hero ── */
.home-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg,
      rgba(255,87,34,0.30) 0%,
      rgba(6,12,11,0.92)  45%,
      rgba(0,201,167,0.20) 100%),
    url('https://images.unsplash.com/photo-1533777857889-4be7c70b33f7?w=1200&q=80&auto=format&fit=crop')
    center/cover no-repeat;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,12,11,0.55);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 16px;
}

.home-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 12vw, 110px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.home-title em {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 0.50em;
  color: var(--yellow);
  display: block;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: none;
}

.home-sub {
  font-size: 14px;
  color: rgba(255,240,220,0.75);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 32px;
  font-style: italic;
}

.home-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform .15s, box-shadow .15s, opacity .15s;
}

.home-cta-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,87,34,0.35);
}
.home-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,87,34,0.45); }

.home-cta-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
}
.home-cta-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ── Sobre nosotros ── */
.home-about {
  padding: var(--section-gap) 0;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 14px;
}

.home-about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.home-about-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.home-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,240,220,0.75);
}

.home-feature i {
  width: 32px; height: 32px;
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 13px;
  flex-shrink: 0;
}

/* ── Galería placeholder ── */
.home-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.home-photo-placeholder {
  aspect-ratio: 1;
  background: rgba(255,200,120,0.05);
  border: 1.5px dashed rgba(255,200,130,0.20);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,200,130,0.30);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: default;
  transition: border-color .2s, color .2s;
}
.home-photo-placeholder i { font-size: 22px; }
.home-photo-placeholder:hover {
  border-color: rgba(255,184,0,0.40);
  color: rgba(255,184,0,0.50);
}

/* ── Google Reviews ── */
.home-reviews-section {
  padding: 0 0 var(--section-gap);
}

.home-reviews-card {
  background: linear-gradient(135deg,
    rgba(255,87,34,0.08) 0%,
    rgba(255,184,0,0.06) 50%,
    rgba(0,201,167,0.08) 100%);
  border: 1px solid rgba(255,200,130,0.15);
  border-radius: 8px;
  padding: 52px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.home-reviews-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,184,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.home-reviews-stars {
  display: flex;
  gap: 6px;
  font-size: 24px;
  color: var(--yellow);
  filter: drop-shadow(0 0 8px rgba(255,184,0,0.50));
}

.home-reviews-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.home-reviews-sub {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.65;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 100px;
  margin-top: 8px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.google-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.google-review-btn i { font-size: 13px; color: #555; }

.google-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

/* ── Responsivo Home ── */
@media (max-width: 960px) {
  .home-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-reviews-card { padding: 40px 24px; }
}

@media (max-width: 640px) {
  .home-hero { min-height: 360px; }
  .home-hero-content { padding-top: 48px; padding-bottom: 48px; }
  .home-hero-btns { flex-direction: column; }
  .home-cta-btn { justify-content: center; }
  .home-photo-grid { grid-template-columns: 1fr 1fr; }
}

/* Quitar border-top de la primera sección dentro de cada panel */
.tab-panel .menu-section,
.tab-panel .domicilio-section { border-top: none; }

/* ══════════════════════════════════════════════════
   BANNER HERO DE CADA PESTAÑA
══════════════════════════════════════════════════ */
.tab-hero-banner {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.tab-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 10s ease;
}

.tab-hero-banner:hover .tab-hero-img { transform: scale(1.06); }

.tab-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(6,12,11,0.90) 0%,
      rgba(6,12,11,0.55) 55%,
      rgba(6,12,11,0.10) 100%),
    linear-gradient(to top,
      rgba(6,12,11,0.70) 0%,
      transparent 50%);
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 32px 40px;
}

.tab-hero-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px;
  line-height: 1;
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.30;
  flex-shrink: 0;
  user-select: none;
}

.tab-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  text-shadow: 0 2px 16px rgba(0,0,0,0.60);
  margin-bottom: 6px;
}

.tab-hero-sub {
  font-size: 13px;
  color: rgba(255,235,200,0.65);
  font-style: italic;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .tab-hero-banner { height: 180px; }
  .tab-hero-overlay { padding: 20px 18px; gap: 12px; }
  .tab-hero-num { font-size: 70px; }
  .tab-hero-sub { display: none; }
}

/* ─── FOTO REAL ─── */
.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════════
   TIPOGRAFÍA
══════════════════════════════════════════════════ */
.heading-lg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* Heading hero con cursiva (Poppins italic) */
.hero-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.90;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-heading em {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 0.75em;
  color: var(--yellow);
  display: block;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: none;
}

.accent-cyan   { color: var(--cyan); }
.accent-yellow { color: var(--yellow); }

/* ══════════════════════════════════════════════════
   BOTONES
══════════════════════════════════════════════════ */
.btn-primary, .btn-dark {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 30px;
  letter-spacing: 0.03em;
  transition: opacity .18s, transform .15s;
}
.btn-primary:hover, .btn-dark:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1180px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,12,11,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  /* Needed for absolute dropdown positioning on mobile */
  isolation: isolate;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255,87,34,0.35);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  opacity: .65;
  transition: opacity .15s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta-link {
  background: var(--yellow) !important;
  color: #000 !important;
  opacity: 1 !important;
  padding: 8px 18px;
  font-weight: 700 !important;
  font-size: 12px !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   HERO — ATAJOS DE CATEGORÍAS
══════════════════════════════════════════════════ */
.nav-hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

/* ── Badge de ubicación ── */
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--tropical);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 14px;
  opacity: 0.90;
}
.hero-location i { font-size: 10px; }

/* ── Decoraciones tropicales flotantes ── */
.hero-tropical-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.trop-leaf {
  position: absolute;
  color: var(--tropGreen);
  opacity: 0.07;
  line-height: 1;
}

.trop-leaf-1 {
  font-size: 220px;
  top: -40px; right: -30px;
  transform: rotate(-35deg);
}

.trop-leaf-2 {
  font-size: 130px;
  bottom: -20px; right: 12%;
  transform: rotate(25deg);
  color: var(--yellow);
  opacity: 0.05;
}

.trop-leaf-3 {
  font-size: 80px;
  top: 30px; left: -10px;
  transform: rotate(60deg);
  opacity: 0.05;
}

.trop-sun {
  position: absolute;
  font-size: 100px;
  top: -20px; right: 28%;
  color: var(--tropical);
  opacity: 0.06;
  animation: trop-spin 40s linear infinite;
}

.trop-wave {
  position: absolute;
  font-size: 60px;
  bottom: 10px; left: 5%;
  color: var(--cyan);
  opacity: 0.07;
}

@keyframes trop-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* El container del hero debe estar encima de las deco */
.nav-hero .container { position: relative; z-index: 1; }

.nav-hero-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
}

/* Grid de 6 tarjetas 3×2 */
.nav-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nav-cat-card {
  position: relative;
  height: 270px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

/* Línea amarilla deslizante en la parte inferior */
.nav-cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 3;
}
.nav-cat-card:hover::after { transform: scaleX(1); }

.nav-cat-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.nav-cat-card:hover .nav-cat-bg { transform: scale(1.07); }

.nav-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.30) 60%, transparent 100%);
  transition: background .2s;
}
.nav-cat-card:hover .nav-cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.70) 0%, rgba(0,0,0,.20) 60%, transparent 100%);
}

/* Número grande en esquina superior */
.nav-cat-num {
  position: absolute;
  top: 10px; right: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  z-index: 1;
  user-select: none;
  transition: color .2s;
}
.nav-cat-card:hover .nav-cat-num { color: rgba(204,255,0,0.12); }

.nav-cat-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 22px;
}

.nav-cat-icon {
  font-size: 20px;
  color: var(--yellow);
  margin-bottom: 6px;
}

.nav-cat-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  display: block;
}

.nav-cat-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,.60);
  margin-top: 4px;
  display: block;
  line-height: 1.4;
}

.nav-cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-top: 10px;
  transition: gap .15s;
}
.nav-cat-card:hover .nav-cat-cta { gap: 10px; }

/* ══════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════ */
.marquee-section {
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  animation: marquee-scroll 30s linear infinite;
  padding-right: 32px;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: #000;
  text-transform: lowercase;
  white-space: nowrap;
}

.marquee-dot {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: rgba(0,0,0,.35);
}

/* Palmera decorativa al final del marquee */
.marquee-palm {
  font-size: 26px;
  margin: 0 8px;
  opacity: 0.55;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ══════════════════════════════════════════════════
   SECTION HEADER (número + título + descripción)
══════════════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.section-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 0.85;
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .45;
  flex-shrink: 0;
  min-width: 56px;
  position: relative;
}

.section-num::after {
  content: '';
  display: block;
  width: 24px; height: 3px;
  background: linear-gradient(to right, var(--coral), var(--yellow));
  margin-top: 8px;
  border-radius: 2px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.section-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

/* ══════════════════════════════════════════════════
   SECCIONES DEL MENÚ
══════════════════════════════════════════════════ */
.menu-section {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Hoja tropical decorativa en el fondo de cada sección */
.menu-section::after {
  content: '\f06c'; /* fa-leaf unicode */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: -30px; right: -20px;
  font-size: 200px;
  color: var(--tropGreen);
  opacity: 0.025;
  transform: rotate(20deg);
  pointer-events: none;
  line-height: 1;
}

.menu-section:nth-child(even)::after {
  right: auto; left: -20px;
  transform: rotate(-20deg) scaleX(-1);
}

/* Grid de tarjetas de comida */
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.food-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,200,120,0.04);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.food-card:hover {
  border-color: rgba(0,201,167,0.45);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,201,167,0.12);
}

.food-card-img {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

/* ── Overlay hover en foto de tarjeta ── */
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.food-card:hover .card-img-overlay,
.food-card:focus-within .card-img-overlay {
  opacity: 1;
  pointer-events: all;
}

.card-add-btn {
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .15s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.card-add-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(0,0,0,0.65);
  transform: scale(1.04);
}
.card-add-btn:active { transform: scale(0.97); }

/* ══════════════════════════════════════════════════
   SELECTOR DE ACOMPAÑANTE (papas)
══════════════════════════════════════════════════ */
.side-selector {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,200,130,0.10);
}

.side-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,200,130,0.38);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.side-label i { color: var(--yellow); font-size: 11px; }

.side-options {
  display: flex;
  gap: 6px;
}

.side-btn {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,200,130,0.14);
  color: rgba(255,235,200,0.55);
  cursor: pointer;
  border-radius: 8px;
  transition: all .18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.side-btn:hover {
  background: rgba(255,184,0,0.09);
  border-color: rgba(255,184,0,0.40);
  color: var(--white);
  transform: translateY(-2px);
}
.side-btn.selected {
  background: rgba(255,184,0,0.14);
  border-color: var(--yellow);
  color: var(--yellow);
  box-shadow: 0 3px 12px rgba(255,184,0,0.18);
}
.side-btn .side-emoji { font-size: 18px; line-height: 1; }
.side-btn .side-name  { font-size: 11px; font-weight: 700; }
.side-btn .side-desc  { font-size: 9px; color: rgba(255,200,130,0.40); font-weight: 400; }
.side-btn.selected .side-desc { color: rgba(255,184,0,0.55); }

/* Badge de lado en el panel de pedido */
.order-item-side {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,184,0,0.75);
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.18);
  border-radius: 100px;
  padding: 2px 8px;
  margin-top: 3px;
}

/* ── Ocultar botón overlay en tarjetas con sabores ── */
.food-card.has-flavors .card-add-btn { display: none !important; }
.food-card.has-flavors .card-img-overlay { display: none; }

/* ── Selector de sabores ── */
.flavor-selector {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.flavor-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.flavor-label i { color: var(--yellow); font-size: 11px; }

.flavor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flavor-item {
  display: flex;
  align-items: center;
  gap: 0;
}

.flavor-chip {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.70);
  cursor: pointer;
  border-radius: 100px 0 0 100px;
  transition: all .18s;
  white-space: nowrap;
}

/* Chip sin contador activo → bordes redondeados completos */
.flavor-item:not(.has-qty) .flavor-chip {
  border-radius: 100px;
}

.flavor-chip:hover {
  background: rgba(204,255,0,0.08);
  border-color: rgba(204,255,0,0.45);
  color: var(--white);
}

/* Contador inline de sabor */
.flavor-qty-control {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--yellow);
  border-left: none;
  border-radius: 0 100px 100px 0;
}

.fqty-btn {
  width: 28px; height: 31px;
  background: var(--yellow);
  color: #000;
  font-size: 16px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s;
  flex-shrink: 0;
  line-height: 1;
}
.fqty-btn:hover { background: #d4ff20; }
.fqty-btn:active { transform: scale(0.92); }

.fqty-minus { background: rgba(255,255,255,0.10); color: var(--white); }
.fqty-minus:hover { background: rgba(255,85,85,0.25); color: #FF5555; }

.fqty-num {
  min-width: 28px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--white);
  background: rgba(0,0,0,0.55);
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Chip activo (tiene qty) */
.flavor-item.has-qty .flavor-chip {
  background: rgba(204,255,0,0.12);
  border-color: var(--yellow);
  color: var(--yellow);
  border-radius: 100px 0 0 100px;
}

/* Estado añadido */
.food-card.is-added {
  border-color: rgba(0,201,167,0.60);
  box-shadow: 0 4px 20px rgba(0,201,167,0.15);
}

/* Mantener overlay visible cuando hay qty > 0 */
.food-card.is-added .card-img-overlay {
  opacity: 1;
  pointer-events: all;
}

/* ── Contador de cantidad ── */
.card-qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  overflow: hidden;
  padding: 0;
}

.card-qty-btn {
  width: 36px; height: 36px;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}

.card-qty-btn:hover { background: rgba(255,255,255,0.12); color: var(--yellow); }
.card-qty-btn:active { background: rgba(255,255,255,0.18); }

.card-qty-num {
  min-width: 36px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  line-height: 1;
  color: var(--yellow);
  background: transparent;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  letter-spacing: 0.03em;
  border-left: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 640px) {
  .card-img-overlay {
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.75) 100%);
    align-items: flex-end;
    justify-content: flex-end;
    padding: 10px 12px;
    opacity: 1;
    pointer-events: all;
  }
  .card-add-btn { font-size: 11px; padding: 8px 14px; }
}

.food-card-img img {
  transition: transform .35s ease;
}
.food-card:hover .food-card-img img { transform: scale(1.05); }

.food-card-info {
  padding: 20px;
  flex: 1;
}

.food-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.food-ingredients {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.food-ingredients li {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}

.food-ingredients li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 13px;
}


/* ══════════════════════════════════════════════════
   BANNER DOMICILIO
══════════════════════════════════════════════════ */
.domicilio-banner {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.domicilio-banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 8s ease;
}

.domicilio-banner:hover .domicilio-banner-img { transform: scale(1.04); }

.domicilio-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(6,12,11,0.82) 0%,
    rgba(6,12,11,0.40) 60%,
    transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 40px;
  gap: 6px;
}

.domicilio-banner-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
}

.domicilio-banner-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

/* ── Panel visual de pedido ── */
.form-order-section {
  margin-bottom: 28px;
}

.form-order-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,240,220,0.40);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.form-order-label i { color: var(--yellow); }

.form-order-panel {
  min-height: 72px;
  background: rgba(255,200,120,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-order-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  color: rgba(255,200,130,0.22);
  font-size: 12px;
  text-align: center;
  padding: 8px;
}
.form-order-empty i { font-size: 22px; }

/* ── Tarjeta de item en el panel ── */
.order-item-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: rgba(255,200,120,0.06);
  border: 1px solid rgba(255,200,130,0.12);
  border-radius: 8px;
  overflow: hidden;
  animation: fadeIn .2s ease;
  transition: border-color .2s;
}
.order-item-card:hover { border-color: rgba(255,200,130,0.22); }

/* Fila principal */
.order-item-main {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.order-item-thumb {
  width: 48px; height: 48px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.order-item-no-img {
  width: 48px; height: 48px;
  background: rgba(255,200,130,0.08);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,200,130,0.30);
  font-size: 16px;
  flex-shrink: 0;
}

.order-item-name {
  flex: 1;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  min-width: 0;
}

.order-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

.oqty-btn {
  width: 28px; height: 28px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .12s, color .12s;
}
.oqty-btn:hover { background: rgba(255,255,255,0.10); color: var(--yellow); }

.oqty-num {
  min-width: 28px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  color: var(--yellow);
  padding: 0 2px;
  line-height: 28px;
  border-left: 1px solid rgba(255,255,255,0.10);
  border-right: 1px solid rgba(255,255,255,0.10);
}

.order-item-del {
  width: 28px; height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,100,100,0.45);
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .12s, color .12s;
  flex-shrink: 0;
}
.order-item-del:hover { background: rgba(255,85,85,0.12); color: #FF5555; }

/* ── Sección de personalización ── */
.order-item-customize-wrap {
  width: 100%;
  border-top: 1px solid rgba(255,200,130,0.08);
}

.order-item-customize-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 12px 7px 68px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,200,130,0.40);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color .15s, background .15s;
}
.order-item-customize-btn:hover { color: var(--yellow); background: rgba(255,200,120,0.06); }
.order-item-customize-btn.open { color: var(--yellow); }

.order-item-customize-btn .cust-chevron {
  font-size: 9px;
  transition: transform .2s;
}
.order-item-customize-btn.open .cust-chevron { transform: rotate(180deg); }

.oi-panel {
  display: none;
  padding: 10px 12px 12px 68px;
  background: rgba(0,0,0,0.12);
  border-top: 1px dashed rgba(255,200,130,0.08);
  animation: fadeIn .15s ease;
}
.oi-panel.open { display: block; }

.oi-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,200,130,0.30);
  font-weight: 700;
  margin-bottom: 8px;
}

.oi-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.oi-chip {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px 4px 8px;
  background: rgba(0,201,167,0.08);
  border: 1px solid rgba(0,201,167,0.25);
  color: rgba(255,240,220,0.75);
  cursor: pointer;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all .15s;
  user-select: none;
}
.oi-chip::before {
  content: '✓';
  font-size: 9px;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
}
.oi-chip:hover { background: rgba(0,201,167,0.15); border-color: var(--cyan); }

/* Estado: quitado */
.oi-chip.removed {
  background: rgba(255,85,85,0.07);
  border-color: rgba(255,85,85,0.28);
  color: rgba(255,140,140,0.50);
  text-decoration: line-through;
  text-decoration-color: rgba(255,85,85,0.40);
}
.oi-chip.removed::before { content: '✕'; color: rgba(255,85,85,0.55); }

/* ══════════════════════════════════════════════════
   FORMULARIO DE DOMICILIO — REDISEÑO
══════════════════════════════════════════════════ */

.domicilio-section {
  padding: calc(var(--section-gap) * 1.2) 0 calc(var(--section-gap) * 1.5);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,87,34,0.05) 0%, rgba(6,12,11,1) 30%, rgba(0,201,167,0.05) 100%);
}

/* Decoración: glow blobs de fondo */
.domicilio-section::before {
  content: '';
  position: absolute;
  top: -140px; right: -80px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(204,255,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.domicilio-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,229,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.domicilio-section .container { position: relative; z-index: 1; }

/* ── Barra decorativa superior ── */
.domicilio-section .container::before {
  content: '';
  display: block;
  width: 56px; height: 3px;
  background: var(--yellow);
  margin-bottom: 52px;
}

/* ══════════════════════════════════════════════════
   CUADROS DECORATIVOS DEL FORMULARIO
══════════════════════════════════════════════════ */
.domicilio-form-side {
  position: relative;
}

.form-deco-boxes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.deco-box {
  position: absolute;
  border: 2px solid;
  border-radius: 2px;
}

/* Cuadro grande amarillo — esquina superior izquierda */
.db-1 {
  width: 72px; height: 72px;
  top: -18px; left: -22px;
  border-color: var(--yellow);
  opacity: 0.30;
}
/* Cuadro pequeño amarillo relleno — dentro del grande */
.db-2 {
  width: 32px; height: 32px;
  top: -4px; left: -8px;
  background: var(--yellow);
  border-color: transparent;
  opacity: 0.10;
}
/* Cuadro naranja tropical — esquina superior derecha */
.db-3 {
  width: 56px; height: 56px;
  top: 40px; right: -14px;
  border-color: var(--tropical);
  opacity: 0.35;
}
/* Cuadro cyan — mitad derecha */
.db-4 {
  width: 28px; height: 28px;
  top: 65px; right: 6px;
  background: var(--cyan);
  border-color: transparent;
  opacity: 0.12;
}
/* Cuadro morado — esquina inferior izquierda */
.db-5 {
  width: 48px; height: 48px;
  bottom: 60px; left: -14px;
  border-color: var(--purple);
  opacity: 0.28;
}

/* El contenido del formulario sobre los cuadros */
.domicilio-form-side > *:not(.form-deco-boxes) {
  position: relative;
  z-index: 1;
}

/* ── Botón X para limpiar cada campo ── */
.field-clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.28);
  font-size: 11px;
  border-radius: 50%;
  transition: color .15s, background .15s, opacity .2s, transform .15s;
  opacity: 0;
  pointer-events: none;
  padding: 0;
}

.field-clear-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.field-clear-btn:hover {
  color: #FF5555;
  background: rgba(255,85,85,0.12);
  transform: scale(1.15);
}

/* Para que el texto del input no quede detrás de la X */
.form-field .form-input-line { padding-right: 30px; }

/* Textarea: botón X en esquina superior derecha */
.form-field-textarea .field-clear-btn {
  top: 24px;
}

/* ── Layout dos columnas ── */
.domicilio-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

/* ── Header del formulario ── */
.domicilio-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

.domicilio-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255,87,34,0.35);
}

.domicilio-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.domicilio-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

/* ── Formulario: filas y campos ── */
.domicilio-form { display: flex; flex-direction: column; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
.form-row-full { grid-template-columns: 1fr; }

/* ── Campo con ícono y caja glassmorphism ── */
.form-field {
  position: relative;
  background: rgba(255,200,120,0.04);
  border: 1.5px solid rgba(255,200,130,0.14);
  border-radius: 12px;
  padding: 22px 40px 10px 56px;
  margin-bottom: 14px;
  transition: border-color .22s, box-shadow .22s, background .22s;
  overflow: hidden;
}

.form-field:hover {
  border-color: rgba(255,200,130,0.25);
  background: rgba(255,200,120,0.06);
}

.form-field:focus-within {
  border-color: rgba(0,201,167,0.60);
  box-shadow: 0 0 0 3px rgba(0,201,167,0.08), 0 6px 22px rgba(0,0,0,0.25);
  background: rgba(0,201,167,0.04);
}

/* Error state */
.form-field:has(.form-input-line.error) {
  border-color: rgba(255,85,85,0.55);
  box-shadow: 0 0 0 3px rgba(255,85,85,0.07);
}

/* ── Ícono del campo (inyectado por JS) ── */
.field-icon {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 50px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,200,130,0.30);
  font-size: 15px;
  border-right: 1px solid rgba(255,200,130,0.09);
  background: rgba(255,200,120,0.04);
  transition: color .22s, background .22s;
  pointer-events: none;
}

.form-field:focus-within .field-icon {
  color: var(--cyan);
  background: rgba(0,201,167,0.07);
}

/* ── Input ── */
.form-input-line {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 6px 0 6px;
  outline: none;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  transition: none;
}
.form-input-line::placeholder { color: transparent; }
.form-input-line.error { color: rgba(255,100,100,0.85); }

/* Ocultar barra — ya no se usa */
.form-line-bar { display: none; }

/* ── Label flotante ── */
.form-label-float {
  position: absolute;
  left: 56px;
  top: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255,235,200,0.40);
  transition: top .2s ease, font-size .2s ease, color .2s ease, letter-spacing .2s ease;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.fl-optional { font-size: 0.82em; color: rgba(255,200,130,0.25); }

.form-input-line:focus ~ .form-label-float,
.form-input-line:not(:placeholder-shown) ~ .form-label-float {
  top: 5px;
  font-size: 9px;
  color: var(--cyan);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Textarea oculto — solo para sync */
.form-field-textarea .form-input-line {
  resize: none;
  min-height: 88px;
  line-height: 1.6;
  padding-top: 4px;
}


/* ── Botón de ubicación ── */
.location-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: rgba(0,201,167,0.08);
  border: 1.5px dashed rgba(0,201,167,0.40);
  color: var(--cyan);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: background .2s, border-color .2s, color .2s;
  width: 100%;
  text-align: left;
}

.location-btn:hover {
  background: rgba(0,201,167,0.16);
  border-color: var(--cyan);
  border-style: solid;
}

.location-btn.loading {
  opacity: .7;
  cursor: wait;
}

.location-btn.success {
  background: rgba(0,201,167,0.14);
  border-style: solid;
  border-color: var(--cyan);
  color: var(--cyan);
}

.location-btn-icon { font-size: 16px; flex-shrink: 0; }

@keyframes spin { to { transform: rotate(360deg); } }
.location-spinner { animation: spin .8s linear infinite; flex-shrink: 0; }

.location-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  padding: 8px 14px;
  background: rgba(0,201,167,0.08);
  border: 1px solid rgba(0,201,167,0.25);
  border-radius: 100px;
  width: fit-content;
  transition: background .15s, border-color .15s;
}
.location-preview-link:hover {
  background: rgba(0,201,167,0.18);
  border-color: var(--cyan);
}

/* ── Fila de envío ── */
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.domicilio-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  padding: 16px 34px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}

.domicilio-submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.10);
  transform: translateX(-110%);
  transition: transform .35s ease;
}
.domicilio-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,87,34,0.40); }
.domicilio-submit-btn:hover::after { transform: translateX(0); }
.domicilio-submit-btn:active { transform: translateY(0); box-shadow: none; }

.submit-btn-icon { font-size: 14px; transition: transform .2s; }
.domicilio-submit-btn:hover .submit-btn-icon { transform: translateX(5px) rotate(-20deg); }

.form-note { font-size: 11px; color: rgba(255,255,255,0.22); font-style: italic; line-height: 1.5; }

/* ══════════════════════════════════════════════════
   LADO DERECHO: pasos + badges
══════════════════════════════════════════════════ */

.domicilio-info-side {
  padding-top: 6px;
  position: relative;
}

/* Línea divisoria vertical decorativa */
.domicilio-info-side::before {
  content: '';
  position: absolute;
  top: 0; left: -40px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(204,255,0,0.22) 25%,
    rgba(204,255,0,0.22) 75%,
    transparent 100%);
}

.info-side-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}

/* ── Datos de contacto ── */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  color: var(--tropical);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.contact-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.32);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ── Redes sociales ── */
.social-section-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.28);
  font-weight: 700;
  margin-bottom: 14px;
}

.social-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  transition: border-color .2s, color .2s, background .2s, transform .15s;
}

.social-card:hover { transform: translateY(-2px); }

.social-card i { font-size: 18px; flex-shrink: 0; }

.sc-whatsapp  i { color: #25D366; }
.sc-instagram i { color: #E1306C; }
.sc-facebook  i { color: #1877F2; }
.sc-tiktok    i { color: rgba(255,255,255,0.75); }

.sc-whatsapp:hover  { border-color: rgba(37,211,102,0.40);  color: #25D366; background: rgba(37,211,102,0.07); }
.sc-instagram:hover { border-color: rgba(225,48,108,0.40);  color: #E1306C; background: rgba(225,48,108,0.07); }
.sc-facebook:hover  { border-color: rgba(24,119,242,0.40);  color: #1877F2; background: rgba(24,119,242,0.07); }
.sc-tiktok:hover    { border-color: rgba(255,255,255,0.30); color: var(--white); background: rgba(255,255,255,0.05); }

/* ══════════════════════════════════════════════════
   FOOTER MÍNIMO
══════════════════════════════════════════════════ */
.footer-min {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-min-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.28);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--white); }

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .15s, color .15s;
  flex-shrink: 0;
}
.social-link:hover { border-color: var(--white); color: var(--white); }

/* ══════════════════════════════════════════════════
   RESPONSIVO — TABLET (max 960px)
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-categories  { grid-template-columns: repeat(2, 1fr); }
  .food-grid       { grid-template-columns: repeat(2, 1fr); }
  .domicilio-wrap  { grid-template-columns: 1fr; gap: 52px; }
  .domicilio-info-side::before { display: none; }
  .delivery-badges { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVO — MÓVIL (max 640px)
══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --section-gap: 60px; }

  /* Contenedor */
  .container { padding: 0 18px; }

  /* Navbar simplificado */
  .navbar { padding: 12px 18px; }
  .logo { font-size: 15px; }
  .nav-order-btn { font-size: 11.5px; padding: 9px 14px; }

  /* Tab nav mobile */
  .tab-nav-wrap { top: auto; }
  .tab-btn { padding: 8px 0; }
  .tab-btn i { font-size: 18px; }
  .tab-btn span { font-size: 8px; }

  /* Hero */
  .nav-hero { padding: 36px 0 52px; }
  .nav-hero-header { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
  .nav-categories   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .nav-cat-card     { height: 155px; }
  .nav-cat-name     { font-size: 22px; }
  .nav-cat-icon     { font-size: 17px; margin-bottom: 4px; }
  .nav-cat-content  { padding: 14px; }
  .nav-cat-desc     { display: none; }
  .nav-cat-num      { font-size: 56px; }

  /* Marquee */
  .marquee-item, .marquee-dot { font-size: 22px; }

  /* Section header */
  .section-header { gap: 14px; margin-bottom: 28px; }
  .section-num    { font-size: 48px; min-width: 40px; }
  .section-title  { font-size: clamp(30px, 8vw, 42px); }

  /* Food grid */
  .food-grid      { grid-template-columns: 1fr; gap: 16px; }
  .food-card-img  { height: 200px; }

  /* Form domicilio */
  .domicilio-section .container::before { margin-bottom: 36px; }
  .form-row        { grid-template-columns: 1fr; gap: 0; }
  .domicilio-header { gap: 14px; }
  .domicilio-icon-wrap { width: 44px; height: 44px; font-size: 18px; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .domicilio-submit-btn { justify-content: center; }
  .delivery-badges { grid-template-columns: 1fr 1fr; }

  /* Footer mínimo */
  .footer-min-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links     { flex-wrap: wrap; gap: 16px; }

  /* Buttons */
  .btn-primary, .btn-dark { padding: 14px 22px; }
}

/* ══════════════════════════════════════════════════
   PALETA CARIBEÑA — CARTAGENA DE INDIAS
══════════════════════════════════════════════════ */

body {
  background:
    radial-gradient(ellipse 700px 500px at 0%   0%,   rgba(240,98,26,0.06)  0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 100% 100%, rgba(8,145,168,0.06)  0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 55%  80%,  rgba(232,160,32,0.04) 0%, transparent 60%),
    #FFFDF8;
  color: #2C1A0E;
}

/* ── Sticky header unificado ── */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,248,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(200,140,40,0.18);
}

/* ── Navbar (ya no es sticky por sí solo) ── */
.navbar {
  position: relative;
  top: auto;
  z-index: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(200,140,40,0.14);
  box-shadow: none;
}
.logo { color: #2C1A0E; }

/* ── Tab nav wrap (ya no es sticky por sí solo) ── */
.tab-nav-wrap {
  position: relative;
  top: auto;
  z-index: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}
.tab-btn            { color: rgba(80,48,12,0.45); }
.tab-btn:hover      { color: rgba(80,48,12,0.80); background: rgba(232,160,32,0.07); }
.tab-btn.active     { color: #2C1A0E; }

/* Scroll horizontal suave en la barra de tabs */
.tab-nav {
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

/* ── Transición entre pestañas ── */
@keyframes tabPanelIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tabHeroIn {
  from { transform: scale(1.10); opacity: 0.65; filter: blur(4px); }
  to   { transform: scale(1);    opacity: 1;    filter: blur(0); }
}
@keyframes tabOverlayIn {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes tabContentIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-panel.active {
  animation: tabPanelIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.tab-panel.active .tab-hero-img {
  animation: tabHeroIn 0.80s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.tab-panel.active .tab-hero-overlay {
  animation: tabOverlayIn 0.60s 0.10s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.tab-panel.active .menu-section {
  animation: tabContentIn 0.55s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.tab-panel.active .home-hero {
  animation: tabHeroIn 0.80s cubic-bezier(0.16, 1, 0.3, 1) both;
  overflow: hidden;
}
.tab-panel.active .home-hero-content {
  animation: tabOverlayIn 0.60s 0.10s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.tab-panel.active .home-recomendados,
.tab-panel.active .home-about,
.tab-panel.active .home-reviews-section {
  animation: tabContentIn 0.55s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Tarjetas de comida ── */
.food-card { background: #FFF6E8; border-color: rgba(200,140,40,0.18); }
.food-card:hover { border-color: rgba(8,145,168,0.45); box-shadow: 0 8px 28px rgba(8,145,168,0.10); }
.food-name { color: #2C1A0E; }
.food-ingredients li { color: rgba(80,48,12,0.60); }

/* ── Home — Sobre nosotros ── */
.home-about-title { color: #2C1A0E; }
.home-feature     { color: rgba(80,48,12,0.70); }
.home-photo-placeholder {
  background: rgba(232,160,32,0.05);
  border-color: rgba(200,140,40,0.20);
  color: rgba(180,110,40,0.35);
}
.home-photo-placeholder:hover {
  border-color: rgba(232,160,32,0.45);
  color: rgba(232,160,32,0.65);
}

/* ── Google Reviews ── */
.home-reviews-card {
  background: linear-gradient(135deg, rgba(240,98,26,0.05) 0%, rgba(232,160,32,0.04) 50%, rgba(8,145,168,0.05) 100%);
  border-color: rgba(200,140,40,0.16);
}
.home-reviews-title { color: #2C1A0E; }

/* ── Domicilio ── */
.domicilio-section {
  padding-top: 0;
  background: linear-gradient(160deg, rgba(240,98,26,0.05) 0%, #FFF8EE 35%, rgba(8,145,168,0.05) 100%);
}
.domicilio-title { color: #2C1A0E; }

/* ── Formulario ── */
.form-field {
  background: #FFF8EE;
  border-color: rgba(200,140,40,0.20);
}
.form-field:hover      { border-color: rgba(200,140,40,0.35); background: #FFF8EE; }
.form-field:focus-within { border-color: rgba(8,145,168,0.65); background: #FFFDF8; box-shadow: 0 0 0 3px rgba(8,145,168,0.08), 0 6px 22px rgba(0,0,0,0.10); }
.form-input-line  { color: #2C1A0E; }
.form-label-float { color: rgba(80,48,12,0.45); }
.field-icon {
  color: rgba(150,90,30,0.40);
  background: rgba(232,160,32,0.05);
  border-right-color: rgba(200,140,40,0.12);
}
.form-field:focus-within .field-icon {
  color: var(--cyan);
  background: rgba(8,145,168,0.06);
}
.field-clear-btn { color: rgba(80,48,12,0.35); }
.form-note       { color: rgba(80,48,12,0.42); }

/* ── Panel visual de pedido ── */
.form-order-label { color: rgba(80,48,12,0.50); }
.form-order-panel { background: rgba(232,160,32,0.04); border-color: rgba(200,140,40,0.16); }
.form-order-empty { color: rgba(180,110,40,0.30); }
.order-item-card  { background: #FFF6E8; border-color: rgba(200,140,40,0.14); }
.order-item-card:hover { border-color: rgba(200,140,40,0.28); }
.order-item-name  { color: #2C1A0E; }
.order-item-qty   { background: rgba(232,160,32,0.10); border-color: rgba(200,140,40,0.20); }
.oqty-btn         { color: #2C1A0E; }
.oqty-btn:hover   { color: var(--yellow); background: rgba(232,160,32,0.10); }
.oqty-num {
  color: var(--yellow);
  border-left-color: rgba(200,140,40,0.18);
  border-right-color: rgba(200,140,40,0.18);
}
.order-item-no-img { background: rgba(232,160,32,0.08); color: rgba(180,110,40,0.35); }
.order-item-customize-btn { color: rgba(80,48,12,0.45); }
.order-item-customize-btn:hover,
.order-item-customize-btn.open { color: var(--yellow); background: rgba(232,160,32,0.06); }
.oi-panel { background: rgba(232,160,32,0.04); }
.oi-label { color: rgba(80,48,12,0.40); }
.oi-chip  { background: rgba(8,145,168,0.07); border-color: rgba(8,145,168,0.25); color: rgba(44,26,14,0.72); }

/* ── Acompañante ── */
.side-label { color: rgba(80,48,12,0.48); }
.side-btn   { background: rgba(232,160,32,0.06); border-color: rgba(200,140,40,0.16); color: rgba(80,48,12,0.60); }
.side-btn:hover    { background: rgba(232,160,32,0.12); border-color: rgba(232,160,32,0.40); color: #2C1A0E; }
.side-btn.selected { background: rgba(232,160,32,0.14); border-color: var(--yellow); color: var(--yellow); }
.side-btn .side-desc { color: rgba(80,48,12,0.38); }

/* ── Sabores ── */
.flavor-label { color: rgba(80,48,12,0.48); }
.flavor-chip  { background: rgba(232,160,32,0.06); border-color: rgba(200,140,40,0.18); color: rgba(80,48,12,0.68); }
.flavor-chip:hover { background: rgba(8,145,168,0.08); border-color: rgba(8,145,168,0.40); color: #2C1A0E; }
.fqty-num   { color: #2C1A0E; background: rgba(232,160,32,0.10); }
.fqty-minus { background: rgba(232,160,32,0.08); color: rgba(80,48,12,0.70); }
.fqty-minus:hover { background: rgba(255,85,85,0.12); color: #E85555; }

/* ── Info lateral ── */
.info-side-title      { color: #2C1A0E; }
.contact-label        { color: rgba(80,48,12,0.42); }
.contact-value        { color: rgba(44,26,14,0.85); }
.social-section-label { color: rgba(80,48,12,0.38); }
.social-card {
  background: rgba(232,160,32,0.05);
  border-color: rgba(200,140,40,0.14);
  color: rgba(80,48,12,0.68);
}

/* ── Footer ── */
.footer-logo       { color: rgba(80,48,12,0.35); }
.footer-links a    { color: rgba(80,48,12,0.50); }
.footer-links a:hover { color: #2C1A0E; }
.social-link       { border-color: rgba(200,140,40,0.22); color: rgba(80,48,12,0.50); }
.social-link:hover { border-color: var(--yellow); color: var(--yellow); }

/* ══════════════════════════════════════════════════
   RECOMENDADOS — COMBOS
══════════════════════════════════════════════════ */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.combo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFDF8;
  border: 1.5px solid rgba(200,140,40,0.22);
  box-shadow: 0 6px 28px rgba(180,110,20,0.10);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.combo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.13);
  border-color: var(--yellow);
}

.combo-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 12px rgba(255,87,34,0.30);
}
.combo-badge-green {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--leaf) 100%);
  box-shadow: 0 3px 12px rgba(0,201,167,0.30);
}

.combo-img-wrap {
  height: 270px;
  overflow: hidden;
  position: relative;
}
.combo-card:hover .card-img-overlay,
.combo-card.is-added .card-img-overlay {
  opacity: 1;
  pointer-events: all;
}
.combo-card.is-added {
  border-color: rgba(0,201,167,0.55);
  box-shadow: 0 6px 28px rgba(0,201,167,0.14);
}
.combo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .50s cubic-bezier(0.22, 1, 0.36, 1);
}
.combo-card:hover .combo-img { transform: scale(1.06); }

.combo-body { padding: 28px; }

.combo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #2C1A0E;
  margin-bottom: 8px;
  line-height: 1;
}

.combo-desc {
  font-size: 13px;
  color: rgba(0,0,0,0.50);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.55;
}

.combo-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.combo-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(0,0,0,0.68);
  font-weight: 500;
}
.combo-includes li i {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, rgba(255,184,0,0.12) 0%, rgba(255,87,34,0.08) 100%);
  border: 1px solid rgba(255,184,0,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .combos-grid    { grid-template-columns: 1fr; }
  .combo-img-wrap { height: 220px; }
  .combo-body     { padding: 20px; }
}

/* ── Método de pago ── */
.form-pay-section {
  margin-bottom: 28px;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.pay-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 16px 8px 14px;
  background: #FFF6E8;
  border: 1.5px solid rgba(200,140,40,0.18);
  border-radius: 14px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: border-color .18s, background .18s, transform .15s, box-shadow .18s;
}
.pay-btn:hover {
  border-color: rgba(255,184,0,0.60);
  background: rgba(255,184,0,0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}
.pay-btn.selected {
  border-color: var(--yellow);
  background: rgba(255,184,0,0.07);
  box-shadow: 0 4px 16px rgba(255,184,0,0.22);
}
.pay-btn:active { transform: scale(0.96); }

.pay-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: -0.01em;
  transition: transform .18s;
}
.pay-btn:hover .pay-icon,
.pay-btn.selected .pay-icon { transform: scale(1.10); }

.pay-nequi    { background: linear-gradient(135deg, #e91e8c, #c2185b); }
.pay-davi     { background: linear-gradient(135deg, #ff7700, #e65100); }
.pay-transfer { background: linear-gradient(135deg, #1976d2, #0d47a1); font-size: 14px; }
.pay-cash     { background: linear-gradient(135deg, #43a047, #1b5e20); font-size: 14px; }
.pay-card     { background: linear-gradient(135deg, #7e57c2, #4527a0); font-size: 14px; }

.pay-name {
  font-size: 10px;
  font-weight: 600;
  color: rgba(80,48,12,0.65);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.pay-btn.selected .pay-name { color: #2C1A0E; font-weight: 700; }

.pay-check {
  position: absolute;
  top: 7px; right: 9px;
  font-size: 9px;
  color: var(--yellow);
  opacity: 0;
  transition: opacity .15s, transform .15s;
  transform: scale(0.6);
}
.pay-btn.selected .pay-check { opacity: 1; transform: scale(1); }

/* ── Panel Nequi / Daviplata ── */
.pay-info-panel {
  display: none;
  margin-top: 14px;
  background: #FFF8EE;
  border: 1.5px solid rgba(200,140,40,0.20);
  border-radius: 14px;
  padding: 18px;
  overflow: hidden;
}
.pay-info-panel.visible {
  display: block;
  animation: tabContentIn 0.35s cubic-bezier(0.16,1,0.3,1) both;
}

.pay-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.pay-info-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px; font-weight: 800;
  flex-shrink: 0;
}
.pay-info-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #2C1A0E;
  margin-bottom: 2px;
}
.pay-info-sub {
  font-size: 11px;
  color: rgba(0,0,0,0.48);
}

.pay-fields-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.pay-number-box {
  background: #FFF0DC;
  border: 1.5px solid rgba(200,140,40,0.20);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pay-number-content { flex: 1; }
.pay-number-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(0,0,0,0.38);
  font-weight: 700;
  margin-bottom: 4px;
}
.pay-number-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #2C1A0E;
  letter-spacing: 0.06em;
  display: block;
}

.pay-number-sm {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #2C1A0E;
  display: block;
}

.pay-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(0,201,167,0.08);
  border: 1px solid rgba(0,201,167,0.28);
  border-radius: 100px;
  padding: 7px 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, border-color .15s, color .15s;
}
.pay-copy-btn:hover { background: rgba(0,201,167,0.16); border-color: var(--cyan); }
.pay-copy-btn.copied { color: #43a047; background: rgba(67,160,71,0.10); border-color: #43a047; }

.pay-proof-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px;
  background: #25D366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
}
.pay-proof-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.40);
  color: #fff;
}
.pay-proof-btn i { font-size: 20px; }

@media (max-width: 640px) {
  .pay-number-box { flex-wrap: wrap; }
  .pay-copy-btn   { width: 100%; justify-content: center; }
}

/* ── Tarjeta visual animada ── */
.card-form-wrap {
  display: none;
  margin-top: 18px;
}
.card-form-wrap.visible {
  display: block;
  animation: tabContentIn 0.38s cubic-bezier(0.16,1,0.3,1) both;
}

.credit-card {
  width: 100%;
  max-width: 320px;
  height: 188px;
  margin: 0 auto 22px;
  perspective: 1100px;
}
.credit-card-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}
.credit-card.flipped .credit-card-inner { transform: rotateY(180deg); }

.cc-front, .cc-back {
  position: absolute; inset: 0;
  border-radius: 18px;
  padding: 18px 22px;
  color: #fff;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 12px 38px rgba(94,53,177,0.35);
}
.cc-front {
  background: linear-gradient(135deg, #5E35B1 0%, #8e24aa 55%, #4527a0 100%);
  transform: rotateY(0deg);
}
.cc-back {
  background: linear-gradient(135deg, #4527a0 0%, #6a1fa0 100%);
  transform: rotateY(180deg);
  padding: 0; overflow: hidden;
}

/* Front */
.cc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cc-wifi { font-size: 18px; opacity: 0.70; transform: rotate(90deg); }
.cc-type { font-size: 11px; font-weight: 800; letter-spacing: 0.10em; opacity: 0.85; }
.cc-chip { font-size: 20px; opacity: 0.68; margin-bottom: 10px; display: block; }
.cc-number {
  font-family: 'Courier New', monospace;
  font-size: 15px; letter-spacing: 0.18em;
  font-weight: 600; margin-bottom: 14px;
}
.cc-bottom { display: flex; justify-content: space-between; }
.cc-label {
  display: block; font-size: 8px;
  text-transform: uppercase; letter-spacing: 0.10em;
  opacity: 0.62; margin-bottom: 3px;
}
.cc-value { font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; display: block; }

/* Back */
.cc-band { background: rgba(0,0,0,0.45); height: 42px; margin-top: 24px; }
.cc-sig { display: flex; align-items: center; gap: 10px; padding: 12px 18px; }
.cc-sig-stripe {
  flex: 1; height: 34px;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0.14) 0px, rgba(255,255,255,0.14) 2px,
    rgba(255,255,255,0.05) 2px, rgba(255,255,255,0.05) 6px);
  border-radius: 4px;
}
.cc-cvv-box { background: #fff; border-radius: 6px; padding: 5px 12px; min-width: 52px; text-align: center; }
.cc-cvv-val { display: block; font-family: 'Courier New', monospace; font-size: 15px; font-weight: 700; letter-spacing: 0.12em; color: #333; }

/* Inputs de tarjeta */
.cc-inputs { display: flex; flex-direction: column; }
.cc-field {
  padding-left: 18px !important;
  padding-right: 18px !important;
}
.cc-field .form-label-float { left: 18px !important; }

.cc-secure-note {
  font-size: 11px; color: rgba(0,0,0,0.40);
  display: flex; align-items: center; gap: 6px;
  margin-top: 8px; font-style: italic;
}
.cc-secure-note i { color: var(--cyan); }

@media (max-width: 640px) {
  .credit-card { max-width: 100%; height: 170px; }
  .cc-number { font-size: 13px; letter-spacing: 0.13em; }
}

.pay-error {
  font-size: 11.5px;
  color: #e53935;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 640px) {
  .pay-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pay-btn  { padding: 14px 6px 12px; }
  .pay-icon { width: 36px; height: 36px; font-size: 13px; }
  .pay-name { font-size: 9.5px; }
}

/* ══════════════════════════════════════════════════
   PEDIDO FLOTANTE
══════════════════════════════════════════════════ */
.float-order-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Botón toggle */
.float-order-btn {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,87,34,0.40);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  flex-shrink: 0;
}
.float-order-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,87,34,0.50);
}
.float-order-btn.active { transform: scale(0.94); }

/* Badge de cantidad */
.float-order-badge {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 20px; height: 20px;
  background: var(--cyan);
  color: #fff;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
  animation: badgePop .25s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes badgePop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* Panel del pedido */
.float-order-panel {
  display: none;
  flex-direction: column;
  width: 300px;
  max-height: 420px;
  background: #FFFDF8;
  border-radius: 18px;
  box-shadow: 0 10px 44px rgba(180,110,20,0.16);
  border: 1.5px solid rgba(200,140,40,0.18);
  overflow: hidden;
  transform-origin: bottom right;
}
.float-order-panel.open {
  display: flex;
  animation: floatPanelIn 0.34s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes floatPanelIn {
  from { opacity: 0; transform: scale(0.85) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Header */
.float-order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(200,140,40,0.16);
  flex-shrink: 0;
}
.float-order-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #2C1A0E;
  display: flex;
  align-items: center;
  gap: 7px;
}
.float-order-title i { color: var(--yellow); }
.float-order-close {
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.05);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  transition: background .15s, color .15s;
}
.float-order-close:hover { background: rgba(255,85,85,0.12); color: #FF5555; }

/* Lista de items */
.float-order-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.10) transparent;
}

.float-order-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px 0;
  color: rgba(0,0,0,0.22);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
}
.float-order-empty i { font-size: 30px; }

/* Item individual */
.float-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF0DC;
  border-radius: 10px;
  padding: 8px 10px;
  animation: fadeIn .2s ease both;
}
.float-item-img {
  width: 42px; height: 42px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0;
}
.float-item-no-img {
  width: 42px; height: 42px;
  background: rgba(0,0,0,0.07);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.22);
  font-size: 15px;
  flex-shrink: 0;
}
.float-item-info { flex: 1; min-width: 0; }
.float-item-name {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #2C1A0E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.float-item-meta {
  font-size: 10px;
  color: rgba(0,0,0,0.42);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.float-item-del {
  width: 26px; height: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(180,110,40,0.35);
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 2px;
  transition: background .14s, color .14s, transform .14s;
}
.float-item-del:hover {
  background: rgba(232,85,85,0.12);
  color: #E85555;
  transform: scale(1.15);
}
.float-item-del:active { transform: scale(0.90); }

.float-item-qty-pill {
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* Footer */
.float-order-footer {
  padding: 10px 12px;
  border-top: 1px solid rgba(200,140,40,0.16);
  flex-shrink: 0;
}
.float-order-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255,87,34,0.28);
  transition: transform .15s, box-shadow .15s;
}
.float-order-checkout:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(255,87,34,0.38);
}

@media (max-width: 640px) {
  .float-order-widget { bottom: 20px; right: 20px; }
  .float-order-panel  { width: calc(100vw - 40px); max-width: 300px; }
  .float-order-btn    { width: 52px; height: 52px; font-size: 20px; }
}

/* ── Botón flotante WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform .22s ease, box-shadow .22s ease;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
  color: #fff;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.45);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.80; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

@media (max-width: 640px) {
  .whatsapp-float { width: 52px; height: 52px; font-size: 26px; bottom: 20px; left: 20px; }
}

/* ══════════════════════════════════════════════════
   TARJETAS MODERNAS
══════════════════════════════════════════════════ */

/* Grid más espaciado */
.food-grid {
  gap: 22px;
}

/* Tarjeta con esquinas redondeadas y sombra cálida */
.food-card {
  border-radius: 20px;
  border: none;
  box-shadow:
    0 2px 8px  rgba(180,110,20,0.08),
    0 8px 28px rgba(180,110,20,0.12);
  transition: transform .28s cubic-bezier(0.22,1,0.36,1), box-shadow .28s ease;
}
.food-card:hover {
  transform: translateY(-7px) scale(1.015);
  box-shadow:
    0 4px 12px  rgba(180,110,20,0.10),
    0 20px 50px rgba(180,110,20,0.20);
  border-color: transparent;
}

/* Foto más grande y con esquinas solo arriba */
.food-card-img {
  height: 260px;
  border-radius: 20px 20px 0 0;
}
.food-card-img .photo {
  transition: transform .45s cubic-bezier(0.22,1,0.36,1);
}
.food-card:hover .food-card-img .photo { transform: scale(1.07); }

/* Info con más aire */
.food-card-info {
  padding: 16px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Nombre más grande */
.food-name {
  font-size: 23px;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

/* Precio destacado */
.food-price {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: 0.07em;
  padding: 4px 15px;
  border-radius: 100px;
  margin-bottom: 12px;
  box-shadow: 0 3px 12px rgba(240,98,26,0.32);
  width: fit-content;
  line-height: 1.3;
}

/* Ingredientes más modernos con guión */
.food-ingredients {
  gap: 4px;
}
.food-ingredients li {
  font-size: 11.5px;
  padding-left: 13px;
  color: rgba(80,48,12,0.58);
}
.food-ingredients li::before {
  content: '–';
  color: var(--yellow);
  font-weight: 400;
  font-size: 13px;
  top: -0.5px;
  position: absolute;
  left: 0;
}

/* Overlay de añadir — ocupa menos espacio en las tarjetas grandes */
.card-add-btn {
  font-size: 12px;
  padding: 9px 18px;
}

@media (max-width: 960px) {
  .food-card-img { height: 230px; }
}
@media (max-width: 640px) {
  .food-grid { gap: 14px; }
  .food-card-img { height: 210px; }
  .food-name { font-size: 20px; }
  .food-price { font-size: 17px; }
}

/* ── Recomendados en Home ── */
.home-recomendados {
  padding: var(--section-gap) 0 calc(var(--section-gap) * 0.75);
}

.home-recom-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-recom-header .home-about-title {
  margin-bottom: 10px;
}

.home-recom-desc {
  font-size: 13.5px;
  color: rgba(0,0,0,0.50);
  font-style: italic;
  line-height: 1.65;
}
