/* ============================================================
   Bhimas Pure Veg — Cumming · customer site
   Fonts: Playfair Display (display) + Outfit (text)
   ============================================================ */

:root {
  --bg:        #0a0a0a;
  --bg-2:      #111110;
  --panel:     #171613;
  --panel-2:   #1f1d19;
  --line:      rgba(200, 162, 77, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  --gold:      #c9a24d;
  --gold-soft: #d9bd7e;
  --gold-deep: #a8842f;
  --green:     #1f4032;
  --green-lit: #2e5c48;

  --text:      #f2ede2;
  --text-dim:  #b7afa0;
  --muted:     #8f877a;

  --radius:    4px;
  --radius-lg: 8px;
  --shadow:    0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --wrap:      1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }
.center { text-align: center; margin-inline: auto; }

/* ---- buttons ---------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #1a1305;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(201, 162, 77, 0.55); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { --btn-bg: rgba(201, 162, 77, 0.1); border-color: var(--gold); box-shadow: none; }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: 0.7rem; }

/* ---- header --------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 5vw, 56px);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 12px clamp(24px, 5vw, 56px);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.site-header .logo img { height: 62px; width: auto; transition: height 0.4s var(--ease); }
.site-header.is-scrolled .logo img { height: 48px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.cart-btn:hover { border-color: var(--gold); background: rgba(201, 162, 77, 0.08); }
.cart-btn .count {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #1a1305;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
}
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; }

/* ---- landing (order hub) ---------------------------------------- */
.landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 70px;
  overflow: hidden;
}
.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 162, 77, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.95) 80%),
    url("../img/hero.c1a831f42364.jpg") center / cover no-repeat, #0a0a0a;
}
.landing .wrap { position: relative; z-index: 2; }
.landing-head { text-align: center; margin-bottom: 46px; }
.landing-head .mark {
  height: clamp(84px, 15vw, 132px);
  width: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
}
.landing-head p { color: var(--text-dim); font-size: 1.02rem; }
.landing-head h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-top: 10px;
}

.modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.mode {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 34px 24px 28px;
  background: rgba(23, 22, 19, 0.82);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.mode:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(31, 29, 25, 0.92); }
.mode .num {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.mode .ico { font-size: 1.7rem; color: var(--gold-soft); line-height: 1; }
.mode h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
}
.mode p { color: var(--muted); font-size: 0.86rem; }
.mode .go {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mode:hover .go { opacity: 1; transform: none; }

/* thin dynamic info line under the modes */
.landing-info {
  margin: 44px auto 0;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.landing-info span { display: inline-flex; align-items: center; gap: 8px; }
.landing-info .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--gold); }

