:root {
  --accent: #c9851a;
  --accent-dark: #a86c12;
  --accent-soft: #f7eedc;
  --text: #1f1f1f;
  --text-muted: #5c5c5c;
  --border: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --header-h: 72px;
  --topbar-h: 36px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-shell > main {
  flex: 1;
}

/* Top bar */
.topbar {
  background: #efefef;
  font-size: 0.82rem;
  color: var(--text-muted);
  height: var(--topbar-h);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-item:hover {
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-india {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background: var(--bg-soft);
  color: var(--accent);
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

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

.btn-outline {
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--bg-soft);
}

.btn-block {
  width: 100%;
}

.btn-add {
  background: #fff;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.btn-add:hover {
  background: var(--accent);
  color: #fff;
}

.btn-add-pill {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  border: none;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-add-pill:hover {
  transform: translateY(-1px);
  background: #fffaf2;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(201, 133, 26, 0.08), transparent 45%),
    linear-gradient(180deg, #faf7f2 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-media {
  position: relative;
}

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

.veg-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.veg-leaf {
  width: 10px;
  height: 10px;
  border-radius: 50% 0;
  background: #2f9e44;
  transform: rotate(-35deg);
}

/* Features strip */
.features-strip {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-item h3 {
  font-size: 1rem;
  margin: 0.55rem 0 0.25rem;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.feature-icon {
  color: var(--accent);
}

/* Popular */
.section {
  padding: 3rem 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2,
.menu-page h1,
.simple-page h1,
.info-col h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.popular {
  background: linear-gradient(180deg, #f08a1c 0%, #e67a12 100%);
  padding-block: 2.75rem;
  overflow: hidden;
}

.section-head--on-orange h2,
.section-head--on-orange .text-link--on-orange {
  color: #fff;
}

.text-link--on-orange:hover {
  color: #fff7ea;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.popular-marquee {
  --popular-gap: 1.15rem;
  margin-top: 0.25rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.popular-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--popular-gap);
  padding-inline: max(1.25rem, calc((100vw - 1120px) / 2));
  animation: popular-marquee 42s linear infinite;
  will-change: transform;
}

.popular-marquee:hover .popular-marquee-track {
  animation-play-state: paused;
}

.popular-marquee .popular-card.menu-item-card {
  flex: 0 0 clamp(220px, 22vw, 280px);
  width: clamp(220px, 22vw, 280px);
}

.popular-card.menu-item-card {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.popular-card .menu-item-media img {
  animation: popular- ken 14s ease-in-out infinite alternate;
  transform-origin: center center;
}

.popular-card:nth-child(2n) .menu-item-media img {
  animation-delay: -4s;
}

.popular-card:nth-child(3n) .menu-item-media img {
  animation-delay: -8s;
}

@keyframes popular-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - (var(--popular-gap) / 2)), 0, 0);
  }
}

@keyframes popular-ken {
  from {
    transform: translateZ(0) scale(1);
  }
  to {
    transform: translateZ(0) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .popular-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
    padding-inline: 0;
    justify-content: center;
  }

  .popular-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .popular-card .menu-item-media img {
    animation: none;
  }
}

.price {
  font-weight: 700;
}

.rating {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Info section */
.info-section {
  background: var(--bg-soft);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.info-col {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.hours-list {
  margin: 1rem 0 1.25rem;
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.why-card {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.why-card h2 {
  margin-bottom: 1.1rem;
  font-size: 1.6rem;
}

.why-card ul {
  display: grid;
  gap: 0.85rem;
}

.why-card li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-image {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.map-frame {
  margin: 1rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 11;
}

.map-frame.tall {
  aspect-ratio: 16 / 12;
  margin-top: 1.25rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text-muted);
  margin-top: 0.55rem;
  font-size: 0.95rem;
}

.contact-line a:hover {
  color: var(--accent);
}

/* Footer */
.site-footer {
  margin-top: auto;
}

.footer-features {
  background: var(--accent);
  color: #fff;
  padding: 1.75rem 0;
}

.footer-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.footer-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-copy {
  background: #fff;
  text-align: center;
  padding: 0.9rem 1rem;
  color: #8a8a8a;
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* Menu page */
.menu-page {
  background: var(--bg-soft);
  padding: 2.25rem 0 3rem;
}

.menu-wrap h1 {
  margin-bottom: 1.1rem;
}

.menu-search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.1rem;
  color: var(--text-muted);
}

.menu-search input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  color: var(--text);
}

.category-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.65rem;
}

.category-slider::before,
.category-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.4rem;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.category-slider::before {
  left: 2.35rem;
  background: linear-gradient(90deg, var(--bg-soft) 12%, transparent);
}

.category-slider::after {
  right: 2.35rem;
  background: linear-gradient(270deg, var(--bg-soft) 12%, transparent);
}

.category-slider.has-left::before,
.category-slider.has-right::after {
  opacity: 1;
}

.category-nav {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    opacity 0.15s ease;
}

.category-nav:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.category-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.category-row {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding: 0.15rem 0.2rem;
  flex: 1;
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-row::-webkit-scrollbar {
  display: none;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  border: 1px solid #e6e0d6;
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.58rem 1rem;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    transform 0.15s ease;
}

.category-chip:hover:not(.active) {
  border-color: #d7c7a8;
  background: #fffaf2;
}

.category-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(201, 133, 26, 0.22);
}

.category-chip.icon-only {
  padding-inline: 0.78rem;
}

.menu-section-title {
  font-size: 1.25rem;
  margin-bottom: 1.15rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.menu-item-card {
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.menu-item-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.menu-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: contrast(1.04) saturate(1.05);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.menu-item-card:hover .menu-item-media img {
  transform: translateZ(0) scale(1.02);
  filter: contrast(1.06) saturate(1.08);
}

.thumb-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, #e8d5b5, #c9851a55),
    radial-gradient(circle at 30% 30%, #fff6, transparent 50%);
}

.menu-item-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.95rem 1rem 1.1rem;
  min-width: 0;
  flex: 1;
}

.menu-item-body h3 {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0;
  color: #111;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item-desc {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-price {
  display: block;
  color: #111;
  font-weight: 700;
  font-size: 1rem;
  margin: 0.35rem 0 0;
}

.menu-empty {
  grid-column: 1 / -1;
  color: var(--text-muted);
  padding: 1rem 0;
}

/* Simple pages */
.simple-page {
  padding: 2.75rem 0 3.5rem;
  background: var(--bg-soft);
}

.simple-page h1 {
  margin-bottom: 1rem;
}

.simple-page p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.quote-box {
  margin-top: 1.75rem;
  background: #f3e9d6;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.quote-box h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.quote-box p {
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.reservation-form {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.5rem;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem 1rem;
}

.reservation-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.reservation-form label span {
  color: var(--text-muted);
  font-weight: 600;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-color: var(--accent);
}

.reservation-notes {
  margin-top: 1rem;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.reservation-success .btn-outline {
  margin-top: 0.65rem;
}

.contact-details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 60;
  display: flex;
  justify-content: flex-end;
  animation: fadeIn 0.2s ease;
}

.cart-drawer {
  width: min(400px, 100%);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
  animation: slideIn 0.22s ease;
}

.cart-drawer-head,
.cart-drawer-foot {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-foot {
  border-bottom: none;
  border-top: 1px solid var(--border);
  margin-top: auto;
  display: grid;
  gap: 0.65rem;
}

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

.cart-drawer-head h2 {
  font-size: 1.15rem;
}

.cart-empty {
  padding: 2rem 1.2rem;
  text-align: center;
  color: var(--text-muted);
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.cart-lines {
  padding: 0.75rem 1.2rem;
  overflow: auto;
  display: grid;
  gap: 0.75rem;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-line-media {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.cart-line-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-line-img--placeholder {
  background: var(--bg-soft);
}

.cart-line-info {
  min-width: 0;
}

.cart-line-info strong {
  display: block;
  line-height: 1.25;
}

.cart-line-subtitle {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.cart-line p {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

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

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
}

.checkout-cancel-disclaimer {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  border: 1px solid #e8d4a8;
  background: #fff8eb;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.checkout-cancel-disclaimer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

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

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .info-grid,
  .contact-grid,
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .footer-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .popular-grid,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popular-marquee .popular-card.menu-item-card {
    flex-basis: clamp(200px, 42vw, 260px);
    width: clamp(200px, 42vw, 260px);
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1rem;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .order-now {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar-item span {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .features-grid,
  .popular-grid,
  .menu-grid,
  .footer-features-grid {
    grid-template-columns: 1fr;
  }

  .popular-marquee-track {
    animation-duration: 32s;
  }

  .menu-item-body {
    padding: 0.85rem 0.9rem 1rem;
  }

  .btn-add-pill {
    top: 0.6rem;
    right: 0.6rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }
}
