/* ============================================================
   SOUTH ZONE — Site layout & CRO styles (mobile-first)
   Consumes design-system tokens (colors/typography/spacing/fonts).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-on-light);
  background: var(--sz-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; }
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-4); }

/* ---- Display / headings ---- */
.display { font-family: var(--font-display); line-height: var(--lh-tight); letter-spacing: var(--ls-display); }
.kicker { font-family: var(--font-script); font-weight: 700; color: var(--sz-terracotta); font-size: 22px; line-height: 1; }
.section-head { text-align: center; margin-bottom: var(--space-6); }
.section-head h2 { font-family: var(--font-display); font-size: var(--fs-h2); color: var(--text-on-light); margin-top: 4px; }

/* ---- Veg mark ---- */
.veg-mark { width: 16px; height: 16px; border: 2px solid var(--veg-mark); border-radius: 4px; position: relative; flex: 0 0 auto; display: inline-block; }
.veg-mark::after { content: ""; position: absolute; inset: 3px; background: var(--veg-mark); border-radius: 50%; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer;
  font-family: var(--font-body); font-weight: 800; font-size: 14px; letter-spacing: 0.03em;
  border: none; border-radius: var(--radius-pill); padding: 12px 20px; min-height: var(--hit-target);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background var(--dur-fast); }
.btn:active { transform: translateY(1px); }
.btn--wa { background: #25D366; color: #073b1e; }
.btn--wa:hover { box-shadow: 0 6px 18px rgba(37,211,102,0.4); }
.btn--primary { background: var(--cta-bg); color: var(--cta-text); }
.btn--primary:hover { background: var(--cta-bg-hover); box-shadow: var(--shadow-cta); }
.btn--dark { background: var(--sz-espresso); color: var(--sz-saffron); }
.btn--dark:hover { background: var(--sz-espresso-700); }
.btn--ghost { background: transparent; color: var(--sz-espresso); box-shadow: inset 0 0 0 2px var(--sz-espresso); }
.btn--ghost:hover { background: rgba(33,23,14,0.06); }
.btn--lg { padding: 15px 26px; font-size: 15px; }
.btn--add { background: var(--sz-saffron); color: var(--sz-espresso); padding: 9px 16px; font-size: 13px; text-transform: uppercase; }
.btn--add:hover { background: var(--sz-saffron-600); }
.btn--block { width: 100%; }

/* ---- Badges ---- */
.badge { display: inline-block; font-weight: 800; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-pill); }
.badge--saffron { background: var(--sz-saffron); color: var(--sz-espresso); }
.badge--chilli { background: var(--sz-chilli); color: #fff; }
.badge--leaf { background: var(--sz-leaf); color: #fff; }

/* ---- Rating strip ---- */
.rating-strip { display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; }
.rating-strip .rating { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--sz-espresso); }
.rating-strip .stars { color: var(--sz-chilli); font-size: 15px; letter-spacing: 1px; }
.rating-strip .rating small { font-weight: 600; color: var(--sz-espresso-500); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 40; background: var(--sz-saffron); box-shadow: 0 2px 12px rgba(33,23,14,0.08); }
.site-header__in { display: flex; align-items: center; gap: 14px; padding: 10px var(--space-4); max-width: var(--container-max); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }
.brand__text { display: flex; flex-direction: column; }
.brand__name { display: block; font-family: var(--font-display); font-size: 18px; color: var(--sz-espresso); line-height: 1; }
.brand__sub { display: block; font-size: 9px; font-weight: 800; letter-spacing: 0.16em; color: var(--sz-espresso-700); margin-top: 4px; }
.open-status { display: none; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--sz-espresso-700); }
.open-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sz-espresso-500); }
.open-status.is-open::before { background: var(--sz-veg-green); box-shadow: 0 0 0 3px rgba(31,138,59,0.25); }
.site-nav { display: none; gap: 4px; margin-left: auto; }
.site-nav a { font-weight: 700; font-size: 14px; color: var(--sz-espresso); padding: 8px 12px; border-radius: var(--radius-pill); }
.site-nav a:hover { background: rgba(33,23,14,0.07); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.header-cart { position: relative; background: var(--sz-espresso); border: none; width: 44px; height: 44px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--sz-saffron); font-size: 18px; }
.cart-count { position: absolute; top: -6px; right: -6px; background: var(--sz-chilli); color: #fff; font-size: 11px; font-weight: 800;
  min-width: 20px; height: 20px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; padding: 0 5px; }
