:root {
  --brand-red: #c8102e;
  --brand-orange: #f47920;
  --brand-yellow: #ffd100;
  --brand-dark: #4a1e00;
  --brand-brown: #7a3800;
  --brand-cream: #fff8ee;
  --brand-gold: #e8a000;
  --ember1: #ff6a00;
  --ember2: #ff9500;
  --ember3: #ffcc00;
  --header-h: 64px;
  --footer-h: 42px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--brand-dark);
  color: var(--brand-cream);
  overflow-x: hidden;
  padding-top: var(--header-h);
  padding-bottom: var(--footer-h);
}

/* ══════════════════════════════════════════════
   PARTICLES CANVAS
══════════════════════════════════════════════ */
#ember-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: .55;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(58,24,0,.93);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
}

.header-logo {
  display: flex; align-items: center; gap: 12px;
}

.header-logo img {
  height: 44px; width: auto;
  object-fit: contain;
  border-radius: 0;
}

.header-logo span {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--brand-yellow);
  text-shadow: 0 0 20px rgba(255,165,0,.5);
}

nav {
  display: flex; gap: 28px; align-items: center;
}

nav a {
  color: var(--brand-cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .25s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transition: transform .25s;
}

nav a:hover { color: var(--brand-yellow); }
nav a:hover::after { transform: scaleX(1); }

.ig-btn-header {
  display: flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s !important;
  box-shadow: 0 4px 18px rgba(253,29,29,.3);
}

.ig-btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(253,29,29,.5) !important;
}

.ig-btn-header::after { display:none !important; }

.ham-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.ham-btn span {
  display: block;
  width: 26px; height: 2px;
  background: var(--brand-yellow);
  border-radius: 2px;
  transition: .3s;
}

/* ══════════════════════════════════════════════
   WELCOME MODAL
══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 1;
  transition: opacity .4s;
}

.modal-overlay.hidden { opacity: 0; pointer-events: none; }

.welcome-modal {
  background: linear-gradient(160deg, #5a2200 0%, #461a00 60%, #321000 100%);
  border: 2px solid var(--brand-orange);
  border-radius: 20px;
  max-width: 460px; width: 100%;
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow: 0 0 60px rgba(244,121,32,.35), 0 30px 80px rgba(0,0,0,.6);
  position: relative;
  animation: modalIn .5s cubic-bezier(.34,1.56,.64,1);
}

@keyframes modalIn {
  from { transform: scale(.8) translateY(30px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.welcome-modal .modal-logo {
  width: 120px; height: auto;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
  border-radius: 0;
  filter: drop-shadow(0 4px 24px rgba(244,121,32,.35));
}

.welcome-modal .combo-img-free {
  width: 100%; max-width: 320px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
  animation: shakeMe 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.welcome-modal h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  color: var(--brand-yellow);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.welcome-modal p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,248,238,.85);
  margin-bottom: 6px;
}

.combo-highlight {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  color: var(--brand-orange);
  letter-spacing: 1px;
  margin: 12px 0 22px;
  display: block;
}

.combo-price {
  font-size: 28px !important;
  color: var(--brand-yellow) !important;
  font-weight: 800 !important;
}

.btn-welcome {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(200,16,46,.4);
  transition: transform .25s, box-shadow .25s;
}

.btn-welcome:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(200,16,46,.6);
}

/* ══════════════════════════════════════════════
   SECTIONS BASE
══════════════════════════════════════════════ */
section { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════
   HERO – SECTION 1
══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/image/fondo.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(20,6,0,.94) 0%,
    rgba(20,6,0,.78) 45%,
    rgba(20,6,0,.52) 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 80px;
  width: 100%;
}

.hero-img-wrap {
  flex-shrink: 0;
  width: 420px;
  position: relative;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-red));
  opacity: .25;
  filter: blur(28px);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: .2; transform: scale(1); }
  50%       { opacity: .45; transform: scale(1.05); }
}

.hero-img-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform .5s cubic-bezier(.34,1.2,.64,1);
  filter: drop-shadow(0 20px 60px rgba(244,121,32,.3));
  animation: imgFloat 4s ease-in-out infinite;
}

@keyframes imgFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-content { flex: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 16px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px; height: 2px;
  background: var(--brand-orange);
}

