/* =====================================================================
   99 LUNCH BOX  ·  theme layer on top of Bootstrap 5.3
   ---------------------------------------------------------------------
   Idea: a three-tier steel tiffin is the same shape as the building, so
   each floor gets its own loud colour and the stack becomes the menu.
   Palette is Indian street-food bright — marigold, tiffin teal, jamun
   berry — on warm cream, over deep aubergine ink.
   ===================================================================== */

:root {
  /* brand */
  --lb-orange:      #F97316;
  --lb-orange-dk:   #C2410C;
  --lb-teal:        #00A99D;
  --lb-teal-dk:     #00786F;
  --lb-pink:        #E8336E;
  --lb-pink-dk:     #B21850;
  --lb-purple:      #6D28D9;
  --lb-purple-dk:   #4C1D95;
  --lb-yellow:      #FFC93C;
  --lb-lime:        #84CC16;

  --lb-ink:         #241141;
  --lb-ink-2:       #574371;
  --lb-ink-3:       #8B7BA6;
  --lb-cream:       #FFF8EE;
  --lb-cream-2:     #FDEFDD;
  --lb-line:        #EBDCC8;

  --grape: #6c63ff;
  --grape-dark: #5a52d5;
  --grape-light: #8b83ff;
  --grape-bg: #f0edff;

  /* type */
  --lb-display: 'Baloo 2', 'Archivo', system-ui, sans-serif;
  --lb-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --lb-mono:    'IBM Plex Mono', ui-monospace, monospace;

  /* bootstrap overrides */
  --bs-body-font-family: var(--lb-body);
  --bs-body-color: var(--lb-ink);
  --bs-body-bg: var(--lb-cream);
  --bs-primary: var(--lb-purple);
  --bs-border-color: var(--lb-line);
  --bs-border-radius: .9rem;
  --bs-border-radius-lg: 1.2rem;
  --bs-link-color: var(--lb-purple);
  --bs-link-hover-color: var(--lb-pink);
}

/* ---------------------------------------------------------------- base */
body {
  background-color: var(--lb-cream);
  background-image:
    radial-gradient(circle at 12% 8%,  rgba(249, 115, 22, .10), transparent 42%),
    radial-gradient(circle at 88% 4%,  rgba(232, 51, 110, .10), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(0, 169, 157, .08), transparent 45%);
  background-attachment: fixed;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: var(--lb-display);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.1;
}

.mono { font-family: var(--lb-mono); }

