:root {
  --ink: #0b1220;
  --text: #0f172a;
  --text-inv: #f8fafc;
  --muted: rgba(15, 23, 42, 0.66);
  --muted-2: rgba(15, 23, 42, 0.52);
  --border: rgba(15, 23, 42, 0.1);
  --border-inv: rgba(248, 250, 252, 0.12);

  --accent: #d6402b;
  --accent-2: #f18f01;
  --cream: #fff8f3;
  --paper: #ffffff;
  --paper-2: #fff3ea;

  --shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
  --shadow-2: 0 30px 80px rgba(15, 23, 42, 0.16);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Poppins,
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(241, 143, 1, 0.15), transparent 55%),
    radial-gradient(1100px 700px at 95% 10%, rgba(214, 64, 43, 0.12), transparent 52%),
    radial-gradient(900px 620px at 15% 95%, rgba(214, 64, 43, 0.08), transparent 55%),
    linear-gradient(180deg, var(--paper-2), #ffffff 52%);
}

/* Subtle paper texture (no extra assets) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: multiply;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 9999;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.skip-link:focus {
  left: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 18px rgba(255, 59, 48, 0.2);
}

.brand-logo {
  width: 24px;
  height: 24px;
  display: block;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  margin-left: auto;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 14px;
  color: rgba(15, 23, 42, 0.72);
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 700;
}

.nav-link:hover {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.9);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 58;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 340px);
  background: #fff;
  border-left: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: -24px 0 54px rgba(15, 23, 42, 0.18);
  transform: translateX(100%);
  transition: transform 260ms ease;
  z-index: 59;
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
}

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

.mobile-nav-title {
  margin: 0;
  font-size: 18px;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 900;
}

.mobile-nav-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  color: rgba(15, 23, 42, 0.86);
  font-size: 14px;
  font-weight: 700;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  background: rgba(255, 248, 243, 0.82);
  border-color: rgba(214, 64, 43, 0.24);
  transform: translateY(-1px);
}

body.mobile-nav-open .mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-nav-open .mobile-nav-drawer {
  transform: translateX(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 200ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.95);
}

.btn-lg {
  padding: 14px 16px;
  border-radius: 16px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(214, 64, 43, 0.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(214, 64, 43, 0.26);
}

.btn-ghost {
  color: rgba(15, 23, 42, 0.86);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.12);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.16);
  transform: translateY(-1px);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #15803d);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(21, 128, 61, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(21, 128, 61, 0.3);
}

.btn-menu {
  color: #fff;
  background: linear-gradient(135deg, #d6402b, #f18f01);
  border-color: rgba(214, 64, 43, 0.25);
  box-shadow: 0 14px 30px rgba(214, 64, 43, 0.22);
}

.btn-menu:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-menu:active,
.btn-menu:focus-visible {
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.76), rgba(11, 18, 32, 0.58)),
    url("https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?auto=format&fit=crop&w=1800&q=75")
      center / cover no-repeat;
  filter: saturate(1.05);
}

.hero-sheen {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 75%;
  background: radial-gradient(closest-side, rgba(241, 143, 1, 0.28), transparent 65%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.42));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 56px 0 72px;
}

.hero-card {
  max-width: 640px;
  color: var(--text-inv);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.52), rgba(8, 12, 20, 0.34));
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-2);
}

.hero-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.78);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(248, 250, 252, 0.86);
  font-size: 13px;
  margin: 0 0 14px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.16);
}

.dot.dot--closed {
  background: #fb7185;
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.16);
}

.hero-title {
  margin: 0 0 8px;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: clamp(34px, 5.8vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-tagline {
  margin: 0 0 18px;
  font-size: clamp(16px, 3.6vw, 20px);
  color: rgba(248, 250, 252, 0.86);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: rgba(248, 250, 252, 0.82);
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.meta-sep {
  opacity: 0.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(248, 250, 252, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(248, 250, 252, 0.74);
}

.fulfillment-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 16px;
}

@media (max-width: 520px) {
  .fulfillment-facts {
    grid-template-columns: 1fr;
  }
}

.fulfillment-fact {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.fulfillment-fact-title {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.62);
}

.fulfillment-fact-value {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(248, 250, 252, 0.95);
  line-height: 1.25;
}

.fulfillment-fact-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(248, 250, 252, 0.68);
}

.fulfillment-facts--light {
  margin: 0 0 16px;
}

.fulfillment-facts--light .fulfillment-fact {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.fulfillment-facts--light .fulfillment-fact-title {
  color: var(--muted);
}

.fulfillment-facts--light .fulfillment-fact-value {
  color: var(--text);
}

.fulfillment-facts--light .fulfillment-fact-note {
  color: var(--muted);
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-alt {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(241, 143, 1, 0.14), transparent 60%),
    radial-gradient(900px 420px at 90% 0%, rgba(214, 64, 43, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 248, 243, 0.85), #ffffff);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
}

.section-subtitle {
  margin: 0;
  color: rgba(15, 23, 42, 0.68);
}

.section-cta {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.fineprint {
  margin: 0;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.62);
}

/* Menu */
.menu-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.menu-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 59, 48, 0.28);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.menu-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.14), rgba(255, 122, 24, 0.14));
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-size: cover;
  background-position: center;
}

