/* ============================================================
   SASTA BITES – Premium CSS Design System
   Brand Colors extracted from logo & menu PDF
   
   Developer : TechMizan
   Contact   : wa.me/919509890618
   Project   : Sasta Bites – Cloud Kitchen Website
   Version   : 1.0.0
   © 2025 TechMizan. All rights reserved.
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --brand-red:       #C0392B;
  --brand-red-dark:  #922b21;
  --brand-red-light: #e74c3c;
  --brand-green:     #1A4731;
  --brand-green-mid: #27ae60;
  --brand-teal:      #2BADA0;
  --brand-cream:     #F5E6C8;
  --brand-gold:      #F4A020;
  --brand-gold-dark: #d4890a;

  /* Neutral Palette */
  --bg-primary:    #0f0f0f;
  --bg-secondary:  #161616;
  --bg-card:       #1e1e1e;
  --bg-card-hover: #252525;
  --border:        rgba(255,255,255,0.08);
  --border-accent: rgba(192,57,43,0.3);

  /* Text */
  --text-primary:   #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted:     #666666;
  --text-accent:    #F4A020;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.6);
  --shadow-red: 0 4px 20px rgba(192,57,43,0.35);
  --shadow-gold:0 4px 20px rgba(244,160,32,0.3);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow:   0.5s ease;

  /* Spacing */
  --section-padding: clamp(60px, 8vw, 100px);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--brand-red); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--brand-red); border-radius: 10px; }

/* ── Utility Classes ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.section-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  margin-top: 12px;
}

.accent { color: var(--brand-red); }
.accent-gold { color: var(--brand-gold); }
.accent-green { color: var(--brand-green-mid); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-red    { background: var(--brand-red); color: #fff; }
.badge-gold   { background: var(--brand-gold); color: #000; }
.badge-green  { background: var(--brand-green); color: #fff; }
.badge-teal   { background: var(--brand-teal); color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition-normal);
  letter-spacing: 0.3px;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.5);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--brand-gold);
  color: #000;
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--brand-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ── Loading Screen ── */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-gold));
  border-radius: 10px;
  animation: loadFill 1.8s ease forwards;
}

@keyframes loadFill {
  to { width: 100%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

/* ── Sticky Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(16px, 4vw, 40px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-normal);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-gold);
}

.nav-logo span .accent { color: var(--brand-red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

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

.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--brand-red);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.nav-cart-btn:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--brand-gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transition: transform var(--transition-fast);
}

.cart-badge.bump {
  animation: cartBump 0.3s ease;
}

@keyframes cartBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.dark-mode-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.dark-mode-btn:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  background: var(--bg-card-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  gap: 8px;
  transition: right var(--transition-normal);
  border-left: 1px solid var(--border);
}

.mobile-nav.open { right: 0; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--bg-card);
  color: #fff;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 50%;
  font-size: 20px;
  color: var(--text-secondary);
  cursor: pointer;
  border: 1px solid var(--border);
}

/* ── Hero Section ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,15,15,0.95) 0%,
    rgba(15,15,15,0.7) 50%,
    rgba(192,57,43,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-red-light);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge span { animation: blink 1.5s step-end infinite; }

@keyframes blink {
  50% { opacity: 0; }
}

.hero-title {
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-title .line-1 { color: #fff; }
.hero-title .line-2 { color: var(--brand-red); }

.hero-tagline {
  font-size: clamp(18px, 3vw, 26px);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--brand-gold);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  animation: fadeInUp 0.6s ease 0.5s forwards;
  opacity: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat .number {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.hero-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-floating-card {
  position: absolute;
  right: clamp(20px, 8vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30,30,30,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: clamp(200px, 30vw, 300px);
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-12px); }
}

.hero-floating-card .card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-floating-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.hero-floating-item:last-child { border-bottom: none; }

.hero-floating-item .name { color: var(--text-secondary); }
.hero-floating-item .price { font-weight: 700; color: var(--brand-gold); }

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span { font-size: 11px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }
.scroll-indicator svg { color: var(--text-muted); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About Section ── */
#about {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--brand-red);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-red);
  animation: floatCard 3s ease-in-out infinite;
}

.about-img-badge .big-num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.about-img-badge .small-text {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-normal);
}