.eyebrow {
  font-family: var(--lb-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lb-ink-3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.text-ink   { color: var(--lb-ink) !important; }
.text-ink-2 { color: var(--lb-ink-2) !important; }
.text-ink-3 { color: var(--lb-ink-3) !important; }

a { text-underline-offset: 3px; }

:focus-visible {
  outline: 3px solid var(--lb-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--lb-ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------ floor colours */
.floor-buffet   { --floor: var(--lb-orange); --floor-dk: var(--lb-orange-dk); }
.floor-lunchbox { --floor: var(--lb-teal);   --floor-dk: var(--lb-teal-dk); }
.floor-alacarte { --floor: var(--lb-pink);   --floor-dk: var(--lb-pink-dk); }

.text-floor { color: var(--floor) !important; }
.bg-floor   { background: var(--floor) !important; color: #fff; }

/* -------------------------------------------------------------- navbar */
.lb-navbar {
  background: var(--lb-ink);
  box-shadow: 0 4px 0 var(--lb-yellow);
}
.lb-navbar .navbar-brand {
  font-family: var(--lb-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  display: flex; align-items: center; gap: .55rem;
}
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--lb-yellow), var(--lb-orange));
  color: var(--lb-ink);
  border-radius: 12px;
  font-family: var(--lb-display); font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 3px 0 rgba(0,0,0,.28);
}
.lb-navbar .nav-link {
  color: #D9CCEE;
  font-weight: 600;
  border-radius: 10px;
  padding: .45rem .8rem;
}
.lb-navbar .nav-link:hover,
.lb-navbar .nav-link:focus { color: #fff; background: rgba(255,255,255,.12); }
.lb-navbar .nav-link.active {
  color: var(--lb-ink);
  background: var(--lb-yellow);
}
.lb-navbar .navbar-toggler {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.lb-navbar .dropdown-menu {
  border: 0; border-radius: 14px;
  box-shadow: 0 16px 40px rgba(36,17,65,.22);
}

.cart-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--lb-pink), var(--lb-purple));
  color: #fff !important;
  border-radius: 999px;
  padding: .45rem 1rem;
  font-weight: 700;
  text-decoration: none;
}
.cart-chip:hover { filter: brightness(1.08); color: #fff; }
.cart-chip .count {
  background: var(--lb-yellow); color: var(--lb-ink);
  min-width: 22px; height: 22px; border-radius: 999px;
  display: grid; place-items: center; font-size: .78rem;
}




/* ===================================================================== */
/* HERO SECTION — v2 (fixes missing hero-eyebrow/headline/word/tag styles) */
/* ===================================================================== */

.hero {
  position: relative;
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3.4rem);
  color: #fff;
  overflow: hidden;
  background:
          radial-gradient(circle at 15% 18%, rgba(255,255,255,.18), transparent 42%),
          radial-gradient(circle at 88% 82%, rgba(255,255,255,.12), transparent 40%),
          linear-gradient(135deg, var(--lb-purple) 0%, var(--lb-pink) 50%, var(--lb-orange) 100%);
  box-shadow: 0 24px 60px rgba(109,40,217,.35), 0 2px 0 rgba(255,255,255,.08) inset;
  isolation: isolate;
}

/* thali-ring decoration */
.hero::before,
.hero::after { content:''; position:absolute; border-radius:50%; pointer-events:none; z-index:0; }
.hero::after  { right:-100px; top:-100px; width:360px; height:360px; border:30px solid rgba(255,255,255,.10); box-shadow: inset 0 0 0 26px rgba(255,255,255,.07); }
.hero::before { left:-70px; bottom:-80px; width:220px; height:220px; border:18px solid rgba(255,255,255,.08); }

.hero .row { position: relative; z-index: 2; }
.hero .lead { color: rgba(255,255,255,.92); max-width: 46ch; }

/* ---------------------------------------------------------- image side */
.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08) inset;
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero-image-wrapper:hover {
  transform: scale(1.015);
  box-shadow: 0 30px 70px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.12) inset;
}
.hero-image-wrapper img { display:block; }

/* legible-text gradient — was targeting .top-0, actual div is .bottom-0, fixed here */
.hero-overlay-text {
  background: linear-gradient(
          to top,
          rgba(20,10,40,.90) 0%,
          rgba(20,10,40,.62) 48%,
          rgba(20,10,40,.05) 100%
  ) !important;
  border-radius: 0 0 20px 20px;
  animation: heroFadeUp .8s ease-out;
}
@keyframes heroFadeUp { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }

/* eyebrow pill ("Skip the queue") */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--lb-mono);
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--lb-ink); background: var(--lb-yellow);
  padding: .32rem .85rem; border-radius: 999px;
  box-shadow: 0 3px 0 rgba(0,0,0,.22);
}
.hero-eyebrow::before { content:''; width:6px; height:6px; border-radius:50%; background: var(--lb-ink); }

