/* ═══════════════════════════════════════════
   DISHMATO — STYLESHEET
   style.css
═══════════════════════════════════════════ */

:root {
  --red:      #E8222E;
  --orange:   #FF6B2C;
  --yellow:   #FFD93D;
  --cream:    #FFF8F0;
  --light:    #FFF3E8;
  --dark:     #1A0A00;
  --gray:     #7A6A5A;
  --white:    #ffffff;
  --shadow:   0 8px 32px rgba(232,34,46,0.10);
  --radius:   18px;
}

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

html { scroll-behavior: smooth; }

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

/* ─── COMING SOON BAR ─────────────────────── */
.coming-soon-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #1A0A00 0%, #3D1500 50%, #1A0A00 100%);
  border-bottom: 2px solid var(--orange);
  padding: 8px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cs-badge {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  animation: blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.cs-text {
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

.cs-text span { color: var(--yellow); font-weight: 900; }

.cs-icon { font-size: 1.1rem; animation: spin-slow 4s linear infinite; }

/* When banner is present, shift everything down */
body:has(.coming-soon-bar) nav    { top: 38px; }
body:has(.coming-soon-bar) .hero  { padding-top: 170px; }

/* ─── NAVBAR ──────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,248,240,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(232,34,46,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  transition: top 0.3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(232,34,46,0.35);
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--red); }

.cart-btn {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(232,34,46,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cart-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,34,46,0.45); }

.cart-count {
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  padding: 6px;
}

/* ─── MOBILE NAV ──────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 106px; left: 0; right: 0;
  z-index: 999;
  background: var(--cream);
  border-bottom: 2px solid rgba(232,34,46,0.12);
  flex-direction: column;
  padding: 16px 5vw 20px;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ─── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #FFF8F0 0%, #FFE8D6 40%, #FFD4B5 100%);
  display: flex;
  align-items: center;
  padding: 130px 5vw 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,44,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 580px;
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,44,0.15);
  border: 1.5px solid var(--orange);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 22px;
  animation: fadeInUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: var(--dark);
  letter-spacing: 2px;
  margin-bottom: 10px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin: 18px 0 36px;
  line-height: 1.7;
  font-weight: 600;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  border: none;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232,34,46,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(232,34,46,0.50); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-outline:hover { background: var(--dark); color: white; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 46px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--red);
  letter-spacing: 1px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-image {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%; height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, #FFE8D6 0%, transparent 30%);
  z-index: 1;
}

/* ─── SECTION COMMONS ─────────────────────── */
.section { padding: 80px 5vw; }

.section-header { text-align: center; margin-bottom: 50px; }

.section-tag {
  display: inline-block;
  background: rgba(232,34,46,0.10);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--dark);
  letter-spacing: 1.5px;
  line-height: 1.05;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 10px;
  font-weight: 600;
}

.bg-warm   { background: var(--light); }
.combos-bg { background: linear-gradient(180deg, var(--cream) 0%, var(--light) 100%); }

/* ─── CATEGORY PILLS ──────────────────────── */
.cat-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cat-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
  background: var(--white);
  border: 2px solid #EEE;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cat-pill:hover,
.cat-pill.active {
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 16px rgba(232,34,46,0.35);
  transform: translateY(-2px);
}

/* ─── MENU CARDS ──────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(278px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1.5px solid rgba(255,107,44,0.08);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(232,34,46,0.16);
}

.card-img-wrap { overflow: hidden; position: relative; flex-shrink: 0; }

.card-img {
  width: 100%; height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
  background: #f0e8e0;
}

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

.badge-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-tag.hot { background: linear-gradient(135deg, var(--red), var(--orange)); color: white; }
.badge-tag.new { background: #22D3A0; color: white; }

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

.card-cat {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.card-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.84rem;
  color: var(--gray);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--red);
}

.card-price .old {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 700;
  text-decoration: line-through;
  margin-left: 6px;
}

.add-btn {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(232,34,46,0.35);
  transition: all 0.2s;
  font-weight: 900;
  line-height: 1;
}

.add-btn:hover { transform: scale(1.15) rotate(90deg); }

/* ─── SPECIAL BANNER ──────────────────────── */
.special-banner {
  background: linear-gradient(135deg, var(--red) 0%, #FF4D2E 50%, var(--orange) 100%);
  margin: 0 5vw;
  border-radius: 24px;
  padding: 50px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  position: relative;
  flex-wrap: wrap;
}

.special-banner::before {
  content: '🍔';
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  opacity: 0.12;
  filter: grayscale(1);
  pointer-events: none;
}

.special-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.special-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 700;
}

.special-cta {
  background: white;
  color: var(--red);
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.special-cta:hover { transform: scale(1.05); }

/* ─── HOW IT WORKS ────────────────────────── */
.how-section {
  background: var(--dark);
  padding: 80px 5vw;
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.step {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.step:hover {
  transform: translateY(-6px);
  background: rgba(255,107,44,0.12);
  border-color: var(--orange);
}

.step-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(232,34,46,0.40);
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(255,255,255,0.06);
  letter-spacing: 2px;
  margin-bottom: -8px;
}

.step h3 { font-size: 1.1rem; font-weight: 900; color: white; margin-bottom: 8px; }
.step p  { font-size: 0.88rem; color: rgba(255,255,255,0.50); font-weight: 600; line-height: 1.6; }

/* ─── CART PANEL ──────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(3px);
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-panel {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: min(420px, 100vw);
  background: white;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.cart-panel.open { transform: translateX(0); }

.cart-header {
  padding: 22px 24px;
  border-bottom: 1.5px solid #F0E8E0;
  display: flex; align-items: center; justify-content: space-between;
}

.cart-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.close-cart {
  background: #F5EDEA;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.close-cart:hover { background: #FFD4C2; }

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

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #F5F0EC;
}

.cart-item img {
  width: 64px; height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0e8e0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price { font-size: 0.9rem; font-weight: 900; color: var(--red); }

.qty-ctrl { display: flex; align-items: center; gap: 10px; margin-top: 8px; }

.qty-btn {
  background: #F5EDEA;
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 900;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover { background: linear-gradient(135deg, var(--red), var(--orange)); color: white; }

.qty-val { font-size: 0.95rem; font-weight: 900; min-width: 22px; text-align: center; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1.5px solid #F0E8E0;
  background: #FFF8F0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.cart-total.grand {
  font-size: 1.2rem;
  color: var(--red);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1.5px dashed #EDD;
}

.wa-order-btn {
  background: #25D366;
  color: white;
  border: none;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: 16px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-order-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }

.empty-cart { text-align: center; padding: 60px 20px; color: var(--gray); }
.empty-cart .big-icon { font-size: 4rem; margin-bottom: 14px; }
.empty-cart p { font-size: 1rem; font-weight: 700; }

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--dark);
  padding: 60px 5vw 28px;
  color: rgba(255,255,255,0.70);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 46px;
}

.footer-brand p {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.50);
  max-width: 280px;
}

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: white;
}

.social-btn:hover { background: var(--red); }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 900;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.38); }

.footer-bottom a { color: var(--orange); text-decoration: none; font-weight: 800; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ─── TOAST ───────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--dark);
  color: white;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 8px;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ─── ANIMATIONS ──────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes spin-slow {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-image { display: none; }
  .hero-content { max-width: 100%; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .special-banner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 22px; }
  .cart-panel { width: 100vw; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}
