/* ========== DESIGN SYSTEM ========== */
:root {
  --orange: #E8650A;
  --orange-light: #FF8A3D;
  --orange-glow: rgba(232, 101, 10, 0.25);
  --yellow: #F5A623;
  --yellow-light: #FFD54F;
  --green: #2E7D32;
  --green-light: #4CAF50;
  --cream: #FFF8F0;
  --cream-soft: #FFFBF5;
  --dark: #1A0A00;
  --text: #2C1A0A;
  --muted: #6B4226;
  --light-muted: #8D6E5A;
  --white: #FFFFFF;
  --border: #F0D9C0;
  --border-light: #F5E6D4;
  --shadow-sm: 0 2px 8px rgba(26,10,0,0.06);
  --shadow-md: 0 8px 24px rgba(26,10,0,0.1);
  --shadow-lg: 0 16px 48px rgba(26,10,0,0.12);
  --shadow-orange: 0 8px 32px rgba(232,101,10,0.3);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }

/* ========== ANIMATIONS ========== */
.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)} }
@keyframes steam-rise {
  0%{opacity:0.6;transform:scaleY(1) translateY(0)}
  50%{opacity:0.2;transform:scaleY(1.5) translateY(-12px)}
  100%{opacity:0;transform:scaleY(2) translateY(-24px)}
}
@keyframes pulse-glow {
  0%,100%{box-shadow:0 0 0 0 var(--orange-glow)}
  50%{box-shadow:0 0 0 12px transparent}
}
@keyframes shimmer {
  0%{background-position:-200% 0}
  100%{background-position:200% 0}
}
@keyframes bounce-subtle {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
}

/* ========== NAVBAR ========== */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
nav.scrolled { background: rgba(255,255,255,0.98); box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.logo {
  display: flex; align-items: center; gap: 8px; text-decoration: none;
}
.logo-kannada {
  font-family: 'Noto Sans Kannada', sans-serif;
  font-weight: 800; font-size: 1rem;
  color: #fff; background: #8B1A1A;
  padding: 4px 12px 6px; border-radius: 8px;
  line-height: 1.2; letter-spacing: 0.5px;
  border: 2px solid #6B0F0F;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 2px 6px rgba(139,26,26,0.3);
  white-space: nowrap;
}
.logo-english {
  font-family: 'Outfit', sans-serif;
  font-weight: 900; font-size: 1.1rem;
  color: var(--dark); letter-spacing: 1px;
  line-height: 1.1; display: flex; flex-direction: column;
}
.logo-english span { color: var(--orange); }
.footer-logo .logo-kannada { font-size: 1.1rem; padding: 5px 14px 7px; }
.footer-logo .logo-english { color: #fff; font-size: 1.2rem; }
.footer-logo .logo-english span { color: var(--yellow); }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  padding: 6px 14px; border-radius: var(--radius-full);
  transition: all 0.25s ease;
}
.nav-links a:hover { background: var(--cream); color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--white);
  padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; gap: 4px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-orange);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(232,101,10,0.35); }
.nav-cta:active { transform: scale(0.97); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #FFF3E0 0%, #FFFAF4 40%, #F1F8E9 100%);
  display: flex; align-items: center; padding-top: 60px;
}
.hero-content {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding: 3rem 1.25rem 5rem; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(46,125,50,0.08); color: var(--green);
  font-size: 0.78rem; font-weight: 700;
  padding: 8px 16px; border-radius: var(--radius-full);
  border: 1px solid rgba(46,125,50,0.15); margin-bottom: 1rem;
}
.hero h1 {
  font-size: 2.2rem; font-weight: 900; line-height: 1.15;
  color: var(--dark); margin-bottom: 1rem; letter-spacing: -0.5px;
}
.hl-orange { color: var(--orange); }
.hl-yellow { color: var(--yellow); position: relative; }
.hl-yellow::after {
  content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px;
  background: rgba(245,166,35,0.2); border-radius: 4px; z-index: -1;
}
.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.hero-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.5rem; }
.hero-trust {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--muted); font-weight: 500;
}
.trust-stars { color: #FFB300; font-size: 0.9rem; letter-spacing: 1px; }

/* Hero Image */
.hero-image { display: flex; justify-content: center; }
.hero-img-wrap {
  position: relative; width: 600px; height: 400px ;
  border-radius: 0%; overflow: visible;
  animation: float 4s ease-in-out infinite;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: fill; border-radius: 0%;
  border: 5px solid var(--white);
  box-shadow: 0 20px 60px rgba(232,101,10,0.2);
}
.steam {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px;
}
.steam span {
  width: 4px; height: 20px; background: rgba(255,255,255,0.6);
  border-radius: 4px; animation: steam-rise 2.5s ease-in-out infinite;
}
.steam span:nth-child(2) { animation-delay: 0.5s; height: 28px; }
.steam span:nth-child(3) { animation-delay: 1s; height: 16px; }
.price-tag {
  position: absolute; bottom: 10px; right: -10px;
  background: var(--orange); color: var(--white);
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 1.4rem; font-weight: 900; line-height: 1;
  box-shadow: var(--shadow-orange);
  animation: pulse-glow 2s ease-in-out infinite;
}
.price-tag small { font-size: 0.55rem; font-weight: 600; display: block; opacity: 0.85; }
.hero-wave {
  position: absolute; bottom: -2px; left: 0; width: 100%;
  color: var(--white); line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 700; font-family: inherit;
  transition: all 0.25s ease; cursor: pointer; border: none; text-align: center;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,101,10,0.35); }
