@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #121212;
  --bg-secondary: #1C1C1C;
  --bg-tertiary: #252525;
  --accent: #C9A45C;
  --accent-hover: #A8823E;
  --highlight: #E2B96B;
  --text-primary: #F5F2EA;
  --text-secondary: #B5B0A6;
  --text-tertiary: #7A756B;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.04);
  --success: #2E9E5B;
  --error: #D9534F;
  --warning: #F0AD4E;
  --veg: #3FAE49;
  --nonveg: #C0392B;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.25);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --sticky-bottom-offset: 0px;
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
  overflow-x: hidden;
}

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER (Zomato-style) ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

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

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

.nav a {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav a:hover { color: var(--text-primary); background: rgba(201, 164, 92, 0.08); }

.nav a.active {
  color: var(--accent);
  background: rgba(201, 164, 92, 0.12);
}

.nav-cart {
  position: relative;
  padding: 10px 14px !important;
  display: flex;
  align-items: center;
}

.nav-cart svg {
  display: block;
}

.cart-badge {
  display: none;
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 0 5px;
  border-radius: 99px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.3s ease,
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  max-height: 420px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding: 16px 24px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
  transition-delay: 0s;
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.08s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.11s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.14s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.17s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.20s; }
.mobile-nav.open a:nth-child(7) { transition-delay: 0.23s; }
.mobile-nav.open a:nth-child(8) { transition-delay: 0.26s; }

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }

.mobile-nav .mobile-cart-link { position: relative; display: flex; align-items: center; justify-content: space-between; }
.mobile-nav .mobile-cart-link .cart-badge { position: relative; top: auto; right: auto; display: inline-flex; margin-left: auto; }