.menu-thumb[data-img="veg"] {
  background-image: url("https://images.unsplash.com/photo-1601050690597-df0568f70950?auto=format&fit=crop&w=400&q=60");
}
.menu-thumb[data-img="chicken"] {
  background-image: url("https://images.unsplash.com/photo-1604909052743-94e1a3daee20?auto=format&fit=crop&w=400&q=60");
}
.menu-thumb[data-img="fried"] {
  background-image: url("https://images.unsplash.com/photo-1555992336-cbf06f47f41e?auto=format&fit=crop&w=400&q=60");
}
.menu-thumb[data-img="combo"] {
  background-image: url("https://images.unsplash.com/photo-1527965408463-82ae0731825c?auto=format&fit=crop&w=400&q=60");
}

.menu-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.menu-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.menu-name {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.menu-price {
  margin: 0;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.92);
}

.menu-desc {
  margin: 0;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.66);
}

/* Menu (premium restaurant style) */
.menu-nav {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 2px 2px 12px;
  margin-bottom: 8px;
  scroll-snap-type: x proximity;
}

.menu-nav::-webkit-scrollbar {
  height: 8px;
}
.menu-nav::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.12);
  border-radius: 999px;
}

.menu-helper {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 10px;
}

.menu-helper-text {
  margin: 0;
  color: rgba(15, 23, 42, 0.76);
  font-weight: 600;
  font-size: 14px;
}

.chip {
  scroll-snap-align: start;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(15, 23, 42, 0.86);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 64, 43, 0.22);
  background: rgba(255, 248, 243, 0.9);
}

.menu-premium {
  display: grid;
  gap: 14px;
}

.menu-cardx {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 248, 243, 0.55));
  box-shadow: var(--shadow);
  overflow: clip;
}

.menu-cardx-media {
  height: 118px;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.55), rgba(11, 18, 32, 0.22)),
    radial-gradient(100% 120% at 20% 0%, rgba(241, 143, 1, 0.22), transparent 60%),
    radial-gradient(100% 120% at 100% 0%, rgba(214, 64, 43, 0.18), transparent 60%);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  filter: saturate(1.08) contrast(1.02);
}

.menu-cardx-media--momos {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.58), rgba(11, 18, 32, 0.18)),
    url("../img/menu-momos.jpg");
}

.menu-cardx-media--paneer {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.58), rgba(11, 18, 32, 0.18)),
    url("../img/menu-paneer.jpg");
}

.menu-cardx-media--rice {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.58), rgba(11, 18, 32, 0.18)),
    url("../img/menu-rice.jpg");
}

.menu-cardx-media--noodles {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.58), rgba(11, 18, 32, 0.18)),
    url("../img/menu-noodles.jpg");
}

.menu-cardx-media--soup {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.58), rgba(11, 18, 32, 0.18)),
    url("../img/menu-soup.jpg");
}

.menu-cardx-media--starters {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.58), rgba(11, 18, 32, 0.18)),
    url("../img/menu-starters.jpg");
}

.menu-cardx::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 260px at 10% 0%, rgba(214, 64, 43, 0.10), transparent 60%),
    radial-gradient(650px 260px at 90% 0%, rgba(241, 143, 1, 0.10), transparent 60%);
  pointer-events: none;
}

.menu-cardx > * {
  position: relative;
}

.menu-cardx-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.menu-cardx-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
}

