/* ═══════════════════════════════════════════
   ZELICIOUS — STYLES
   Volcanic Glass palette: dark, fiery, bold
═══════════════════════════════════════════ */

:root {
  --fire: #FF6B2B;
  --fire-bright: #FF8C42;
  --fire-glow: #FFB088;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --dark-4: #2E2E2E;
  --dark-5: #3A3A3A;
  --text-primary: #F5F5F5;
  --text-secondary: #A0A0A0;
  --text-muted: #666;
  --success: #4CAF50;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-fire: 0 4px 20px rgba(255,107,43,0.35);
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Bricolage Grotesque', sans-serif;
  --nav-h: 72px;
  --header-h: 60px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow: hidden;
  height: 100dvh;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}
img { display: block; width: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea { font-family: var(--font-body); }
a { text-decoration: none; color: inherit; }

/* ── Screens ── */
.screen {
  position: absolute;
  inset: 0;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.screen.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.screen.slide-out {
  opacity: 0;
  transform: translateX(-30px);
}

/* ── Scroll Content ── */
.scroll-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: calc(var(--nav-h) + 16px);
}
.scroll-content::-webkit-scrollbar { display: none; }
.cart-scroll { padding-bottom: 24px; }

/* ═══════════════════════════════════════════
   SPLASH SCREEN
═══════════════════════════════════════════ */
#screen-splash {
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.splash-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, #3D1A0A 0%, #1A0A02 40%, #0D0D0D 100%);
}
.splash-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 40px;
}
.splash-logo { margin-bottom: 60px; }
.logo-flame {
  font-size: 72px;
  animation: flamePulse 1.5s ease-in-out infinite;
  display: block;
  margin-bottom: 16px;
}
@keyframes flamePulse {
  0%, 100% { transform: scale(1) rotate(-3deg); filter: drop-shadow(0 0 20px #FF6B2B); }
  50% { transform: scale(1.1) rotate(3deg); filter: drop-shadow(0 0 40px #FF8C42); }
}
.logo-text {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(135deg, #FF6B2B, #FFB088, #FF6B2B);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s linear infinite;
  letter-spacing: -1px;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.logo-tagline {
  font-size: 16px;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
}
.splash-loader { width: 200px; margin: 0 auto; }
.loader-bar {
  height: 3px;
  background: var(--dark-4);
  border-radius: 99px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--fire), var(--fire-bright));
  border-radius: 99px;
  width: 0%;
  animation: loadFill 2s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--dark-3);
}
.location-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--dark-3);
  padding: 8px 14px;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.2s;
}
.location-pill:active { background: var(--dark-4); }
.loc-icon { font-size: 14px; }
.loc-text { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.loc-arrow { font-size: 11px; color: var(--fire); }
.top-bar-right { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  position: relative;
  transition: background 0.2s, transform 0.15s;
}
.icon-btn:active { transform: scale(0.92); background: var(--dark-4); }
.notif-dot {
  position: absolute;
  top: 8px; right: 8px;
  width: 8px; height: 8px;
  background: var(--fire);
  border-radius: 50%;
  border: 2px solid var(--dark);
}
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--fire);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--dark);
  transition: transform 0.2s;
}
.cart-count.bump { animation: bump 0.3s ease; }
@keyframes bump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero-section { padding: 16px 20px 0; }
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--dark-2);
  min-height: 220px;
}
.hero-img-wrap { position: relative; height: 220px; }
.hero-img { height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.4) 50%, transparent 100%);
}
.hero-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,107,43,0.2);
  border: 1px solid rgba(255,107,43,0.4);
  color: var(--fire-bright);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.hero-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-fire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--fire), var(--fire-bright));
  color: white;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-fire);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  width: 100%;
  letter-spacing: 0.3px;
}
.btn-fire:active { transform: scale(0.97); filter: brightness(0.9); }
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--fire);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--fire);
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  transition: background 0.2s;
}
.btn-outline:active { background: rgba(255,107,43,0.1); }