/* ============ BUTTONS (Zomato-style) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-height: 48px;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 164, 92, 0.25); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: rgba(201, 164, 92, 0.05); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover { background: rgba(201, 164, 92, 0.1); transform: translateY(-1px); }

.btn-sm { padding: 8px 18px; font-size: 13px; min-height: 38px; }

.btn-full { width: 100%; }

.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; }

/* ============ HERO (Zomato-style clean hero) ============ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.97) 0%, rgba(18, 18, 18, 0.65) 50%, rgba(18, 18, 18, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201, 164, 92, 0.12);
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--highlight);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-stat { text-align: center; }

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero-stat-label { font-size: 12px; color: var(--text-tertiary); margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }

/* ============ SECTION (cleaner) ============ */
.section { padding: 90px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ TRUST BAR (cleaner, Zomato-style info chips) ============ */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.trust-item:hover { border-color: rgba(201, 164, 92, 0.2); }

.trust-icon { font-size: 28px; margin-bottom: 6px; }

.trust-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.trust-label { font-size: 12px; color: var(--text-tertiary); margin-top: 3px; }

/* ============ FEATURED DISHES (Zomato-style cards) ============ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.dish-card {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.dish-card:hover { transform: translateY(-6px); border-color: rgba(201, 164, 92, 0.3); box-shadow: var(--shadow); }

.dish-card-image {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.dish-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.dish-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-xs);
}

.dish-card-badge.veg { background: var(--veg); color: white; }
.dish-card-badge.nonveg { background: var(--nonveg); color: white; }
.dish-card-badge.bestseller { background: var(--accent); color: var(--bg-primary); right: 12px; left: auto; }

.dish-card-body { padding: 20px; }

.dish-card-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

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

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

.dish-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

/* ============ ABOUT SECTION ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 18px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 15px;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 14px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 164, 92, 0.1);
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  position: relative;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 24px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--bg-secondary), #1a1a1a);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover { border-color: rgba(201, 164, 92, 0.2); box-shadow: var(--shadow-sm); }

.testimonial-stars {
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  border: 1px solid var(--border);
}

.testimonial-name { font-size: 15px; font-weight: 600; }
.testimonial-source { font-size: 12px; color: var(--text-tertiary); }

/* ============ FOOTER (Zomato-style) ============ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand .logo { margin-bottom: 16px; display: block; font-size: 28px; }

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: 50%;
  font-size: 18px;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.footer-social a:hover { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); }

.footer h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact a { color: var(--accent); }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  padding-bottom: calc(10px + var(--safe-area-bottom));
  gap: 10px;
  backdrop-filter: blur(16px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.sticky-cta .btn { flex: 1; font-size: 13px; padding: 10px 12px; min-height: 44px; border-radius: var(--radius-sm); }
.sticky-cta .cart-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; position: relative; }
.sticky-cta .cart-btn .cart-badge { position: absolute; top: -4px; right: -4px; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }

/* ============ MENU PAGE (Zomato-style) ============ */
.menu-page { padding-top: 104px; overflow-x: hidden; }

.menu-toolbar {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.menu-search {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  padding-left: 48px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  transition: var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23B5B0A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 18px center;
}

.menu-search:focus { outline: none; border-color: var(--accent); background-color: var(--bg-tertiary); }

.menu-categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  flex-shrink: 0;
  position: relative;
  scroll-snap-type: x proximity;
}

@media (hover: none) and (pointer: coarse) {
  .menu-categories {
    mask-image: linear-gradient(to right, #000 calc(100% - 48px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 48px), transparent 100%);
  }
}

.menu-categories::-webkit-scrollbar { height: 3px; }
.menu-categories::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

.menu-category {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
}

.menu-category:hover {
  background: rgba(201, 164, 92, 0.08);
  border-color: rgba(201, 164, 92, 0.3);
  color: var(--accent);
}

.menu-category.active {
  background: rgba(201, 164, 92, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.veg-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px 18px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  transition: var(--transition);
}

.veg-toggle:hover { border-color: rgba(201, 164, 92, 0.3); }

.veg-toggle input { display: none; }

.veg-toggle .toggle-track {
  width: 38px;
  height: 22px;
  background: var(--bg-tertiary);
  border-radius: 99px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.veg-toggle .toggle-track::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--text-secondary);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: var(--transition);
}

.veg-toggle input:checked + .toggle-track { background: var(--veg); }
.veg-toggle input:checked + .toggle-track::after { background: white; left: 18px; }

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

.menu-item {
  display: flex;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.menu-item:hover { border-color: rgba(201, 164, 92, 0.25); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.menu-item-image {
  width: 150px;
  flex-shrink: 0;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.menu-item-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }

.menu-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.menu-item-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.menu-item-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.menu-item-badge.veg { background: rgba(63, 174, 73, 0.15); color: var(--veg); }
.menu-item-badge.nonveg { background: rgba(192, 57, 43, 0.15); color: var(--nonveg); }

.add-to-cart {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  transition: var(--transition);
  flex-shrink: 0;
}

.add-to-cart:hover { background: var(--accent-hover); transform: scale(1.1); }

/* Quantity Control */
.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.qty-btn:hover { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); }

.qty-value {
  font-size: 15px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

/* ============ CART DRAWER (cleaner) ============ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg-secondary);
  z-index: 2001;
  transform: translateX(100%);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}

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

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

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
}

.cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-tertiary);
  font-size: 20px;
  transition: var(--transition);
}

.cart-close:hover { background: var(--accent); color: var(--bg-primary); }

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

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { flex: 1; }

.cart-item-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.cart-item-actions .qty-btn { width: 26px; height: 26px; font-size: 14px; }
.cart-item-actions .qty-value { font-size: 13px; }

.cart-item-remove {
  margin-left: auto;
  font-size: 12px;
  color: var(--error);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.cart-item-remove:hover { text-decoration: underline; }

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-tertiary);
}

.cart-empty-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.5; }
.cart-empty p { font-size: 15px; }
.cart-browse-btn { margin-top: 20px; }

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: none;
}

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

.cart-total-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}

/* ============ ORDER PAGE (cleaner) ============ */
.order-page { padding-top: 104px; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: start;
}

.checkout-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.checkout-section h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-secondary);
}

.form-group textarea { min-height: 90px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.delivery-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.delivery-option {
  flex: 1;
  padding: 14px;
  text-align: center;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.delivery-option:hover, .delivery-option.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 164, 92, 0.1);
}

/* ============ BOOKING PAGE (cleaner) ============ */
.booking-page { padding-top: 104px; }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.booking-info {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.booking-info h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 18px;
}

.booking-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.booking-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-secondary);
}

.booking-info-item:last-child { border-bottom: none; }

.booking-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 164, 92, 0.1);
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}

.booking-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.booking-form h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 24px;
}

.booking-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 16px;
  padding: 14px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  line-height: 1.6;
  border: 1px solid var(--border);
}

/* ============ GALLERY PAGE ============ */
.gallery-page { padding-top: 104px; }

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

.gallery-page-grid .gallery-item { height: 280px; }

/* ============ ABOUT/CONTACT PAGE ============ */
.about-page { padding-top: 104px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.contact-info { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 164, 92, 0.1);
  border-radius: 50%;
  font-size: 20px;
}

.contact-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-text p, .contact-text a { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.contact-text a:hover { color: var(--accent); }

.contact-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.contact-hours div {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-hours .day { color: var(--text-secondary); }
.contact-hours .time { color: var(--text-primary); font-weight: 500; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============ LEGAL PAGES ============ */
.legal-page { padding-top: 104px; }

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 52px;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  margin-bottom: 10px;
}

.legal-content .updated { font-size: 14px; color: var(--text-tertiary); margin-bottom: 36px; }

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 14px;
  margin-top: 36px;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 15px;
}

.legal-content ul { margin-bottom: 20px; padding-left: 24px; }
.legal-content ul li { margin-bottom: 8px; color: var(--text-secondary); font-size: 15px; list-style: disc; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.1); }