.cart-count.pulse { animation: pop var(--dur-base) var(--ease-out); }
@keyframes pop { 0%{transform:scale(0.6)} 60%{transform:scale(1.25)} 100%{transform:scale(1)} }
.header-actions .btn { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--sz-saffron); padding: 28px 0 40px; overflow: hidden; }
.hero__in { display: grid; gap: 24px; align-items: center; }
.tag { display: inline-flex; align-items: center; gap: 8px; background: var(--sz-espresso); color: var(--sz-cream);
  padding: 7px 14px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 800; letter-spacing: 0.03em; }
.tag .veg-mark { border-color: var(--sz-saffron); }
.tag .veg-mark::after { background: var(--sz-saffron); }
.hero h1 { font-family: var(--font-display); font-size: clamp(40px, 11vw, 64px); line-height: 0.98; color: var(--sz-espresso); margin: 14px 0 0; }
.hero__sub { font-size: var(--fs-body-lg); font-weight: 500; color: var(--sz-espresso-700); max-width: 460px; margin: 14px 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.hero .rating-strip { margin-top: 18px; }
.hero__info { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 18px; }
.hero__info span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--sz-espresso); }
.hero__art { position: relative; display: flex; justify-content: center; }
.hero__art::before { content: ""; position: absolute; inset: 8% 8%; background: var(--sz-saffron-300); border-radius: 50%; filter: blur(8px); }
.hero__art img { position: relative; width: 100%; max-width: 460px; filter: drop-shadow(0 20px 40px rgba(33,23,14,0.28)); }
.hero__art .kicker { position: absolute; top: 4px; left: 8px; font-size: 30px; }

/* ============================================================
   ORDER OPTIONS
   ============================================================ */