/* headline: Book. Eat. Fun. */
.hero-headline { margin: .7rem 0 .6rem; }
.hero-word {
  display: inline-block;
  font-family: var(--lb-display);
  font-size: clamp(2.3rem, 5.4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  text-shadow: 0 4px 0 rgba(0,0,0,.2);
  opacity: 0; transform: translateY(18px);
  animation: heroWordIn .6s ease-out forwards;
}
.hero-word-1 { color: #fff;             animation-delay: .05s; }
.hero-word-2 { color: var(--lb-yellow); animation-delay: .18s; }
.hero-word-3 { color: #7CF5D6;          animation-delay: .31s; }
.hero-dot { color: var(--lb-yellow); }
@keyframes heroWordIn { to { opacity: 1; transform: translateY(0); } }

/* floor tag chips (Buffet / Lunch Box / À la Carte) */
.hero-tags { gap: .5rem; }
.hero-tag {
  font-size: .76rem; font-weight: 700; letter-spacing: .02em;
  color: #fff; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  padding: .38rem .9rem; border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: transform .2s ease, background .2s ease;
}
.hero-tag:hover { transform: translateY(-2px); background: rgba(255,255,255,.28); }
.hero-tag:nth-child(1) { border-color: var(--lb-orange); }
.hero-tag:nth-child(2) { border-color: var(--lb-teal); }
.hero-tag:nth-child(3) { border-color: var(--lb-pink); }

/* ------------------------------------------------------------ price pop */
.price-pop {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--lb-yellow); color: var(--lb-ink);
  border-radius: 20px; padding: .7rem 1.4rem;
  box-shadow: 0 6px 0 rgba(0,0,0,.22);
  transform: rotate(-3deg);
  transition: transform .25s ease;
}
.price-pop:hover { transform: rotate(0deg) translateY(-2px); }
.price-pop b { font-family: var(--lb-display); font-size: 2.4rem; line-height: 1; }
.price-pop span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }

/* ------------------------------------------------------------- hero facts */
.hero-fact {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .84rem; font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
}
.hero-fact:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .hero-word, .hero-overlay-text, .hero-image-wrapper,
  .price-pop, .hero-fact, .hero-tag { animation: none !important; transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* --------------------------------------------------------------- mobile */
@media (max-width: 991px) {
  .hero-image-wrapper img { height: 300px; min-height: 250px; }
  .hero-word { font-size: clamp(2rem, 6vw, 2.6rem); }
}
@media (max-width: 768px) {
  .price-pop { transform: rotate(-1deg); }
  .hero .btn { width: 100%; text-align: center; }
}
@media (max-width: 576px) {
  .hero-image-wrapper img { height: 250px; min-height: 200px; }
  .hero-word { font-size: 1.9rem; }
  .hero-overlay-text { padding-left: 1.5rem !important; padding-right: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .price-pop b { font-size: 1.8rem; }
}


/* --------------------------------------------------- hall booking tier */
.floor-hall { --floor: var(--lb-purple); --floor-dk: var(--lb-purple-dk); }

/* ---------------------------------------------- mobile hero adjustments */
@media (max-width: 991.98px) {
  /* hide the left column (photo + eyebrow/headline + price-pop/CTA row) */
  .hero .row > .col-lg-6:first-of-type { display: none; }

  /* the arch was designed to sit above the photo; with the photo gone,
     hide it so it doesn't float disconnected at the top of the hero   */
  .tiffin-handle { display: none; }

  .hero { padding: 1.25rem; border-radius: 20px; }

  .tiffin-lid {
    padding: .65rem 1rem;
    border-radius: 14px;
    margin-bottom: .6rem;
  }
  .tiffin-lid .display-font { font-size: 1.1rem !important; }
  .chip-price { font-size: .88rem; padding: .12rem .55rem; }

  .tier {
    grid-template-columns: 48px 1fr auto;
    gap: .7rem;
    padding: .75rem .85rem;
    border-radius: 14px;
    border-left-width: 6px;
  }
  .tier-plate { width: 48px; height: 48px; font-size: 1.05rem; border-radius: 12px; }
  .tier h3 { font-size: .95rem; }
  .tier p  { font-size: .78rem; }
  .tier-go { font-size: .68rem; }

  .hero-fact { font-size: .74rem; padding: .35rem .75rem; }
}









/* ------------------------------------------- signature: tiffin tiers */
.tiffin-handle {
  width: 130px; height: 34px; margin: 0 auto -3px;
  border: 6px solid rgba(255,255,255,.55);
  border-bottom: none;
  border-radius: 70px 70px 0 0;
}
.tiffin-lid {
  background: linear-gradient(180deg, #fff, #FFF1DC);
  border-radius: 16px 16px 6px 6px;
  padding: .8rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 6px 0 rgba(0,0,0,.14);
}

.tier {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center; gap: 1rem;
  background: #fff;
  border-radius: 16px;
  border: 0;
  border-left: 8px solid var(--floor);
  padding: 1rem 1.15rem;
  text-decoration: none;
  color: var(--lb-ink);
  box-shadow: 0 6px 0 rgba(36,17,65,.10), 0 14px 30px rgba(36,17,65,.10);
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s;
}
.tier:hover, .tier:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 12px 0 rgba(36,17,65,.10), 0 22px 44px rgba(36,17,65,.18);
  color: var(--lb-ink);
}
.tier-plate {
  width: 64px; height: 64px; display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--floor), var(--floor-dk));
  color: #fff;
  font-family: var(--lb-display); font-weight: 800; font-size: 1.5rem;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.2);
}
.tier h3 { margin: 0 0 .15rem; font-size: 1.15rem; }
.tier p  { margin: 0; font-size: .88rem; color: var(--lb-ink-2); }
.tier-go {
  font-weight: 800; font-size: .82rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--floor); white-space: nowrap;
}