.hero-content h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(56px, 7vw, 96px);
  line-height: .95;
  color: var(--brand-yellow);
  text-shadow: 0 4px 40px rgba(255,200,0,.3);
  margin-bottom: 8px;
}

.hero-content h1 span {
  color: var(--brand-orange);
  display: block;
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
  color: rgba(255,248,238,.8);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-subtitle strong {
  color: var(--brand-yellow);
}

.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(200,16,46,.4);
  transition: transform .25s, box-shadow .25s;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(200,16,46,.6);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--brand-yellow);
  border: 2px solid var(--brand-yellow);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, color .25s, transform .25s;
}

.btn-outline:hover {
  background: var(--brand-yellow);
  color: var(--brand-dark);
  transform: translateY(-4px);
}

.hero-badge {
  margin-top: 48px;
  display: flex; gap: 32px; flex-wrap: wrap;
}

.badge-item {
  text-align: center;
}

.badge-item strong {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 38px;
  color: var(--brand-orange);
  line-height: 1;
}

.badge-item span {
  font-size: 12px;
  color: rgba(255,248,238,.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* IG btn hero */
.ig-hero {
  position: absolute;
  top: 32px; right: 40px;
  z-index: 10;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(253,29,29,.3);
  transition: transform .25s, box-shadow .25s;
}

.ig-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(253,29,29,.5);
}

/* ══════════════════════════════════════════════
   SECTION 2 – MENU
══════════════════════════════════════════════ */
#menu {
  padding: 100px 40px;
  background: linear-gradient(180deg, #1e0900 0%, #321200 50%, #1e0900 100%);
  position: relative;
}

#menu::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), var(--brand-yellow), var(--brand-orange), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(42px, 6vw, 72px);
  color: var(--brand-yellow);
  letter-spacing: 3px;
  text-shadow: 0 0 40px rgba(255,200,0,.2);
}

.section-title span { color: var(--brand-orange); }

.section-sub {
  font-size: 15px;
  color: rgba(255,248,238,.65);
  margin-top: 10px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}

/* Order bar */
#order-bar {
  display: none;
  background: linear-gradient(135deg, rgba(200,16,46,.15), rgba(244,121,32,.15));
  border: 1px solid rgba(244,121,32,.4);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  animation: slideDown .4s ease;
}

@keyframes slideDown {
  from { transform: translateY(-16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

#order-bar.visible { display: flex; }

.order-bar-info {
  display: flex; align-items: center; gap: 14px;
}

.order-bar-info .cart-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 8px var(--brand-orange));
}

.order-bar-info div strong {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  color: var(--brand-yellow);
  letter-spacing: 1px;
}

.order-bar-info div span {
  font-size: 13px;
  color: rgba(255,248,238,.7);
}

.order-bar-btns {
  display: flex; gap: 10px;
}

.btn-send-order {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff; border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'Bebas Neue', cursive;
  font-size: 17px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200,16,46,.4);
  transition: transform .2s;
}

.btn-send-order:hover { transform: scale(1.04); }

.btn-clear-order {
  background: rgba(255,255,255,.08);
  color: rgba(255,248,238,.7);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.btn-clear-order:hover { background: rgba(255,255,255,.15); }

/* Category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.cat-card {
  background: linear-gradient(160deg, rgba(61,26,0,.7), rgba(26,10,0,.9));
  border: 1px solid rgba(244,121,32,.2);
  border-radius: 18px;
  padding: 28px 16px 24px;
  text-align: center;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.34,1.2,.64,1),
              border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(244,121,32,.12), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}

.cat-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--brand-orange);
  box-shadow: 0 16px 48px rgba(244,121,32,.25);
}

.cat-card:hover::before { opacity: 1; }

.cat-img {
  width: 100%; height: 140px;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
  transition: transform .4s cubic-bezier(.34,1.4,.64,1);
  filter: drop-shadow(0 8px 20px rgba(244,121,32,.2));
}

.cat-card:hover .cat-img {
  transform: scale(1.15) rotate(-3deg);
}

.cat-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--brand-yellow);
  margin-bottom: 4px;
}

.cat-card p {
  font-size: 11px;
  color: rgba(255,248,238,.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════
   SECTION 3 – UBICACION
══════════════════════════════════════════════ */
#ubicacion {
  padding: 100px 40px;
  background: var(--brand-dark);
  position: relative;
  overflow: hidden;
}

