/*
 * estkanh-shared.css
 * التصميم الموحد لكل صفحات استكانة
 * يُستخدَم في: Default.aspx, MyOrders.aspx, Wallet.aspx, Bookings.aspx, CustomerMenu.aspx
 */

:root {
  --ink:      #1a1410;
  --ink-2:    #3d3228;
  --ink-3:    #6b5c4e;
  --cream:    #faf6f0;
  --cream-2:  #f2ebe0;
  --cream-3:  #e8dece;
  --gold:     #c8922a;
  --gold-lt:  #e8b84b;
  --gold-dk:  #8c6118;
  --ember:    #b04020;
  --ok:       #16a34a;
  --r-sm:     8px;
  --r-md:     14px;
  --r-lg:     22px;
  --r-xl:     28px;
  --font:     'Cairo', sans-serif;
  --nav-h:    60px;
  --bottom-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  padding-bottom: calc(var(--bottom-h) + env(safe-area-inset-bottom, 0px));
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--ink);
  color: var(--gold-lt);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  width: 100%;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 11px;
  font-weight: 700;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ticker-item::before { content: '✦'; color: var(--gold); font-size: 8px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── TOP NAV ── */
.app-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--nav-h);
  background: rgba(250,246,240,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  gap: .75rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--ink);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  border: 1.5px solid var(--cream-3);
}
.nav-logo span { color: var(--gold); }
.nav-phone {
  font-size: .68rem;
  font-weight: 800;
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  padding: .3rem .75rem;
  border-radius: 30px;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}
.nav-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: .45rem .9rem;
  border-radius: var(--r-sm);
  font-size: .75rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: all .18s;
  white-space: nowrap;
}
.btn-nav.dark  { background: var(--ink); color: #fff; }
.btn-nav.dark:hover  { background: var(--ink-2); }
.btn-nav.gold  { background: var(--gold); color: var(--ink); }
.btn-nav.gold:hover  { background: var(--gold-lt); }
.btn-nav.ghost { background: var(--cream-2); color: var(--ink-2); border: 1px solid var(--cream-3); }
.btn-nav.ghost:hover { background: var(--cream-3); }

/* ── BOTTOM NAV ── */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: calc(var(--bottom-h) + env(safe-area-inset-bottom, 0px));
  background: rgba(250,246,240,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--cream-3);
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding-top: .5rem;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  z-index: 80;
}
.bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  text-decoration: none;
  color: var(--ink-3);
  font-size: .58rem;
  font-weight: 700;
  transition: color .15s;
  padding: .25rem 0;
}
.bnav-item i { font-size: 1.35rem; }
.bnav-item.active { color: var(--gold-dk); }
.bnav-item.active i { color: var(--gold); }
.bnav-item:hover { color: var(--ink-2); }
.bnav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  text-decoration: none;
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  padding: .25rem 0;
}
.bnav-center-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(200,146,42,.4);
  margin-top: -14px;
  border: 3px solid var(--cream);
  transition: background .15s, transform .1s;
}
.bnav-center:hover .bnav-center-icon { background: var(--gold-lt); }
.bnav-center-label { color: var(--ink-3); font-size: .58rem; font-weight: 700; margin-top: 3px; }

/* ── PAGE SHELL ── */
.page-wrap {
  max-width: 540px;
  margin: 0 auto;
  padding: 1rem 1rem 2rem;
}

/* ── SECTION HEADERS ── */
.sec-head { margin-bottom: 1.25rem; }
.sec-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.sec-title { font-size: 1.25rem; font-weight: 900; color: var(--ink); margin: .2rem 0; }
.sec-sub { font-size: .78rem; color: var(--ink-3); line-height: 1.6; }

