/* ===== VARIABLES ===== */
:root {
  --bg: #0D0D0D;
  --bg-alt: #1A0A00;
  --dark: #1F1F1F;
  --red: #CC0000;
  --orange: #FF4500;
  --gold: #FFB800;
  --cream: #F5E6D3;
  --text: #F0E0CC;
  --text-muted: #A09080;
  --nav-h: 68px;
  --fire-gradient: linear-gradient(135deg, #CC0000, #FF4500, #FFB800);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 1.25rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #CC0000, #FF4500, #FFB800, #FF4500, #CC0000);
  background-size: 200% 100%;
  animation: fireSlide 4s linear infinite;
}
@keyframes fireSlide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo img { height: 46px; object-fit: contain; }
.nav-menu {
  display: flex;
  gap: 1.75rem;
  flex: 1;
}
.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--fire-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.btn-nav-order {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  transition: background 0.25s, transform 0.2s;
}
.btn-nav-order:hover { background: #b30000; transform: scale(1.04); }
.cart-btn {
  position: relative;
  font-size: 1.35rem;
  color: var(--cream);
  padding: 0.3rem;
  transition: transform 0.2s;
}
.cart-btn:hover, .cart-btn.bounce { animation: cartBounce 0.4s ease; }
@keyframes cartBounce {
  0%,100% { transform: scale(1); }
  40% { transform: scale(1.35); }
  70% { transform: scale(0.9); }
}
.cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.hidden { display: none; }
.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  transition: background 0.25s, color 0.25s;
}
.lang-toggle:hover { background: var(--gold); color: #000; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.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;
  overflow: hidden;
  background: url('img/hero.png') center/cover no-repeat;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 3rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  z-index: 1;
}
.fire-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  bottom: -20px;
  border-radius: 50% 40% 60% 40%;
  opacity: 0;
  animation: riseUp linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes riseUp {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.9; }
  80% { opacity: 0.4; }
  100% { transform: translateY(-105vh) translateX(calc(var(--drift, 0px))) scale(0.2); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
}
.hero-logo {
  animation: heartbeat 2s ease-in-out infinite !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: drop-shadow(0 0 24px rgba(255, 184, 0, 0.5)) !important;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.12); }
  28% { transform: scale(1); }
  42% { transform: scale(1.08); }
  70% { transform: scale(1); }
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(204,0,0,0.85), rgba(255,69,0,0.85));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  animation: pulseFire 2s ease-in-out infinite;
}
@keyframes pulseFire {
  0%, 100% { box-shadow: 0 0 8px rgba(255,69,0,0.4); }
  50% { box-shadow: 0 0 22px rgba(255,184,0,0.7); }
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255,184,0,0.6), 0 0 60px rgba(255,69,0,0.4), 2px 4px 12px rgba(0,0,0,0.8);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: var(--cream);
  text-shadow: 1px 1px 8px rgba(0,0,0,0.9);
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: var(--gold);
  text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  font-size: 0.8rem;
  font-weight: 500;
}
.stat span:first-child { font-size: 1.5rem; }

/* ===== BUTTONS ===== */
.btn-fire {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: filter 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-fire::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-fire:hover { filter: brightness(1.15); transform: translateY(-2px); }
.btn-fire:hover::before { left: 150%; }
.btn-fire.w-full { width: 100%; }
.btn-fire-outline {
  display: inline-block;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.73rem 2rem;
  border-radius: 8px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  text-align: center;
}
.btn-fire-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== INFO BAR ===== */
.info-bar {
  background: linear-gradient(90deg, #2a0000, #1a0a00, #2a0000);
  border-top: 1px solid rgba(255,69,0,0.25);
  border-bottom: 1px solid rgba(255,69,0,0.25);
  padding: 0.6rem 1.25rem;
  overflow-x: auto;
}
.info-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream);
}
.info-item a { color: var(--gold); transition: color 0.2s; }
.info-item a:hover { color: var(--orange); }
.info-item span:first-child { font-size: 1rem; }

/* ===== MEAT SECTION ===== */
.meat-section {
  position: relative;
  padding: 4rem 1.25rem;
  overflow: hidden;
}
.meat-bg {
  position: absolute;
  inset: 0;
  background: url('img/trompo.png') center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}
.meat-section .container { position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255,69,0,0.4), 0 0 40px rgba(255,184,0,0.2);
  margin-bottom: 0.5rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--fire-gradient);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
.meat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.meat-chip {
  background: linear-gradient(135deg, rgba(204,0,0,0.15), rgba(255,69,0,0.1));
  border: 1.5px solid rgba(255,184,0,0.4);
  border-radius: 40px;
  padding: 0.55rem 1rem;
  text-align: center;
  cursor: default;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.meat-chip:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(204,0,0,0.3), rgba(255,69,0,0.2));
  transform: scale(1.04);
}
.meat-chip span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.tortilla-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(255,184,0,0.12), rgba(255,69,0,0.08));
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 0.85rem 2rem;
  max-width: 560px;
  margin: 0 auto;
}
.tortilla-badge span { font-size: 1.5rem; }
.tortilla-badge strong {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--gold);
  text-align: center;
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: 4rem 1.25rem;
  background: var(--bg-alt);
}
.menu-section .section-header { text-align: center; margin-bottom: 1.5rem; }