.tier { animation: tier-rise .5s both cubic-bezier(.2,.7,.3,1); }
.tier:nth-of-type(1) { animation-delay: .06s; }
.tier:nth-of-type(2) { animation-delay: .14s; }
.tier:nth-of-type(3) { animation-delay: .22s; }
@keyframes tier-rise { from { opacity: 0; transform: translateY(16px); } }

/* -------------------------------------------------------------- cards */
.card {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 4px 0 rgba(36,17,65,.06), 0 12px 28px rgba(36,17,65,.08);
}
.card-topline { height: 6px; border-radius: 18px 18px 0 0; background: var(--floor, var(--lb-purple)); }

.step-card { border-top: 6px solid var(--floor); }

/* ------------------------------------------------------------- badges */
.badge-soft {
  background: color-mix(in srgb, var(--floor) 14%, #fff);
  color: var(--floor-dk, var(--floor));
  font-weight: 700;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .76rem;
}
.chip-price {
  font-family: var(--lb-display); font-weight: 800; font-size: 1.05rem;
  background: var(--lb-yellow); color: var(--lb-ink);
  border-radius: 10px; padding: .15rem .7rem;
  box-shadow: 0 3px 0 rgba(0,0,0,.18);
}

/* veg / egg / non-veg mark */
.dot {
  width: 15px; height: 15px; flex: none; border-radius: 4px;
  border: 2px solid var(--lb-lime); position: relative; display: inline-block;
  vertical-align: -2px;
}
.dot::after { content: ''; position: absolute; inset: 2px; border-radius: 50%; background: var(--lb-lime); }
.dot-egg    { border-color: var(--lb-yellow); }
.dot-egg::after    { background: var(--lb-yellow); }
.dot-nonveg { border-color: var(--lb-pink); }
.dot-nonveg::after { background: var(--lb-pink); }

/* ------------------------------------------------------------ buttons */
.btn { font-weight: 700; border-radius: 12px; padding: .7rem 1.4rem; }
.btn-lg { border-radius: 14px !important; }
.btn-sm { border-radius: 10px !important; padding: .35rem .8rem !important; }

.btn-grape {
  background: linear-gradient(135deg, var(--lb-purple), var(--lb-pink));
  color: #fff; box-shadow: 0 4px 0 rgba(76,29,149,.55);
}
.btn-grape:hover, .btn-grape:focus { color: #fff; filter: brightness(1.07); }
.btn-grape:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(76,29,149,.55); }

.btn-mango {
  background: linear-gradient(135deg, var(--lb-yellow), var(--lb-orange));
  color: var(--lb-ink); box-shadow: 0 4px 0 rgba(194,65,12,.45);
}
.btn-mango:hover { color: var(--lb-ink); filter: brightness(1.05); }
.btn-mango:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(194,65,12,.45); }

.btn-floor {
  background: var(--floor); color: #fff;
  box-shadow: 0 4px 0 var(--floor-dk);
}
.btn-floor:hover { color: #fff; filter: brightness(1.06); }
.btn-floor:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--floor-dk); }