.ubicacion-bg {
  position: absolute; inset: 0;
  background-image: url('/image/fondo.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.ubicacion-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(30,9,0,.88) 0%,
    rgba(30,9,0,.72) 50%,
    rgba(30,9,0,.88) 100%);
}

.ubicacion-inner {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ubicacion-info h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--brand-yellow);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.ubicacion-info h2 span { color: var(--brand-orange); }

.ubicacion-info p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,248,238,.75);
  margin-bottom: 32px;
}

.horario-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}

.horario-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}

.horario-list li .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 8px var(--brand-orange);
  flex-shrink: 0;
}

.horario-list li strong { color: var(--brand-yellow); margin-right: 4px; }

.map-embed {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 2px solid rgba(244,121,32,.3);
  height: 380px;
}

.map-embed iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* ══════════════════════════════════════════════
   SECTION 4 – QUIENES SOMOS
══════════════════════════════════════════════ */
#nosotros {
  padding: 100px 40px;
  background: linear-gradient(180deg, #3d1600 0%, #522000 50%, #3d1600 100%);
  position: relative;
}

#nosotros::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-red), var(--brand-orange), var(--brand-yellow), var(--brand-orange), var(--brand-red), transparent);
}

.nosotros-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nosotros-text .section-tag { margin-bottom: 8px; }

.nosotros-text h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--brand-yellow);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px;
}

.nosotros-text h2 span { color: var(--brand-orange); }

.nosotros-text p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,248,238,.75);
  margin-bottom: 18px;
}

.nosotros-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.value-card {
  background: rgba(244,121,32,.06);
  border: 1px solid rgba(244,121,32,.15);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
}

.value-card .icon { font-size: 24px; margin-bottom: 6px; }

.value-card h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  color: var(--brand-yellow);
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.value-card p {
  font-size: 11px;
  color: rgba(255,248,238,.5);
  margin-bottom: 0;
  line-height: 1.4;
}

.nosotros-visual {
  position: relative;
}

.nosotros-logo-big {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  filter: drop-shadow(0 8px 32px rgba(244,121,32,.25));
}

@keyframes rotateSlow {
  from { box-shadow: 0 0 80px rgba(244,121,32,.2), 0 0 160px rgba(200,16,46,.1); }
  50%  { box-shadow: 0 0 120px rgba(244,121,32,.4), 0 0 200px rgba(200,16,46,.2); }
  to   { box-shadow: 0 0 80px rgba(244,121,32,.2), 0 0 160px rgba(200,16,46,.1); }
}

.years-badge {
  position: absolute;
  bottom: 10px; right: 0;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(200,16,46,.5);
}

.years-badge strong {
  font-family: 'Bebas Neue', cursive;
  font-size: 42px;
  line-height: 1;
  color: var(--brand-yellow);
}

.years-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

/* ══════════════════════════════════════════════
   FOOTER MENU (fixed bottom primary)
══════════════════════════════════════════════ */
.footer-menu {
  position: fixed;
  bottom: var(--footer-h);
  left: 0; right: 0;
  background: rgba(58,22,0,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(244,121,32,.3);
  display: none;
  justify-content: center;
  gap: 0;
  z-index: 999;
}

.footer-menu a {
  color: rgba(255,248,238,.7);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  transition: color .2s, background .2s;
  text-align: center;
}

.footer-menu a:hover {
  color: var(--brand-yellow);
  background: rgba(244,121,32,.08);
}

/* ══════════════════════════════════════════════
   FOOTER DERECHOS
══════════════════════════════════════════════ */
footer.rights {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--footer-h);
  background: rgba(42,16,0,.98);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
}

footer.rights p {
  font-size: 11px;
  color: rgba(255,248,238,.45);
  letter-spacing: 1px;
  text-align: center;
}

footer.rights a {
  color: var(--brand-orange);
  text-decoration: none;
}