/* ===== TABS ===== */
.tabs-wrapper { overflow-x: auto; margin-bottom: 2rem; -webkit-overflow-scrolling: touch; }
.tabs-wrapper::-webkit-scrollbar { height: 3px; }
.tabs-wrapper::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }
.tabs {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  white-space: nowrap;
}
.tab-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  border: 1.5px solid rgba(255,69,0,0.3);
  color: var(--text-muted);
  background: transparent;
  transition: all 0.25s;
  white-space: nowrap;
}
.tab-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,69,0,0.4);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== MENU GRID ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ===== MENU CARD ===== */
.menu-card {
  background: var(--dark);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #CC0000, #FF4500, #FFB800);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(255,69,0,0.25); }
.menu-card:hover::before { opacity: 1; }
.menu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover img { transform: scale(1.05); }
.card-body {
  padding: 1rem 1rem 1.1rem;
}
.card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}
.card-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem;
  border-radius: 8px;
  transition: filter 0.2s, transform 0.15s;
}
.btn-add-cart:hover { filter: brightness(1.15); transform: scale(1.02); }
.btn-ask-price {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-ask-price:hover { background: var(--gold); color: #000; }

/* ===== CART PANEL ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background: var(--bg-alt);
  border-left: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: -8px 0 40px rgba(204,0,0,0.2);
  z-index: 1200;
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
  display: flex;
  flex-direction: column;
}
.cart-panel::before {
  content: '';
  position: absolute;
  top: 0; left: -3px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--orange), var(--gold));
}
.cart-panel.open { transform: translateX(0); }
.cart-header {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,69,0,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}
.close-cart {
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 0.3rem;
  transition: color 0.2s;
}
.close-cart:hover { color: var(--red); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.cart-empty span { font-size: 3rem; display: block; margin-bottom: 1rem; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item-name {
  flex: 1;
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 500;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,69,0,0.2);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  font-weight: 600;
}
.qty-btn:hover { background: var(--orange); color: #fff; }
.qty-val {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  min-width: 18px;
  text-align: center;
}
.cart-item-price {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
  min-width: 52px;
  text-align: right;
}
.cart-footer {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,69,0,0.2);
  flex-shrink: 0;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}
.cart-total span:last-child { color: var(--gold); }

/* ===== CATERING SECTION ===== */
.catering-section {
  position: relative;
  padding: 5rem 1.25rem;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.catering-bg {
  position: absolute;
  inset: 0;
  background: url('img/catering.png') center/cover no-repeat;
  z-index: 0;
}
.catering-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.70);
  z-index: 1;
}
.catering-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.catering-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(204,0,0,0.9), rgba(255,69,0,0.9));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.25rem;
  border-radius: 30px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.catering-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255,184,0,0.5), 2px 4px 12px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
}
.catering-sub {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.catering-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.catering-list li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 8px;
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== FORM SECTION ===== */
.form-section {
  padding: 4.5rem 1.25rem;
  background: var(--bg-alt);
}
.catering-form {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(31,31,31,0.7);
  border: 1.5px solid rgba(255,69,0,0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group.full-width { grid-column: 1/-1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-family: 'Oswald', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(13,13,13,0.8);
  border: 1.5px solid rgba(255,69,0,0.25);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.25s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,69,0,0.12);
}
.form-group select option { background: #1F1F1F; }
.form-group textarea { resize: vertical; min-height: 110px; }
.catering-form .btn-fire {
  margin-top: 0.5rem;
  padding: 0.8rem 2.5rem;
  font-size: 1rem;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 4.5rem 1.25rem;
  background: var(--bg);
}
.google-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.rating-score {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.stars { font-size: 1rem; }
.rating-label { color: var(--text-muted); font-size: 0.85rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.review-card {
  background: var(--dark);
  border: 1px solid rgba(255,69,0,0.12);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,69,0,0.15);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.review-header img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.review-header strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 2px;
}
.review-card > p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 4.5rem 1.25rem;
  background: var(--bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.contact-item > span { font-size: 1.3rem; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.contact-item a { color: var(--cream); font-size: 0.9rem; transition: color 0.2s; }
.contact-item a:hover { color: var(--orange); }
.contact-item p { color: var(--cream); font-size: 0.9rem; margin: 0; }
.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,69,0,0.1);
  border: 1.5px solid rgba(255,69,0,0.3);
  color: var(--orange);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.social-icon:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.map-wrapper { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 4px solid transparent;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #CC0000, #FF4500, #FFB800, #FF4500, #CC0000);
  background-size: 200% 100%;
  animation: fireSlide 4s linear infinite;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 200px;
}
.footer-brand img { width: 55px; height: 55px; object-fit: contain; }
.footer-brand h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--orange);
  margin-top: 2px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-width: 200px;
}
.footer-contact a, .footer-contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .meat-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 1050;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.5rem; }
  .btn-nav-order { display: none; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .catering-form { padding: 1.75rem 1.25rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-logo { width: 110px !important; max-width: 110px !important; height: 110px !important; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-fire, .hero-buttons .btn-fire-outline { width: 100%; max-width: 300px; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .cart-panel { width: 100vw; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.85rem; }
  .meat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1rem; }
  .stat { font-size: 0.72rem; }
  .info-container { gap: 1rem; font-size: 0.75rem; }
}
