/* ============================================================
   MUverse Food — shared styles for food hub + menu pages
   ============================================================ */

:root {
  /* Set from JS to real .fd-header height so sticky category bar sits flush under it */
  --fd-header-sticky-top: 52px;
  --food-bg: #090909;
  --food-surface: #111111;
  --food-border: rgba(255,255,255,.08);
  --food-accent: #e85d00;      /* warm orange — appetite colour */
  --food-accent-dim: rgba(232,93,0,.15);
  --food-green: #22c55e;
  --food-red: #ef4444;
  --food-text: #f5f5f5;
  --food-muted: rgba(255,255,255,.42);
  --font-display: 'Space Grotesk', sans-serif;
  --font-sans:    'Plus Jakarta Sans', sans-serif;
}

/* ── Reset / base ── */
*, *::before, *::after { box-sizing: border-box; }
body.food-body {
  margin: 0;
  background: var(--food-bg);
  color: var(--food-text);
  font-family: var(--font-sans);
  min-height: 100vh;
}
[hidden] { display: none !important; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Header ── */
.fd-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.5rem;
  background: rgba(9,9,9,.9); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--food-border);
  gap: 1rem;
}
.fd-header-left { display: flex; align-items: center; gap: 1rem; }
.fd-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-shrink: 0;
}
.fd-history-btn {
  padding: 0.45rem 0.75rem;
  border-radius: 99px;
  border: 1px solid var(--food-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--food-text);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.fd-history-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

/* My orders + Bills hub */
.fd-food-hub-modal {
  position: relative;
  padding-top: 2.35rem;
  max-width: 26rem;
}
.fd-hub-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--food-border);
  padding-bottom: 0.5rem;
}
.fd-hub-tab {
  flex: 1;
  padding: 0.5rem 0.65rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--food-muted);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.fd-hub-tab:hover {
  color: var(--food-text);
  background: rgba(255, 255, 255, 0.08);
}
.fd-hub-tab--active {
  color: var(--food-accent);
  border-color: rgba(232, 93, 0, 0.45);
  background: rgba(232, 93, 0, 0.1);
}
.fd-hub-panel[hidden] {
  display: none !important;
}
.fd-hub-login-link {
  color: var(--food-accent);
  font-weight: 700;
}
.fd-bill-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--food-border);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.fd-bill-card .fd-bill-print {
  margin-top: 0.65rem;
  font-size: 0.78rem;
}
.fd-bills-list {
  max-height: min(50vh, 22rem);
  overflow-y: auto;
}
.fd-back {
  font-size: .85rem; font-weight: 600;
  color: var(--food-muted); transition: color .15s;
}
.fd-back:hover { color: #fff; }
.fd-brand {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
}
.fd-brand-dot { color: var(--food-accent); font-size: 1rem; }

/* Cart badge in header */
.fd-cart-btn {
  position: relative;
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .9rem; border-radius: 99px;
  background: var(--food-accent); color: #fff;
  font-size: .85rem; font-weight: 700;
  transition: opacity .15s;
}
.fd-cart-btn:hover { opacity: .9; }
.fd-cart-count {
  background: #fff; color: var(--food-accent);
  font-size: .7rem; font-weight: 800;
  border-radius: 99px; padding: .1rem .45rem; min-width: 20px;
  text-align: center;
}

/* ── Page wrapper ── */
.fd-page { max-width: 960px; margin: 0 auto; padding: 2rem 1.25rem 6rem; }

/* ── Page title ── */
.fd-page-title {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  margin: 0 0 .35rem; letter-spacing: -.02em;
}
.fd-page-sub { color: var(--food-muted); font-size: .95rem; margin: 0 0 2rem; }
.fd-menu-policy {
  font-size: .8rem; color: var(--food-muted); margin: -.5rem 0 1.25rem;
  padding: .55rem .85rem; background: rgba(255,255,255,.04);
  border-radius: 10px; border: 1px solid rgba(255,255,255,.08);
  max-width: 720px;
}

/* ── Venue hub cards ── */
.fd-venues { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; }
.fd-venue-card {
  background: var(--food-surface);
  border: 1px solid var(--food-border); border-radius: 20px;
  overflow: hidden; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.fd-venue-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }

.fd-venue-hero {
  height: 140px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative;
}
.fd-venue-hero-cafe { background: linear-gradient(135deg,#1a0a00,#3d1800); }
.fd-venue-hero-som  { background: linear-gradient(135deg,#00111a,#003348); }

.fd-venue-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .65rem; }
.fd-venue-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin: 0;
}
.fd-venue-alias { font-size: .8rem; color: var(--food-muted); margin: -.5rem 0 0; }
.fd-venue-desc { font-size: .875rem; color: var(--food-muted); margin: 0; line-height: 1.55; }
.fd-venue-meta { display: flex; gap: .5rem; flex-wrap: wrap; }
.fd-tag {
  padding: .25rem .7rem; border-radius: 99px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  font-size: .75rem; color: rgba(255,255,255,.6);
}
.fd-tag-open { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.3); color: #4ade80; }
.fd-tag-qr   { background: rgba(99,102,241,.1); border-color: rgba(99,102,241,.3); color: #a5b4fc; }

.fd-venue-footer { padding: 0 1.25rem 1.25rem; }
.fd-venue-footer .fd-btn { display: block; text-align: center; }

/* ── Buttons ── */
.fd-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .65rem 1.4rem; border-radius: 10px;
  font-size: .9rem; font-weight: 700; transition: opacity .15s, transform .1s;
}
.fd-btn:hover { opacity: .88; transform: scale(.98); }
.fd-btn:disabled { opacity: .42; cursor: not-allowed; transform: none !important; }
.fd-btn:disabled:hover { opacity: .42; transform: none !important; }
.fd-btn-primary { background: var(--food-accent); color: #fff; }
.fd-btn-outline {
  background: none; border: 1px solid rgba(255,255,255,.2); color: #fff;
}
.fd-btn-ghost {
  background: none; border: none; color: rgba(255,255,255,.45);
  font-weight: 600; font-size: .85rem;
}
.fd-btn-ghost:hover { color: #fff; }
.fd-btn-block { width: 100%; }

/* ── Menu page layout ── */
.fd-menu-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem; align-items: start;
}
@media (max-width: 720px) {
  .fd-menu-layout { grid-template-columns: 1fr; }
  .fd-cart-sidebar { display: none; }
}

/* ── Category nav: toolbar (toggle always visible) + collapsible chip row ── */
.fd-cat-nav-outer {
  position: sticky;
  top: var(--fd-header-sticky-top);
  z-index: 40;
  background: var(--food-bg);
  border-bottom: 1px solid var(--food-border);
  padding-bottom: 0.15rem;
}
.fd-cat-nav-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.2rem 0 0.45rem;
}
.fd-diet-filter {
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap;
  align-items: center;
}
.fd-diet-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--food-muted);
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--food-border);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.fd-diet-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.fd-diet-btn.active {
  color: #fff;
  background: var(--food-accent-dim);
  border-color: var(--food-accent);
}
.fd-diet-btn[data-diet="veg"].active {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(74, 222, 128, 0.45);
  color: #86efac;
}
.fd-diet-btn[data-diet="nonveg"].active {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(248, 113, 113, 0.4);
  color: #fca5a5;
}
.fd-cat-toggle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--food-muted);
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--food-border);
  background: rgba(255, 255, 255, 0.05);
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.fd-cat-toggle:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}
.fd-cat-nav-chips {
  max-height: 320px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.fd-cat-nav-chips.fd-cat-nav-hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.fd-cat-nav {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem;
  padding: .75rem 0;
}
.fd-cat-btn {
  padding: .4rem 1rem; border-radius: 99px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.6);
  transition: background .15s, color .15s, border-color .15s;
}
.fd-cat-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.fd-cat-btn.active {
  background: var(--food-accent-dim); border-color: var(--food-accent);
  color: var(--food-accent);
}