.menu-cardx-sub {
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.62);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-diet {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-diet::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.mini-diet--veg {
  color: #15803d;
}

.mini-diet--nonveg {
  color: #b91c1c;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.66);
  white-space: nowrap;
}

.tag-hot {
  border-color: rgba(214, 64, 43, 0.18);
  background: rgba(214, 64, 43, 0.08);
  color: rgba(214, 64, 43, 0.92);
}

.tag-special {
  border-color: rgba(241, 143, 1, 0.26);
  background: transparent;
  color: rgba(15, 23, 42, 0.72);
}

.menu-cardx-title::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 7px;
  vertical-align: -4px;
  opacity: 0.72;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 10c0-2.2 1.8-4 4-4 .4-1.7 1.9-3 3.8-3 2.2 0 4 1.8 4 4v1h1a2 2 0 0 1 0 4H5a2 2 0 0 1 0-4h1v2Z'/%3E%3Cpath d='M7 12v4c0 2.2 1.8 4 4 4h2c2.2 0 4-1.8 4-4v-4'/%3E%3C/svg%3E");
}

#momos .menu-cardx-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 13c0-4 3.8-7.3 8.5-7.3s8.5 3.3 8.5 7.3c0 4.2-3.8 7.3-8.5 7.3S3.5 17.2 3.5 13Z'/%3E%3Cpath d='M8 11.3c1-1.5 2.4-2.3 4-2.3s3 .8 4 2.3'/%3E%3C/svg%3E");
}

#paneer-momos .menu-cardx-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='14' height='14' rx='2.5'/%3E%3Cpath d='M9 9h6M9 12h6M9 15h4'/%3E%3C/svg%3E");
}

#rice .menu-cardx-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 14.5h18a7 7 0 0 1-7 6.5h-4a7 7 0 0 1-7-6.5Z'/%3E%3Cpath d='M8 11.5v2M11.5 10.5v3M15 9.8v3.7M18 10.8v2.7'/%3E%3C/svg%3E");
}

#noodles .menu-cardx-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 15h16'/%3E%3Cpath d='M6 11h12M5 18h14'/%3E%3Cpath d='M8 5l1.2 4M13.5 5l1.2 4'/%3E%3C/svg%3E");
}

#soup .menu-cardx-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13h16v1.5a6.5 6.5 0 0 1-6.5 6.5h-3A6.5 6.5 0 0 1 4 14.5V13Z'/%3E%3Cpath d='M8.2 9c0-1 1-1.5 1-2.5M12 9c0-1 1-1.5 1-2.5M15.8 9c0-1 1-1.5 1-2.5'/%3E%3C/svg%3E");
}

#starters .menu-cardx-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 4.5v15M8 4.5v6M11 4.5v6M9.5 10.5v9'/%3E%3Cpath d='M16.5 4.5v6.5a2.5 2.5 0 0 0 5 0V4.5'/%3E%3Cpath d='M19 11v8.5'/%3E%3C/svg%3E");
}

.menu-matrix {
  padding: 10px 12px 14px;
  display: grid;
  gap: 8px;
}

.menu-matrix-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
}