/* ---- menu / cards --------------------------------------------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.dish {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.dish:hover { transform: translateY(-6px); border-color: var(--line); }
.dish .thumb {
  aspect-ratio: 4 / 3;
  background: var(--panel-2) center / cover no-repeat;
  position: relative;
}
.dish .thumb .badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-soft);
}
.dish .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dish h3 { font-size: 1.24rem; }
.dish .desc { color: var(--muted); font-size: 0.9rem; flex: 1; }
.dish .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.dish .price { font-family: "Playfair Display", serif; font-size: 1.24rem; color: var(--gold-soft); }
.dish.is-out { opacity: 0.55; }
.dish.is-out .foot .price::after { content: " · sold out"; font-family: "Outfit"; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty button { background: none; border: 0; color: var(--text); width: 34px; height: 36px; font-size: 1rem; cursor: pointer; transition: background 0.2s; }
.qty button:hover { background: rgba(201, 162, 77, 0.12); }
.qty span { min-width: 34px; text-align: center; font-size: 0.9rem; }

/* ---- about / split ------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split .media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; background: var(--panel-2) center / cover; }
.split h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: 14px 0 20px; }
.split p + p { margin-top: 16px; color: var(--muted); }

/* ---- reviews ------------------------------------------------- */
.reviews { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.review .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; }
.review blockquote { font-family: "Playfair Display", serif; font-size: 1.08rem; font-style: italic; color: var(--text); margin: 16px 0; line-height: 1.55; }
.review .who { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---- forms -------------------------------------------------- */
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.input, select.input, textarea.input {
  width: 100%;
  padding: 13px 15px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.input:focus, select.input:focus, textarea.input:focus { outline: none; border-color: var(--gold); background: var(--panel); }
textarea.input { resize: vertical; min-height: 90px; }

.card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}
.auth-shell { min-height: 100vh; display: grid; place-items: center; padding: 130px 24px 60px; }
.auth-shell .card { width: min(100%, 440px); }
.auth-shell h1 { font-size: 1.9rem; margin-bottom: 6px; }
.hint { color: var(--muted); font-size: 0.85rem; }

/* ---- radio pills ----------------------------------------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills label {
  padding: 11px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills input:checked + label,
.pills label.is-active { border-color: var(--gold); background: rgba(201, 162, 77, 0.12); color: var(--text); }

/* ---- summary / totals ----------------------------------- */
.summary { display: flex; flex-direction: column; gap: 12px; }
.summary .row { display: flex; justify-content: space-between; font-size: 0.92rem; color: var(--text-dim); }
.summary .row.total {
  border-top: 1px solid var(--line);
  margin-top: 8px; padding-top: 16px;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--text);
}

.line-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); align-items: center; }
.line-item .li-thumb { width: 64px; height: 64px; border-radius: var(--radius); background: var(--panel-2) center / cover; }
.line-item h4 { font-family: "Outfit", sans-serif; font-weight: 500; font-size: 0.98rem; }
.line-item .li-price { color: var(--gold-soft); font-family: "Playfair Display", serif; }

/* ---- status timeline ----------------------------------- */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline .step { display: grid; grid-template-columns: 24px 1fr; gap: 16px; padding-bottom: 26px; position: relative; }
.timeline .step:not(:last-child)::before { content: ""; position: absolute; left: 11px; top: 24px; bottom: 0; width: 1px; background: var(--line); }
.timeline .dot { width: 24px; height: 24px; border-radius: 999px; border: 1px solid var(--line); display: grid; place-items: center; font-size: 0.7rem; }
.timeline .step.done .dot { background: var(--gold); border-color: var(--gold); color: #1a1305; }
.timeline .step.current .dot { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.18); }
.timeline .step h4 { font-family: "Outfit"; font-weight: 500; font-size: 0.92rem; }
.timeline .step p { font-size: 0.82rem; color: var(--muted); }