/* ============ SUCCESS SCREEN ============ */
.success-screen {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 158, 91, 0.1);
  border-radius: 50%;
  font-size: 36px;
  margin: 0 auto 24px;
}

.success-screen h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 10px;
}

.success-screen p {
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.success-screen .order-id {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ============ UTILITY CLASSES ============ */
.section-alt { background: var(--bg-secondary); }
.text-center { text-align: center; }
.mt-20 { margin-top: 24px; }
.mb-48 { margin-bottom: 52px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 400px; }
.iframe-map { border: none; }
.link-accent { color: var(--accent); }
.link-accent-sm { color: var(--accent); font-size: 13px; }
.link-accent-sm:hover { text-decoration: underline; }
.payment-note { font-size: 13px; color: var(--text-tertiary); line-height: 1.5; }
.btn-place-order { font-size: 16px; padding: 18px; border-radius: var(--radius-sm); }
.order-summary-wrap { margin-top: 20px; }
.delivery-note { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.delivery-help { font-size: 13px; color: var(--text-tertiary); margin-top: 10px; }
.order-success-section { padding-top: 120px; padding-bottom: 80px; }
.order-success-text { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; }
.order-success-meta { font-size: 14px; color: var(--text-tertiary); margin-bottom: 10px; }
.order-status { color: var(--veg); font-weight: 600; }
.order-success-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.order-help { font-size: 14px; color: var(--text-tertiary); }
.order-back-link { margin-top: 36px; }
.about-cta-row { display: flex; gap: 14px; margin-top: 28px; }
.gallery-heading { font-family: var(--font-heading); font-size: 24px; margin-bottom: 20px; color: var(--accent); }
.gallery-cta { text-align: center; }
.gallery-cta p { color: var(--text-secondary); margin-bottom: 14px; font-size: 15px; }

/* ============ PAYMENT OPTIONS (Zomato-style) ============ */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.payment-option:hover { border-color: rgba(201, 164, 92, 0.3); }

.payment-option input { display: none; }

.payment-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(201, 164, 92, 0.06);
}

.payment-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.payment-option:has(input:checked) .payment-radio {
  border-color: var(--accent);
}

.payment-option:has(input:checked) .payment-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.payment-label svg { color: var(--accent); flex-shrink: 0; }

.payment-desc {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ============ CHECKOUT ITEMS ============ */
.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.checkout-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.checkout-item-qty {
  font-size: 12px;
  color: var(--text-tertiary);
}

.checkout-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* ============ ORDER SUMMARY SECTION ============ */
.order-summary-section {
  position: sticky;
  top: 96px;
}

/* ============ EMPTY STATES ============ */
.checkout-empty {
  text-align: center;
  padding: 60px 20px;
}

.checkout-empty-icon { margin-bottom: 20px; opacity: 0.4; }

.checkout-empty h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 10px;
}

.checkout-empty p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.menu-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-tertiary);
}

.menu-empty svg { margin-bottom: 16px; opacity: 0.4; }

.menu-empty p { font-size: 16px; }