.about-feature-card:hover {
  border-color: var(--brand-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.about-feature-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.about-feature-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-feature-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Categories Section ── */
#categories {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.categories-header {
  text-align: center;
  margin-bottom: 48px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  user-select: none;
}

.category-card:hover,
.category-card.active {
  border-color: var(--brand-red);
  background: rgba(192,57,43,0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.category-card .cat-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
  transition: transform var(--transition-normal);
}

.category-card:hover .cat-icon {
  transform: scale(1.15) rotate(-5deg);
}

.category-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Best Sellers Section ── */
#best-sellers {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.best-sellers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.best-sellers-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.best-sellers-scroll::-webkit-scrollbar { display: none; }

/* ── Menu Section ── */
#menu {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.menu-header {
  text-align: center;
  margin-bottom: 40px;
}

.menu-filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px;
  background: var(--bg-card);
  border-radius: var(--radius-full);
  margin-bottom: 40px;
  scrollbar-width: none;
  border: 1px solid var(--border);
}

.menu-filter-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-tab:hover { color: #fff; background: var(--bg-card-hover); }

.menu-tab.active {
  background: var(--brand-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.menu-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.menu-grid::-webkit-scrollbar { display: none; }

/* ── Menu Item Card ── */
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 280px;
  text-align: center;
}

.menu-card:hover {
  border-color: rgba(192,57,43,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.menu-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.veg-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid var(--brand-green-mid);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.veg-indicator::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--brand-green-mid);
  border-radius: 50%;
}

.menu-card-body {
  padding: 16px;
}

.menu-card-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.menu-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.menu-card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-gold);
  letter-spacing: -0.5px;
}

.menu-card-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--brand-red);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.add-to-cart-btn:hover {
  background: var(--brand-red-dark);
  transform: scale(1.05);
}

.add-to-cart-btn:active {
  transform: scale(0.96);
}

.item-counter {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.counter-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition-fast);
  font-weight: 600;
  line-height: 1;
}

.counter-btn:hover { background: var(--bg-card-hover); }

.counter-minus { color: var(--brand-red); }
.counter-plus  { color: var(--brand-green-mid); }

.counter-value {
  min-width: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

/* ── Cart Sidebar ── */
#cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}

#cart-sidebar.open { right: 0; }

#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1199;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  backdrop-filter: blur(4px);
}

#cart-overlay.open { opacity: 1; visibility: visible; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-header h2 {
  font-size: 20px;
  font-weight: 800;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 50%;
  font-size: 20px;
  color: var(--text-secondary);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.cart-close:hover { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-red) var(--bg-card);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--text-muted);
}

.cart-empty .empty-icon { font-size: 60px; opacity: 0.5; }
.cart-empty h3 { font-size: 18px; font-weight: 600; }
.cart-empty p { font-size: 14px; text-align: center; }

.cart-item {
  display: flex;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  transition: all var(--transition-normal);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

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

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 8px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.cart-item-remove:hover { background: rgba(192,57,43,0.15); color: var(--brand-red); }

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  flex-shrink: 0;
  background: var(--bg-secondary);
}

.cart-summary {
  margin-bottom: 16px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.cart-summary-row.total {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.cart-summary-row.total .price { color: var(--brand-gold); }

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-share-row {
  display: flex;
  gap: 8px;
}

.cart-share-btn {
  flex: 1;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.cart-share-btn:hover { border-color: var(--brand-gold); color: var(--brand-gold); }

/* ── Floating Buttons ── */
.floating-cart {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: none;
}

.floating-cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--brand-red);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-red), 0 4px 20px rgba(0,0,0,0.4);
  transition: all var(--transition-normal);
  animation: floatUp 0.4s ease;
}

.floating-cart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(192,57,43,0.6);
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
}

.floating-whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 4px 20px rgba(0,0,0,0.3);
  transition: all var(--transition-normal);
  animation: floatUp 0.4s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.7);
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Why Choose Us ── */
#why-us {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.why-us-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-gold));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
  border-color: rgba(192,57,43,0.4);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(192,57,43,0.1);
  border: 2px solid rgba(192,57,43,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: all var(--transition-normal);
}