/* ── Menu section ── */
.fd-menu-section {
  margin-bottom: 2.5rem;
  /* Helps native anchor / scrollIntoView if used elsewhere */
  scroll-margin-top: calc(var(--fd-header-sticky-top) + 5rem);
}
.fd-menu-section.fd-section-hidden,
.fd-item.fd-filtered-out {
  display: none !important;
}
.fd-section-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  margin: 0 0 1rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--food-border);
  display: flex; align-items: center; gap: .6rem;
}
.fd-section-emoji { font-size: 1.2rem; }

/* ── Menu item card ── */
.fd-items { display: flex; flex-direction: column; gap: .65rem; }
.fd-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--food-surface); border: 1px solid var(--food-border);
  border-radius: 14px; padding: .9rem 1rem;
  transition: border-color .15s;
}
.fd-item:hover { border-color: rgba(255,255,255,.15); }
.fd-item-info { flex: 1; min-width: 0; }
.fd-item-name { font-weight: 600; font-size: .95rem; margin: 0 0 .2rem; }
.fd-item-desc { font-size: .78rem; color: var(--food-muted); margin: 0; line-height: 1.45; }
.fd-item-badges { display: flex; gap: .35rem; margin-top: .35rem; }
.fd-badge {
  font-size: .65rem; font-weight: 700; padding: .15rem .5rem;
  border-radius: 99px;
}
.fd-badge-veg  { background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.fd-badge-nonveg { background: rgba(239,68,68,.12); color: #f87171; border: 1px solid rgba(239,68,68,.3); }
.fd-badge-best { background: rgba(232,93,0,.15); color: #fb923c; border: 1px solid rgba(232,93,0,.3); }

.fd-item-right { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.fd-item-price { font-weight: 700; font-size: .95rem; color: #fff; }

/* ── Quantity stepper ── */
.fd-qty {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 99px; overflow: hidden;
}
.fd-qty-btn {
  width: 32px; height: 32px; font-size: 1.1rem; font-weight: 700;
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .12s;
}
.fd-qty-btn:hover { background: rgba(255,255,255,.1); }
.fd-qty-btn-add  { background: var(--food-accent); border-radius: 0 99px 99px 0; }
.fd-qty-btn-add:hover { background: #d45200; }
.fd-qty-num { min-width: 28px; text-align: center; font-size: .85rem; font-weight: 700; }
.fd-qty-zero .fd-qty-btn-sub { display: none; }
.fd-qty-zero .fd-qty-num     { display: none; }

/* ── Cart sidebar ── */
.fd-cart-sidebar {
  position: sticky; top: 70px;
  background: var(--food-surface); border: 1px solid var(--food-border);
  border-radius: 18px; padding: 1.25rem; max-height: calc(100vh - 90px);
  overflow-y: auto;
}
.fd-cart-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  margin: 0 0 1rem; display: flex; align-items: center; justify-content: space-between;
}
.fd-cart-clear {
  font-size: .75rem; color: var(--food-muted);
  font-weight: 600; transition: color .15s;
}
.fd-cart-clear:hover { color: var(--food-red); }
.fd-cart-empty { color: var(--food-muted); font-size: .875rem; text-align: center; padding: 1.5rem 0; }
.fd-cart-items { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1rem; }
.fd-cart-row {
  display: flex; align-items: center; gap: .65rem;
  font-size: .875rem;
}
.fd-cart-row-name { flex: 1; min-width: 0; font-weight: 500; }
.fd-cart-row-qty  { color: var(--food-muted); font-size: .78rem; }
.fd-cart-row-price { font-weight: 700; flex-shrink: 0; }
.fd-cart-row-remove {
  color: var(--food-muted); font-size: .9rem; width: 22px; text-align: center;
  transition: color .12s; flex-shrink: 0;
}
.fd-cart-row-remove:hover { color: var(--food-red); }

.fd-cart-divider { border: none; border-top: 1px solid var(--food-border); margin: .75rem 0; }
.fd-cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: .95rem; margin-bottom: 1rem; }

/* ── Bottom cart bar (mobile) ── */
.fd-cart-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: rgba(9,9,9,.96); backdrop-filter: blur(20px);
  border-top: 1px solid var(--food-border);
  padding: .85rem 1.25rem;
  display: none;
}
@media (max-width: 720px) { .fd-cart-bar { display: flex; align-items: center; gap: 1rem; } }
.fd-cart-bar-info { flex: 1; }
.fd-cart-bar-count { font-size: .78rem; color: var(--food-muted); }
.fd-cart-bar-total { font-size: 1rem; font-weight: 700; }

/* ── Order modal ── */
.fd-modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.8); backdrop-filter: blur(10px);
  display: flex; align-items: flex-end; justify-content: center;
}
@media (min-width: 500px) {
  .fd-modal-backdrop { align-items: center; }
}
.fd-modal {
  background: #161616; border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px 24px 0 0; padding: 2rem 1.5rem 2.5rem;
  width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
}
@media (min-width: 500px) { .fd-modal { border-radius: 24px; } }
.fd-modal-title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  margin: 0 0 .35rem;
}
.fd-modal-sub { color: var(--food-muted); font-size: .875rem; margin: 0 0 1.5rem; }
.fd-modal-order-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--food-accent); text-align: center; margin: 1rem 0;
  letter-spacing: .05em;
}
.fd-modal-items { font-size: .875rem; color: var(--food-muted); margin-bottom: 1.25rem; }
.fd-modal-item { display: flex; justify-content: space-between; padding: .3rem 0; border-bottom: 1px solid var(--food-border); }
.fd-modal-item:last-child { border: none; }
.fd-modal-total { font-weight: 700; font-size: 1rem; display: flex; justify-content: space-between; margin-bottom: 1.25rem; }
.fd-modal-actions { display: flex; flex-direction: column; gap: .55rem; }
.fd-modal-note {
  font-size: .72rem; color: var(--food-muted); line-height: 1.45;
  margin: 0 0 1rem; text-align: center;
}