/* ============ FORM ERRORS ============ */
.input-error { border-color: var(--error) !important; box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.15); }
.field-error { font-size: 12px; color: var(--error); margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.field-error::before { content: '!'; display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; background: var(--error); color: white; border-radius: 50%; font-size: 10px; font-weight: 700; flex-shrink: 0; }

/* ============ FOCUS VISIBLE (a11y) ============ */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ============ SKIP TO MAIN CONTENT (a11y) ============ */
.skip-link { position: absolute; top: -100%; left: 0; z-index: 10000; padding: 12px 24px; background: var(--accent); color: var(--bg-primary); font-weight: 600; font-size: 14px; border-radius: 0; }
.skip-link:focus { top: 0; }

/* ============ BADGE IMPROVEMENTS ============ */
.bestseller { background: var(--accent); color: var(--bg-primary); padding: 3px 8px; border-radius: 4px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideOutRight {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes cartBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.cart-badge.pop { animation: cartBounce 0.3s ease; }

.menu-item {
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}

.dish-card {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.dish-card:nth-child(1) { animation-delay: 0.05s; }
.dish-card:nth-child(2) { animation-delay: 0.1s; }
.dish-card:nth-child(3) { animation-delay: 0.15s; }
.dish-card:nth-child(4) { animation-delay: 0.2s; }

.menu-item:nth-child(1) { animation-delay: 0.02s; }
.menu-item:nth-child(2) { animation-delay: 0.04s; }
.menu-item:nth-child(3) { animation-delay: 0.06s; }
.menu-item:nth-child(4) { animation-delay: 0.08s; }
.menu-item:nth-child(5) { animation-delay: 0.1s; }
.menu-item:nth-child(6) { animation-delay: 0.12s; }
.menu-item:nth-child(7) { animation-delay: 0.14s; }
.menu-item:nth-child(8) { animation-delay: 0.16s; }

.cart-drawer.open { transform: translateX(0); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

.cart-overlay.open { opacity: 1; visibility: visible; transition: opacity 0.25s ease, visibility 0.25s ease; }

.testimonial-card { animation: fadeInUp 0.5s ease forwards; opacity: 0; }
.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.trust-item { animation: fadeInUp 0.4s ease forwards; opacity: 0; }
.trust-item:nth-child(1) { animation-delay: 0.05s; }
.trust-item:nth-child(2) { animation-delay: 0.1s; }
.trust-item:nth-child(3) { animation-delay: 0.15s; }
.trust-item:nth-child(4) { animation-delay: 0.2s; }

/* ============ DISH CARD BUTTON FIX ============ */
.dish-card-footer .btn-sm { padding: 8px 18px; font-size: 13px; min-height: 38px; border-radius: var(--radius-sm); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; height: 240px; }

  .checkout-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > :first-child { grid-column: span 2; }

  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .header-inner { height: 64px; padding: 0 16px; }
  .mobile-nav { top: 64px; }

  .hero { min-height: 85vh; padding: 80px 0 40px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; margin-top: 24px; padding-top: 20px; }
  .hero-stat { flex: 1; min-width: 70px; }
  .hero-stat-value { font-size: 24px; }
  .hero-stat-label { font-size: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item { height: 200px; }
  .gallery-grid .gallery-item:nth-child(1) { height: 200px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: span 1; }

  .sticky-cta { display: flex; padding: 8px 12px; padding-bottom: calc(8px + var(--safe-area-bottom)); gap: 8px; }
  .sticky-cta .btn { padding: 6px 10px; min-height: 36px; font-size: 12px; border-radius: 8px; }
  .footer { padding-bottom: 64px; }
  .whatsapp-float { bottom: calc(64px + var(--safe-area-bottom)); }

  .menu-page { padding-top: 76px; }
  .menu-item { flex-direction: column; border-radius: 12px; }
  .menu-item-image { width: 100%; height: 140px; }
  .menu-item-image img { border-radius: 12px 12px 0 0; }
  .menu-item-body { padding: 12px 14px 14px; }
  .menu-item-name { font-size: 15px; }
  .menu-item-desc { font-size: 12px; margin-bottom: 8px; -webkit-line-clamp: 1; }
  .menu-item-price { font-size: 15px; }
  .menu-item-header { margin-bottom: 4px; }
  .menu-item-badge { font-size: 9px; padding: 2px 6px; }
  .menu-item-footer .add-to-cart { width: 36px; height: 36px; font-size: 18px; }
  .menu-item-footer .qty-btn { width: 30px; height: 30px; font-size: 15px; }
  .menu-item-footer .qty-value { font-size: 13px; }

  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-page-grid .gallery-item { height: 220px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-hours { grid-template-columns: 1fr; }

  .legal-content { padding: 28px; }
  .booking-form, .booking-info, .contact-info { padding: 24px; }
  .checkout-section { padding: 20px; }

  .featured-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }

  .cart-drawer { max-width: 100%; }
  .cart-item-image { width: 52px; height: 52px; }
  .cart-item { gap: 12px; }

  body { overflow-x: hidden; }

  .menu-page .section-header { margin-bottom: 16px; }
  .menu-page .section-label { font-size: 11px; margin-bottom: 4px; }
  .menu-page .section-title { font-size: 22px; margin-bottom: 0; }
  .menu-page .section-desc { display: none; }

  .menu-toolbar { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 16px; }
  .menu-search { min-width: auto; padding: 11px 14px 11px 38px; background-position: 12px center; font-size: 14px; }
  .menu-categories { gap: 6px; padding-bottom: 0; overflow-x: visible; flex-wrap: wrap; flex-shrink: 1; mask-image: none; -webkit-mask-image: none; }
  .menu-category { padding: 7px 14px; font-size: 12px; }
  .veg-toggle { justify-content: center; padding: 10px 18px; font-size: 13px; }
  .menu-grid { gap: 12px; }

  .qty-btn { width: 36px; height: 36px; font-size: 18px; }
  .add-to-cart { width: 42px; height: 42px; }
  .dish-card-image { height: 180px; }

  .about-image { height: 280px; }
  .map-wrap { height: 280px; }
  .map-container { min-height: 280px; }

  .cta-band { padding: 48px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 22px; }
}