.menu-matrix-row:hover {
  border-color: rgba(214, 64, 43, 0.16);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"],
.menu-item[data-quick-order="true"] {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

/* Keep content above hover sheen */
.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"] > *,
.menu-item[data-quick-order="true"] > * {
  position: relative;
  z-index: 2;
}

.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"] > div:first-child,
.menu-item[data-quick-order="true"] .mi-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"] > div:first-child::after {
  content: "ADD +";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.03em;
  border: 1px solid rgba(241, 143, 1, 0.34);
  background: rgba(241, 143, 1, 0.12);
  color: rgba(214, 64, 43, 0.95);
  flex: 0 0 auto;
}

/* Keep list cards clean and avoid clipping prices */
.menu-item[data-quick-order="true"] {
  padding-right: 66px;
}

.menu-item[data-quick-order="true"] .mi-name::after {
  content: none;
}

.menu-item[data-quick-order="true"]::after {
  content: "ADD +";
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.03em;
  border: 1px solid rgba(241, 143, 1, 0.34);
  background: rgba(241, 143, 1, 0.12);
  color: rgba(214, 64, 43, 0.95);
}

.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"]::before,
.menu-item[data-quick-order="true"]::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background: radial-gradient(420px 140px at 20% 0%, rgba(214, 64, 43, 0.16), transparent 62%),
    radial-gradient(420px 140px at 100% 0%, rgba(241, 143, 1, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"]:hover,
.menu-item[data-quick-order="true"]:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 64, 43, 0.22);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  background: rgba(255, 248, 243, 0.82);
}

.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"]:hover > div:first-child::after,
.menu-item[data-quick-order="true"]:hover::after,
.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"]:focus-visible > div:first-child::after,
.menu-item[data-quick-order="true"]:focus-visible::after {
  border-color: rgba(214, 64, 43, 0.32);
  background: rgba(241, 143, 1, 0.2);
}

.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"]:hover::before,
.menu-item[data-quick-order="true"]:hover::before,
.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"]:focus-visible::before,
.menu-item[data-quick-order="true"]:focus-visible::before {
  opacity: 1;
}

.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"]:active,
.menu-item[data-quick-order="true"]:active {
  transform: translateY(1px) scale(0.995);
}

@media (hover: none) {
  .menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"]:hover,
  .menu-item[data-quick-order="true"]:hover {
    transform: none;
  }
}

.menu-matrix-row:not(.menu-matrix-head)[data-quick-order="true"]:focus-visible,
.menu-item[data-quick-order="true"]:focus-visible {
  outline: 3px solid rgba(214, 64, 43, 0.35);
  outline-offset: 2px;
}

.menu-matrix-head {
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(15, 23, 42, 0.02);
  padding-top: 10px;
  padding-bottom: 10px;
}

.menu-matrix-head > div {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.60);
}

.menu-matrix-head > div:nth-child(2) {
  color: rgba(22, 163, 74, 0.92);
}

.menu-matrix-head > div:nth-child(3) {
  color: rgba(220, 38, 38, 0.92);
}

.menu-matrix-row > div:nth-child(2),
.menu-matrix-row > div:nth-child(3) {
  text-align: right;
  font-weight: 900;
}

.menu-matrix-row > div:first-child {
  font-family: Nunito, Poppins, Inter, system-ui, sans-serif;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.84);
}

.menu-matrix-row > div:nth-child(2) {
  color: rgba(22, 163, 74, 0.96);
}

.menu-matrix-row > div:nth-child(3) {
  color: rgba(220, 38, 38, 0.96);
}

.menu-matrix-row > div:nth-child(2):is(:empty),
.menu-matrix-row > div:nth-child(3):is(:empty) {
  color: rgba(15, 23, 42, 0.34);
}

.menu-list {
  padding: 10px 16px 14px;
  display: grid;
  gap: 10px;
}

.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.menu-item:hover {
  border-color: rgba(214, 64, 43, 0.16);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.mi-name {
  font-family: Nunito, Poppins, Inter, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.84);
}

.mi-dots {
  height: 1px;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  opacity: 0.22;
  transform: translateY(2px);
}

.mi-price {
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Veg / Non-veg cue for single-price lists */
#paneer-momos .mi-price,
#starters .menu-list[aria-label="Veg and paneer items"] .mi-price {
  border-color: rgba(22, 163, 74, 0.26);
  background: rgba(22, 163, 74, 0.08);
  color: rgba(22, 163, 74, 0.96);
}

#starters .menu-list[aria-label="Chicken items"] .mi-price {
  border-color: rgba(220, 38, 38, 0.26);
  background: rgba(220, 38, 38, 0.08);
  color: rgba(220, 38, 38, 0.96);
}

/* Muted dash value inside price tables */
.menu-matrix-row > div:nth-child(2) .price-muted,
.menu-matrix-row > div:nth-child(3) .price-muted {
  color: rgba(15, 23, 42, 0.34);
  font-weight: 900;
}

.menu-two {
  padding: 10px 16px 14px;
  display: grid;
  gap: 12px;
}

/* Features */
.feature-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.feature {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 59, 48, 0.16);
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.16), rgba(255, 122, 24, 0.16));
  border: 1px solid rgba(255, 59, 48, 0.18);
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-title {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.feature-text {
  margin: 0;
  color: rgba(15, 23, 42, 0.66);
  font-size: 14px;
}

/* Location */
.location-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  min-height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.location-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 18px;
}