/* Outlet payment QR (e.g. Café Adda HDFC placard) */
.fd-payment-qr-card {
  margin: 0 0 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  text-align: center;
}
.fd-payment-qr-caption {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--food-muted);
}
.fd-payment-qr-frame {
  display: inline-block;
  padding: 0.65rem;
  background: #fff;
  border-radius: 12px;
  line-height: 0;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
}
.fd-payment-qr-img {
  display: block;
  width: min(100%, 240px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 6px;
}
.fd-payment-qr-hint {
  margin: 0.85rem 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.fd-upi-confirm-label {
  display: flex; gap: .65rem; align-items: flex-start;
  margin: 0; padding: .85rem 1rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; font-size: .82rem; line-height: 1.5;
  color: rgba(255,255,255,.78); cursor: pointer;
}
.fd-upi-confirm-label input {
  margin-top: .2rem; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--food-accent);
}
.fd-upi-confirm-label strong { color: #fff; }
.fd-modal-eta {
  text-align: center; font-size: .95rem; font-weight: 600; color: #4ade80;
  margin: 0 0 1rem;
}

/* ── My orders (customer, this device) ── */
.fd-my-orders-modal { position: relative; padding-top: 2.35rem; }
.fd-my-orders-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  border: 1px solid var(--food-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--food-muted);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fd-my-orders-close:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.fd-my-orders-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--food-accent);
  margin: 0 0 0.25rem;
}
.fd-my-orders-privacy { margin-bottom: 1rem !important; line-height: 1.55 !important; }
.fd-my-orders-toolbar { margin-bottom: 1rem; }
.fd-my-orders-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: min(52vh, 420px);
  overflow-y: auto;
  padding-right: 0.25rem;
}
.fd-my-orders-empty {
  margin: 0;
  padding: 1.25rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--food-muted);
  border: 1px dashed var(--food-border);
  border-radius: 14px;
}
.fd-my-orders-card {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--food-border);
  border-radius: 14px;
}
.fd-my-orders-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.fd-my-orders-token {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--food-accent);
}
.fd-my-orders-status {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 99px;
  border: 1px solid var(--food-border);
  white-space: nowrap;
}
.fd-my-orders-status--received { background: rgba(232, 93, 0, 0.15); border-color: rgba(232, 93, 0, 0.35); color: #fb923c; }
.fd-my-orders-status--preparing { background: rgba(59, 130, 246, 0.12); border-color: rgba(59, 130, 246, 0.35); color: #93c5fd; }
.fd-my-orders-status--ready { background: rgba(34, 197, 94, 0.12); border-color: rgba(34, 197, 94, 0.35); color: #86efac; }
.fd-my-orders-status--done { background: rgba(255, 255, 255, 0.06); color: var(--food-muted); }
.fd-my-orders-status--cancelled { background: rgba(239, 68, 68, 0.12); border-color: rgba(239, 68, 68, 0.3); color: #fca5a5; }
.fd-my-orders-meta {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  color: var(--food-muted);
}
.fd-my-orders-items {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

/* ── QR scanner button ── */
.fd-qr-banner {
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.25);
  border-radius: 14px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.fd-qr-banner-icon { font-size: 2rem; flex-shrink: 0; }
.fd-qr-banner-text h3 { font-size: .95rem; font-weight: 700; margin: 0 0 .2rem; }
.fd-qr-banner-text p  { font-size: .8rem; color: var(--food-muted); margin: 0; }
.fd-qr-badge {
  margin-left: auto; flex-shrink: 0;
  padding: .35rem .85rem; border-radius: 99px;
  background: rgba(99,102,241,.2); border: 1px solid rgba(99,102,241,.4);
  color: #a5b4fc; font-size: .75rem; font-weight: 700;
}

/* ── Venue status pill ── */
.fd-status {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600;
  padding: .25rem .75rem; border-radius: 99px; margin-bottom: 1rem;
}
.fd-status-open { background: rgba(34,197,94,.1); color: #4ade80; border: 1px solid rgba(34,197,94,.25); }
.fd-status-closed { background: rgba(239,68,68,.1); color: #f87171; border: 1px solid rgba(239,68,68,.25); }
.fd-status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: currentColor;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── Notification toast ── */
.fd-toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 300; background: #222; border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px; padding: .65rem 1.25rem;
  font-size: .875rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: toastIn .25s ease;
}
@keyframes toastIn { from{opacity:0;transform:translate(-50%,10px)} to{opacity:1;transform:translate(-50%,0)} }

/* ── QR landing highlight ── */
.fd-qr-landing .fd-qr-banner {
  border-color: rgba(99,102,241,.5);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