/* ══════════════════════════════════════════════
   CART FLOAT BUTTON
══════════════════════════════════════════════ */
.cart-float {
  position: fixed;
  right: 20px;
  bottom: calc(var(--footer-h) + 82px);
  z-index: 1002;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.cart-float.visible { display: flex; }

.cart-float-btn {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(200,16,46,.5);
  transition: transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s;
  display: flex; align-items: center; justify-content: center;
}

.cart-float-btn:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 10px 36px rgba(200,16,46,.7);
}

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  font-size: 11px; font-weight: 800;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.cart-float-label {
  font-size: 10px; font-weight: 700;
  color: var(--brand-yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: calc(var(--footer-h) + 16px);
  z-index: 1001;
  background: #25d366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  transition: transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 10px 36px rgba(37,211,102,.7);
}

.whatsapp-float svg {
  width: 30px; height: 30px; fill: #fff;
}

/* ══════════════════════════════════════════════
   CART REVIEW MODAL
══════════════════════════════════════════════ */
.cart-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(8px);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cart-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-modal {
  background: linear-gradient(160deg, #5a2000 0%, #3d1400 100%);
  border: 1px solid rgba(244,121,32,.4);
  border-radius: 20px;
  max-width: 480px; width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
  transform: translateY(30px) scale(.96);
  transition: transform .35s cubic-bezier(.34,1.2,.64,1);
}

.cart-modal-overlay.open .cart-modal {
  transform: translateY(0) scale(1);
}

.cart-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(244,121,32,.2);
}

.cart-modal-header h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--brand-yellow);
}

.cart-modal-close {
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}

.cart-modal-close:hover { background: rgba(200,16,46,.5); }

.cart-modal-list {
  padding: 16px 24px;
  max-height: 45vh;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 10px;
}

.cart-modal-list::-webkit-scrollbar { width: 4px; }
.cart-modal-list::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
.cart-modal-list::-webkit-scrollbar-thumb { background: var(--brand-orange); border-radius: 4px; }

.cart-item-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px 14px;
}

.cart-item-row .ci-name {
  flex: 1;
  font-size: 13px; font-weight: 600;
  color: var(--brand-cream);
}

.cart-item-row .ci-qty {
  font-size: 13px;
  color: rgba(255,248,238,.55);
  white-space: nowrap;
}

.cart-item-row .ci-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  color: var(--brand-orange);
  white-space: nowrap;
}

.cart-item-row .ci-remove {
  background: none; border: none;
  color: rgba(255,100,100,.6);
  font-size: 16px; cursor: pointer;
  transition: color .2s; padding: 0 2px;
}

.cart-item-row .ci-remove:hover { color: #ff4444; }

.cart-empty {
  text-align: center;
  padding: 32px 0;
  font-size: 14px;
  color: rgba(255,248,238,.5);
}

.cart-empty span { display: block; font-size: 40px; margin-bottom: 10px; }

.cart-modal-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(244,121,32,.2);
}

.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}

.cart-total-row span {
  font-size: 14px; font-weight: 700;
  color: rgba(255,248,238,.7);
  text-transform: uppercase; letter-spacing: 1px;
}

.cart-total-row strong {
  font-family: 'Bebas Neue', cursive;
  font-size: 30px;
  color: var(--brand-yellow);
}

.cart-action-btns {
  display: flex; gap: 10px;
}

.cart-action-btns .btn-send-order { flex: 1; }
.cart-action-btns .btn-clear-order { flex-shrink: 0; }

/* ══════════════════════════════════════════════
   MENU MODAL
══════════════════════════════════════════════ */
.menu-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.menu-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-modal {
  background: linear-gradient(160deg, #3d1500 0%, #2a0e00 100%);
  border: 1px solid rgba(244,121,32,.35);
  border-radius: 20px;
  max-width: 560px; width: 100%;
  margin: auto;
  overflow: visible;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
  transform: translateY(30px);
  transition: transform .35s cubic-bezier(.34,1.2,.64,1);
  position: relative;
}

.menu-modal > img.menu-modal-hero {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.menu-modal-overlay.open .menu-modal {
  transform: translateY(0);
}

.menu-modal-hero {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: rgba(0,0,0,.4);
  display: block;
  padding: 12px;
  animation: shakeMe 5s ease-in-out infinite;
  transform-origin: center bottom;
  cursor: pointer;
}

.menu-modal-body {
  padding: 24px;
}

.menu-modal-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  color: var(--brand-yellow);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.menu-modal-subtitle {
  font-size: 13px;
  color: rgba(255,248,238,.55);
  margin-bottom: 20px;
}

.menu-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10;
}

.menu-modal-close:hover { background: rgba(200,16,46,.5); }

/* Product list */
.product-list {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 38vh;
  overflow-y: auto;
  padding-right: 4px;
}

.product-list::-webkit-scrollbar { width: 4px; }
.product-list::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
.product-list::-webkit-scrollbar-thumb { background: var(--brand-orange); border-radius: 4px; }

.product-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color .2s, background .2s;
}