.location-title {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.location-text {
  margin: 0 0 14px;
  color: rgba(15, 23, 42, 0.66);
  font-size: 14px;
}

.location-actions {
  display: grid;
  gap: 10px;
}

.location-actions .btn {
  width: 100%;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.contact-card,
.faq-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  padding: 18px;
}

.contact-title {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.contact-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  align-items: start;
}

.contact-k {
  font-size: 12px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-v {
  color: rgba(15, 23, 42, 0.9);
}

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

.faq-q {
  margin: 0 0 10px;
  font-weight: 700;
}

.faq-list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(15, 23, 42, 0.72);
}

.notice {
  border-radius: 16px;
  border: 1px solid rgba(255, 59, 48, 0.18);
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.08), rgba(255, 122, 24, 0.08));
  padding: 14px;
}

.notice-title {
  margin: 0 0 4px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.notice-text {
  margin: 0;
  color: rgba(15, 23, 42, 0.68);
  font-size: 14px;
}

/* Footer */
.site-footer {
  padding: 24px 0 86px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

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

.footer-text {
  margin: 0;
  color: rgba(15, 23, 42, 0.66);
  font-size: 14px;
}

.footer-link {
  font-weight: 700;
  color: rgba(15, 23, 42, 0.82);
}

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

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 50px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 90vw;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.cart-badge {
  position: fixed;
  right: 16px;
  bottom: 84px;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  padding: 8px 12px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.cart-badge-icon {
  display: none;
}

.cart-badge-label-mobile {
  display: none;
}

.cart-badge[hidden] {
  display: none;
}

/* Hide redundant WhatsApp chip while cart is in use; dock cart to bottom corner */
body.cart-has-items .wa-float {
  display: none;
}

body.cart-has-items .cart-badge {
  bottom: calc(16px + env(safe-area-inset-bottom));
}

.cart-badge-label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.85);
}

.cart-badge-count {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 719px) {
  .header-inner {
    align-items: flex-start;
    gap: 8px;
  }

  .brand {
    flex: 1 1 100%;
  }

  .nav {
    flex: 1 1 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
    width: 100%;
  }

  .nav-link {
    display: block;
    text-align: center;
    padding: 6px 8px;
  }

  .wa-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: auto;
    width: auto;
  }

  .cart-badge {
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    justify-content: space-between;
    width: auto;
    min-height: 48px;
    padding: 8px 14px 8px 10px;
    gap: 10px;
    border-radius: 14px;
    border: 1px solid rgba(214, 64, 43, 0.28);
    background: linear-gradient(180deg, #fffdfb 0%, #fff7f1 100%);
    box-shadow:
      0 14px 30px rgba(15, 23, 42, 0.22),
      0 8px 16px rgba(214, 64, 43, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .cart-badge-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(145deg, rgba(214, 64, 43, 0.16), rgba(241, 143, 1, 0.14));
    color: var(--accent);
  }

  .cart-badge-icon svg {
    width: 20px;
    height: 20px;
  }

  .cart-badge-label-desktop {
    display: none;
  }

  .cart-badge-label-mobile {
    display: inline;
  }

  .cart-badge-label {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  .cart-badge-count {
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 3px 9px rgba(214, 64, 43, 0.24);
  }

  .cart-badge:active {
    transform: scale(0.98);
  }

  .site-footer {
    padding-bottom: 88px;
  }

  body.order-drawer-open .wa-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
  }

  body.order-drawer-open .cart-badge {
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
  }

  .wa-icon {
    width: 30px;
    height: 30px;
  }

  .wa-text {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.wa-float:hover {
  transform: translateY(-2px);
}

.wa-float:active {
  transform: scale(0.95);
}

.wa-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  flex: 0 0 auto;
}

.wa-icon svg {
  display: block;
}

.wa-text {
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Prevent clipped menu notes inside rounded cards */
.menu-note {
  padding: 0 16px 16px;
}

/* Responsive */
@media (min-width: 720px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .nav {
    gap: 14px;
  }

  .mobile-nav-backdrop,
  .mobile-nav-drawer {
    display: none;
  }

  .hero-card {
    padding: 28px;
  }

  .hero-actions {
    flex-direction: row;
  }

  .menu-premium {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .menu-helper {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .menu-cardx {
    scroll-margin-top: 88px;
  }

  .menu-two {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

  .location-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
    align-items: stretch;
  }

  .map-wrap iframe {
    min-height: 340px;
  }

  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 14px;
  }

  .location-actions {
    grid-template-columns: 1fr 1fr;
  }

  .contact-actions {
    flex-direction: row;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .menu-card,
  .wa-float,
  .cart-badge {
    transition: none;
  }
}

/* Order drawer */
.order-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.order-drawer.open {
  display: block;
}

.order-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.55);
  backdrop-filter: blur(4px);
}

.order-panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100% - 16px, 720px);
  max-height: min(86vh, 820px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.order-head {
  padding: 14px 16px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.9), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.order-eyebrow {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.58);
}

.order-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  cursor: pointer;
}

.order-body {
  padding: 14px 16px 18px;
  overflow: auto;
  display: grid;
  gap: 14px;
}

.order-section {
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 12px;
}

.order-sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.order-sec-title {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.link-btn {
  border: 0;
  background: transparent;
  color: rgba(214, 64, 43, 0.95);
  font-weight: 900;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 12px;
}

.link-btn:hover {
  background: rgba(214, 64, 43, 0.08);
}

.order-items {
  display: grid;
  gap: 10px;
}

.order-empty {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(214, 64, 43, 0.2);
  background: rgba(255, 248, 243, 0.75);
}

.order-empty-title {
  margin: 0;
  font-weight: 900;
}

.order-empty-text {
  margin: 4px 0 0;
  color: rgba(15, 23, 42, 0.66);
  font-size: 13px;
}

.order-empty-add {
  margin-top: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.order-empty--error {
  border: 1px solid rgba(185, 28, 28, 0.3);
  background: rgba(254, 226, 226, 0.5);
  border-radius: 12px;
  padding: 10px;
}

.order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 248, 243, 0.6);
}

.order-item-name {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mini-field {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.mini-label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.62);
}

.veg-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.veg-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.veg-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.veg-pill--veg {
  color: #166534;
  background: rgba(220, 252, 231, 0.78);
  border-color: rgba(21, 128, 61, 0.35);
}

.veg-pill--nonveg {
  color: #991b1b;
  background: rgba(254, 226, 226, 0.82);
  border-color: rgba(185, 28, 28, 0.35);
}

.mini-input {
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 0 10px;
  font-weight: 800;
}

.mini-input.is-invalid {
  border-color: rgba(185, 28, 28, 0.72);
  background: rgba(254, 226, 226, 0.7);
}

.veg-select {
  border-width: 2px;
}

.veg-select--veg {
  border-color: rgba(21, 128, 61, 0.6);
  background: rgba(220, 252, 231, 0.8);
  color: #166534;
}

.veg-select--nonveg {
  border-color: rgba(185, 28, 28, 0.58);
  background: rgba(254, 226, 226, 0.82);
  color: #991b1b;
}

.veg-fixed {
  height: 38px;
  border-radius: 12px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.veg-fixed--veg {
  border-color: rgba(21, 128, 61, 0.6);
  background: rgba(220, 252, 231, 0.8);
  color: #166534;
}

.veg-fixed--nonveg {
  border-color: rgba(185, 28, 28, 0.58);
  background: rgba(254, 226, 226, 0.82);
  color: #991b1b;
}

.qty {
  display: grid;
  grid-template-columns: 38px 44px 38px;
  align-items: center;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.qty-btn {
  height: 38px;
  border: 0;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.qty-btn:hover {
  background: rgba(15, 23, 42, 0.05);
}

.qty-val {
  text-align: center;
  font-weight: 900;
}

.mini-remove {
  margin-top: 8px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 10px;
  font-weight: 900;
  cursor: pointer;
}

.mini-remove:hover {
  background: rgba(15, 23, 42, 0.04);
}

.order-grid {
  display: grid;
  gap: 12px;
}

.order-grid-2 {
  display: grid;
  gap: 10px;
}

.seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.seg-opt {
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  cursor: pointer;
  user-select: none;
}

.seg-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.seg-opt:has(input:checked) {
  border-color: rgba(214, 64, 43, 0.28);
  background: rgba(255, 248, 243, 0.95);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.field {
  display: grid;
  gap: 6px;
}

.field-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.62);
}

.field-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  font-weight: 700;
  font-family: inherit;
}

.field-input.is-invalid {
  border-color: rgba(185, 28, 28, 0.7);
  background: rgba(254, 226, 226, 0.6);
}

.field-error {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #b91c1c;
}

.order-items-error {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #b91c1c;
}

#deliveryFields {
  display: none;
  gap: 8px;
}

.order-foot {
  padding: 12px 16px 14px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.order-foot .btn-ghost {
  margin-right: auto;
}

@media (min-width: 720px) {
  .order-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .order-grid-2 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

