/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: #1a0900; color: #fff; overflow-x: hidden; }

/* ===== VARIABLES ===== */
:root {
  --bg: #1a0900;
  --bg-alt: #2a1000;
  --yellow: #F5C518;
  --red: #CC0000;
  --orange: #FF6B00;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Bangers', cursive; letter-spacing: 2px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== HERO LOGO ANIMATIONS ===== */
@keyframes heroFade {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heartbeat {
  0%   { transform: scale(1); }
  14%  { transform: scale(1.1); }
  28%  { transform: scale(1); }
  42%  { transform: scale(1.08); }
  70%  { transform: scale(1); }
  100% { transform: scale(1); }
}
.hero-logo {
  animation: heroFade 0.7s ease both, heartbeat 1.8s ease-in-out 0.8s infinite;
}

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

/* ===== BUTTONS ===== */
.btn-yellow, .btn-red-solid {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}
.btn-yellow { background: var(--yellow); color: #1a0900; }
.btn-yellow:hover { background: #ffd429; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,0.45); }
.btn-red-solid { background: var(--red); color: var(--white); }
.btn-red-solid:hover { background: #a80000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,0,0,0.4); }

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

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--yellow); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 700px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.65rem 0;
  background: rgba(26,9,0,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,197,24,0.18);
  transition: var(--transition);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo img { height: 55px; object-fit: contain; }
.nav-menu { display: flex; list-style: none; gap: 0.2rem; align-items: center; }
.nav-link {
  padding: 0.45rem 0.85rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem; font-weight: 500;
  border-radius: 8px; transition: var(--transition);
}
.nav-link:hover { color: var(--yellow); background: rgba(245,197,24,0.1); }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.btn-nav-order {
  background: var(--yellow); color: #1a0900;
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; border: none; cursor: pointer;
  transition: var(--transition); white-space: nowrap; font-family: 'Poppins', sans-serif;
}
.btn-nav-order:hover { background: #ffd429; transform: translateY(-1px); }
.btn-nav-call {
  background: var(--red); color: var(--white);
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  transition: var(--transition); white-space: nowrap;
}
.btn-nav-call:hover { background: #a80000; }
.cart-btn {
  position: relative;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--white); width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.cart-btn:hover { border-color: var(--yellow); background: rgba(245,197,24,0.12); }
.cart-btn.bounce { animation: cartBounce 0.4s ease; }
@keyframes cartBounce {
  0%,100% { transform: scale(1); }
  30% { transform: scale(1.3) rotate(-10deg); }
  60% { transform: scale(0.9) rotate(5deg); }
}
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--red); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px; border: 2px solid var(--bg);
}
.cart-count.hidden { display: none; }
.lang-toggle {
  background: transparent; border: 1.5px solid var(--yellow); color: var(--yellow);
  padding: 0.38rem 0.8rem; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.lang-toggle:hover { background: var(--yellow); color: var(--bg); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: url('img/hero.png') center center / cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.hero-content { position: relative; z-index: 1; padding: 6rem 1.5rem 3rem; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(245,197,24,0.15); border: 1px solid var(--yellow);
  color: var(--yellow); padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem;
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.35); }
  50% { box-shadow: 0 0 0 10px rgba(245,197,24,0); }
}
.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--yellow); line-height: 1.05;
  margin-bottom: 0.75rem;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.5), 0 2px 20px rgba(245,197,24,0.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.88); margin-bottom: 2rem; font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.stat {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 500;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat.animated { opacity: 1; transform: translateY(0); }
.stat span:first-child { font-size: 1.5rem; }

/* ===== INFO BAR ===== */
.info-bar {
  background: #7a0000; padding: 0.85rem 0;
  border-top: 2px solid var(--yellow); border-bottom: 2px solid var(--yellow);
}
.info-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.92); white-space: nowrap; }
.info-item a { color: var(--yellow); font-weight: 700; }
.info-item a:hover { text-decoration: underline; }
.info-social { display: flex; align-items: center; gap: 0.75rem; }
.info-social a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.info-social a:hover { color: var(--yellow); }

/* ===== MENU SECTION ===== */
.menu-section { padding: 5rem 0; background: var(--bg); }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; }
.tab-btn {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(245,197,24,0.3);
  color: rgba(255,255,255,0.7); padding: 0.5rem 1.2rem; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.tab-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.tab-btn.active { background: var(--yellow); border-color: var(--yellow); color: #1a0900; font-weight: 700; }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== MENU CARDS ===== */
.menu-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.menu-cards--todos { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .menu-cards--todos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .menu-cards--todos { grid-template-columns: 1fr; } }

.menu-card {
  background: var(--bg-alt); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(245,197,24,0.3); transition: var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(245,197,24,0.2); border-color: rgba(245,197,24,0.6); }
.menu-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:hover img { transform: scale(1.05); }
.card-info { padding: 0.85rem 1rem 0.25rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.card-info h3 { font-family: 'Bangers', cursive; font-size: 1.15rem; letter-spacing: 1.5px; color: var(--white); flex: 1; }
.price { color: var(--yellow); font-weight: 700; font-size: 0.95rem; white-space: nowrap; flex-shrink: 0; }
.card-desc { padding: 0 1rem 0.6rem; font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.card-actions { padding: 0 1rem 1rem; }
.btn-add-cart {
  width: 100%; background: var(--yellow); color: #1a0900; border: none;
  padding: 0.55rem 1rem; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-add-cart:hover { background: #ffd429; transform: translateY(-1px); }
.btn-add-cart:active { transform: scale(0.97); }
.btn-consultar {
  width: 100%; background: transparent; border: 1.5px solid rgba(245,197,24,0.5);
  color: var(--yellow); padding: 0.5rem 1rem; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-consultar:hover { background: rgba(245,197,24,0.1); border-color: var(--yellow); }
.card-info-badge {
  width: 100%; background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange); padding: 0.45rem 1rem; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600;
  text-align: center;
}

/* ===== MENU LIST ===== */
.menu-list { list-style: none; border: 1px solid rgba(245,197,24,0.12); border-radius: 12px; overflow: hidden; }
.menu-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem; color: rgba(255,255,255,0.85); gap: 1rem; transition: background 0.2s;
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li:hover { background: rgba(245,197,24,0.05); }
.list-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.btn-add-list {
  background: var(--yellow); color: #1a0900; border: none;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 1.1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); line-height: 1;
}
.btn-add-list:hover { background: #ffd429; transform: scale(1.1); }
.btn-add-list:active { transform: scale(0.95); }

/* ===== CATERING SECTION ===== */
.catering-banner {
  position: relative; padding: 6rem 0; text-align: center;
  background: url('img/catering.png') center center / cover no-repeat;
}
.catering-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.catering-content { position: relative; z-index: 1; max-width: 750px; margin: 0 auto; padding: 0 1.5rem; }
.catering-badge {
  display: inline-block;
  background: rgba(245,197,24,0.15); border: 1px solid var(--yellow);
  color: var(--yellow); padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem;
}
.catering-content h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--yellow); margin-bottom: 0.75rem; }
.catering-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; }
.catering-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; text-align: left; }
.catering-list li { color: rgba(255,255,255,0.9); font-size: 0.92rem; display: flex; align-items: center; gap: 0.5rem; }
.catering-list li::before { content: "✓"; color: var(--yellow); font-weight: 700; flex-shrink: 0; }

.catering-form-section { background: var(--bg-alt); padding: 5rem 0; }
.catering-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  max-width: 700px; margin: 0 auto;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--yellow); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 0.75rem 1rem; color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--yellow); background: rgba(245,197,24,0.06);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-alt); color: var(--white); }
.form-group textarea { resize: vertical; }
.form-submit { grid-column: 1 / -1; width: 100%; font-size: 1rem; padding: 1rem; border-radius: 12px; margin-top: 0.5rem; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); }