.btn-outline-ink { border: 2px solid var(--lb-line); color: var(--lb-ink); background: #fff; }
.btn-outline-ink:hover { border-color: var(--lb-purple); color: var(--lb-purple); background: #fff; }

/* -------------------------------------------------------------- forms */
.form-label {
  font-family: var(--lb-mono);
  font-size: .72rem; letter-spacing: .11em; text-transform: uppercase;
  color: var(--lb-ink-2); font-weight: 500; margin-bottom: .35rem;
}
.form-control, .form-select {
  border: 2px solid var(--lb-line);
  border-radius: 12px;
  padding: .68rem .9rem;
  background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--lb-purple);
  box-shadow: 0 0 0 .22rem rgba(109,40,217,.15);
}
.input-group-text { border: 2px solid var(--lb-line); border-radius: 12px 0 0 12px; background: var(--lb-cream-2); font-weight: 700; }

/* pick-one chips (dates, slots, payment) */
.pick { position: relative; }
.pick input {
  position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%;
  margin: 0; cursor: pointer;
}
.pick > span {
  display: block; height: 100%;
  background: #fff; border: 2px solid var(--lb-line);
  border-radius: 14px; padding: .7rem 1rem; cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s;
}
.pick input:checked + span {
  background: linear-gradient(135deg, var(--floor, var(--lb-purple)), var(--floor-dk, var(--lb-pink)));
  border-color: transparent; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 rgba(36,17,65,.16);
}
.pick input:focus-visible + span { outline: 3px solid var(--lb-yellow); outline-offset: 2px; }
.pick input:disabled + span {
  opacity: .55; cursor: not-allowed;
  background: repeating-linear-gradient(135deg, #fff 0 7px, var(--lb-cream-2) 7px 14px);
}
.pick .t   { display: block; font-weight: 700; }
.pick .sub { display: block; font-size: .76rem; font-family: var(--lb-mono); color: var(--lb-ink-3); margin-top: .12rem; }
.pick input:checked + span .sub { color: rgba(255,255,255,.85); }

a.pick-link { text-decoration: none; color: inherit; display: block; }
a.pick-link:hover > span { border-color: var(--lb-purple); }

/* stepper */
.stepper {
  display: inline-flex; align-items: center;
  border: 2px solid var(--lb-line); border-radius: 12px; overflow: hidden; background: #fff;
}
.stepper button {
  width: 38px; height: 40px; border: 0; background: #fff;
  font-size: 1.2rem; font-weight: 700; color: var(--lb-purple); cursor: pointer;
}
.stepper button:hover { background: var(--lb-cream-2); }
.stepper input {
  width: 48px; height: 40px; border: 0;
  border-inline: 2px solid var(--lb-line);
  text-align: center; font-family: var(--lb-mono); font-weight: 600;
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* captcha */
.captcha-box {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
}
.captcha-box img {
  border: 2px solid var(--lb-line); border-radius: 12px; background: #fff;
  height: 62px; width: 190px;
}

/* -------------------------------------------------------------- steps */
.steps { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.step {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--lb-ink-3);
}
.step b {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--lb-cream-2); color: var(--lb-ink-3); font-size: .76rem;
}
.step.on { color: var(--lb-ink); }
.step.on b { background: var(--floor, var(--lb-purple)); color: #fff; }

/* --------------------------------------------------------- menu bits */
.menu-rail {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,248,238,.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--lb-line);
  padding: .7rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
.menu-rail .inner { display: flex; gap: .5rem; }
.menu-rail a {
  white-space: nowrap; text-decoration: none; font-weight: 700; font-size: .84rem;
  background: #fff; border: 2px solid var(--lb-line); border-radius: 999px;
  padding: .4rem .95rem; color: var(--lb-ink-2);
}
.menu-rail a:hover { border-color: var(--lb-pink); color: var(--lb-pink); }

.cat-head { display: flex; align-items: center; gap: 1rem; scroll-margin-top: 90px; }
.cat-head h2 { margin: 0; font-size: 1.6rem; }
.cat-head .line { flex: 1; height: 3px; border-radius: 3px; background: var(--lb-line); }

.dish {
  background: #fff; border-radius: 16px; height: 100%;
  padding: 1rem 1.1rem;
  display: flex; flex-direction: column; gap: .55rem;
  box-shadow: 0 3px 0 rgba(36,17,65,.06), 0 10px 22px rgba(36,17,65,.07);
  transition: transform .15s, box-shadow .15s;
}
.dish:hover { transform: translateY(-3px); box-shadow: 0 7px 0 rgba(36,17,65,.07), 0 16px 30px rgba(36,17,65,.12); }
.dish.in-cart { box-shadow: 0 0 0 3px var(--lb-teal), 0 10px 22px rgba(0,169,157,.2); }
.dish h3 { font-size: 1.02rem; margin: 0; }
.dish p { font-size: .85rem; color: var(--lb-ink-3); margin: 0; flex: 1; }
.dish-price { font-family: var(--lb-mono); font-weight: 700; font-size: 1.02rem; color: var(--lb-purple); }

/* box option card, first floor */
.box-opt { height: 100%; }
.box-opt input { position: absolute; opacity: 0; }

/* --------------------------------------------------------- summaries */
.sum-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .5rem 0; border-bottom: 1px dashed var(--lb-line); font-size: .92rem;
}
.sum-row:last-child { border-bottom: 0; }
.totals { list-style: none; margin: 0; padding: 0; font-family: var(--lb-mono); font-size: .9rem; }
.totals li { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; }
.totals li.grand {
  border-top: 2px solid var(--lb-line); margin-top: .4rem; padding-top: .7rem;
  font-size: 1.2rem; font-weight: 700; color: var(--lb-purple);
}

/* ------------------------------------------------------------ receipt */
.receipt {
  max-width: 440px; margin-inline: auto; background: #fff;
  border-radius: 8px; padding: 1.9rem 1.7rem 2.1rem;
  font-family: var(--lb-mono); font-size: .87rem;
  box-shadow: 0 18px 44px rgba(36,17,65,.20);
  position: relative;
}
.receipt::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 8px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--lb-orange), var(--lb-pink), var(--lb-purple));
}
.receipt::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -11px; height: 12px;
  background: radial-gradient(circle at 6px 0, transparent 6px, #fff 6.5px) 0 0 / 12px 12px repeat-x;
}
.receipt h2 { font-family: var(--lb-display); text-align: center; font-size: 1.5rem; margin: .3rem 0 .1rem; }
.receipt .dash { border: 0; border-top: 2px dashed var(--lb-line); margin: 1rem 0; opacity: 1; }
.r-row { display: flex; justify-content: space-between; gap: 1rem; padding: .22rem 0; }
.r-row span:first-child { color: var(--lb-ink-3); }