.product-row:hover {
  border-color: rgba(244,121,32,.35);
  background: rgba(244,121,32,.06);
}

.product-info { flex: 1; }

.product-info strong {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--brand-cream);
  margin-bottom: 2px;
}

.product-info span {
  font-size: 12px;
  color: rgba(255,248,238,.5);
  line-height: 1.4;
}

.product-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  color: var(--brand-orange);
  white-space: nowrap;
  margin-right: 10px;
}

.qty-ctrl {
  display: flex; align-items: center; gap: 8px;
}

.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(244,121,32,.4);
  background: rgba(244,121,32,.1);
  color: var(--brand-cream);
  font-size: 18px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}

.qty-btn:hover { background: rgba(244,121,32,.3); }

.qty-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  color: var(--brand-yellow);
  min-width: 18px; text-align: center;
}

.btn-add-to-order {
  display: flex;
  align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff; border: none;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(200,16,46,.3);
}

.btn-add-to-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,16,46,.5);
}

/* Variants */
.variant-group { margin-bottom: 14px; }

.variant-group label {
  display: block;
  font-size: 12px; font-weight: 700;
  color: rgba(255,248,238,.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.variant-btns { display: flex; flex-wrap: wrap; gap: 8px; }

.var-btn {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,248,238,.75);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  cursor: pointer;
  transition: .2s;
}

.var-btn:hover, .var-btn.active {
  background: rgba(244,121,32,.25);
  border-color: var(--brand-orange);
  color: var(--brand-yellow);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 36px;
    padding: 60px 24px 60px;
    text-align: center;
  }
  .hero-img-wrap { width: 100%; max-width: 380px; }
  .hero-eyebrow { justify-content: center; }
  .hero-badge { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .ig-hero { top: 14px; right: 14px; font-size: 12px; padding: 8px 14px; }

  .ubicacion-inner { grid-template-columns: 1fr; gap: 36px; }
  .nosotros-inner { grid-template-columns: 1fr; gap: 40px; }

  nav { display: none; }
  .ham-btn { display: flex; }

  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px; }

  #menu, #ubicacion, #nosotros { padding: 70px 20px; }

  .nosotros-values { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  header { padding: 0 16px; }
  .header-logo span { font-size: 22px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros-values { grid-template-columns: repeat(2, 1fr); }
  .order-bar-btns { flex-direction: column; width: 100%; }
  .btn-send-order, .btn-clear-order { width: 100%; text-align: center; }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42,16,0,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  letter-spacing: 4px;
  color: var(--brand-cream);
  text-decoration: none;
  transition: color .2s;
}

.mobile-nav a:hover { color: var(--brand-yellow); }

.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: var(--brand-cream);
  font-size: 32px;
  cursor: pointer;
}

/* Divider ornament */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 0 0 60px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,121,32,.4));
}

.divider::after {
  background: linear-gradient(90deg, rgba(244,121,32,.4), transparent);
}

.divider span { font-size: 20px; color: var(--brand-orange); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes shakeMe {
  0%,  70%, 100% { transform: translateX(0) rotate(0deg); }
  73%             { transform: translateX(-5px) rotate(-2deg); }
  76%             { transform: translateX(5px) rotate(2deg); }
  79%             { transform: translateX(-3px) rotate(-1deg); }
  82%             { transform: translateX(3px) rotate(1deg); }
  85%             { transform: translateX(-1px) rotate(0deg); }
  88%             { transform: translateX(0) rotate(0deg); }
}

/* ══════════════════════════════════════════════
   SPLASH SCREEN
══════════════════════════════════════════════ */
#splash-screen {
  position: fixed;
  inset: 0;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#splash-screen img {
  width: 220px;
  max-width: 80%;
  animation: pulse 2s infinite;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255,255,255,.2);
  border-top: 4px solid #f7c948;
  border-radius: 50%;
  margin-top: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}