/* ============================================================
   BURRITOS BRO — style.css
   ============================================================ */

:root {
  --azul:       #1565C0;
  --azul-claro: #1976D2;
  --dorado:     #F5C518;
  --blanco:     #FFFFFF;
  --gris-claro: #F8F9FA;
  --gris-texto: #555555;
  --verde-wa:   #25D366;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--blanco);
  color: var(--gris-texto);
  overflow-x: hidden;
}

/* ── TOP BANNER ──────────────────────────────────────────── */
.top-banner {
  background: var(--azul);
  color: var(--dorado);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 1001;
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
}

.banner-btn {
  background: var(--dorado);
  color: var(--azul);
  border: none;
  border-radius: 20px;
  padding: 3px 10px;
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.banner-btn:hover { opacity: 0.85; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: var(--blanco);
  box-shadow: 0 2px 20px rgba(27,58,107,0.15);
  position: sticky;
  top: 38px;
  z-index: 1000;
  height: 68px;
}

.navbar-inner {
  height: 100%;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#navMenu {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: var(--azul);
  text-decoration: none;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--dorado); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-llamar {
  background: var(--azul);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.3s;
  white-space: nowrap;
}
.btn-llamar:hover { background: var(--azul-claro); }

#cart-btn {
  background: var(--dorado);
  color: var(--azul);
  border: none;
  border-radius: 25px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.3s;
  white-space: nowrap;
}
#cart-btn:hover { opacity: 0.85; }

#lang-btn {
  background: transparent;
  border: 2px solid var(--azul);
  color: var(--azul);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
#lang-btn:hover { background: var(--azul); color: #fff; }

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--azul);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 5px 0;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-7px); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,58,107,0.85) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(245,197,24,0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 20px 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(245,197,24,0.7);
  animation: float-up linear infinite;
}
.hero-particles span:nth-child(1)  { left:5%;  width:5px;  height:5px;  animation-duration:8s;  animation-delay:0s;   }
.hero-particles span:nth-child(2)  { left:15%; width:8px;  height:8px;  animation-duration:10s; animation-delay:1s;   }
.hero-particles span:nth-child(3)  { left:25%; width:4px;  height:4px;  animation-duration:7s;  animation-delay:2s;   }
.hero-particles span:nth-child(4)  { left:35%; width:6px;  height:6px;  animation-duration:9s;  animation-delay:0.5s; }
.hero-particles span:nth-child(5)  { left:50%; width:5px;  height:5px;  animation-duration:11s; animation-delay:3s;   }
.hero-particles span:nth-child(6)  { left:60%; width:7px;  height:7px;  animation-duration:8s;  animation-delay:1.5s; }
.hero-particles span:nth-child(7)  { left:70%; width:4px;  height:4px;  animation-duration:10s; animation-delay:2.5s; }
.hero-particles span:nth-child(8)  { left:80%; width:6px;  height:6px;  animation-duration:7s;  animation-delay:0s;   }
.hero-particles span:nth-child(9)  { left:88%; width:5px;  height:5px;  animation-duration:9s;  animation-delay:4s;   }
.hero-particles span:nth-child(10) { left:95%; width:8px;  height:8px;  animation-duration:12s; animation-delay:1s;   }

@keyframes float-up {
  0%   { bottom:-10px; opacity:0; transform:translateX(0) scale(1);    }
  10%  { opacity:1; }
  90%  { opacity:1; }
  100% { bottom:110%; opacity:0; transform:translateX(20px) scale(0.5); }
}