/* ═══════════════════════════════════════════
   SEARCH
═══════════════════════════════════════════ */
.search-section { padding: 16px 20px 0; }
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--fire); }
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 14px;
}
.search-bar input::placeholder { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════════ */
.categories-section { padding: 20px 0 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}
.section-sub { font-size: 13px; color: var(--text-muted); }
.categories-scroll {
  display: flex;
  gap: 10px;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0;
  background: var(--dark-3);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 99px;
  border: 1.5px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.cat-pill.active {
  background: rgba(255,107,43,0.15);
  color: var(--fire-bright);
  border-color: rgba(255,107,43,0.4);
}
.cat-pill:active { transform: scale(0.95); }

/* ═══════════════════════════════════════════
   MENU GRID
═══════════════════════════════════════════ */
.menu-section { padding: 20px 0 0; }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 20px;
}
.menu-card {
  background: var(--dark-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--dark-4);
  transition: transform 0.2s, border-color 0.2s;
  animation: fadeUp 0.4s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-card:active { transform: scale(0.97); }
.deal-card { grid-column: span 2; display: flex; flex-direction: row; }
.deal-card .menu-img-wrap { width: 140px; flex-shrink: 0; height: auto; }
.deal-card .menu-img { height: 100%; }
.deal-card .menu-info { flex: 1; }
.menu-img-wrap {
  position: relative;
  height: 120px;
  overflow: hidden;
}
.menu-img { height: 100%; transition: transform 0.3s; }
.menu-card:hover .menu-img { transform: scale(1.05); }
.menu-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(255,107,43,0.9);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}
.menu-badge.new { background: rgba(76,175,80,0.9); }
.menu-badge.deal { background: rgba(255,193,7,0.9); color: #1A1A1A; }
.menu-info { padding: 12px; }
.menu-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}
.menu-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
}
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fire-bright);
}
.old-price {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}
.add-btn {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--fire), var(--fire-bright));
  color: white;
  font-size: 20px;
  font-weight: 300;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(255,107,43,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
  line-height: 1;
}
.add-btn:active { transform: scale(0.88); }
.add-btn.added {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  box-shadow: 0 2px 10px rgba(76,175,80,0.4);
}
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}
.no-results span { font-size: 40px; display: block; margin-bottom: 12px; }

/* ═══════════════════════════════════════════
   INFO STRIP
═══════════════════════════════════════════ */
.info-strip {
  display: flex;
  gap: 10px;
  padding: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.info-strip::-webkit-scrollbar { display: none; }
.info-card {
  flex-shrink: 0;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}
.info-icon { font-size: 22px; }
.info-label { font-size: 11px; color: var(--text-secondary); font-weight: 500; text-align: center; }

/* ═══════════════════════════════════════════
   BOTTOM NAV
═══════════════════════════════════════════ */
.bottom-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  z-index: 20;
  backdrop-filter: blur(20px);
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  flex: 1;
}
.nav-item.active { color: var(--fire); }
.nav-item:active { opacity: 0.7; }
.cart-nav { position: relative; }
.cart-nav-bubble {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--fire), var(--fire-bright));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: var(--shadow-fire);
  margin-top: -20px;
  border: 3px solid var(--dark-2);
}

/* ═══════════════════════════════════════════
   INNER HEADER
═══════════════════════════════════════════ */
.inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--dark-3);
  background: var(--dark);
  flex-shrink: 0;
}
.back-btn {
  width: 38px; height: 38px;
  background: var(--dark-3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  transition: background 0.2s;
}
.back-btn:active { background: var(--dark-4); }
.inner-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.clear-btn {
  font-size: 14px;
  color: var(--fire);
  font-weight: 500;
  padding: 6px 12px;
}

/* ═══════════════════════════════════════════
   CART SCREEN
═══════════════════════════════════════════ */
.cart-empty {
  text-align: center;
  padding: 60px 40px;
}
.empty-icon { font-size: 60px; margin-bottom: 16px; }
.cart-empty h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
}
.cart-empty p { color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }
.cart-items { padding: 16px 20px; }
.cart-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-2);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid var(--dark-4);
  animation: fadeUp 0.3s ease both;
}
.cli-name {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}
.cli-price {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--fire-bright);
  font-weight: 700;
  margin-right: 10px;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-3);
  border-radius: 99px;
  padding: 4px 10px;
}
.qty-btn {
  width: 24px; height: 24px;
  background: var(--dark-4);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.qty-btn:active { background: var(--fire); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 16px; text-align: center; }
.cart-summary {
  background: var(--dark-2);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 16px 0;
  border: 1px solid var(--dark-4);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--dark-4);
}
.summary-row:last-child { border-bottom: none; }
.total-row {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 12px;
}
.free-tag { color: var(--success); font-weight: 600; }
.order-note { margin-bottom: 20px; }
.note-label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.note-input {
  width: 100%;
  background: var(--dark-3);
  border: 1.5px solid var(--dark-4);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 13px;
  resize: none;
  height: 80px;
  outline: none;
  transition: border-color 0.2s;
}
.note-input:focus { border-color: var(--fire); }
.checkout-btn { margin-top: 4px; }

