/* Portal panel — uses the global champagne accent. No accent override. */

.portal-bar { gap: 10px; position: relative; }
.portal-nav { display: flex; flex-wrap: wrap; gap: 2px; align-items: center; }
/* Hamburger button — hidden on desktop, shown on phones (see media query). */
.nav-toggle {
  display: none; background: rgba(255,255,255,0.06); color: var(--text);
  border: 1px solid var(--hairline); border-radius: 10px;
  padding: 4px 11px; font-size: 1.15rem; line-height: 1; cursor: pointer;
}
.nav-greeting { display: none; }  /* only rendered inside the mobile menu */
.portal-nav a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  line-height: 1.1;
}
.portal-nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.portal-nav .register-cta {
  background: var(--accent);
  color: var(--accent-ink) !important;
  font-weight: 600;
  padding: 5px 12px;
}
.portal-nav .register-cta:hover { background: var(--accent-2); color: var(--accent-ink) !important; }

.bell-count {
  display: inline-grid; place-items: center;
  min-width: 18px; height: 18px;
  background: var(--danger); color: white;
  border-radius: 9px;
  font-size: 0.7rem; font-weight: 700;
  padding: 0 5px;
  font-family: var(--font-mono);
}

.restaurants-grid {
  display: grid;
  /* auto-fit + min(100%, 280px) keeps cards generous on desktop but
     allows ONE-column layout on phones without orphans. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 16px;
}
@media (max-width: 540px) {
  .restaurants-grid { gap: 12px; }
}

.r-card {
  position: relative;
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s, border-color 0.25s;
}
.r-card:hover { transform: translateY(-3px); border-color: var(--accent); }

.r-cover {
  height: 140px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.78) brightness(0.8);
  border-block-end: 1px solid var(--hairline);
}

.r-body { display: flex; gap: 12px; padding: 14px 14px 18px; }

.r-mark {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  flex: none;
  border: 1px solid var(--hairline-strong);
}
.r-mark img { width: 100%; height: 100%; border-radius: 10px; object-fit: cover; }

.r-info { min-width: 0; flex: 1; }
.r-name { margin: 0 0 4px; font-family: var(--font-display); color: var(--text); font-size: 1.18rem; letter-spacing: -0.012em; }
html[lang="en"] .r-name { font-style: italic; }
.r-about { margin: 4px 0 0; font-size: 0.85rem; color: var(--text-dim); }

.r-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.r-pill {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  background: var(--bg-3);
  color: var(--text-dim);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
}
html[lang="ar"] .r-pill { letter-spacing: 0; font-family: var(--font-body-ar); }

.auth-card {
  max-width: 420px;
  margin: 6vh auto 0;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

/* ---- Notification rows (page) — visual parity with notif-dock cards ---- */
.notif-row {
  display: flex; gap: 12px;
  padding: 14px 16px;
  border-block-end: 1px dotted var(--hairline);
  align-items: flex-start;
  border-inline-start: 4px solid transparent;
  transition: background .15s;
}
.notif-row:last-child { border-block-end: 0; }
.notif-row.unread { background: var(--accent-soft); }
.notif-row:hover { background: rgba(255,255,255,0.03); }
.notif-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--hairline-strong); margin-block-start: 10px; flex: none;
}
.notif-row.unread .notif-dot { background: var(--accent); box-shadow: 0 0 0 3px rgba(193,154,79,0.18); }
/* Severity bar on the inline-start edge — color matches the dock card border. */
.notif-row.sev-urgent  { border-inline-start-color: #b03030; }
.notif-row.sev-warn    { border-inline-start-color: #c79626; }
.notif-row.sev-success { border-inline-start-color: #3a9b54; }
.notif-row.sev-info    { border-inline-start-color: #3666b8; }
.notif-row.sev-urgent  .notif-dot { background: #ff8a8a; }
.notif-row.sev-warn    .notif-dot { background: #e5b145; }
.notif-row.sev-success .notif-dot { background: #5cd16e; }
.notif-row.sev-info    .notif-dot { background: #6f9adf; }
.notif-row.sev-urgent  .notif-title { color: #ff8a8a; }
.notif-row.sev-warn    .notif-title { color: #e5b145; }
.notif-row.sev-success .notif-title { color: #5cd16e; }
.notif-row.sev-info    .notif-title { color: var(--text); }
.notif-title { font-family: var(--font-display); font-size: 1.02rem; letter-spacing: -0.01em; font-weight: 700; }
html[lang="en"] .notif-title { font-style: italic; }
.notif-body { font-size: 0.88rem; color: var(--text-dim); margin: 4px 0 0; white-space: pre-wrap; }
.notif-time { font-size: 0.76rem; margin-block-start: 4px; font-family: var(--font-mono); color: var(--text-faint); }
.notif-row.unread::after {
  content: "•"; color: var(--accent); align-self: center; font-size: 1.4rem;
}
.notif-row.unread .notif-read-btn { background: var(--accent); color: var(--bg-1); border-color: var(--accent); }

.notif-live-banner {
  width: 100%;
  display: block;
  text-align: center;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px dashed var(--accent);
  padding: 10px 14px;
  border-radius: 12px;
  margin-block-end: 12px;
  cursor: pointer;
  font-family: var(--font-display);
  animation: notifPulse 1.4s ease-in-out infinite;
}
@keyframes notifPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.notif-filters select.input { min-width: 160px; }
.notif-read-btn { white-space: nowrap; }

/* ---- Active-order banner (sticky just under the header) ---- */
.active-order-banner {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2, var(--accent)));
  color: var(--accent-ink, #1c1208);
  text-decoration: none;
  border-block-end: 1px solid var(--hairline);
  font-family: var(--font-display);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.active-order-banner .ico { font-size: 22px; }
.active-order-banner .grow { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.active-order-banner .title { font-weight: 700; letter-spacing: -0.01em; font-size: 1rem; }
.active-order-banner .sub { font-size: .82rem; opacity: .8; }
.active-order-banner .cta {
  white-space: nowrap; font-weight: 700; font-size: .9rem;
  border: 1px solid currentColor; padding: 6px 12px; border-radius: 999px;
}

/* When the current-order banner carries action buttons, stack the main row
   above an actions row instead of laying everything out horizontally. */
.active-order-banner.has-actions { flex-direction: column; align-items: stretch; gap: 8px; }
.active-order-banner .ao-main {
  display: flex; gap: 12px; align-items: center;
  text-decoration: none; color: inherit;
}
.active-order-banner .ao-actions { display: flex; gap: 8px; }
.active-order-banner .ao-btn {
  flex: 1; text-align: center; white-space: nowrap;
  font-weight: 700; font-size: .85rem; text-decoration: none; color: inherit;
  border: 1px solid currentColor; padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.16);
}
.active-order-banner .ao-btn:hover { background: rgba(255,255,255,0.28); }

/* Greeting banner ("👋 Hello, <name>") — replaces the dine-in tracker for
   signed-in customers. Calmer blue so it reads as ambient, not an alert. */
.active-order-banner.greeting-banner {
  background: linear-gradient(90deg, #2a4d8f, #3666b8); color: #fff;
}

/* Pulse when the order is `ready` — strong visual nudge so a customer
   who navigated away notices they have an order to pick up. The
   animation only fires on the inline status icon to avoid distracting
   from page content. */
.active-order-banner[data-status="ready"] .ico {
  animation: pulse-ready 1.4s ease-in-out infinite;
}
@keyframes pulse-ready {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 6px rgba(255,255,255,0.45)); }
}

/* Slightly larger sticky banner on phones so the tap target is generous
   and the customer doesn't miss it scrolling. */
@media (max-width: 540px) {
  .active-order-banner {
    padding: 14px 16px;
    font-size: 1.02rem;
  }
  .active-order-banner .title { font-size: 1.02rem; }
  .active-order-banner .cta { padding: 8px 14px; }
}

/* Dine-in tracker variant — sits below the takeaway banner when both
   present. Different gradient so the customer can tell them apart at a
   glance ("📍 Dine-in" blue vs "🍽️ Takeaway" amber). */
.active-order-banner.dine-in-tracker {
  background: linear-gradient(90deg, #2a4d8f, #3666b8);
  color: #fff;
  /* Stack below the takeaway banner so the customer sees both. */
  top: 0;
}
/* When BOTH banners render, the dine-in one needs to sit below the
   takeaway one. `:not([hidden])` ensures the offset only applies when
   the preceding takeaway banner is actually visible — otherwise an
   empty gap would appear above a solo dine-in banner. */
.active-order-banner:not([hidden]) + .active-order-banner.dine-in-tracker {
  top: 52px;
}
@media (max-width: 540px) {
  .active-order-banner:not([hidden]) + .active-order-banner.dine-in-tracker { top: 60px; }
}
.active-order-banner.dine-in-tracker:hover {
  filter: brightness(1.05);
}
.active-order-banner:hover { filter: brightness(1.05); }

/* ---- Status timeline ---- */
.status-track {
  display: flex; gap: 8px; padding: 18px; align-items: flex-start;
  overflow-x: auto;
  position: relative;
}
.status-track .status-step {
  flex: 1 1 0; min-width: 80px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: .35; position: relative;
}
.status-track .status-step .dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 2px solid var(--hairline);
  display: grid; place-items: center; font-size: 20px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.status-track .status-step .lbl { font-size: .75rem; color: var(--text-dim); font-weight: 500; }
.status-track .status-step.done { opacity: 1; }
.status-track .status-step.done .dot { background: var(--success-soft, rgba(46,125,50,.2)); border-color: var(--success); }
.status-track .status-step.current { opacity: 1; }
.status-track .status-step.current .dot {
  background: var(--accent-soft); border-color: var(--accent);
  transform: scale(1.1);
  animation: stepPulse 1.4s ease-in-out infinite;
}
@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-soft); }
  50%      { box-shadow: 0 0 0 8px transparent; }
}
.status-track .status-step.muted .dot { opacity: .25; }

/* ---- Feedback modal ---- */
.modal-bg {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 200; display: grid; place-items: center; padding: 16px;
}
.modal-bg[hidden] { display: none; }
.modal-card {
  width: 100%; max-width: 460px; background: var(--bg-2);
  border: 1px solid var(--hairline); border-radius: 18px; padding: 18px;
  box-shadow: var(--shadow-lift);
}
.modal-card h3 { margin-top: 0; }
.modal-card .input { width: 100%; }

/* ---- Continue with Google button ---- */
.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body, "Sora", system-ui, sans-serif);
  font-size: 0.92rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: background 0.15s, box-shadow 0.15s;
}
.btn-google:hover { background: #f8f9fa; box-shadow: 0 2px 6px rgba(0,0,0,0.18); }
.btn-google:active { background: #f1f3f4; }
.btn-google svg { flex: none; }

.auth-or {
  display: flex; align-items: center; gap: 10px;
  margin: 14px 0;
  font-size: 0.78rem; color: var(--text-faint, var(--text-dim));
  text-transform: uppercase; letter-spacing: 0.1em;
}
.auth-or::before, .auth-or::after {
  content: ""; flex: 1; height: 1px; background: var(--hairline);
}

/* ---- Print: keep the bill, hide chrome ---- */
@media print {
  .topbar, .portal-bar, .foot, #activeOrderBanner, .notif-live-banner,
  .status-track, #orderActions, #leaveFeedbackBtn, .btn { display: none !important; }
  body { background: white; color: black; }
  .bill-paper { box-shadow: none; border: none; }
}

@media (max-width: 720px) {
  /* Show the hamburger; collapse the nav into a tap-to-open dropdown so
     signed-in customers can still reach their name + account menu on a
     phone (the dine-in QR case). */
  .nav-toggle { display: inline-flex; align-items: center; }
  .portal-nav {
    display: none;
    position: absolute; top: calc(100% + 6px); inset-inline-end: 8px;
    flex-direction: column; align-items: stretch; flex-wrap: nowrap;
    min-width: 210px; max-width: 80vw; padding: 8px; gap: 2px; z-index: 60;
    background: var(--bg-2, #14151c); border: 1px solid var(--hairline);
    border-radius: 14px; box-shadow: 0 14px 36px rgba(0,0,0,0.45);
  }
  .portal-nav.open { display: flex; }
  .portal-nav a { padding: 11px 12px; border-radius: 8px; }
  .nav-greeting {
    display: block; padding: 9px 12px 10px; font-weight: 700;
    color: var(--accent); border-block-end: 1px solid var(--hairline);
    margin-block-end: 4px; white-space: nowrap; overflow: hidden;
    text-overflow: ellipsis;
  }
}

.pay-picker { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-picker label {
  flex: 1; min-width: 130px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-3);
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.92rem;
}
.pay-picker label:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.pay-picker input[type="radio"] { accent-color: var(--accent); }


/* ===== Normal/List menu view toggle (storefront) ===== */
.menu-head { display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin:18px 0 10px; }
.menu-head .disc-h { margin:0; font-family:var(--font-display); font-size:1.25rem; letter-spacing:-0.015em; color:var(--text); }
html[lang="en"] .menu-head .disc-h { font-style:italic; }
.view-toggle { display:inline-flex; border:1px solid var(--hairline-strong); border-radius:var(--radius-pill); overflow:hidden; }
.vt-btn { appearance:none; border:0; background:transparent; color:var(--text-dim); font:inherit; font-size:0.82rem; padding:7px 13px; cursor:pointer; display:inline-flex; align-items:center; gap:6px; transition:background .15s,color .15s; }
.vt-btn+.vt-btn { border-inline-start:1px solid var(--hairline-strong); }
.vt-btn.active { background:var(--accent); color:var(--accent-ink); font-weight:600; }
/* List view = unchanged layout: the grid wrapper is transparent */
.menu-grid { display:contents; }
/* Normal view = opt-in responsive card grid */
.menu-view-normal .menu-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(155px,1fr)); gap:12px; }
.menu-view-normal .menu-grid .menu-item { display:flex!important; flex-direction:column; align-items:stretch; padding:0 0 12px!important; border:1px solid var(--hairline)!important; border-radius:var(--radius); background:var(--bg-2); overflow:hidden; gap:6px; }
.menu-view-normal .menu-grid .menu-item .photo { width:100%!important; height:120px!important; border-radius:0!important; }
.menu-view-normal .menu-grid .menu-item .info { padding:0 12px; }
.menu-view-normal .menu-grid .menu-item .desc, .menu-view-normal .menu-grid .menu-item .addon-grid, .menu-view-normal .menu-grid .menu-item .note-input { display:none!important; }
.menu-view-normal .menu-grid .menu-item>div:last-child { padding:0 12px; width:100%; }

/* ============================================================
   Discovery redesign — header (3-zone), restaurant context
   card, featured row, request-service button, bottom action
   bar. Single light theme; mobile-first.
   ============================================================ */

/* ----- 3-zone sticky header: locale | hamburger | logo ----- */
.disc-bar {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px;
}
.disc-bar .locale-pill { justify-self: start; display: inline-flex; align-items: center; gap: 6px; }
.disc-bar .nav-toggle  { justify-self: center; display: inline-flex; align-items: center; }
.disc-bar .brand       { justify-self: end; }
/* Nav is always a tap-to-open sheet now (hamburger is the sole entry). */
.disc-bar .portal-nav {
  display: none; position: absolute; top: calc(100% + 6px);
  left: 50%; transform: translateX(-50%);
  flex-direction: column; align-items: stretch; flex-wrap: nowrap;
  min-width: 230px; max-width: 92vw; padding: 8px; gap: 2px; z-index: 60;
  background: var(--bg-2); border: 1px solid var(--hairline-strong);
  border-radius: 14px; box-shadow: 0 16px 38px rgba(0,0,0,0.22);
}
.disc-bar .portal-nav.open { display: flex; }
.disc-bar .portal-nav a { padding: 11px 12px; border-radius: 8px; font-size: 0.86rem; }
.disc-bar .nav-greeting {
  display: block; padding: 9px 12px 10px; font-weight: 700; color: var(--accent);
  border-block-end: 1px solid var(--hairline); margin-block-end: 4px;
}

/* ----- Restaurant context card ----- */
.resto-card {
  display: flex; align-items: center; gap: 16px;
  margin: 14px 0 18px; padding: 16px;
  background: var(--bg-2); border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
}
.resto-logo {
  flex: 0 0 auto; width: 72px; height: 72px; border-radius: var(--radius);
  border: 1px solid var(--hairline-strong); background: var(--bg-3);
  display: grid; place-items: center; overflow: hidden;
  font-family: var(--font-display-en); font-size: 1.8rem; color: var(--accent);
}
.resto-logo img { width: 100%; height: 100%; object-fit: cover; }
.resto-meta { min-width: 0; }
.resto-name { font-family: var(--font-display-en); font-size: 1.5rem; margin: 0 0 2px; line-height: 1.1; }
html[lang="en"] .resto-name { font-style: italic; }
.resto-context { margin: 0 0 8px; color: var(--text-dim); font-size: 0.98rem; }
.resto-context b { color: var(--accent); }
.resto-tags { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: var(--radius-pill);
  font-size: 0.76rem; font-weight: 600; border: 1px solid var(--hairline-strong);
  background: var(--bg-3); color: var(--text-dim); text-decoration: none;
  font-family: inherit; cursor: pointer;
}
.chip-open   { color: #2f8f49; border-color: rgba(58,155,84,0.4); }
.chip-closed { color: #b03030; border-color: rgba(176,48,48,0.4); }
.chip-link:hover { border-color: var(--accent); color: var(--accent); }

/* ----- Featured row (horizontal scroll) ----- */
.featured-block { margin: 8px 0 14px; }
.featured-row {
  display: flex; gap: 12px; overflow-x: auto; padding: 4px 2px 8px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.featured-card {
  flex: 0 0 200px; scroll-snap-align: start;
  background: var(--bg-2); border: 1px solid var(--hairline);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
}
.featured-card .photo {
  width: 100%; height: 110px; background-size: cover; background-position: center;
  background-color: var(--bg-3);
}
.featured-card .fc-body { padding: 10px 12px; display: flex; flex-direction: column; gap: 8px; }
.featured-card .fc-name { font-weight: 600; font-size: 0.9rem; line-height: 1.25; }
.featured-card .price { font-family: var(--font-numeric); color: var(--accent); }
.featured-card .price small { color: var(--text-faint); font-size: 0.7rem; }

/* ----- Request Service button ----- */
.service-wrap { display: flex; flex-direction: column; align-items: center; margin: 4px 0 16px; }
.service-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--accent); background: var(--accent-soft); color: var(--text);
  border-radius: var(--radius-pill); padding: 12px 28px; font: inherit; font-weight: 600;
  cursor: pointer; transition: background .15s ease;
}
.service-btn:hover { background: var(--accent-glow); }
.service-btn:disabled { opacity: .6; cursor: progress; }
.service-btn .bell { font-size: 1.15rem; }
.service-toast { text-align: center; color: #2f8f49; font-size: 0.85rem; margin: 8px 0 0; min-height: 1.1em; }

/* ----- Fixed bottom action bar ----- */
.action-bar {
  position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 56px;
  padding: 10px 18px calc(10px + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--bg-1) 92%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-block-start: 1px solid var(--hairline-strong);
}
.action-bar a { text-decoration: none; }
.ab-track { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 600; font-size: 0.92rem; }
.ab-track:hover { color: var(--accent); }
.ab-ico { font-size: 1.1rem; }
.ab-badge {
  display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: var(--radius-pill); background: var(--accent); color: var(--accent-ink);
  font-size: 0.72rem; font-weight: 700;
}
.ab-auth { font-size: 0.9rem; color: var(--text-dim); }
.ab-auth.signed-in b { color: var(--text); }
.ab-signin { border: 1px solid var(--hairline-strong); border-radius: var(--radius-pill); padding: 7px 16px; color: var(--text); font-weight: 600; }
.ab-signin:hover { border-color: var(--accent); color: var(--accent); }

/* Keep floating FABs clear of the action bar. */
.has-action-bar .cart-fab { inset-block-end: calc(84px + env(safe-area-inset-bottom, 0px)); }
.has-action-bar #svcFab    { inset-block-end: calc(160px + env(safe-area-inset-bottom, 0px)) !important; }

/* Hide the action bar when printing. */
@media print { .action-bar { display: none !important; } }

@media (max-width: 540px) {
  .resto-card { gap: 12px; padding: 14px; }
  .resto-logo { width: 60px; height: 60px; }
  .resto-name { font-size: 1.25rem; }
}