/* ── CARDS ── */
.card {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.card.gold-top { border-top: 4px solid var(--gold); }
.card.blue-top { border-top: 4px solid #3b82f6; }
.card.green-top { border-top: 4px solid var(--ok); }
.card.red-top { border-top: 4px solid var(--ember); }

/* ── GLASS PANEL ── */
.glass {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--r-xl);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1.25rem;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: all .18s;
}
.btn:active { transform: scale(.96); }
.btn.w-full { width: 100%; }
.btn-dark  { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-gold  { background: var(--gold); color: var(--ink); box-shadow: 0 4px 16px rgba(200,146,42,.3); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-ok    { background: var(--ok); color: #fff; box-shadow: 0 4px 16px rgba(22,163,74,.25); }
.btn-ok:hover { background: #15803d; }
.btn-ghost { background: var(--cream-2); color: var(--ink-2); border: 1px solid var(--cream-3); }
.btn-ghost:hover { background: var(--cream-3); }
.btn-blue  { background: #2563eb; color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,.25); }
.btn-blue:hover { background: #1d4ed8; }
.btn-sm { padding: .5rem .9rem; font-size: .75rem; border-radius: var(--r-sm); }
.btn-danger { background: #fef2f2; color: var(--ember); border: 1.5px solid #fecaca; }
.btn-danger:hover { background: #fee2e2; }

/* ── INPUTS ── */
.inp {
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color .18s;
  text-align: center;
  direction: rtl;
}
.inp:focus { border-color: var(--gold); background: #fff; }
.inp.pin { font-size: 1.4rem; letter-spacing: .45em; }
.inp-wrap { position: relative; margin-bottom: .85rem; }
.inp-icon {
  position: absolute;
  inset-block: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding-right: .9rem;
  color: var(--ink-3);
  pointer-events: none;
}

/* ── MESSAGES / ALERTS ── */
.msg {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  padding: .6rem .9rem;
  border-radius: var(--r-sm);
  margin-bottom: .85rem;
  text-align: center;
}
.msg-err    { background: #fef2f2; color: #9b2a2a; border: 1px solid #fecaca; }
.msg-ok     { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.msg-warn   { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.msg-info   { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.msg-neutral { background: var(--cream-2); color: var(--ink-2); border: 1px solid var(--cream-3); }

/* ── PHONE BADGE ── */
.phone-badge {
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-sm);
  padding: .65rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .85rem;
}
.phone-badge .chg-btn {
  font-size: .7rem;
  color: var(--ember);
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,20,30,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 1.5rem 1.25rem 2.5rem;
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.modal-box::before {
  content: '';
  display: block;
  width: 36px; height: 4px;
  background: var(--cream-3);
  border-radius: 2px;
  margin: 0 auto 1.25rem;
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  left: 1rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  font-size: .8rem;
  cursor: pointer;
  border: none;
  transition: background .18s;
}
.modal-close:hover { background: var(--cream-3); }
.modal-logo { width: 52px; height: 52px; border-radius: .85rem; object-fit: cover; margin: 0 auto .9rem; display: block; border: 1.5px solid var(--cream-3); }
.modal-title { font-size: 1.1rem; font-weight: 900; color: var(--ink); text-align: center; margin-bottom: .2rem; }
.modal-sub   { font-size: .75rem; color: var(--ink-3); text-align: center; margin-bottom: 1.25rem; font-weight: 600; }

/* ── CHIPS / BADGES ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .65rem;
  font-weight: 800;
  padding: .2rem .6rem;
  border-radius: 30px;
  border: 1px solid transparent;
}
.chip-gold    { background: #fef9ec; color: var(--gold-dk); border-color: #fde68a; }
.chip-ok      { background: #f0fdf4; color: var(--ok);      border-color: #bbf7d0; }
.chip-err     { background: #fef2f2; color: var(--ember);   border-color: #fecaca; }
.chip-blue    { background: #eff6ff; color: #1d4ed8;        border-color: #bfdbfe; }
.chip-neutral { background: var(--cream-2); color: var(--ink-3); border-color: var(--cream-3); }

/* ── POINTS HERO CARD ── */
.points-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.points-hero::after {
  content: '☕';
  position: absolute;
  bottom: -.5rem; left: -.5rem;
  font-size: 5rem;
  opacity: .07;
}
.points-value { font-size: 2.8rem; font-weight: 900; color: var(--gold-lt); line-height: 1; }
.points-label { font-size: .72rem; color: rgba(255,255,255,.65); font-weight: 600; margin-bottom: .25rem; }
.points-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-top: .9rem; }
.points-cell  { background: rgba(255,255,255,.07); border-radius: var(--r-md); padding: .65rem .75rem; text-align: center; }
.points-cell-val { font-size: 1.1rem; font-weight: 900; }
.points-cell-lab { font-size: .6rem; color: rgba(255,255,255,.55); margin-top: .1rem; }

/* ── SERVICE TILES ── */
.tiles-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: .65rem; margin-bottom: 1rem; }
.tile {
  background: #fff;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 1rem .5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  cursor: pointer;
  transition: border-color .2s, transform .12s;
  text-decoration: none;
  color: var(--ink);
}
.tile:active { transform: scale(.95); }
.tile:hover { border-color: var(--gold); }
.tile-icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.tile-icon.gold-bg  { background: #fef3c7; color: var(--gold-dk); }
.tile-icon.purple-bg { background: #f5f3ff; color: #7c3aed; }
.tile-icon.blue-bg  { background: #eff6ff; color: #2563eb; }
.tile-icon.green-bg { background: #f0fdf4; color: var(--ok); }
.tile-icon.red-bg   { background: #fef2f2; color: var(--ember); }
.tile-label { font-size: .65rem; font-weight: 800; }

/* ── ACCORDION SECTIONS ── */
.acc-btn {
  width: 100%;
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem;
  background: #fff;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--r-lg);
  margin-bottom: .5rem;
  cursor: pointer;
  transition: border-color .18s;
  text-align: right;
}
.acc-btn:hover { border-color: var(--gold); }
.acc-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.acc-text { flex: 1; }
.acc-title { font-size: .88rem; font-weight: 900; display: block; color: var(--ink); }
.acc-sub   { font-size: .65rem; color: var(--ink-3); }
.acc-badge { font-size: .6rem; font-weight: 900; background: var(--ink); color: var(--gold-lt); padding: .2rem .55rem; border-radius: 20px; }
.acc-chv   { color: var(--ink-3); font-size: .8rem; transition: transform .25s; }
.acc-body  { display: none; padding: 0 .25rem .75rem; }
.acc-body.open { display: block; }

/* ── ORDER GROUP CARDS ── */
.order-group {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: .65rem;
}
.order-head {
  background: var(--cream-2);
  padding: .6rem .85rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--cream-3);
}
.order-chips { display: flex; gap: .4rem; }
.order-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem .85rem;
  border-bottom: 1px dashed var(--cream-3);
}
.order-item:last-child { border-bottom: none; }
.order-name { font-size: .85rem; font-weight: 700; }
.order-qty  { font-size: .78rem; font-weight: 900; color: var(--gold-dk); background: var(--cream-2); padding: .2rem .55rem; border-radius: 8px; }

/* ── INVOICE CARD ── */
.inv-card { background: #fff; border: 1.5px solid var(--cream-3); border-radius: var(--r-md); margin-bottom: .65rem; overflow: hidden; }
.inv-card-head { display: flex; justify-content: space-between; align-items: flex-start; padding: .9rem 1rem; }
.inv-id { font-size: .88rem; font-weight: 900; margin-bottom: .2rem; }
.inv-date { font-size: .62rem; color: var(--ink-3); }
.inv-amount { font-size: 1.2rem; font-weight: 900; color: var(--gold-dk); }
.inv-details { border-top: 1px dashed var(--cream-3); padding: .85rem 1rem; display: none; }

/* Invoice server HTML */
.inv-wrap  { font-size: .78rem; color: var(--ink); }
.inv-tbl   { width: 100%; border-collapse: collapse; margin-bottom: .6rem; }
.inv-tbl th { color: var(--ink-3); font-size: .62rem; padding-bottom: .3rem; text-align: right; border-bottom: 1px solid var(--cream-3); }
.inv-tbl td { padding: .35rem 0; border-bottom: 1px dashed var(--cream-2); }
.inv-row   { display: flex; justify-content: space-between; font-size: .72rem; padding: .2rem 0; color: var(--ink-3); }
.inv-final { color: var(--ok); font-weight: 900; font-size: .85rem; border-top: 1px solid var(--cream-3); padding-top: .35rem; }
.inv-disc  { color: var(--ember); font-weight: 700; }
.inv-pay   { background: var(--cream-2); border-radius: var(--r-sm); padding: .5rem .7rem; margin-top: .4rem; display: flex; justify-content: space-between; font-size: .7rem; }

/* ── GIFT CARD ── */
.gift-card { background: #fff; border: 1.5px solid var(--cream-3); border-radius: var(--r-md); padding: .9rem 1rem; margin-bottom: .65rem; display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem; }
.gift-name { font-size: .88rem; font-weight: 900; margin-bottom: .2rem; }
.gift-date { font-size: .62rem; color: var(--ink-3); margin-bottom: .4rem; }
.gift-code { display: inline-flex; align-items: center; gap: .35rem; background: var(--cream-2); border: 1px solid var(--cream-3); border-radius: 8px; font-size: .7rem; font-weight: 900; padding: .25rem .65rem; letter-spacing: .1em; color: var(--gold-dk); }

/* ── SEAT GRID ── */
.seats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; max-height: 400px; overflow-y: auto; padding-bottom: 2px; }
.seat-btn {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  background: #fff;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--r-md);
  padding: .75rem .4rem;
  cursor: pointer;
  min-height: 88px;
  transition: border-color .18s, background .15s;
  font-family: var(--font);
}
.seat-btn:not([disabled]):hover { border-color: var(--gold); background: #fffbf2; }
.seat-btn:not([disabled]):active { transform: scale(.95); }
.seat-btn[disabled] { opacity: .45; cursor: not-allowed; background: var(--cream-2); }
.seat-emoji { font-size: 1.5rem; }
.seat-name  { font-size: .65rem; font-weight: 700; text-align: center; line-height: 1.3; color: var(--ink); }
.seat-status { font-size: .58rem; font-weight: 900; padding: .15rem .5rem; border-radius: 6px; }
.seat-status.avail { background: #f0fdf4; color: var(--ok); border: 1px solid #bbf7d0; }
.seat-status.taken { background: var(--cream-2); color: var(--ink-3); border: 1px solid var(--cream-3); }

/* ── RESERVATION CARD ── */
.res-card { background: #fff; border: 1.5px solid var(--cream-3); border-radius: var(--r-md); padding: .9rem 1rem; margin-bottom: .65rem; }
.res-match { font-size: .9rem; font-weight: 900; margin-bottom: .3rem; }
.res-seat  { display: inline-flex; align-items: center; gap: 4px; font-size: .7rem; font-weight: 700; color: var(--gold-dk); background: #fef9ec; border: 1px solid #fde68a; padding: .2rem .65rem; border-radius: 8px; margin-bottom: .75rem; }
.res-actions { display: flex; gap: .5rem; margin-top: .65rem; }

/* ── LUCKY DRAW ── */
.lucky-win  { background: linear-gradient(135deg, #14532d, #166534); color: #fff; border-radius: var(--r-lg); padding: 1.5rem; text-align: center; margin-bottom: 1rem; }
.lucky-miss { background: #fffbeb; color: #92400e; border: 1.5px solid #fde68a; border-radius: var(--r-lg); padding: 1rem; text-align: center; font-weight: 700; font-size: .85rem; margin-bottom: 1rem; }
.lucky-prize { font-size: 1.4rem; font-weight: 900; display: block; margin: .5rem 0; }
.lucky-code  { font-size: 1.3rem; font-weight: 900; letter-spacing: .15em; background: rgba(255,255,255,.15); padding: .25rem .65rem; border-radius: 8px; }

/* ── MENU ITEMS ── */
.menu-item { background: #fff; border: 1.5px solid var(--cream-3); border-radius: var(--r-md); display: flex; gap: .75rem; padding: .75rem .9rem; align-items: flex-start; transition: border-color .18s; margin-bottom: .5rem; }
.menu-item:hover { border-color: var(--gold); }
.menu-item-img { width: 68px; height: 68px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; border: 1px solid var(--cream-3); }
.menu-item-ph  { width: 68px; height: 68px; border-radius: var(--r-sm); background: var(--cream-2); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; flex-shrink: 0; border: 1px solid var(--cream-3); }
.menu-item-body { flex: 1; min-width: 0; }
.menu-item-name { font-size: .88rem; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.menu-item-desc { font-size: .65rem; color: var(--ink-3); line-height: 1.5; margin-bottom: .4rem; }
.menu-item-price { font-size: .8rem; font-weight: 900; color: var(--gold-dk); background: #fef9ec; border: 1px solid #fde68a; padding: .2rem .6rem; border-radius: 7px; display: inline-block; }
.menu-add-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--ink); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 900; flex-shrink: 0; transition: background .18s, transform .1s; align-self: center; }
.menu-add-btn:hover { background: var(--gold-lt); }
.menu-add-btn:active { transform: scale(.9); }

/* ── CART BAR ── */
.cart-bar {
  position: fixed;
  bottom: calc(var(--bottom-h) + env(safe-area-inset-bottom, 0px) + .65rem);
  left: 1rem; right: 1rem;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: .85rem 1.1rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 8px 24px rgba(26,20,16,.25);
  z-index: 70;
  display: none;
}

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 2.5rem 1rem; color: var(--ink-3); }
.empty-state i { font-size: 2.5rem; display: block; margin-bottom: .75rem; opacity: .35; }
.empty-state p { font-size: .82rem; font-weight: 700; }

/* ── PREF OPTIONS ── */
.pref-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-top: .35rem; }
.pref-label {
  background: var(--cream-2);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--r-sm);
  padding: .5rem .25rem;
  text-align: center;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink-2);
  transition: all .15s;
  user-select: none;
}
.pref-label:hover { border-color: var(--gold); color: var(--gold-dk); }
.pref-label.sel { background: #fef9ec; border-color: var(--gold); color: var(--gold-dk); font-weight: 900; }

/* ── PKG OPTIONS ── */
.pkg-item {
  display: flex; align-items: center; gap: .85rem;
  background: var(--cream-2);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--r-md);
  padding: .85rem 1rem;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  margin-bottom: .5rem;
}
.pkg-item.active { border-color: var(--gold); background: #fffbf2; }
.pkg-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--cream-3); flex-shrink: 0; transition: all .15s; }
.pkg-item.active .pkg-radio { border-color: var(--gold); border-width: 5px; }
.pkg-name { font-size: .85rem; font-weight: 900; }
.pkg-desc { font-size: .65rem; color: var(--ink-3); margin-top: .1rem; }
.pkg-price { font-size: .82rem; font-weight: 900; color: var(--gold-dk); margin-right: auto; flex-shrink: 0; }

/* ── HIDE SCROLLBAR ── */
.hide-sb::-webkit-scrollbar { display: none; }
.hide-sb { -ms-overflow-style: none; scrollbar-width: none; }

/* ── TICKER ANIMATION RESPECT ── */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 380px) {
  .tiles-grid { grid-template-columns: repeat(2,1fr); }
  .seats-grid { grid-template-columns: repeat(2,1fr); }
  .pref-grid  { grid-template-columns: repeat(3,1fr); }
}