.btn-primary:active { transform: scale(0.97); }
.btn-wa {
  background: #25D366; color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.35); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 2px solid var(--border); 
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-white {
  background: var(--white); color: var(--orange); font-weight: 800;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); }
.btn-phone {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-phone:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; }

/* ========== STATS ========== */
.stats-strip { background: var(--orange); padding: 1.25rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat { text-align: center; padding: 0.5rem; border-right: 1px solid rgba(255,255,255,0.2); }
.stat:last-child { border: none; }
.stat-num { font-size: 1.4rem; font-weight: 900; color: var(--white); }
.stat-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.8); margin-top: 2px; font-weight: 500; }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.tag {
  font-size: 0.72rem; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 0.5rem;
}
.section-header h2 {
  font-size: 1.8rem; font-weight: 900; color: var(--dark); line-height: 1.25;
}
.divider { width: 48px; height: 4px; background: var(--orange); border-radius: 4px; margin: 0.75rem auto 0; }
.sub { font-size: 0.88rem; color: var(--muted); margin-top: 0.75rem; }

/* ========== WHY US ========== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card {
  background: var(--cream); border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1.5rem 1rem; text-align: center;
  transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.why-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 0.88rem; font-weight: 800; color: var(--dark); margin-bottom: 0.3rem; }
.why-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ========== MENU ========== */
.menu-section { background: var(--cream); }
.menu-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 0.75rem;
  margin-bottom: 1.5rem; scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.tab {
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--muted); padding: 10px 18px; border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600; white-space: nowrap;
  transition: all 0.25s ease; flex-shrink: 0; font-family: inherit;
}
.tab:hover { border-color: var(--orange); color: var(--orange); }
.tab.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.menu-grid { display: grid; gap: 12px; margin-bottom: 1.5rem; }
.menu-item {
  background: var(--white); border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md); padding: 14px;
  display: flex; gap: 14px; align-items: center;
  transition: all 0.3s ease; cursor: pointer; position: relative; overflow: hidden;
}
.menu-item::before {
  content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: var(--orange); transform: scaleY(0); transition: transform 0.3s ease;
}
.menu-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.menu-item:hover::before { transform: scaleY(1); }
.menu-img {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0;
}
.menu-emoji {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.menu-info { flex: 1; }
.menu-name { font-size: 0.92rem; font-weight: 700; color: var(--dark); }
.menu-desc { font-size: 0.75rem; color: var(--muted); margin: 3px 0 6px; line-height: 1.45; }
.menu-price { font-size: 1.1rem; font-weight: 900; color: var(--orange); }
.badge-best {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, #FF6F00, #FF8F00); color: var(--white);
  font-size: 0.6rem; font-weight: 800; padding: 4px 10px;
  border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-new {
  position: absolute; top: 10px; right: 10px;
  background: var(--green); color: var(--white);
  font-size: 0.6rem; font-weight: 800; padding: 4px 10px;
  border-radius: var(--radius-full);
}
.menu-cta { text-align: center; }

.menu-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 1.5rem;
}
.featured-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s ease;
  cursor: default;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.featured-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
}
.featured-info {
  display: grid;
  gap: 6px;
}
.featured-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}
.featured-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
}
.menu-preview {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.menu-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1rem;
}
.menu-preview-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
}
.menu-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.menu-page-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1.5px solid var(--border-light);
}
.menu-page-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-page-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.menu-page-label {
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}
.menu-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.menu-modal.open {
  display: flex;
}
.menu-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, 0.62);
  backdrop-filter: blur(6px);
}
.menu-modal-content {
  position: relative;
  width: min(100%, 980px);
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(15, 23, 45, 0.18);
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.menu-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}
.menu-carousel {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 60vh;
  background: var(--dark);
  overflow: hidden;
}
.menu-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}
.menu-slide {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.menu-slide img {
  width: auto;
  max-width: 100%;
  max-height: 68vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.menu-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.menu-nav.prev { left: 14px; }
.menu-nav.next { right: 14px; }
.menu-modal-footer {
  padding: 16px 20px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border-light);
}
.menu-page-counter {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 768px) {
  .menu-preview-header { flex-direction: column; align-items: flex-start; }
  .menu-modal-content { width: 100%; max-height: 100vh; border-radius: 0; }
  .menu-slide { padding: 16px; }
  .menu-page-thumb { height: 140px; }
  .menu-nav { width: 36px; height: 36px; }
}

/* ========== BESTSELLERS ========== */
.bs-section { background: linear-gradient(180deg, var(--white), var(--cream-soft)); }
.bs-scroll {
  display: flex; gap: 16px; overflow-x: auto;
  padding: 0.5rem 0 1.5rem; scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.bs-scroll::-webkit-scrollbar { display: none; }
.bs-card {
  min-width: 220px; max-width: 260px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s ease; scroll-snap-align: start;
  position: relative;
}
.bs-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.bs-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--orange); color: var(--white);
  font-size: 0.65rem; font-weight: 800; padding: 5px 12px;
  border-radius: var(--radius-full);
}
.bs-badge-fav { background: #E91E63; }
.bs-badge-value { background: var(--green); }
.bs-badge-special { background: #7B1FA2; }
.bs-img-wrap {
  width: 100%; height: 160px; overflow: hidden;
}
.bs-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.bs-card:hover .bs-img-wrap img { transform: scale(1.08); }
.bs-name { font-size: 1rem; font-weight: 800; color: var(--dark); padding: 12px 16px 0; }
.bs-desc { font-size: 0.75rem; color: var(--muted); padding: 4px 16px 0; line-height: 1.4; }
.bs-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 16px;
}
.bs-price { font-size: 1.2rem; font-weight: 900; color: var(--orange); }
.bs-stars { color: #FFB300; font-size: 0.85rem; letter-spacing: 1px; }

/* ========== REVIEWS ========== */
.reviews-section { background: linear-gradient(135deg, #FFF3E0, #F1F8E9); }
.reviews-scroll {
  display: flex; gap: 14px; overflow-x: auto;
  padding-bottom: 1rem; scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.reviews-scroll::-webkit-scrollbar { display: none; }
.review-card {
  min-width: 270px; max-width: 300px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1.5rem;
  scroll-snap-align: start; transition: all 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: #FFB300; font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; flex-shrink: 0;
}
.review-name { font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.review-loc { font-size: 0.7rem; color: var(--muted); }

/* ========== GALLERY ========== */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gal-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer; aspect-ratio: 1;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.6));
  display: flex; align-items: flex-end; padding: 1rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: var(--white); font-size: 0.85rem; font-weight: 700; }
.gal-large { grid-row: span 2; aspect-ratio: auto; }

/* ========== LOCATION ========== */
.location-section { background: var(--white); }
.loc-content { display: grid; gap: 1.5rem; }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.loc-info {
  background: var(--cream); border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1.5rem;
}
.loc-info h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; }
.loc-info p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.landmarks { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.landmarks span {
  background: #E8F5E9; border: 1px solid #A5D6A7;
  color: var(--green); font-size: 0.72rem; font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-full);
}
.loc-time { font-size: 0.85rem; color: var(--text); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.open-badge {
  background: var(--green); color: var(--white);
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 700;
}

/* ========== ORDER CTA ========== */
.order-section {
  background: linear-gradient(135deg, var(--orange), #D84315);
  text-align: center; position: relative; overflow: hidden;
}
.order-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06), transparent 50%);
}
.order-content { position: relative; z-index: 2; }
.order-emoji { font-size: 3rem; margin-bottom: 1rem; }
.order-section h2 { font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 0.5rem; }
.order-section p { color: rgba(255,255,255,0.88); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.6; }
.order-btns { display: flex; flex-direction: column; gap: 10px; max-width: 400px; margin: 0 auto 1rem; }
.order-time { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ========== FOOTER ========== */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 3rem 0 1.5rem; }
.footer-top { display: grid; gap: 2rem; margin-bottom: 2rem; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 0.5rem;
}
.footer-tagline { color: var(--yellow); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.5rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-col a, .footer-col p {
  display: block; font-size: 0.78rem; color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem; transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--yellow); }
.footer-timing-badge {
  background: var(--green); color: var(--white);
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 0.65rem; font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem; text-align: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
}

/* ========== STICKY CTA ========== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; width: 100%;
  z-index: 999; display: none;
  padding: 12px 16px; gap: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
.sticky-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 700; font-family: inherit;
  transition: all 0.2s ease;
}
.s-menu { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.s-wa { background: #25D366; color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.sticky-btn:active { transform: scale(0.96); }

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .hero-content { grid-template-columns: 1fr 1fr; align-items: center; padding: 6rem 2rem 8rem; }
  .hero h1 { font-size: 2.8rem; }
  .hero-img-wrap { width: 360px; height: 360px; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; }
  .section-header h2 { font-size: 2.2rem; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-large { grid-row: span 2; }
  .sticky-cta { display: none !important; }
  .section { padding: 5rem 0; }
  .footer-top { grid-template-columns: 1.5fr 2fr; }
  .loc-content { grid-template-columns: 1fr 1fr; }
  .bs-card { min-width: 260px; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.2rem; }
  .hero-img-wrap { width: 400px; height: 400px; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 1.8rem; }
  .hero-img-wrap { width: 220px; height: 220px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .section-header h2 { font-size: 1.5rem; }
}