/* ═══════════════════════════════════════════
   TRACKING SCREEN
═══════════════════════════════════════════ */
.order-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 20px;
  border: 1px solid var(--dark-4);
}
.order-id-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.order-label { font-size: 13px; color: var(--text-muted); }
.order-id {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fire-bright);
}
.order-items-preview {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.6;
}
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px solid var(--dark-4);
}
.fire-text { color: var(--fire-bright); }
.track-steps { padding: 20px; }
.track-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  opacity: 0.35;
  transition: opacity 0.5s;
}
.track-step.completed { opacity: 1; }
.track-step.active { opacity: 1; }
.step-icon {
  width: 44px; height: 44px;
  background: var(--dark-3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 2px solid var(--dark-4);
  transition: border-color 0.5s, background 0.5s;
}
.track-step.completed .step-icon,
.track-step.active .step-icon {
  border-color: var(--fire);
  background: rgba(255,107,43,0.1);
}
.step-info h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.step-info p { font-size: 12px; color: var(--text-muted); }
.track-line {
  width: 2px;
  height: 28px;
  background: var(--dark-4);
  margin-left: 21px;
  border-radius: 99px;
  transition: background 0.5s;
}
.track-line.active { background: var(--fire); }
.eta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,107,43,0.08);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 0 20px 20px;
}
.eta-icon { font-size: 28px; }
.eta-label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.eta-time {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fire-bright);
}

/* ═══════════════════════════════════════════
   PROFILE SCREEN
═══════════════════════════════════════════ */
.profile-hero {
  text-align: center;
  padding: 32px 20px 24px;
  border-bottom: 1px solid var(--dark-3);
}
.profile-avatar {
  width: 80px; height: 80px;
  background: var(--dark-3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 14px;
  border: 2px solid var(--dark-4);
}
.profile-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.profile-sub { font-size: 13px; color: var(--text-muted); }
.profile-menu { padding: 12px 0; }
.profile-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--dark-3);
  cursor: pointer;
  transition: background 0.15s;
}
.profile-item:active { background: var(--dark-2); }
.pi-icon { font-size: 20px; width: 28px; text-align: center; }
.pi-label { flex: 1; font-size: 15px; font-weight: 500; }
.pi-arrow { color: var(--text-muted); font-size: 20px; }
.brand-footer {
  text-align: center;
  padding: 28px 20px 40px;
  border-top: 1px solid var(--dark-3);
}
.brand-logo-sm {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fire);
  margin-bottom: 8px;
}
.brand-footer p { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.stars-row { font-size: 13px; color: var(--text-secondary); }
.stars-row span { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   ORDER SUCCESS MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--dark-4);
  width: 100%;
  max-width: 340px;
  animation: slideUp 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slideUp {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-anim { font-size: 64px; margin-bottom: 16px; animation: bounce 0.6s ease 0.3s both; }
@keyframes bounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.modal-id {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fire-bright);
  font-weight: 700;
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  margin-bottom: 24px;
  display: inline-block;
}

/* ═══════════════════════════════════════════
   TOAST
═══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark-4);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 99px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 300;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid var(--dark-5);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 360px) {
  .hero-title { font-size: 22px; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .menu-name { font-size: 13px; }
}
@media (min-width: 431px) {
  body { box-shadow: 0 0 60px rgba(0,0,0,0.8); }
}