.why-card:hover .icon-wrap {
  background: rgba(192,57,43,0.2);
  border-color: var(--brand-red);
  transform: rotate(-5deg) scale(1.1);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Gallery Section ── */
#gallery {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img { aspect-ratio: 16/9; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition-normal);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { background: rgba(192,57,43,0.2); }

/* ── Reviews Section ── */
#reviews {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: calc(50% - 10px);
  min-width: calc(50% - 10px);
  flex-shrink: 0;
  transition: all var(--transition-normal);
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.review-card:hover {
  border-color: rgba(192,57,43,0.3);
  box-shadow: var(--shadow-md);
}

.review-stars {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--brand-gold);
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-author-info h4 { font-size: 15px; font-weight: 700; }
.review-author-info p  { font-size: 12px; color: var(--text-muted); }

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.review-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.review-btn:hover { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }

.review-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  justify-content: center;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.review-dot.active { background: var(--brand-red); width: 24px; border-color: var(--brand-red); }

/* ── FAQ ── */
#faq {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open { border-color: rgba(192,57,43,0.4); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  gap: 16px;
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--transition-normal);
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  background: var(--brand-red);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Platforms Section ── */
#platforms {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.platforms-header {
  text-align: center;
  margin-bottom: 48px;
}

.platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.platform-card.zomato:hover {
  border-color: #CB202D;
  box-shadow: 0 8px 30px rgba(203,32,45,0.3);
  transform: translateY(-6px);
}

.platform-card.swiggy:hover {
  border-color: #FC8019;
  box-shadow: 0 8px 30px rgba(252,128,25,0.3);
  transform: translateY(-6px);
}

.platform-logo {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
}

.platform-card.zomato .platform-logo { color: #CB202D; }
.platform-card.swiggy .platform-logo { color: #FC8019; }

.platform-card h3 { font-size: 18px; font-weight: 700; }
.platform-card p  { font-size: 13px; color: var(--text-muted); text-align: center; }

.platform-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.platform-card.zomato .platform-cta { background: #CB202D; }
.platform-card.swiggy .platform-cta { background: #FC8019; }

/* ── Contact Section ── */
#contact {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.contact-card:hover {
  border-color: rgba(192,57,43,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.contact-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-card a {
  color: var(--brand-gold);
  transition: color var(--transition-fast);
}

.contact-card a:hover { color: var(--brand-red-light); }

/* ── Footer ── */
#footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--brand-gold);
  object-fit: cover;
}

.footer-logo .name { font-size: 22px; font-weight: 800; }
.footer-logo .name .accent { color: var(--brand-red); }

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-normal);
  color: var(--text-muted);
}

.social-link:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--brand-gold); }

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

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Mobile Bottom Navigation ── */
#bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(22,22,22,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: none;
  padding: 8px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.bottom-nav-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border: none;
  color: var(--text-muted);
  text-decoration: none;
  flex: 1;
}

.bottom-nav-item .nav-icon { font-size: 22px; line-height: 1; }
.bottom-nav-item .nav-label { font-size: 10px; font-weight: 600; letter-spacing: 0.3px; }

.bottom-nav-item.active,
.bottom-nav-item:hover { color: var(--brand-red); }

.bottom-nav-cart {
  position: relative;
}

.bottom-cart-badge {
  position: absolute;
  top: 2px;
  right: 16px;
  background: var(--brand-gold);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ── Toast Notifications ── */
#toast-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 500;
  min-width: 260px;
  max-width: 340px;
  animation: toastIn 0.4s ease, toastOut 0.4s ease 2.6s forwards;
  pointer-events: auto;
}

.toast.success { border-left: 4px solid var(--brand-green-mid); }
.toast.error   { border-left: 4px solid var(--brand-red); }
.toast.info    { border-left: 4px solid var(--brand-teal); }

.toast-icon { font-size: 20px; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}

/* ── Skeleton Loading ── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Dark Mode (Light Theme Toggle) ── */
body.light-mode {
  --bg-primary:    #f8f5f0;
  --bg-secondary:  #f0ebe3;
  --bg-card:       #ffffff;
  --bg-card-hover: #f5f0e8;
  --border:        rgba(0,0,0,0.1);
  --text-primary:  #1a1a1a;
  --text-secondary:#555555;
  --text-muted:    #888888;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-floating-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-badge { right: 16px; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  #bottom-nav { display: block; }

  body { padding-bottom: 70px; }

  .hero-title { letter-spacing: -1px; }

  .hero-stats { gap: 24px; }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .platforms-grid { grid-template-columns: 1fr; max-width: 320px; }

  #toast-container { bottom: 90px; }

  .floating-cart { display: none !important; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-share-row { flex-direction: column; }
}

@media (min-width: 769px) {
  .floating-cart { display: block; }
}