/* ===== REVIEWS SECTION ===== */
.reviews-section { padding: 5rem 0; background: var(--bg); }
.google-logo { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.rating { display: flex; align-items: center; gap: 0.75rem; }
.rating-score { font-family: 'Bangers', cursive; font-size: 2.5rem; color: var(--white); letter-spacing: 1px; }
.stars { font-size: 1.3rem; letter-spacing: 2px; }
.rating-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.review-card {
  background: var(--bg-alt); border: 1px solid rgba(245,197,24,0.15);
  border-radius: 16px; padding: 1.5rem; transition: var(--transition);
}
.review-card:hover { border-color: rgba(245,197,24,0.4); transform: translateY(-4px); }
.reviewer-avatar { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--yellow); margin-bottom: 0.75rem; }
.reviewer-info { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.reviewer-info strong { color: var(--yellow); font-size: 0.95rem; }
.review-card p { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.7; font-style: italic; }

/* ===== FOOTER ===== */
.footer { background: #0f0500; padding: 3rem 0 1.5rem; border-top: 2px solid rgba(245,197,24,0.25); }
.footer-content { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; align-items: start; }
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand img { height: 60px; object-fit: contain; }
.footer-brand-name { font-family: 'Bangers', cursive; font-size: 1.5rem; color: var(--yellow); letter-spacing: 2px; }
.footer-brand-slogan { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-style: italic; }
.footer-info { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-info p, .footer-info a { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.5; }
.footer-info a:hover { color: var(--yellow); }
.footer-badge { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-top: 0.25rem; }
.footer-social { display: flex; gap: 0.75rem; align-items: flex-start; justify-content: flex-end; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: rgba(255,255,255,0.07);
  border-radius: 50%; color: rgba(255,255,255,0.7); transition: var(--transition);
}
.social-link:hover { background: var(--yellow); color: var(--bg); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.designer { color: var(--yellow); font-weight: 600; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: #25D366; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse 2s infinite; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== CART OVERLAY ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* ===== CART PANEL ===== */
.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px;
  background: #1e0900; border-left: 2px solid var(--yellow);
  z-index: 1200; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.6);
}
.cart-panel.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(245,197,24,0.2); flex-shrink: 0;
}
.cart-title { font-family: 'Bangers', cursive; font-size: 1.4rem; color: var(--yellow); letter-spacing: 2px; }
.cart-close {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); width: 34px; height: 34px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.cart-close:hover { background: var(--red); border-color: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: rgba(245,197,24,0.3); border-radius: 4px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 200px; gap: 0.75rem; color: rgba(255,255,255,0.35);
}
.cart-empty span { font-size: 2.5rem; }
.cart-empty p { font-size: 0.88rem; }
.cart-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  animation: slideInRight 0.25s ease;
}
@keyframes slideInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.cart-item-name { flex: 1; font-size: 0.85rem; color: var(--white); line-height: 1.4; }
.cart-item-qty { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.cart-item-qty button {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); width: 26px; height: 26px; border-radius: 6px;
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); line-height: 1;
}
.cart-item-qty button:hover { background: var(--yellow); color: var(--bg); border-color: var(--yellow); }
.cart-item-qty span { min-width: 22px; text-align: center; font-weight: 700; font-size: 0.9rem; color: var(--yellow); }
.cart-item-price { font-weight: 700; color: var(--yellow); font-size: 0.88rem; min-width: 52px; text-align: right; flex-shrink: 0; }
.cart-item-remove { background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer; font-size: 1rem; padding: 2px 4px; border-radius: 4px; transition: var(--transition); flex-shrink: 0; }
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(245,197,24,0.2); flex-shrink: 0; background: rgba(0,0,0,0.2); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.cart-total-amount { font-family: 'Bangers', cursive; font-size: 1.6rem; color: var(--yellow); letter-spacing: 1px; }
.btn-order-wa {
  width: 100%; background: var(--yellow); color: #1a0900; border: none;
  padding: 1rem; border-radius: 12px;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-order-wa:hover { background: #ffd429; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,9,0,0.97); flex-direction: column;
    justify-content: center; align-items: center; gap: 1.5rem;
    transform: translateX(-100%); transition: transform 0.35s ease; z-index: 900;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; padding: 0.6rem 1.5rem; }
  .btn-nav-call { display: none; }
  .hero-logo { width: 110px !important; max-width: 110px !important; height: 110px !important; }
  .hero-stats { gap: 1.5rem; }
  .menu-cards { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .menu-card img { height: 160px; }
  .catering-list { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .catering-form { grid-template-columns: 1fr; }
  .cart-panel { width: 95vw; }
}

@media (max-width: 480px) {
  .menu-tabs { gap: 0.35rem; }
  .tab-btn { font-size: 0.78rem; padding: 0.4rem 0.9rem; }
  .info-container { gap: 0.75rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cart-panel { width: 100vw; border-left: none; border-top: 2px solid var(--yellow); }
}