.token {
  text-align: center; border-radius: 16px; padding: 1.1rem; margin: 1rem 0;
  color: #fff;
}
.token small { display: block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }
.token b { font-family: var(--lb-display); font-size: 3.4rem; line-height: 1; display: block; margin-top: .15rem; }

/* ------------------------------------------------------------- tables */
.table { --bs-table-bg: transparent; }
.table > thead th {
  font-family: var(--lb-mono); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--lb-ink-3); font-weight: 500;
  border-bottom: 2px solid var(--lb-line); white-space: nowrap;
}
.table > tbody td { border-color: var(--lb-line); vertical-align: middle; }

/* ------------------------------------------------------------- footer */
.lb-footer {
  background: var(--lb-ink); color: #B9A9D4; margin-top: 4rem;
  border-top: 6px solid var(--lb-yellow);
}
.lb-footer a { color: #E4D9F5; text-decoration: none; }
.lb-footer a:hover { color: #fff; text-decoration: underline; }
.lb-footer h4 {
  font-family: var(--lb-mono); font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: #7D6B9C;
}

/* --------------------------------------------------- sticky cart bar */
.cart-bar { display: none; }
@media (max-width: 991.98px) {
  .cart-bar {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1030;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    background: linear-gradient(135deg, var(--lb-purple), var(--lb-pink));
    color: #fff; text-decoration: none;
    padding: .85rem 1.2rem; border-radius: 16px;
    box-shadow: 0 12px 30px rgba(109,40,217,.4);
    font-weight: 700;
  }
  .cart-bar[hidden] { display: none; }
  .cart-bar .mono { font-family: var(--lb-mono); }
}

/* --------------------------------------------------------------- misc */
.sticky-side { position: sticky; top: 4.5rem; }
@media (max-width: 991.98px) { .sticky-side { position: static; } }

.thali-list { list-style: none; margin: 0; padding: 0; }
.thali-list li {
  display: flex; gap: .6rem; align-items: flex-start;
  padding: .5rem 0; border-bottom: 1px dashed var(--lb-line);
}
.thali-list li:last-child { border-bottom: 0; }
.thali-list em { font-style: normal; color: var(--lb-ink-3); font-size: .84rem; display: block; }

.alert { border: 0; border-radius: 14px; border-left: 6px solid; font-weight: 500; }
.alert-danger  { background: #FDE8EF; border-color: var(--lb-pink);   color: var(--lb-pink-dk); }
.alert-success { background: #E7F8F1; border-color: var(--lb-teal);   color: var(--lb-teal-dk); }
.alert-info    { background: #FFF3D6; border-color: var(--lb-yellow); color: #8A5B00; }
.alert-warning { background: #FFF3D6; border-color: var(--lb-orange); color: var(--lb-orange-dk); }

/* ------------------------------------------------------------ motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* -------------------------------------------------------------- print */
@media print {
  .lb-navbar, .lb-footer, .no-print, .cart-bar { display: none !important; }
  body { background: #fff; }
  .receipt { box-shadow: none; border: 1px solid #999; }
}


/* CUSTOM CSS */
.footer-powered{
  margin:6px 0 14px;
  font-size:14px;
  color:#cbd5e1;
  letter-spacing:.2px;
}

.footer-powered strong{
  color:#ffffff;
  font-weight:600;
}

.developer-tag{
  display:inline-block;
  transition:.3s ease;
}

.developer-tag img{
  display:block;
  height:22px;
  width:auto;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,.18);
}

.developer-tag:hover{ transform:translateY(-2px);}

@media (max-width:768px){
  .developer-tag img{ height:23px; }
}


.btn-floor {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    padding: .7rem 1.4rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: var(--bs-border-width) solid transparent;
}
.btn-floor:hover{
      filter: brightness(1.15);
}


.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

.btn-floor:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.pick.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.pick.disabled input[type="radio"] {
    cursor: not-allowed;
}
.pick.disabled:hover {
    border-color: #dee2e6;
}
.text-center.py-4 {
    padding: 2rem 0;
}

/* Minimal color version of payment style */
.payment {
    position: relative;
}

.payment input {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.payment > span {
    display: block;
    height: 100%;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 14px;
    padding: .7rem 1rem;
    cursor: pointer;
    transition: border-color .15s, background .15s, transform .12s;
}

/* Minimal selected state - just subtle changes */
.payment input:checked + span {
    background: #ffecf2;
    border-color: #f5296d;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

.payment input:focus-visible + span {
    outline: 3px solid #ffc107;
    outline-offset: 2px;
}

.payment input:disabled + span {
    opacity: .55;
    cursor: not-allowed;
    background: #f5f5f5;
}

.payment .t {
    display: block;
    font-weight: 700;
}

.payment .sub {
    display: block;
    font-size: .76rem;
    color: #999;
    margin-top: .12rem;
}

.payment input:checked + span .sub {  color: #666; }



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

.btn-grape:hover {
    background-color: var(--grape-dark);
    border-color: var(--grape-dark);
    color: #fff;
}

.btn-grape:focus {
    box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
}

.btn-outline-grape {
    background-color: transparent;
    border-color: var(--grape);
    color: var(--grape);
}

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

.btn-outline-grape:focus {
    box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
}

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