.order-options { background: var(--sz-cream); padding: 22px 0; }
.order-options__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.oo-card { display: flex; align-items: center; gap: 12px; background: var(--sz-white); border-radius: var(--radius-lg);
  padding: 14px; box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.oo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.oo-card__ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex: 0 0 auto; color: #fff; font-weight: 900; }
.oo-card__ico--wa { background: #25D366; }
.oo-card__ico--swiggy { background: #FC8019; }
.oo-card__ico--zomato { background: #E23744; }
.oo-card__ico--call { background: var(--sz-espresso); color: var(--sz-saffron); }
.oo-card__t { font-family: var(--font-display); font-size: 15px; color: var(--sz-espresso); line-height: 1; }
.oo-card__s { font-size: 11px; font-weight: 600; color: var(--sz-espresso-500); margin-top: 4px; }

/* ============================================================
   CUISINE BAR
   ============================================================ */
.cuisine-bar { background: var(--sz-espresso); display: grid; grid-template-columns: 1fr; }
.cuisine-bar__item { padding: 18px var(--space-4); display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--sz-espresso-700); }
.cuisine-bar__item:first-child { border-top: none; }
.cuisine-bar__leaf { color: var(--sz-saffron); font-size: 24px; }
.cuisine-bar__name { font-family: var(--font-display); font-size: 20px; color: var(--sz-white); line-height: 1; }
.cuisine-bar__time { font-size: 12px; font-weight: 600; color: var(--sz-cream); opacity: 0.8; margin-top: 5px; }

/* ============================================================
   MENU
   ============================================================ */
.menu { padding: 44px 0; background: var(--sz-white); }
.tabs { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 14px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { flex: 0 0 auto; font-weight: 800; font-size: 13px; letter-spacing: 0.02em; text-transform: uppercase;
  padding: 9px 16px; border-radius: var(--radius-pill); cursor: pointer; border: 2px solid var(--sz-espresso);
  background: transparent; color: var(--sz-espresso); transition: background var(--dur-fast); }
.tab.is-active { background: var(--sz-espresso); color: var(--sz-saffron); }
.menu-section { font-family: var(--font-display); font-size: 20px; color: var(--sz-espresso); margin: 26px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border-on-light); }
.menu-section:first-child { margin-top: 4px; }
.menu-grid-inner { display: grid; grid-template-columns: 1fr; gap: 14px; }

.dish-card { background: var(--surface-paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.dish-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dish-card__media { position: relative; aspect-ratio: 4/3; background: var(--sz-cream); overflow: hidden; }
.dish-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.dish-card:hover .dish-card__media img { transform: scale(1.05); }
.dish-card__ph { width: 100%; height: 100%; display: grid; place-items: center; background: var(--sz-cream); }
.dish-card__ph img { width: 46%; height: auto; opacity: 0.5; object-fit: contain; }
.dish-card__media .badge { position: absolute; top: 12px; left: 12px; }
.dish-card__body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dish-card__head { display: flex; align-items: flex-start; gap: 8px; }
.dish-card__head .veg-mark { margin-top: 4px; }
.dish-card__body h3 { font-size: var(--fs-h3); font-weight: 600; color: var(--text-on-light); line-height: 1.2; }
.dish-card__desc { margin: 0; font-size: 13px; font-weight: 500; color: var(--text-muted); line-height: 1.5; }
.variants { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.variant { flex: 1 1 auto; font-weight: 700; font-size: 12px; letter-spacing: 0.01em; cursor: pointer;
  padding: 7px 10px; border-radius: var(--radius-pill); border: 2px solid var(--border-on-light);
  background: var(--sz-white); color: var(--sz-espresso-500); transition: all var(--dur-fast); white-space: nowrap; }
.variant.is-active { border-color: var(--sz-espresso); background: var(--sz-espresso); color: var(--sz-saffron); }
.dish-card__foot { margin-top: auto; padding-top: 6px; display: flex; align-items: center; justify-content: space-between; }
.cart-row__var { display: inline-block; font-size: 11px; font-weight: 800; color: var(--sz-white); background: var(--sz-leaf);
  padding: 1px 7px; border-radius: var(--radius-pill); margin-left: 4px; vertical-align: middle; }
.price strong { font-family: var(--font-body); font-weight: 800; font-size: 18px; color: var(--sz-espresso); }
.price__was { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-right: 7px; }

/* ============================================================
   WHY / TRUST
   ============================================================ */
.why { background: var(--sz-espresso); color: var(--sz-cream); padding: 48px 0; }
.why .section-head h2 { color: var(--sz-white); }
.why .kicker { color: var(--sz-saffron); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
.why-card { background: var(--sz-espresso-700); border-radius: var(--radius-lg); padding: 18px; text-align: center; }
.why-card__ico { font-size: 26px; }
.why-card h3 { font-family: var(--font-display); font-size: 16px; color: var(--sz-saffron); margin: 8px 0 4px; }
.why-card p { margin: 0; font-size: 12px; color: var(--sz-cream); opacity: 0.85; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--sz-cream); padding: 48px 0; }
.reviews-summary { margin: 10px 0 0; font-size: 14px; font-weight: 600; color: var(--text-muted); }
.reviews-summary strong { color: var(--sz-espresso); }
#google-reviews-widget:empty { display: none; }
#google-reviews-widget { margin-bottom: 20px; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.review { background: var(--sz-white); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-sm); }
.review .stars { color: var(--sz-chilli); letter-spacing: 1px; }
.review p { font-size: 14px; font-weight: 500; color: var(--sz-espresso); margin: 8px 0 12px; }
.review__who { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--sz-espresso); }
.review__ava { width: 34px; height: 34px; border-radius: 50%; background: var(--sz-saffron); display: grid; place-items: center; font-family: var(--font-display); color: var(--sz-espresso); }
.review__who small { display: block; font-weight: 600; color: var(--sz-espresso-500); }

/* ============================================================
   CELEBRATIONS
   ============================================================ */
.celebrations { background: var(--sz-espresso-900); color: var(--sz-cream); padding: 48px 0; }
.celebrations .kicker { color: var(--sz-saffron); }
.celebrations h2 { font-family: var(--font-display); font-size: var(--fs-h2); color: var(--sz-white); margin: 4px 0 0; }
.celebrations p { font-size: 15px; max-width: 480px; margin: 14px 0; }
.celebrations__pts { display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 16px 0 22px; }
.celebrations__pts span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; }
.celebrations__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   VISIT
   ============================================================ */
.visit { padding: 48px 0; background: var(--sz-white); }
.visit__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.visit__map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.visit__map iframe { width: 100%; height: 100%; border: 0; }
.visit__map--link { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center;
  background: var(--sz-cream); color: var(--sz-espresso); padding: 24px; }
.visit__map--link:hover { background: var(--sz-cream-200); }
.visit__map-pin { font-size: 40px; }
.visit__map--link strong { font-family: var(--font-display); font-size: 20px; }
.visit__map--link span { font-size: 13px; font-weight: 600; color: var(--sz-espresso-500); }
.visit__map-cta { margin-top: 8px; font-weight: 800 !important; color: var(--sz-chilli) !important; }
.visit__info h2 { font-family: var(--font-display); font-size: var(--fs-h2); color: var(--sz-espresso); }
.visit__row { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border-on-light); font-size: 14px; }
.visit__row b { display: block; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.04em; color: var(--sz-espresso); text-transform: uppercase; margin-bottom: 3px; }
.visit__row .ico { font-size: 18px; color: var(--sz-chilli); }
.visit__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.info-strip { background: var(--sz-saffron); color: var(--sz-espresso); padding: 20px 0; }
.info-strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.info-strip__grid b { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; display: block; }
.info-strip__grid span { font-size: 13px; font-weight: 600; }
.site-footer { background: var(--sz-espresso-900); color: var(--sz-cream); padding: 22px 0; font-size: 12px; font-weight: 500; text-align: center; }
.footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px; margin-bottom: 14px; }
.footer-social a { font-family: var(--font-body); font-weight: 700; font-size: 12px; color: var(--sz-espresso); background: var(--sz-saffron);
  padding: 7px 14px; border-radius: var(--radius-pill); transition: background var(--dur-fast); }
.footer-social a:hover { background: var(--sz-saffron-300); }
.site-footer p { margin: 4px 0; opacity: 0.85; }

/* ============================================================
   FLOATING WHATSAPP + MOBILE BOTTOM BAR
   ============================================================ */
.wa-float { position: fixed; right: 16px; bottom: calc(var(--bottombar-h) + 16px); z-index: 45;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.5); font-size: 26px; }
.wa-float:hover { transform: scale(1.06); }
.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; height: var(--bottombar-h); background: var(--sz-white);
  border-top: 1px solid var(--border-on-light); display: flex; box-shadow: 0 -6px 18px rgba(33,23,14,0.08); }