/* Hero logo heartbeat */
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  14%     { transform: scale(1.1); }
  28%     { transform: scale(1); }
  42%     { transform: scale(1.06); }
  70%     { transform: scale(1); }
}
.hero-logo { animation: heartbeat 2s ease-in-out infinite !important; }
@media (max-width: 768px) {
  .hero-logo {
    width: 120px !important;
    max-width: 120px !important;
    height: 120px !important;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(245,197,24,0.95);
  color: var(--azul);
  font-family: 'Fredoka One', cursive;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  color: var(--dorado);
  letter-spacing: 3px;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
  margin-bottom: 8px;
}

.hero-tagline {
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-phone-block {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--dorado);
  border-radius: 20px;
  padding: 24px 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-phone-block p {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.btn-call-hero {
  display: inline-block;
  background: var(--dorado);
  color: var(--azul);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 2px;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(245,197,24,0.5);
  transition: all 0.3s;
  margin-bottom: 16px;
}
.btn-call-hero:hover { background: #fff; color: var(--azul); }

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-sec-hero {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-sec-hero:hover { background: #fff; color: var(--azul); }

.btn-wa-hero {
  display: inline-block;
  background: var(--verde-wa);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
}
.btn-wa-hero:hover { background: #1da851; }

/* ── INFO BAR ────────────────────────────────────────────── */
.info-bar {
  background: #1565C0;
  padding: 12px 5%;
  text-align: center;
}
.info-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.info-sep {
  color: #F5C518;
  font-weight: 700;
}
@media(max-width:600px) {
  .info-sep { display: none; }
  .info-content { flex-direction: column; gap: 4px; }
}

/* ── MENU ────────────────────────────────────────────────── */
.menu-section {
  background: var(--blanco);
  padding: 70px 5%;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  color: var(--azul);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 8px;
}

.section-line {
  width: 80px;
  height: 4px;
  background: var(--dorado);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-sep {
  grid-column: 1 / -1;
  background: var(--gris-claro);
  padding: 12px 20px;
  border-radius: 10px;
  margin: 30px 0 20px;
  text-align: center;
  font-family: 'Bebas Neue', cursive;
  color: var(--azul);
  font-size: 1.5rem;
  border-left: 4px solid var(--dorado);
}

.quesadilla-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gris-texto);
  font-size: 0.85rem;
  font-style: italic;
  margin: -10px 0 10px;
  padding: 0 10px;
}

.menu-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(27,58,107,0.08);
  border: 1px solid rgba(27,58,107,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(21,101,192,0.18);
  border-color: #F5C518;
  border-width: 2px;
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.menu-card:hover img {
  transform: scale(1.05);
}

@media(max-width:600px) {
  .menu-card img {
    height: 160px;
  }
}

.card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-family: 'Fredoka One', cursive;
  color: var(--azul);
  font-size: 0.9rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.card-price {
  display: inline-block;
  color: #1565C0;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 4px;
  letter-spacing: 0px;
}

.card-desc {
  color: #777;
  font-size: 0.75rem;
  margin-bottom: 8px;
  line-height: 1.3;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-add {
  width: 100%;
  background: var(--azul);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.85rem;
  padding: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: auto;
}
.btn-add:hover { background: var(--dorado); color: var(--azul); }

/* ── CARRITO ─────────────────────────────────────────────── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
}
.cart-overlay.show { display: block; }

.cart-panel {
  position: fixed;
  right: -400px;
  top: 0;
  width: 380px;
  height: 100vh;
  background: #fff;
  border-left: 3px solid var(--azul);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-panel.open { right: 0; }

.cart-header {
  background: var(--azul);
  color: var(--dorado);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 { font-family: 'Fredoka One', cursive; font-size: 1.1rem; }
.cart-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.cart-empty {
  text-align: center;
  color: #999;
  margin-top: 50px;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(27,58,107,0.1);
  gap: 8px;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  display: block;
  color: var(--azul);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price { color: var(--dorado); font-weight: 800; font-size: 0.85rem; }
.cart-item-controls { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.qty-btn {
  background: var(--azul);
  color: #fff;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-controls span { min-width: 20px; text-align: center; font-weight: 700; color: var(--azul); }

.cart-footer {
  padding: 15px 20px;
  border-top: 2px solid rgba(27,58,107,0.1);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--azul);
}
.cart-total-row #cart-total-amount { color: var(--dorado); font-size: 1.3rem; }

#whatsapp-order {
  background: var(--verde-wa);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
#whatsapp-order:hover { background: #1da851; }

/* ── CATERING ────────────────────────────────────────────── */
.catering-section {
  background: var(--gris-claro);
  padding: 70px 5%;
}

.catering-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 30px auto 0;
  align-items: start;
}

.catering-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 24px;
}

.catering-list {
  list-style: none;
  padding: 0;
}
.catering-list li {
  color: var(--azul);
  font-size: 1rem;
  font-weight: 700;
  padding: 7px 0;
  border-bottom: 1px solid rgba(27,58,107,0.1);
}

.catering-form-wrap {
  background: var(--blanco);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(27,58,107,0.08);
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  color: var(--azul);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--gris-claro);
  border: 2px solid rgba(27,58,107,0.2);
  color: #333;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--azul);
}
.form-group textarea { resize: vertical; }

.btn-catering-wa {
  background: var(--verde-wa);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  border: none;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.3s;
}
.btn-catering-wa:hover { background: #1da851; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-section {
  background: var(--blanco);
  padding: 70px 5%;
  text-align: center;
}

.google-badge { margin-bottom: 40px; }
.google-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.google-stars { font-size: 1.3rem; margin-bottom: 6px; }
.google-stars strong { color: var(--dorado); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: var(--blanco);
  border: 1px solid rgba(27,58,107,0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover { border-color: var(--dorado); transform: translateY(-4px); }

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-header strong { color: var(--azul); font-size: 0.95rem; display: block; }
.review-stars { color: var(--dorado); font-size: 1rem; }
.review-text {
  color: var(--gris-texto);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
}

/* ── MAP ─────────────────────────────────────────────────── */
.map-section {
  background: var(--gris-claro);
  padding: 50px 5%;
}

/* ── SOCIAL ──────────────────────────────────────────────── */
.social-section {
  background: var(--azul);
  padding: 50px 5%;
  text-align: center;
}
.social-section h2 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 2rem;
  margin-bottom: 30px;
}

.social-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 16px;
  padding: 24px 32px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  min-width: 150px;
}
.social-card:hover {
  background: rgba(245,197,24,0.2);
  transform: translateY(-3px);
}
.social-card i { font-size: 2.5rem; color: var(--dorado); }
.social-card span { font-size: 0.9rem; font-weight: 600; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section {
  background: var(--gris-claro);
  padding: 70px 5%;
  text-align: center;
}
.about-section h2 {
  font-family: 'Bebas Neue', cursive;
  color: var(--azul);
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.about-text {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gris-texto);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--azul);
  padding: 50px 5% 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col { display: flex; flex-direction: column; gap: 8px; }

.footer-brand {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 1.4rem;
}
.footer-col > span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.footer-col h4 {
  font-family: 'Fredoka One', cursive;
  color: var(--dorado);
  margin-bottom: 4px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--dorado); }
.footer-col p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.footer-social { display: flex; gap: 14px; margin-top: 6px; }
.footer-social a { color: rgba(255,255,255,0.7); font-size: 1.3rem; transition: color 0.3s; text-decoration: none; }
.footer-social a:hover { color: var(--dorado); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--verde-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── FADE-IN ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .catering-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .catering-img { height: 300px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  #navMenu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 106px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 16px;
  }
  #navMenu.open { display: flex; }
  .nav-actions #lang-btn { display: none; }
  .hero-title { font-size: 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  #cart-panel { width: 100%; right: -100%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .btn-call-hero { font-size: 1.3rem; padding: 13px 24px; }
  .social-cards { flex-direction: column; align-items: center; }
  .hero-phone-block { padding: 16px 20px; }
}

/* FILTROS DE CATEGORÍA */
.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
  padding: 0 10px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #1565C0;
  color: #1565C0;
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  background: rgba(21,101,192,0.1);
  color: #1565C0;
}

.filter-btn.active {
  background: #1565C0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(21,101,192,0.35);
  transform: translateY(-1px);
}

@media(max-width:480px) {
  .filter-btn {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
}

/* BADGE DE CATEGORÍA EN CARDS */

.menu-card.hidden { display: none !important; }

/* Card body mejorado */
.card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-family: 'Fredoka One', cursive;
  color: #1A1A1A;
  font-size: 0.95rem;
  margin-bottom: 4px;
  line-height: 1.2;
}

.card-body p {
  color: #888;
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}

.btn-add {
  width: 100%;
  background: #1565C0;
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.85rem;
  padding: 9px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-add:hover {
  background: #F5C518;
  color: #1A1A1A;
  transform: translateY(-1px);
}

/* Animación suave al cargar cards */
.menu-card.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.img-ref {
  text-align: center;
  font-size: 0.62rem;
  color: #bbb;
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  margin: 0;
  padding: 2px 0;
  background: #f9f9f9;
}