/* ---- messages ---------------------------------------- */
.flash-stack { position: fixed; top: 90px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; max-width: 340px; }
.flash {
  padding: 14px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.88rem;
  box-shadow: var(--shadow);
  animation: flashIn 0.4s var(--ease);
}
.flash.error { border-left-color: #c2453c; }
.flash.success { border-left-color: #4c9c6e; }
@keyframes flashIn { from { opacity: 0; transform: translateX(20px); } }

/* ---- cart drawer ---------------------------------------- */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 160;
  width: min(100%, 420px);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer header { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--line-soft); }
.drawer header h3 { font-size: 1.2rem; }
.drawer .items { flex: 1; overflow-y: auto; padding: 8px 22px; }
.drawer footer { padding: 22px; border-top: 1px solid var(--line-soft); }
.drawer .empty { padding: 60px 22px; text-align: center; color: var(--muted); }
.icon-btn { background: none; border: 0; color: var(--text-dim); cursor: pointer; font-size: 1.1rem; transition: color 0.2s; }
.icon-btn:hover { color: var(--gold); }

/* ---- footer ---------------------------------------------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding: 80px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .logo img { height: 52px; margin-bottom: 18px; }
.site-footer p { color: var(--muted); font-size: 0.9rem; max-width: 34ch; }
.site-footer h4 { font-family: "Outfit"; font-weight: 500; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer li { color: var(--text-dim); font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold); }
.footer-base { margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 0.8rem; }

/* ---- reveal animation ---------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---- page hero (inner pages) -------------------------- */
.page-hero { padding: 170px 0 60px; border-bottom: 1px solid var(--line-soft); background: var(--bg-2); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 12px; }
.page-hero p { color: var(--muted); margin-top: 12px; max-width: 52ch; }

.two-col { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.sticky { position: sticky; top: 110px; }

/* ---- responsive -------------------------------------- */
@media (max-width: 900px) {
  .nav, .header-actions .cart-label { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 20px;
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .split, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .modes { grid-template-columns: repeat(2, 1fr); }
  .mode .go { opacity: 1; transform: none; }
  .sticky { position: static; }
}
@media (max-width: 520px) {
  .modes { grid-template-columns: 1fr; }
  .landing { min-height: 0; padding: 130px 0 60px; }
  .line-item { grid-template-columns: 52px 1fr; }
  .line-item .li-price { grid-column: 2; }
}

/* Shared validated forms */
.managed-form p { margin: 0 0 18px; }
.managed-form label { display: block; margin-bottom: 7px; color: var(--muted); font-size: .82rem; }
.managed-form input:not([type=checkbox]):not([type=hidden]), .managed-form select, .managed-form textarea {
  width: 100%; box-sizing: border-box; padding: 12px 14px; border: 1px solid rgba(180,155,100,.3); border-radius: 4px;
  background: rgba(0,0,0,.18); color: inherit; font: inherit;
}
.managed-form select option { background: #20231f; color: #eee; }
.managed-form select[multiple] { min-height: 150px; }
.managed-form textarea { min-height: 90px; max-height: 180px; }
.managed-form input:focus, .managed-form select:focus, .managed-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.errorlist { color: #e8988c; margin: 0 0 14px; padding-left: 20px; }
.helptext { display:block; font-size:.8rem; color:var(--muted); margin-top:5px; }
.original-price { font-family: Outfit, sans-serif; font-size: .85rem; color: var(--muted); }
button:disabled { opacity: .5; cursor: not-allowed; }
[hidden] { display: none !important; }
.pills input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Tighter spacing without changing the Bhimas colors or hero background. */
.section { padding: clamp(24px, 3vw, 36px) 0; }
.section-head { margin-bottom: 24px; }
.section-head h2 { margin: 8px 0 10px; }
.landing { min-height: 0; padding: 122px 0 36px; }
.landing-head { margin-bottom: 24px; }
.landing-head .mark { height: clamp(64px, 9vw, 90px); margin-bottom: 14px; }
.mode { padding: 22px 20px 18px; gap: 6px; }
.mode .go { padding-top: 8px; opacity: 1; transform: none; }
.landing-info { margin-top: 22px; }
.page-hero { padding: 122px 0 28px; }
.page-hero h1 { margin-top: 6px; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { margin-top: 8px; }
.auth-shell { min-height: 0; padding: 122px 24px 36px; }
.card { padding: clamp(20px, 2.5vw, 28px); }
.field { margin-bottom: 16px; }
.two-col { gap: 24px; }
.split { gap: 32px; }
.dish-grid { gap: 20px; }
.dish .body { padding: 18px; }
.dish .foot { flex-wrap: wrap; gap: 12px; }
.dish .thumb.no-image { aspect-ratio: auto; height: 44px; background: linear-gradient(120deg, rgba(201,162,77,.09), transparent); }
.dish .thumb.no-image .badge { top: 12px; }
.site-footer { padding: 32px 0 20px; }
.footer-grid { gap: 24px; }
.footer-base { margin-top: 24px; padding-top: 16px; }
.site-footer .logo img { margin-bottom: 12px; }
.drawer .empty { padding: 28px 12px; }
.cart-control { min-height: 38px; }
.cart-control[aria-busy="true"] button { pointer-events: none; }
.empty-card { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.empty-card h2 { font-size:1.4rem; margin-bottom:8px; }
.empty-card .actions { display:flex; flex-wrap:wrap; gap:10px; flex-shrink:0; }
.delivery-perk { margin-top:20px; padding:18px 22px; border:1px solid var(--line); border-radius:var(--radius-lg); display:flex; justify-content:space-between; gap:16px; align-items:center; background:rgba(201,162,77,.05); }
.delivery-perk h3 { font-size:1.2rem; margin-bottom:5px; }
@media (max-width: 600px) {
  .wrap { width:calc(100% - 32px); }
  .landing, .auth-shell { padding-top:114px; padding-bottom:28px; }
  .landing-head { margin-bottom:18px; }
  .modes { grid-template-columns:repeat(2, minmax(0,1fr)); gap:10px; }
  .mode { padding:16px 12px; }
  .mode h2 { font-size:.8rem; letter-spacing:.06em; }
  .mode p { font-size:.78rem; }
  .mode .num { display:none; }
  .mode .go { font-size:.65rem; letter-spacing:.06em; }
  .page-hero { padding-top:114px; padding-bottom:24px; }
  .empty-card, .delivery-perk { align-items:flex-start; flex-direction:column; gap:16px; }
  .dish-grid { grid-template-columns:1fr; }
}

/* Consistent pending and validation states. */
.is-loading { pointer-events: none; position: relative; opacity: .8; }
.is-loading::before { content: ""; display:inline-block; width:13px; height:13px; flex-shrink:0; border:2px solid currentColor; border-right-color:transparent; border-radius:50%; animation:bhimas-spin .65s linear infinite; }
.qty button.is-loading { color:transparent; }
.qty button.is-loading::before { position:absolute; color:var(--gold); left:calc(50% - 7px); top:calc(50% - 7px); }
@keyframes bhimas-spin { to { transform:rotate(360deg); } }
.validation-errors { padding:14px 18px; margin-bottom:18px; color:#eeafa5; background:rgba(207,91,80,.08); border:1px solid rgba(207,91,80,.35); border-radius:6px; }
.validation-errors ul { margin:0; padding-left:18px; }
@media (prefers-reduced-motion: reduce) { .is-loading::before { animation-duration:1.5s; } }

/* Keep content visible immediately, including when JavaScript is unavailable. */
.reveal { opacity: 1; transform: none; transition: none; }

/* Order adjustments and order help. */
.discount-value { color: #f08080; }
.location-check { margin: 12px 0 16px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; }
.location-check .hint { margin-top: 10px; }
.location-check .is-error { color: #f08080; }
.support-heading { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.support-message { padding: 14px; margin-bottom: 14px; border: 1px solid var(--line); border-radius: 10px; }
.support-message--staff { border-left: 3px solid var(--gold); background: rgba(192,154,87,.06); }
.support-body { margin-top: 8px; overflow-wrap: anywhere; }

/* Food photo from https://www.bhimaspureveg.com/thali-cropped.jpeg */
.auth-shell--photo {
  background: linear-gradient(180deg, rgba(12, 10, 7, .85), transparent 140px), linear-gradient(90deg, rgba(12, 10, 7, .08), rgba(12, 10, 7, .18) 45%, rgba(12, 10, 7, .6)), url("../img/signin-thali.679ad684f3d8.jpeg") center / cover no-repeat;
  place-items: center end;
  padding-inline: clamp(24px, 5vw, 80px);
}
.auth-shell--photo .card {
  background: rgba(23, 22, 19, .94);
  border-color: rgba(217, 189, 126, .35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
}
.auth-shell--photo .hint, .auth-shell--photo .field label { color: var(--text-dim); }
@media (max-width: 600px) {
  .auth-shell--photo { place-items: center; padding-inline: 16px; background-position: 40% center; }
}