.bottom-bar a, .bottom-bar button { flex: 1; background: none; border: none; cursor: pointer; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px; font-size: 10px; font-weight: 800; letter-spacing: 0.02em; color: var(--sz-espresso-500); }
.bottom-bar .ico { font-size: 20px; }
.bottom-bar .bar-order { color: var(--sz-white); background: #25D366; margin: 6px; border-radius: var(--radius-pill); flex: 1.4; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay { position: fixed; inset: 0; z-index: 55; background: rgba(22,15,8,0.5); opacity: 0; pointer-events: none; transition: opacity var(--dur-base); }
.cart-drawer { position: fixed; z-index: 56; top: 0; right: 0; height: 100%; width: min(420px, 90vw); background: var(--sz-white);
  transform: translateX(100%); transition: transform var(--dur-base) var(--ease-out); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
body.cart-open .cart-overlay { opacity: 1; pointer-events: auto; }
body.cart-open .cart-drawer { transform: translateX(0); }
.cart-head { background: var(--sz-espresso); color: var(--sz-cream); padding: 16px; display: flex; align-items: center; justify-content: space-between; }
.cart-head h2 { font-family: var(--font-display); font-size: 20px; color: var(--sz-cream); }
.cart-head button { background: none; border: none; color: var(--sz-saffron); font-size: 24px; cursor: pointer; line-height: 1; }
.otype { display: flex; gap: 8px; padding: 14px 16px 4px; }
.otype button { flex: 1; padding: 10px; border-radius: var(--radius-pill); border: 2px solid var(--sz-espresso); background: transparent;
  font-weight: 800; font-size: 13px; color: var(--sz-espresso); cursor: pointer; }
.otype button.is-active { background: var(--sz-espresso); color: var(--sz-saffron); }
.cart-body { flex: 1; overflow-y: auto; padding: 8px 16px; }
.cart-empty { text-align: center; color: var(--text-muted); padding: 60px 0; font-weight: 600; }
.cart-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-on-light); }
.cart-row__info { flex: 1; }
.cart-row__name { font-weight: 600; font-size: 15px; color: var(--sz-espresso); }
.cart-row__price { font-size: 13px; font-weight: 700; color: var(--sz-espresso-500); }
.stepper { display: flex; align-items: center; gap: 12px; background: var(--sz-cream); border-radius: var(--radius-pill); padding: 6px 12px; }
.stepper button { background: none; border: none; cursor: pointer; font-size: 18px; font-weight: 800; line-height: 1; width: 18px; }
.stepper button:first-child { color: var(--sz-chilli); }
.stepper button:last-child { color: var(--sz-leaf); }
.stepper span { font-weight: 800; min-width: 16px; text-align: center; }
.cart-details { padding: 8px 0 4px; display: flex; flex-direction: column; gap: 8px; }
.cart-details__title { font-family: var(--font-display); font-size: 15px; color: var(--sz-espresso); margin-top: 8px; }
.cart-details__title span { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; color: var(--text-muted); margin-top: 2px; }
.cart-details input, .cart-details textarea { width: 100%; font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--sz-espresso); background: var(--sz-cream); border: 2px solid transparent; border-radius: var(--radius-md);
  padding: 11px 14px; resize: vertical; }
.cart-details input:focus, .cart-details textarea:focus { outline: none; border-color: var(--sz-saffron); background: var(--sz-white); }
.cart-details__hint { margin: 0; font-size: 11px; font-weight: 600; color: var(--text-muted); }
.cart-foot { padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border-on-light); background: var(--sz-white); }
.free-progress { background: var(--sz-saffron); color: var(--sz-espresso); border-radius: var(--radius-md); padding: 10px 12px; margin-bottom: 12px; }
.free-progress.is-free { background: var(--sz-leaf); color: #fff; }
.free-progress__label { font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.free-progress__track { height: 6px; background: rgba(33,23,14,0.15); border-radius: 999px; overflow: hidden; }
.free-progress__track span { display: block; height: 100%; background: var(--sz-espresso); border-radius: 999px; transition: width var(--dur-base); }
.free-progress.is-free .free-progress__track span { background: #fff; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-weight: 700; }
.cart-total strong { font-family: var(--font-display); font-size: 22px; color: var(--sz-espresso); }
#send-order { justify-content: space-between; }
#send-order span { font-family: var(--font-display); }

/* ============================================================
   RESPONSIVE — tablet / desktop
   ============================================================ */
@media (min-width: 720px) {
  .hero__in { grid-template-columns: 1.05fr 1fr; }
  .order-options__grid { grid-template-columns: repeat(4, 1fr); }
  .cuisine-bar { grid-template-columns: repeat(3, 1fr); }
  .cuisine-bar__item { border-top: none; border-left: 1px solid var(--sz-espresso-700); justify-content: center; }
  .cuisine-bar__item:first-child { border-left: none; }
  .menu-grid-inner { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .celebrations__in { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .visit__grid { grid-template-columns: 1fr 1fr; }
  .info-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .open-status { display: inline-flex; }
  .site-nav { display: flex; }
  .header-actions .btn { display: inline-flex; }
  .wa-float { display: none; }
  .bottom-bar { display: none; }
  body { }
  .hero h1 { font-size: 64px; }
}
/* keep content clear of the fixed bottom bar on mobile */
@media (max-width: 899px) { body { padding-bottom: var(--bottombar-h); } }

/* ============================================================
   FEEDBACK FIXES (2026-07-07)
   ============================================================ */
/* 1. Full-width header/footer — beat Hello Elementor's .site-header/.site-footer (max-width 800) */
body .site-header, body .site-footer, body .info-strip {
  max-width: 100% !important; width: 100% !important; margin-left: 0 !important; margin-right: 0 !important;
}

/* 2. Stack order-option + cuisine-bar title/subtitle vertically */
.oo-card > span:last-child,
.cuisine-bar__item > span:last-child { display: flex; flex-direction: column; }
.oo-card__t, .oo-card__s, .cuisine-bar__name, .cuisine-bar__time { display: block; }

/* 3. Whole menu is pure-veg — drop the per-dish green veg mark (kept in the hero statement) */
.dish-card .veg-mark, .cart-row .veg-mark { display: none; }

/* 4. Half/Full pills: compact, neutral (no red), don't stretch. Main price updates on select. */
.dish-card .variants { gap: 6px; margin-top: 4px; }
.dish-card .variant { flex: 0 0 auto; padding: 5px 12px; font-size: 11px; letter-spacing: 0.02em;
  border: 2px solid var(--sz-cream-200); background: var(--sz-white); color: var(--sz-espresso-500); }
.dish-card .variant.is-active { border-color: var(--sz-espresso); background: var(--sz-espresso); color: var(--sz-saffron); }
/* Add button stays brand saffron */
.dish-card .btn--add { background: var(--sz-saffron); color: var(--sz-espresso); border: 0; }
.dish-card .btn--add:hover { background: var(--sz-saffron-600); }

/* 5. Native Elementor buttons: keep them Montserrat bold (accent link typography leaks in) */
.elementor-widget-button .elementor-button { font-family: "Montserrat", sans-serif !important; font-weight: 800 !important; text-transform: uppercase; letter-spacing: 0.3px; }

/* 6. Protect our dark buttons from Elementor's global link colour (a{} beats .btn) */
body .btn--dark { color: var(--sz-saffron) !important; }
body .btn--wa { color: #073b1e !important; }
.site-header .site-nav a, .site-footer .footer-social a { color: var(--sz-espresso); }

/* 7. Restore dark-section heading colours (Elementor Kit's global h2/h3 espresso overrides them) */
.celebrations h2 { color: var(--sz-white) !important; }
.why-card h3 { color: var(--sz-saffron) !important; }
.why .section-head h2 { color: var(--sz-white) !important; }
