/* ═══════════════════════════════════════════════════════════════════════════
   BH Order App — Restaurant Ordering
   Mobile-first · Themed via --bhoa-* canonical tokens (theme-tokens.css)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Token Bridge (maps canonical --bhoa-* to local shorthand) ────────────── */
body .bhoa-order-shell {
  --bg:            var(--bhoa-bg);
  --surface:       var(--bhoa-surface);
  --surface-2:     var(--bhoa-surface-2);
  --surface-3:     var(--bhoa-surface-3);
  --border:        var(--bhoa-border);
  --border-accent: var(--bhoa-border-accent);
  --accent:        var(--bhoa-accent);
  --accent-dim:    var(--bhoa-accent-dim);
  --accent-bright: var(--bhoa-accent-bright);
  --accent-bg:     var(--bhoa-accent-bg);
  --green:         var(--bhoa-success);
  --green-bg:      var(--bhoa-success-bg);
  --text:          var(--bhoa-text);
  --text-2:        var(--bhoa-text-2);
  --text-3:        var(--bhoa-text-3);
  --danger:        var(--bhoa-danger);
  --success:       var(--bhoa-success);
  --radius:        var(--bhoa-radius);
  --radius-sm:     var(--bhoa-radius-sm);
  --radius-lg:     var(--bhoa-radius-lg);
  --radius-xl:     var(--bhoa-radius-xl);
  --radius-sheet:  24px 24px 0 0;
  --z-header:      var(--bhoa-z-header);
  --z-cart:        var(--bhoa-z-cart);
  --z-modal:       var(--bhoa-z-modal);
  --z-admin:       var(--bhoa-z-admin);
  --font-sans:     var(--bhoa-font-sans);
  --font-display:  var(--bhoa-font-display);
  --font-mono:     var(--bhoa-font-mono);
  --ease-out:      var(--bhoa-ease-out);
  --ease-out-soft: var(--bhoa-ease-out-soft);
  --ease-spring:   var(--bhoa-ease-spring);
  --ease-smooth:   var(--bhoa-ease-smooth);
  --glass:         var(--bhoa-glass);
  --glass-border:  var(--bhoa-glass-border);
  --glass-blur:    var(--bhoa-glass-blur);
  --glass-shadow:  var(--bhoa-glass-shadow);
  --product-filter: var(--bhoa-product-filter, none);
  --product-bg:    var(--bhoa-product-bg, #fff);
  --card-shadow:   var(--bhoa-card-shadow, 0 1px 3px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.06));

  background: var(--bg);
  background-image: var(--bhoa-bg-gradient);
  color: var(--text-2);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  body .bhoa-order-shell *,
  body .bhoa-order-shell *::before,
  body .bhoa-order-shell *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Keyboard focus ring for all interactive elements */
body .bhoa-order-shell button:focus-visible,
body .bhoa-order-shell a:focus-visible,
body .bhoa-order-shell select:focus-visible,
body .bhoa-order-shell textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Hide restaurant mode toggle */
#bhoa-mode-toggle,
.bhoa-order-app__mode-toggle {
  display: none !important;
}

/* Force bg on WP wrappers */
body:has(.bhoa-order-shell),
body:has(.bhoa-app-shell) {
  background: var(--bhoa-bg) !important;
}
body:has(.bhoa-order-shell) > #page,
body:has(.bhoa-order-shell) > #page > .site-content,
body:has(.bhoa-order-shell) .entry-content,
body:has(.bhoa-app-shell) > #page,
body:has(.bhoa-app-shell) > #page > .site-content,
body:has(.bhoa-app-shell) .entry-content {
  background: transparent !important;
}

body .bhoa-order-shell * { box-sizing: border-box; }

body .bhoa-order-shell button,
body .bhoa-order-shell input,
body .bhoa-order-shell textarea,
body .bhoa-order-shell select { font: inherit; }

body .bhoa-order-shell button { cursor: pointer; }

body .bhoa-order-app__sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── App wrapper ─────────────────────────────────────────────────────────── */
body .bhoa-order-app {
  padding: .5rem 1rem 1rem;
  background: var(--bg);
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Mobile overflow fix */
body .bhoa-order-shell {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: clip;
}

/* Full-bleed the app past the WP block-theme root padding so the sticky header
   reaches both viewport edges on every device — kills the side color seam (the
   "cut") and lets the bar touch the corners. The negative margins equal the
   theme's own --wp--style--root--padding-* (clamp(30px,5vw,50px)) so they track
   it automatically; the WP page title (outside the shell) keeps its inset, and
   the overflow-x: clip above prevents any horizontal scroll. */
body .bhoa-order-shell {
  width: auto !important;
  max-width: none !important;
  margin-left: calc(-1 * var(--wp--style--root--padding-left, 0px)) !important;
  margin-right: calc(-1 * var(--wp--style--root--padding-right, 0px)) !important;
}

/* ── Button press feedback ─────────────────────────────────────────────── */
body .bhoa-order-shell button {
  transition: transform .2s var(--ease-out), opacity .15s ease;
  will-change: transform;
}
body .bhoa-order-shell button:active:not(:disabled) {
  transform: scale(0.95);
  transition: transform .08s ease;
}

/* ── Header Shell ────────────────────────────────────────────────────────── */
body .bhoa-order-app__header-shell {
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--glass);
  -webkit-backdrop-filter: saturate(180%) blur(var(--glass-blur));
  backdrop-filter: saturate(180%) blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 0 1rem .35rem;
  transition: padding .2s var(--ease-out);
}
body .bhoa-order-app__header-shell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent-bright) 50%, var(--accent) 70%, transparent 100%);
  background-size: 200% 100%;
  pointer-events: none;
  opacity: .45;
  animation: bhoaHeaderShimmer 6s ease-in-out infinite;
}
@keyframes bhoaHeaderShimmer {
  0%, 100% { background-position: 100% 0; }
  50%      { background-position: 0% 0; }
}

/* Compact header on scroll */
body .bhoa-order-app__header-shell.is-scrolled {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
body .bhoa-order-app__header-shell.is-scrolled .bhoa-order-app__toolbar { gap: 2px !important; }
body .bhoa-order-app__header-shell.is-scrolled .bhoa-top-row { gap: 4px !important; margin-bottom: 0 !important; }
body .bhoa-order-app__header-shell.is-scrolled .bhoa-order-app__tabs { padding: 3px 6px !important; }
body .bhoa-order-app__header-shell.is-scrolled .bhoa-order-app__tab {
  font-size: .68rem !important; min-height: 36px !important;
}

/* ── Topbar ──────────────────────────────────────────────────────────────── */
body .bhoa-order-app__topbar { display: block !important; padding: 0; background: transparent; }
body .bhoa-header-refined { background: transparent; }

body .bhoa-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: 0;
  padding: 8px 0 4px;
}

body .bhoa-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}

/* ── Hamburger menu button ─────────────────────────────────────────────── */
body .bhoa-order-app__control-menu {
  position: relative;
  left: auto; top: auto;
  transform: none;
  justify-self: start;
  flex-shrink: 0;
}

body .bhoa-order-app__control-menu .bhoa-control-menu__toggle--hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; min-width: 36px;
  height: 36px; min-height: 44px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

body .bhoa-order-app__control-menu .bhoa-control-menu__toggle--hamburger:hover {
  background: var(--surface-2);
  color: var(--text);
}

/* ── Control menu panel ────────────────────────────────────────────────── */
body .bhoa-order-app__control-menu .bhoa-control-menu__panel {
  position: fixed;
  top: 62px; left: 12px; right: auto; transform: none;
  min-width: min(300px, calc(100vw - 24px));
  max-width: min(340px, calc(100vw - 24px));
  z-index: calc(var(--z-modal) + 100);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 16px 14px;
  box-shadow:
    0 8px 32px rgba(0,0,0,.35),
    0 2px 6px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: bhoaPanelIn .3s var(--ease-out) both;
}
@keyframes bhoaPanelIn {
  from { opacity: 0; transform: translateY(-8px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
body .bhoa-order-app__control-menu .bhoa-control-menu__panel[hidden] {
  display: none !important;
}

/* ── Control menu inner components (bhoa-cm__*) ──────────────────────────── */
body .bhoa-cm__nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
body .bhoa-cm__nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-2);
  font-size: .88rem;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background .12s, color .12s;
  font-family: inherit;
}
body .bhoa-cm__nav-item:hover {
  background: var(--surface-2);
  color: var(--text);
}
body .bhoa-cm__nav-item--danger { color: var(--danger, #c0392b); margin-top: 4px; }
body .bhoa-cm__nav-item--danger:hover { background: rgba(192,57,43,.06); color: var(--danger, #c0392b); }
body .bhoa-cm__nav-item--danger .bhoa-cm__nav-icon { opacity: .7; }
body .bhoa-cm__nav-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: .5;
}
body .bhoa-cm__sep {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}
body .bhoa-cm__section-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 4px 12px 4px;
}

/* Account bar */
body .bhoa-cm__account-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--surface-2);
}
body .bhoa-cm__account-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--text-3);
}
body .bhoa-order-app__profile.is-validated .bhoa-cm__account-avatar {
  background: var(--green-bg);
  border-color: var(--green);
  color: var(--green);
}
body .bhoa-cm__account-info {
  flex: 1;
  min-width: 0;
  font-size: .82rem;
  color: var(--text-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body .bhoa-cm__account-empty-hint { font-size: .78rem; color: var(--text-3); }
body .bhoa-cm__account-empty-hint[hidden] { display: none !important; }
body .bhoa-cm__validation-status {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.3;
  white-space: normal;
  margin-top: 2px;
}
body .bhoa-cm__validation-status[hidden] { display: none !important; }
body .bhoa-cm__validation-status.is-validated { color: var(--green); }
body .bhoa-cm__validation-status.is-pending { color: var(--yellow, #d4a017); }
body .bhoa-cm__validation-status.is-unvalidated { color: var(--text-3); }
body .bhoa-cm__age-badge {
  display: inline-block;
  font-size: .6rem; font-weight: 700; letter-spacing: .05em;
  padding: 1px 6px; border-radius: 4px;
  line-height: 1.4;
}
body .bhoa-cm__age-badge[hidden] { display: none !important; }
body .bhoa-cm__age-badge.is-confirmed {
  background: var(--green-bg); color: var(--green);
  border: 1px solid rgba(26,141,95,.15);
}
body .bhoa-cm__account-toggle {
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: border-color .12s, background .12s, color .12s;
}
body .bhoa-cm__account-toggle:hover {
  background: var(--accent-bg);
  border-color: var(--accent);
}

/* Profile form */
body .bhoa-cm__profile-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 8px 6px;
  animation: bhoaSlideDown .2s ease both;
}
@keyframes bhoaSlideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
body .bhoa-cm__profile-content[hidden] { display: none !important; }
body .bhoa-cm__field { display: flex; flex-direction: column; gap: 4px; }
body .bhoa-cm__field-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
}
body .bhoa-cm__fields-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
body .bhoa-cm__input {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .15s;
  box-sizing: border-box;
}
body .bhoa-cm__input:focus {
  outline: none;
  border-color: var(--accent);
}
body .bhoa-cm__input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
body .bhoa-cm__input--otp {
  text-align: center;
  letter-spacing: .3em;
  font-weight: 700;
}
body .bhoa-cm__otp-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 6px;
  align-items: center;
}
body .bhoa-cm__otp-row[hidden] { display: none !important; }
body .bhoa-cm__otp-row .bhoa-cm__input { height: 34px; }

/* Buttons */
body .bhoa-cm__btn-primary {
  width: 100%;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  transition: opacity .12s;
}
body .bhoa-cm__btn-primary:hover { opacity: .88; }
body .bhoa-cm__btn-ghost {
  padding: 7px 12px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-2);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: border-color .12s, color .12s;
}
body .bhoa-cm__btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
body .bhoa-cm__btn-link {
  background: transparent;
  border: 0;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}
body .bhoa-cm__profile-foot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 6px;
}
body .bhoa-order-app__profile-status {
  font-size: .78rem;
  color: var(--text-3);
  text-align: center;
  padding: 2px 0;
}
body .bhoa-order-app__profile-status.is-validated {
  color: var(--green);
  font-weight: 600;
}
body .bhoa-order-app__profile.is-validated .bhoa-cm__profile-content {
  padding: 8px 6px 4px;
  gap: 6px;
}
body .bhoa-order-app__profile.is-validated .bhoa-cm__input:disabled {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text);
}

/* ── Language toggle (inside hamburger menu) ────────────────────────────── */
body .bhoa-lang-toggle {
  display: flex;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}
body .bhoa-lang-toggle__btn {
  appearance: none;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-3);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 14px;
  min-height: 32px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
body .bhoa-lang-toggle__btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
body .bhoa-lang-toggle__btn:hover:not(.is-active) {
  background: var(--surface-2);
  color: var(--text-2);
}

/* Hide lang toggle on scroll — not needed since it's in the menu now */
body .bhoa-order-app__header-shell.is-scrolled .bhoa-lang-toggle {
  max-height: none;
  overflow: visible;
  opacity: 1;
}

/* ── Location bar ───────────────────────────────────────────────────────── */
body .bhoa-order-app__location-bar {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 4px 6px 4px 10px;
  border: 1.5px solid var(--glass-border);
  border-radius: 10px;
  background: var(--glass);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  color: var(--text-3);
  font-size: .72rem;
  line-height: 1.2;
  transition: border-color .2s var(--ease-smooth), box-shadow .2s var(--ease-smooth), transform .2s var(--ease-out);
}
body .bhoa-order-app__location-bar:hover {
  border-color: var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transform: translateY(-1px);
}
body .bhoa-order-app__location-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  font-weight: 600;
}
body .bhoa-order-app__location-bar strong {
  color: var(--text);
  font-size: .8rem;
  font-weight: 700;
}
body .bhoa-table-number { font-size: .82rem !important; }
body .bhoa-order-app__location-zone { color: var(--text-3); font-size: .7rem; font-weight: 500; }
body .bhoa-order-app__location-sep { color: var(--text-3); margin: 0 .05rem; opacity: .5; font-size: .6rem; }
body .bhoa-order-app__location-btn {
  width: 26px; height: 26px; min-height: 44px; min-width: 44px;
  border: 0; border-radius: 8px;
  background: var(--bg); color: var(--text-2);
  font-size: .72rem; padding: 0;
  display: inline-grid; place-items: center;
  transition: color .15s ease, background .15s ease;
}
body .bhoa-order-app__location-btn:hover { color: var(--text); background: var(--surface-3); }

/* ── Header actions ─────────────────────────────────────────────────────── */
body .bhoa-header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: .4rem;
}

body .bhoa-order-app__header-orders-btn {
  width: 36px; height: 36px; min-height: 44px; min-width: 44px;
  border-radius: 10px;
  border: none;
  background: var(--bg); color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
  position: relative;
}
body .bhoa-order-app__header-orders-btn:hover {
  color: var(--text); background: var(--surface-2);
}
body .bhoa-order-app__header-orders-btn:active {
  transform: scale(.92);
}

body .bhoa-order-app__search-shell {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  flex: 0 0 auto;
}

body .bhoa-order-app__search-toggle,
body .bhoa-order-app__menu-toggle {
  width: 36px; height: 36px; min-height: 44px; min-width: 44px;
  border-radius: 10px;
  border: none;
  background: var(--bg); color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease, transform .1s var(--ease-out);
}

body .bhoa-order-app__search-toggle:hover,
body .bhoa-order-app__menu-toggle:hover {
  color: var(--text);
  background: var(--surface-2);
}
body .bhoa-order-app__search-toggle:active,
body .bhoa-order-app__menu-toggle:active {
  transform: scale(.92);
}

body .bhoa-order-app__search-toggle { font-size: .92rem; }

body .bhoa-order-app__menu-toggle {
  flex-direction: column; justify-content: center; padding: 0;
  display: none !important;
}

body .bhoa-order-app__menu-toggle span {
  display: block; width: 12px; height: 1.5px;
  margin: 2px auto; border-radius: 999px;
  background: var(--text-3);
  transition: transform .18s, opacity .18s;
}

/* ── Search ──────────────────────────────────────────────────────────────── */
body .bhoa-order-app__search-wrap {
  width: 0; max-width: 0; overflow: hidden; opacity: 0;
  transition: max-width .35s var(--ease-out), opacity .25s var(--ease-smooth);
  position: relative;
}
body .bhoa-order-app__search-wrap::before {
  content: "\2315";
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  font-size: .88rem; color: var(--text-3); pointer-events: none;
  opacity: .6;
}
body .bhoa-order-shell.is-search-open .bhoa-order-app__search-wrap {
  width: min(28vw, 14rem); max-width: min(28vw, 14rem); opacity: 1;
}
body .bhoa-order-app__search {
  width: 100%; min-height: 40px;
  padding: 0 2rem 0 2rem;
  border-radius: 12px;
  border: 1.5px solid transparent;
  background: var(--bg); color: var(--text);
  font-size: 1rem; font-weight: 500;
  transition: border-color .25s var(--ease-smooth), background .2s ease, box-shadow .25s var(--ease-smooth);
}
body .bhoa-order-app__search::placeholder { color: var(--text-3); opacity: .75; }
body .bhoa-order-app__search:focus {
  border-color: var(--accent); outline: none;
  background: var(--surface);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 8%, transparent);
}

body .bhoa-order-app__search-clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: var(--surface-2); border: 0; color: var(--text-3);
  font-size: .78rem; padding: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background .12s, color .12s;
}
body .bhoa-order-app__search-clear:hover { background: var(--surface-3); color: var(--text); }

/* ── Category tabs ───────────────────────────────────────────────────────── */
body .bhoa-order-app__header-menu {
  display: grid; gap: 0; padding: 0;
}
body .bhoa-order-app__tabs {
  display: flex; gap: 5px;
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 4px 6px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: none;
}
body .bhoa-order-app__tabs::-webkit-scrollbar { display: none; }

body .bhoa-order-app__tab {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .35rem; flex: 0 0 auto;
  border: none; border-radius: 0;
  border-bottom: 3px solid transparent;
  min-height: 44px; padding: 0 10px;
  background: transparent; color: var(--text-3);
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; white-space: nowrap;
  transition: color .12s var(--ease-out),
              border-color .12s var(--ease-out);
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
body .bhoa-order-app__tab::after { display: none; }

/* Active — brutal underline */
body .bhoa-order-app__tab[aria-selected="true"] {
  color: var(--text);
  background: transparent;
  font-weight: 900;
  border-bottom-color: var(--accent);
  box-shadow: none;
}

/* Hover on inactive */
body .bhoa-order-app__tab:hover:not([aria-selected="true"]) {
  color: var(--text-2);
  background: transparent;
}

/* Press feedback */
body .bhoa-order-app__tab:active { opacity: .7; }

/* Disabled */
body .bhoa-order-app__tab.is-disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }

/* Hide badge/count elements */
body .bhoa-order-app__tab-count,
body .bhoa-order-app__tab [data-count],
body .bhoa-order-app__tab .count,
body .bhoa-order-app__tab .badge { display: none !important; }

/* Icon sizing */
body .bhoa-order-app__tab-icon { width: 14px; height: 14px; display: inline-flex; align-items: center; }
body .bhoa-order-app__tab-icon svg { width: 14px; height: 14px; display: block; }
/* Active tab icon color override */
body .bhoa-order-app__tab[aria-selected="true"] .bhoa-order-app__tab-icon svg { color: #fff; }

/* ── Toolbar / Filters ───────────────────────────────────────────────────── */
body .bhoa-order-app__toolbar { position: relative; z-index: 2; display: grid; gap: .4rem; }

body .bhoa-order-app__quick-filters { display: flex; gap: .35rem; flex-wrap: wrap; }

body .bhoa-order-app__quick-chip {
  display: inline-flex; align-items: center;
  padding: .3rem .7rem;
  border-radius: var(--radius-sm); border: none;
  background: transparent; color: var(--text-3);
  font-size: .68rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; cursor: pointer;
  transition: color .2s var(--ease-smooth), background .2s var(--ease-smooth), transform .15s var(--ease-out), box-shadow .2s ease;
}
body .bhoa-order-app__quick-chip:hover {
  color: var(--text-2);
  background: var(--surface-2);
}
body .bhoa-order-app__quick-chip:active { transform: scale(.93); transition-duration: .08s; }
body .bhoa-order-app__quick-chip[aria-pressed="true"] {
  color: #fff; background: var(--accent);
  box-shadow: 0 2px 8px var(--accent-bg);
}
body .bhoa-order-app__quick-filters:empty,
body .bhoa-order-app__meta:empty { display: none; }

/* ── Cocktail Filters (mood / strength) ────────────────────────────────── */
body .bhoa-cocktail-filters {
  display: grid; gap: .5rem;
}
body .bhoa-cocktail-filters__group {
  display: flex; align-items: center; gap: .3rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 2px 0;
  mask-image: linear-gradient(to right, transparent 0, #000 0, #000 calc(100% - 28px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 0, #000 calc(100% - 28px), transparent);
}
body .bhoa-cocktail-filters__group::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  body .bhoa-cocktail-filters__group {
    mask-image: none; -webkit-mask-image: none;
  }
}
body .bhoa-cocktail-filters__label {
  flex-shrink: 0;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-3);
  padding-right: .25rem;
}
body .bhoa-cocktail-filters__pill {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  padding: .28rem .65rem;
  border-radius: var(--radius-sm); border: none;
  background: transparent; color: var(--text-3);
  font-size: .68rem; font-weight: 600; letter-spacing: .03em;
  cursor: pointer; white-space: nowrap;
  transition: color .15s ease, background .15s ease, font-size .2s var(--ease-out), min-height .2s var(--ease-out);
}
body .bhoa-cocktail-filters__pill:hover {
  color: var(--text-2); background: var(--surface-2);
}
body .bhoa-cocktail-filters__pill:active { transform: scale(.97); }
body .bhoa-cocktail-filters__pill.is-active {
  color: #fff; background: var(--accent);
}

/* ── Results header ──────────────────────────────────────────────────────── */
body .bhoa-order-app__header-meta { display: grid; gap: .15rem; }
body .bhoa-order-app__meta { display: flex; flex-wrap: wrap; gap: .4rem; grid-column: 1/-1; }
body .bhoa-order-app__results {
  display: flex; justify-content: space-between; align-items: center;
  gap: .6rem; margin-top: 0;
  padding: .4rem 0 .4rem .75rem;
  border-left: 3px solid var(--accent);
}
body .bhoa-order-app__results[hidden] { display: none !important; }
body .bhoa-order-app__results-label {
  display: block; margin: 0 0 .1rem;
  font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3);
}
body .bhoa-order-app__results-title {
  margin: 0; font-size: .88rem; font-weight: 500; color: var(--text-2);
}
body .bhoa-order-app__results-title-main { color: var(--text); font-weight: 700; }
body .bhoa-order-app__results-title-price {
  display: inline-block; vertical-align: middle;
  color: var(--text-3); font-size: .72em; margin-left: .4rem;
  padding: 1px 6px; border-radius: 6px;
  background: var(--surface-2); border: 1px solid var(--border);
}
body .bhoa-order-app__results-meta {
  margin: 0; color: var(--text-3);
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
}
body .bhoa-order-app__status-pill {
  display: inline-flex; align-items: center; gap: .28rem;
  padding: .25rem .6rem; border-radius: var(--radius-sm);
  border: none; background: var(--surface-2);
  font-size: .7rem; color: var(--text-3);
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
body .bhoa-order-app__layout {
  margin-top: .35rem;
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr;
}
body .bhoa-order-app__browse { min-width: 0; position: relative; }

/* Desktop: sidebar cart */
@media (min-width: 768px) {
  body .bhoa-order-app__layout {
    grid-template-columns: 1fr 360px;
    gap: 1.25rem;
    align-items: start;
  }
  body .bhoa-order-app__cart {
    position: sticky !important;
    top: 120px;
    display: grid !important;
    max-height: calc(100vh - 140px);
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--card-shadow) !important;
  }
  body .bhoa-order-app__cart-head {
    padding: .85rem 1rem .6rem;
  }
  body .bhoa-order-app__cart-head h3,
  body .bhoa-order-shell .bhoa-order-app__cart-head #bhoa-cart-title {
    font-size: .95rem;
  }
  body .bhoa-order-app__cart-items {
    padding: .4rem 1rem;
  }
  body .bhoa-order-app__cart-foot {
    padding: .6rem 1rem .85rem;
    border-top: 1px solid var(--glass-border, var(--border));
  }
  /* Hide floating cart button when sidebar is visible */
  body .bhoa-order-app__mobile-cart { display: none !important; }
  body .bhoa-order-app__cart-overlay { display: none !important; }
}
@media (min-width: 1024px) {
  body .bhoa-order-app__layout {
    grid-template-columns: 1fr 400px;
  }
}
@media (min-width: 1280px) {
  body .bhoa-order-app__layout {
    grid-template-columns: 1fr 420px;
  }
}

/* ── Hide WP admin bar on customer order pages ─────────────────────────── */
#wpadminbar { display: none !important; }
html.wp-toolbar { padding-top: 0 !important; }
body.admin-bar { margin-top: 0 !important; }

/* ── Service states ──────────────────────────────────────────────────────── */
body .bhoa-order-app__service-alert {
  margin: 0 0 .6rem;
  border: none; border-radius: var(--radius);
  padding: .6rem .75rem; background: rgba(192,57,43,.06);
  color: var(--danger); font-size: .85rem;
}
body .bhoa-order-app__service-closed {
  /* Intentional brand moment — always dark + gold, NOT theme-switchable */
  --sc-bg-1: #0d0d0d;
  --sc-bg-2: #1a1a1a;
  --sc-gold: #c5a059;
  --sc-text: #f5f5f3;
  --sc-muted: #999;
  --sc-dim: #888;
  --sc-faint: #666;
  position: fixed; inset: 0; z-index: var(--bhoa-z-modal, 2000);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
  text-align: center; padding: 2rem 1.5rem;
  background: linear-gradient(160deg, var(--sc-bg-1) 0%, var(--sc-bg-2) 50%, var(--sc-bg-1) 100%);
  overflow-y: auto;
}
body .bhoa-order-app__service-closed[hidden],
body .screen-ocupado[hidden] { display: none !important; visibility: hidden !important; pointer-events: none !important; }
body .screen-ocupado { pointer-events: all; }
body .bhoa-service-closed__inner {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  max-width: 360px; width: 100%;
}
body .bhoa-service-closed__logo {
  width: 120px; height: 120px;
  opacity: .9; margin-bottom: .25rem;
}
body .bhoa-service-closed__logo img {
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(1.2);
}
body .bhoa-order-app__service-closed-eyebrow {
  margin: 0; font-size: .65rem; text-transform: uppercase;
  letter-spacing: .25em; color: var(--sc-gold); font-weight: 500;
}
body .bhoa-order-app__service-closed h3 {
  margin: 0; font-size: 1.8rem; font-weight: 700;
  color: var(--sc-text); letter-spacing: -.02em; line-height: 1.2;
}
body .bhoa-service-closed__subtitle {
  margin: 0; color: var(--sc-muted); font-size: .9rem; line-height: 1.7;
  max-width: 320px;
}
body .bhoa-service-closed__divider {
  width: 40px; height: 1px; margin: .5rem 0;
  background: color-mix(in srgb, var(--sc-gold) 40%, transparent);
}
body .bhoa-service-closed__info {
  display: flex; flex-direction: column; gap: .75rem;
  width: 100%; margin-top: .25rem;
}
body .bhoa-service-closed__hours,
body .bhoa-service-closed__location {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .65rem 1rem;
  border: 1px solid color-mix(in srgb, var(--sc-gold) 20%, transparent);
  border-radius: 10px; background: color-mix(in srgb, var(--sc-gold) 5%, transparent);
  color: var(--sc-gold);
}
body .bhoa-service-closed__hours svg,
body .bhoa-service-closed__location svg {
  flex-shrink: 0; margin-top: .15rem;
}
body .bhoa-service-closed__info-label {
  margin: 0; font-size: .65rem; text-transform: uppercase;
  letter-spacing: .15em; color: color-mix(in srgb, var(--sc-gold) 60%, transparent); font-weight: 500;
}
body .bhoa-service-closed__hours p,
body .bhoa-service-closed__location p {
  margin: 0; font-size: .8rem; color: var(--sc-gold);
  letter-spacing: .04em; font-weight: 500;
}
body .bhoa-service-closed__social {
  display: flex; gap: 1.25rem; margin-top: .5rem;
}
body .bhoa-service-closed__social a {
  color: var(--sc-dim); transition: color .2s;
  text-decoration: none;
}
body .bhoa-service-closed__social a:hover,
body .bhoa-service-closed__social a:focus { color: var(--sc-gold); }
body .bhoa-service-closed__footer {
  margin: .5rem 0 0; color: var(--sc-faint); font-size: .75rem; line-height: 1.5;
  max-width: 280px;
}
body .bhoa-order-app__service-closed p {
  margin: 0; color: var(--sc-muted); font-size: .85rem; line-height: 1.5;
}
body .bhoa-order-shell.is-service-closed .bhoa-order-app__header-shell,
body .bhoa-order-shell.is-service-closed .bhoa-order-app__layout,
body .bhoa-order-shell.is-service-closed .bhoa-order-app__mobile-cart,
body .bhoa-order-shell.is-service-closed .bhoa-order-app__admin-status-bar,
body .bhoa-order-shell.is-service-closed .bhoa-order-app__admin-status-dot { display: none !important; }
body.logged-in .bhoa-order-shell.is-service-closed .bhoa-order-app__service-closed,
body.admin-bar .bhoa-order-shell.is-service-closed .bhoa-order-app__service-closed,
body.bhoa-privileged .bhoa-order-shell.is-service-closed .bhoa-order-app__service-closed { display: none !important; }
body.logged-in .bhoa-order-shell.is-service-closed .bhoa-order-app__header-shell,
body.logged-in .bhoa-order-shell.is-service-closed .bhoa-order-app__layout,
body.logged-in .bhoa-order-shell.is-service-closed .bhoa-order-app__mobile-cart,
body.logged-in .bhoa-order-shell.is-service-closed .bhoa-order-app__admin-status-bar,
body.logged-in .bhoa-order-shell.is-service-closed .bhoa-order-app__admin-status-dot,
body.admin-bar .bhoa-order-shell.is-service-closed .bhoa-order-app__header-shell,
body.admin-bar .bhoa-order-shell.is-service-closed .bhoa-order-app__layout,
body.admin-bar .bhoa-order-shell.is-service-closed .bhoa-order-app__mobile-cart,
body.admin-bar .bhoa-order-shell.is-service-closed .bhoa-order-app__admin-status-bar,
body.admin-bar .bhoa-order-shell.is-service-closed .bhoa-order-app__admin-status-dot,
body.bhoa-privileged .bhoa-order-shell.is-service-closed .bhoa-order-app__header-shell,
body.bhoa-privileged .bhoa-order-shell.is-service-closed .bhoa-order-app__layout,
body.bhoa-privileged .bhoa-order-shell.is-service-closed .bhoa-order-app__mobile-cart,
body.bhoa-privileged .bhoa-order-shell.is-service-closed .bhoa-order-app__admin-status-bar,
body.bhoa-privileged .bhoa-order-shell.is-service-closed .bhoa-order-app__admin-status-dot { display: revert !important; }

/* ── My Orders ───────────────────────────────────────────────────────────── */
body .bhoa-order-app__my-orders {
  margin-top: .8rem; padding: .75rem 0;
  animation: bhoaFadeIn .3s var(--ease-out) both;
}
body .bhoa-order-app__my-orders-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; margin-bottom: .75rem;
  padding: .3rem 0 .3rem .75rem;
  border-left: 3px solid var(--accent);
  border-bottom: none;
}
body .bhoa-order-app__my-orders-head h3 {
  margin: 0; font-size: .95rem; letter-spacing: -.01em;
  text-transform: none; font-weight: 800; color: var(--text);
}
body .bhoa-order-app__orders-back {
  width: 34px; height: 34px; min-width: 44px; min-height: 44px;
  border-radius: 10px; border: none;
  background: var(--bg); color: var(--text-2);
  display: grid; place-items: center;
  font-size: .92rem; cursor: pointer;
  transition: background .12s, color .12s;
}
body .bhoa-order-app__orders-back:hover { background: var(--surface-2); color: var(--text); }
body .bhoa-order-app__my-orders-list { display: grid; gap: 8px; }
body .bhoa-order-app__my-orders-item {
  border: none; border-radius: 14px;
  padding: 14px 16px; background: var(--surface);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: transform .2s var(--ease-out), box-shadow .25s var(--ease-smooth);
  animation: bhoaCardIn .4s var(--ease-out) both;
}
body .bhoa-order-app__my-orders-item:nth-child(2) { animation-delay: .05s; }
body .bhoa-order-app__my-orders-item:nth-child(3) { animation-delay: .09s; }
body .bhoa-order-app__my-orders-item:nth-child(n+4) { animation-delay: .12s; }
body .bhoa-order-app__my-orders-item:active {
  transform: scale(.975); transition-duration: .1s;
}
body .bhoa-order-app__my-orders-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; margin-bottom: .3rem;
}
body .bhoa-order-app__my-orders-actions { display: inline-flex; gap: .35rem; align-items: center; }
body .bhoa-order-app__my-orders-code {
  font-weight: 800; font-size: .88rem; letter-spacing: -.01em; color: var(--text);
  font-family: inherit;
}
body .bhoa-order-app__my-orders-status {
  font-size: .6rem; color: #fff; letter-spacing: .06em;
  text-transform: uppercase; border: none;
  border-radius: 999px; padding: 4px 10px; background: var(--text-3);
  font-weight: 700;
}
body .bhoa-order-app__my-orders-status.is-new       { color: #fff; background: var(--accent); }
body .bhoa-order-app__my-orders-status.is-in_progress { color: #fff; background: #c78521; }
body .bhoa-order-app__my-orders-status.is-ready      { color: #fff; background: var(--green); }
body .bhoa-order-app__my-orders-status.is-completed  { color: #fff; background: #4a8bc2; }
body .bhoa-order-app__my-orders-status.is-cancelled  { color: #fff; background: var(--danger); }
body .bhoa-order-app__my-orders-meta  { margin: .2rem 0 0; font-size: .78rem; color: var(--text-2); line-height: 1.45; }
body .bhoa-order-app__my-orders-extra { margin: .1rem 0 0; font-size: .7rem; color: var(--text-3); font-family: var(--font-mono); }
body .bhoa-order-app__my-orders-empty {
  margin: 0; color: var(--text-3); font-size: .88rem;
  padding: 2rem 0; text-align: center;
}
body .bhoa-order-app__my-orders-empty::before {
  content: ''; display: block; width: 40px; height: 40px;
  margin: 0 auto 10px; opacity: .2;
  background: var(--text);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 002.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 00-1.123-.08m-5.801 0c-.065.21-.1.433-.1.664 0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75 2.25 2.25 0 00-.1-.664m-5.8 0A2.251 2.251 0 0113.5 2.25H15a2.25 2.25 0 012.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125H8.25z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 002.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 00-1.123-.08m-5.801 0c-.065.21-.1.433-.1.664 0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75 2.25 2.25 0 00-.1-.664m-5.8 0A2.251 2.251 0 0113.5 2.25H15a2.25 2.25 0 012.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125H8.25z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
body .bhoa-order-app__my-orders-qr {
  font-size: .62rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 8px;
  border: none; background: var(--bg);
  color: var(--text-3); cursor: pointer; font-family: inherit;
  transition: all .12s;
}
body .bhoa-order-app__my-orders-qr:disabled { display: none; }
body .bhoa-order-app__my-orders-qr.is-ready {
  color: #0f8a4f; background: rgba(26,141,95,.08);
}
body .bhoa-order-app__my-orders-qr.is-ready:hover {
  background: rgba(26,141,95,.14);
}

/* ── Home Landing Page ──────────────────────────────────────────────────── */

/* Gradient shimmer keyframes for hero title */
@keyframes bhoa-gradient-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* All home children must escape the parent menu grid */
body .bhoa-home__hero,
body .bhoa-home__grid,
body .bhoa-home__picks {
  grid-column: 1 / -1;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
body .bhoa-home__hero {
  padding: 16px 0 14px;
  text-align: center;
  position: relative;
}
body .bhoa-home__hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, color-mix(in srgb, var(--accent) 6%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, color-mix(in srgb, var(--accent) 4%, transparent) 0%, transparent 50%);
  pointer-events: none;
  border-radius: var(--radius-xl);
}
body .bhoa-home__hero-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--glass-shadow);
}
body .bhoa-home__badge {
  display: inline-block;
  font-size: .58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 2px;
}
body .bhoa-home__title {
  margin: 0;
  font-size: 1.5rem; font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -.025em;
  line-height: 1.08;
  /* Animated gradient text */
  background: linear-gradient(
    135deg,
    var(--text) 0%,
    var(--accent) 25%,
    var(--accent-bright) 50%,
    var(--accent) 75%,
    var(--text) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bhoa-gradient-shimmer 6s ease infinite;
}
body .bhoa-home__subtitle {
  margin: 2px 0 0;
  font-size: .8rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: .01em;
}

/* ── Category Grid — Bento layout ─────────────────────────────────────── */
body .bhoa-home__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 0 14px;
}
/* Cocktails tile spans full width on top (bento dominant) */
body .bhoa-home__tile[data-tile-cat="cocktails"] {
  grid-column: 1 / -1;
}

body .bhoa-home__tile {
  display: flex; flex-direction: column; gap: 6px;
  padding: 12px 12px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  -webkit-backdrop-filter: blur(calc(var(--glass-blur) * .5));
  backdrop-filter: blur(calc(var(--glass-blur) * .5));
  cursor: pointer; text-align: left;
  -webkit-appearance: none; appearance: none;
  -webkit-tap-highlight-color: transparent;
  position: relative; overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition:
    box-shadow .3s var(--ease-smooth),
    transform .2s var(--ease-out),
    border-color .3s var(--ease-smooth);
}
/* Gradient overlay per tile (subtle tint at top) */
body .bhoa-home__tile::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: .12;
  transition: opacity .3s var(--ease-smooth);
}
body .bhoa-home__tile[data-tile-cat="cocktails"]::before {
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
}
body .bhoa-home__tile[data-tile-cat="food"]::before {
  background: linear-gradient(135deg, var(--green) 0%, transparent 60%);
}
body .bhoa-home__tile[data-tile-cat="beverages"]::before {
  background: linear-gradient(135deg, var(--text-3) 0%, transparent 60%);
}
body .bhoa-home__tile[data-tile-cat="bodega"]::before {
  background: linear-gradient(135deg, #c5a059 0%, transparent 60%);
}

/* Arrow indicator */
body .bhoa-home__tile::after {
  content: '\2192';
  position: absolute; bottom: 12px; right: 14px;
  font-size: .75rem; color: var(--text-3);
  opacity: .6;
  transition: transform .25s var(--ease-out), color .25s, opacity .25s;
}

/* Hover — accent glow */
body .bhoa-home__tile:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
body .bhoa-home__tile[data-tile-cat="cocktails"]:hover {
  box-shadow:
    var(--glass-shadow),
    0 8px 32px color-mix(in srgb, var(--accent) 16%, transparent),
    0 0 0 1px var(--border-accent);
}
body .bhoa-home__tile[data-tile-cat="food"]:hover {
  box-shadow:
    var(--glass-shadow),
    0 8px 32px color-mix(in srgb, var(--green) 14%, transparent),
    0 0 0 1px color-mix(in srgb, var(--green) 20%, transparent);
}
body .bhoa-home__tile[data-tile-cat="beverages"]:hover {
  box-shadow:
    var(--glass-shadow),
    0 8px 32px rgba(0,0,0,.10),
    0 0 0 1px color-mix(in srgb, var(--text-3) 20%, transparent);
}
body .bhoa-home__tile[data-tile-cat="bodega"]:hover {
  box-shadow:
    var(--glass-shadow),
    0 8px 32px rgba(197,160,89,.14),
    0 0 0 1px rgba(197,160,89,.22);
}
body .bhoa-home__tile:hover::before { opacity: .18; }
body .bhoa-home__tile:hover::after {
  transform: translateX(4px);
  color: var(--accent);
  opacity: 1;
}
body .bhoa-home__tile:active {
  transform: scale(.97);
  transition-duration: .08s;
}

/* Tile icon */
body .bhoa-home__tile-icon {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  color: var(--accent);
  transition: background .25s, transform .25s var(--ease-spring);
}
body .bhoa-home__tile-icon svg { width: 20px; height: 20px; }
body .bhoa-home__tile[data-tile-cat="food"] .bhoa-home__tile-icon {
  background: color-mix(in srgb, var(--green) 10%, transparent);
  color: var(--green);
}
body .bhoa-home__tile[data-tile-cat="beverages"] .bhoa-home__tile-icon {
  background: color-mix(in srgb, var(--text-3) 10%, transparent);
  color: var(--text-2);
}
body .bhoa-home__tile[data-tile-cat="bodega"] .bhoa-home__tile-icon {
  background: rgba(197,160,89,.1);
  color: #c5a059;
}
body .bhoa-home__tile:hover .bhoa-home__tile-icon {
  transform: scale(1.08);
}

/* Tile body */
body .bhoa-home__tile-body {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
  position: relative; z-index: 1;
}
body .bhoa-home__tile-name {
  font-size: .82rem; font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
body .bhoa-home__tile-desc {
  font-size: .67rem; font-weight: 500;
  color: var(--text-3);
  line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
body .bhoa-home__tile-count {
  font-size: .6rem; font-weight: 600;
  color: var(--accent); opacity: .7;
  font-family: var(--font-mono);
  margin-top: 3px;
}

/* Cocktails tile — larger text when full-width */
body .bhoa-home__tile[data-tile-cat="cocktails"] .bhoa-home__tile-icon {
  width: 36px; height: 36px;
}
body .bhoa-home__tile[data-tile-cat="cocktails"] .bhoa-home__tile-icon svg {
  width: 24px; height: 24px;
}
body .bhoa-home__tile[data-tile-cat="cocktails"] .bhoa-home__tile-name {
  font-size: .92rem;
}

/* ── Popular Picks ────────────────────────────────────────────────────── */
body .bhoa-home__picks {
  padding: 0 0 14px;
}
body .bhoa-home__picks-title {
  margin: 0 0 10px 2px;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
body .bhoa-home__picks-title::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 1px;
  opacity: .4;
}

/* Horizontal rail */
body .bhoa-home__rail {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 4px 0 10px;
}
body .bhoa-home__rail::-webkit-scrollbar { display: none; }

/* Pick cards */
body .bhoa-home__pick-card {
  flex: 0 0 148px;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--surface);
  overflow: hidden; cursor: pointer;
  position: relative; text-align: left;
  padding: 0;
  -webkit-appearance: none; appearance: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 2px 8px rgba(0,0,0,.06),
    0 8px 24px rgba(0,0,0,.04);
  transition:
    box-shadow .3s var(--ease-smooth),
    transform .25s var(--ease-out),
    border-color .3s;
}
body .bhoa-home__pick-card:hover {
  border-color: var(--border-accent);
  box-shadow:
    0 8px 32px rgba(0,0,0,.10),
    0 2px 8px rgba(0,0,0,.06),
    0 0 0 1px var(--border-accent);
  transform: translateY(-3px);
}
body .bhoa-home__pick-card:active {
  transform: scale(.96);
  transition-duration: .08s;
}

/* Pick image */
body .bhoa-home__pick-img {
  width: 100%; height: 96px; overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
body .bhoa-home__pick-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0;
  transition: opacity .4s var(--ease-smooth), transform .4s var(--ease-smooth);
}
body .bhoa-home__pick-img.is-loaded img { opacity: 1; }
body .bhoa-home__pick-card:hover .bhoa-home__pick-img img {
  transform: scale(1.06);
}
body .bhoa-home__pick-img.is-bottle { background: transparent; }
body .bhoa-home__pick-img.is-bottle img {
  object-fit: contain; padding: 8px; filter: none;
  mix-blend-mode: normal;
}

/* Pick info — glass overlay effect */
body .bhoa-home__pick-info {
  padding: 10px 12px 12px;
  display: flex; flex-direction: column; gap: 3px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(calc(var(--glass-blur) * .4));
  backdrop-filter: blur(calc(var(--glass-blur) * .4));
  border-top: 1px solid var(--glass-border);
  position: relative;
}
body .bhoa-home__pick-cat {
  font-size: .56rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-3);
}
body .bhoa-home__pick-name {
  font-size: .78rem; font-weight: 650;
  color: var(--text);
  line-height: 1.2;
}
body .bhoa-home__pick-price {
  font-size: .74rem; font-weight: 800;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-top: 1px;
}

/* In-cart check (shared) */
body .bhoa-home__card-check {
  position: absolute; top: 8px; right: 8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: var(--bg);
  font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--green) 30%, transparent);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (min-width: 600px) {
  body .bhoa-home__hero { padding: 24px 0 18px; }
  body .bhoa-home__hero-inner { padding: 24px 28px; border-radius: var(--radius-xl); }
  body .bhoa-home__title { font-size: 1.85rem; }
  body .bhoa-home__grid { gap: 10px; }
  body .bhoa-home__tile { padding: 16px 14px 32px; border-radius: var(--radius-lg); }
  body .bhoa-home__tile-name { font-size: .88rem; }
  body .bhoa-home__pick-card { flex: 0 0 170px; }
  body .bhoa-home__pick-img { height: 110px; }
}
@media (min-width: 980px) {
  body .bhoa-home__grid { grid-template-columns: repeat(4, 1fr); }
  body .bhoa-home__tile[data-tile-cat="cocktails"] { grid-column: 1 / 3; }
  body .bhoa-home__tile { padding: 20px 18px 36px; }
  body .bhoa-home__pick-card { flex: 0 0 190px; }
  body .bhoa-home__pick-img { height: 120px; }
}

/* ── Featured carousel ──────────────────────────────────────────────────── */
body .bhoa-carousel { padding: 0 0 10px; }
body .bhoa-carousel[hidden] { display: none !important; }
body .bhoa-carousel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 10px;
}
body .bhoa-carousel__title {
  margin: 0;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
}
body .bhoa-carousel__track {
  display: flex; gap: 10px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 4px 0 8px;
}
body .bhoa-carousel__track::-webkit-scrollbar { display: none; }
body .bhoa-carousel__card {
  flex: 0 0 145px;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden; cursor: pointer;
  transition: box-shadow .25s var(--ease-smooth), transform .2s var(--ease-out);
  position: relative; text-align: left; padding: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  animation: bhoaCardIn .4s var(--ease-out) both;
}
body .bhoa-carousel__card:nth-child(2) { animation-delay: .05s; }
body .bhoa-carousel__card:nth-child(3) { animation-delay: .1s; }
body .bhoa-carousel__card:nth-child(4) { animation-delay: .15s; }
body .bhoa-carousel__card:nth-child(n+5) { animation-delay: .18s; }
body .bhoa-carousel__card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
body .bhoa-carousel__card:active { transform: scale(.96); transition-duration: .1s; }
body .bhoa-carousel__img {
  width: 100%; height: 100px; overflow: hidden;
  background: var(--product-bg);
}
body .bhoa-carousel__card.is-bottle .bhoa-carousel__img {
  background: transparent;
}
body .bhoa-carousel__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .25s ease;
  filter: none;
  mix-blend-mode: normal;
}
body .bhoa-carousel__card.is-bottle .bhoa-carousel__img img {
  object-fit: contain; padding: 6px;
  mix-blend-mode: normal; filter: none;
}
body .bhoa-carousel__card:hover .bhoa-carousel__img img { transform: scale(1.04); }
body .bhoa-carousel__info {
  padding: 10px 12px; display: flex; flex-direction: column;
  gap: 2px; flex: 1;
}
body .bhoa-carousel__name {
  font-size: .78rem; font-weight: 600; color: var(--text);
  line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
body .bhoa-carousel__price {
  font-size: .75rem; font-weight: 800; color: var(--accent);
  font-family: var(--font-mono);
}
body .bhoa-carousel__add {
  position: absolute; top: 8px; right: 8px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); color: var(--accent);
  border: 1px solid var(--border);
  font-size: .95rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background .12s ease, transform .1s ease;
}
body .bhoa-carousel__add.is-in-cart {
  background: var(--green); color: #fff;
  border-color: var(--green);
  font-size: .72rem;
}
@media (min-width: 640px) {
  body .bhoa-carousel__card { flex: 0 0 160px; }
  body .bhoa-carousel__img { height: 105px; }
}

/* ── Global link ───────────────────────────────────────────────────────── */
body .bhoa-order-app__link {
  background: transparent; border: 0; padding: 0;
  color: var(--accent); font-size: .82rem; font-weight: 600;
  cursor: pointer; text-decoration: none; letter-spacing: .02em;
  transition: color .12s;
}
body .bhoa-order-app__link:hover { color: var(--accent-bright); }

/* ── Empty state ─────────────────────────────────────────────────────────── */
body .bhoa-order-app__empty {
  text-align: center; padding: 2.5rem 1.5rem;
  border: none; border-radius: var(--radius-lg);
  background: var(--surface);
}
body .bhoa-order-app__empty::before {
  content: ''; display: block; width: 48px; height: 48px;
  margin: 0 auto 12px; opacity: .3;
  background: var(--text);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
body .bhoa-order-app__empty strong {
  display: block; font-size: .95rem; color: var(--text); margin-bottom: .3rem;
  font-weight: 700;
}
body .bhoa-order-app__empty p { margin: 0 0 .7rem; color: var(--text-3); font-size: .85rem; }

/* ── Offers ──────────────────────────────────────────────────────────────── */
body .bhoa-order-app__offers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: .5rem; margin: .1rem 0 .5rem;
}
body .bhoa-order-app__offers[hidden] { display: none !important; }

body .bhoa-order-app__offer-card {
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: .75rem .85rem; background: var(--surface); display: grid; gap: .3rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  transition: box-shadow .25s var(--ease-smooth), transform .2s var(--ease-out), border-color .25s ease;
}
body .bhoa-order-app__offer-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transform: translateY(-2px);
  border-color: var(--border-accent);
}

/* Bodega banner */
body .bhoa-order-app__offer-card.is-bodega {
  position: relative; overflow: hidden;
  display: grid; grid-template-rows: auto auto auto; gap: 2px;
  padding: 18px 20px 16px; border-radius: var(--radius);
  background: var(--surface); border: 1.5px solid var(--border);
  cursor: pointer; text-align: left;
  transition: box-shadow .18s, border-color .18s;
}
body .bhoa-order-app__offer-card.is-bodega::before { display: none; }
body .bhoa-order-app__offer-card.is-bodega small {
  display: block; font-size: .65rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-3);
}
body .bhoa-order-app__offer-card.is-bodega strong {
  display: block; font-size: .95rem; font-weight: 700;
  color: var(--text); line-height: 1.2;
}
body .bhoa-order-app__offer-card.is-bodega span {
  display: block; font-size: .75rem; color: var(--text-3);
  line-height: 1.4; margin-top: 3px;
}

/* ── Menu Grid ──────────────────────────────────────────────────────────── */
body .bhoa-order-app__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding-bottom: 90px;
}
@media (min-width: 768px) {
  body .bhoa-order-app__menu {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  body .bhoa-order-app__menu {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

/* ── Menu Cards ──────────────────────────────────────────────────────────── */
body .bhoa-order-app__card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: var(--surface);
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  animation: bhoaCardIn .3s var(--ease-out) both;
  box-shadow: none;
  transition:
    transform .15s var(--ease-out),
    box-shadow .15s var(--ease-out),
    border-color .15s var(--ease-out);
}
@media (min-width: 768px) {
  body .bhoa-order-app__card { padding: 16px 18px; gap: 14px; }
}
body .bhoa-order-app__card:last-child { border-bottom: none; }
body .bhoa-order-app__card:nth-child(2)  { animation-delay: .035s; }
body .bhoa-order-app__card:nth-child(3)  { animation-delay: .07s; }
body .bhoa-order-app__card:nth-child(4)  { animation-delay: .105s; }
body .bhoa-order-app__card:nth-child(5)  { animation-delay: .14s; }
body .bhoa-order-app__card:nth-child(6)  { animation-delay: .175s; }
body .bhoa-order-app__card:nth-child(7)  { animation-delay: .21s; }
body .bhoa-order-app__card:nth-child(8)  { animation-delay: .245s; }
body .bhoa-order-app__card:nth-child(9)  { animation-delay: .28s; }
body .bhoa-order-app__card:nth-child(10) { animation-delay: .315s; }
body .bhoa-order-app__card:nth-child(11) { animation-delay: .35s; }
body .bhoa-order-app__card:nth-child(12) { animation-delay: .385s; }
body .bhoa-order-app__card:nth-child(n+13) { animation-delay: .385s; }
@keyframes bhoaCardIn {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hover: brutal offset lift */
@media (hover:hover) {
  body .bhoa-order-app__card:hover {
    transform: translate(-3px, -3px);
    border-color: var(--accent);
    box-shadow: 3px 3px 0 var(--accent);
  }
}

/* Active: shadow collapse = press feel */
body .bhoa-order-app__card:active {
  transform: translate(0, 0);
  box-shadow: none;
  transition-duration: .06s;
}

body .bhoa-order-app__card--custom {
  border: 2px dashed var(--border);
  background: var(--surface);
  padding: .85rem .85rem;
  border-radius: var(--radius-lg);
}

/* Card content (left) */
body .bhoa-order-app__card-content {
  display: flex; flex-direction: column; gap: 5px;
  min-width: 0; grid-column: 1; grid-row: 1;
}

/* Card aside (right) — image + action */
body .bhoa-order-app__card-aside {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; flex-shrink: 0; grid-column: 2; grid-row: 1;
}

/* Card head (legacy layout compat) */
body .bhoa-order-app__card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 84px;
  gap: .75rem; align-items: start;
}
body .bhoa-order-app__card-head-main { grid-column: 1; min-width: 0; }
body .bhoa-order-app__card-head-actions {
  grid-column: 2; align-self: center;
  display: inline-flex; align-items: center; gap: .35rem; flex-shrink: 0;
}

/* Card media — right side */
body .bhoa-order-app__card-media {
  grid-column: 3; grid-row: 1 / span 2;
  width: 80px; height: 72px;
  border-radius: 0; overflow: hidden;
  background: var(--surface-2); position: relative;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  body .bhoa-order-app__card-media { width: 100px; height: 84px; }
}
@media (min-width: 768px) {
  body .bhoa-order-app__card-media { width: 116px; height: 96px; border-radius: var(--radius-lg); }
}
@media (min-width: 1024px) {
  body .bhoa-order-app__card-media { width: 128px; height: 104px; }
}
body .bhoa-order-app__card-media::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(0,0,0,.12), transparent 55%);
  pointer-events: none; z-index: 1;
}
body .bhoa-order-app__card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  object-position: center 25%;
  opacity: 0; transform: scale(1.04);
  transition: opacity .35s var(--ease-smooth), transform .5s var(--ease-out);
}
body .bhoa-order-app__card-media.is-loaded img { opacity: 1; transform: scale(1); }
@media (hover:hover) {
  body .bhoa-order-app__card:hover .bhoa-order-app__card-media img { transform: scale(1.04); }
}

/* Bodega: bottle thumbnail — tall rectangle, contain so label is always visible */
body .bhoa-order-app__card[data-item-category="bodega"] .bhoa-order-app__card-media {
  width: 72px; height: 96px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: none;
  background: transparent;
  padding: 4px;
  overflow: hidden;
}
body .bhoa-order-app__card[data-item-category="bodega"] .bhoa-order-app__card-media img {
  object-fit: contain;
  aspect-ratio: auto;
  border-radius: 10px;
  filter: none;
  mix-blend-mode: normal;
}
body .bhoa-order-app__card[data-item-category="bodega"] .bhoa-order-app__card-media::after {
  display: none;
}
@media (hover:hover) {
  body .bhoa-order-app__card[data-item-category="bodega"]:hover .bhoa-order-app__card-media {
    border-color: var(--border-accent);
    box-shadow: 0 0 0 1px var(--border-accent);
  }
}

/* Card typography */
body .bhoa-order-app__card-title {
  margin: 0; font-size: .95rem; line-height: 1.15;
  font-weight: 900; letter-spacing: -.03em; color: var(--text);
  font-family: var(--font-display);
  display: -webkit-box; -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; overflow: hidden;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  body .bhoa-order-app__card-title { font-size: 1.08rem; }
}
body .bhoa-order-app__card[data-item-category="bodega"] .bhoa-order-app__card-title {
  font-size: .78rem; font-weight: 900; letter-spacing: -.02em; -webkit-line-clamp: 1;
}
body .bhoa-order-app__card[data-item-category="food"] .bhoa-order-app__card-title,
body .bhoa-order-app__card[data-item-category="dessert"] .bhoa-order-app__card-title {
  font-size: .98rem; font-weight: 900;
}
body .bhoa-order-app__card-price {
  font-weight: 900; color: var(--accent); white-space: nowrap;
  font-size: .85rem; font-family: var(--font-sans);
  margin-top: 5px;
  display: inline-flex; align-items: center;
  padding: 0;
  border-radius: 0;
  background: none;
  width: fit-content; max-width: 100%;
  flex-shrink: 0;
  letter-spacing: .02em;
}
@media (min-width: 768px) {
  body .bhoa-order-app__card-price { font-size: .92rem; }
}
body .bhoa-order-app__card[data-item-category="bodega"] .bhoa-order-app__card-price {
  color: var(--accent); font-size: .82rem;
}
body .bhoa-order-app__card-description {
  margin: .15rem 0 0; color: var(--text-3);
  font-size: .75rem; font-weight: 400; line-height: 1.5;
  display: -webkit-box; -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; overflow: hidden;
}
body .bhoa-order-app__card-description.is-expanded { display: block; }
body .bhoa-order-app__card-meta {
  display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 2px;
}
body .bhoa-order-app__pill {
  display: inline-flex; align-items: center;
  padding: .15rem .55rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text-3); font-size: .6rem; letter-spacing: .06em;
  text-transform: uppercase; font-weight: 500;
}
body .bhoa-order-app__pill--eta { border-color: transparent; color: var(--text-3); opacity: .65; }
body .bhoa-order-app__card-notes {
  margin-top: .25rem; color: var(--accent-dim); font-size: .75rem;
  opacity: .6; transform: translateY(0);
  transition: opacity .2s var(--ease-smooth), transform .2s var(--ease-smooth);
}
@media (hover:hover) {
  body .bhoa-order-app__card-notes { opacity: 0; transform: translateY(4px); }
  body .bhoa-order-app__card:hover .bhoa-order-app__card-notes { opacity: .8; transform: translateY(0); }
}

/* ── Combo pairing strip ─────────────────────────────────────────────────── */
body .bhoa-order-app__card-combo {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .3rem; padding: .45rem .6rem .4rem;
  margin-top: .15rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 0 0 var(--radius) var(--radius);
}
body .bhoa-order-app__combo-label {
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); margin-right: .15rem; flex-shrink: 0;
}
body .bhoa-order-app__combo-chip {
  display: inline-flex; align-items: center; gap: .2rem;
  border: 1.5px solid var(--border); border-radius: 999px;
  background: var(--surface); color: var(--text-3);
  font-size: .68rem; padding: .14rem .5rem;
  cursor: pointer; white-space: nowrap;
  transition: border-color .12s, color .12s, background .12s;
}
body .bhoa-order-app__combo-chip::before {
  content: "+"; font-size: .78em; color: var(--accent); font-weight: 700;
}
body .bhoa-order-app__combo-chip:hover,
body .bhoa-order-app__combo-chip:focus-visible {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-bg);
}
body .bhoa-order-app__combo-chip.is-in-cart {
  border-color: rgba(26,141,95,.3); color: var(--green);
  background: var(--green-bg);
}
body .bhoa-order-app__combo-chip.is-in-cart::before { content: "\2713"; color: var(--green); }

/* ── Card foot ───────────────────────────────────────────────────────────── */
body .bhoa-order-app__card-foot {
  display: grid; grid-template-columns: auto auto;
  justify-content: space-between; align-items: center;
  gap: .5rem; margin-top: auto;
}
body .bhoa-order-app__card-more {
  justify-self: start; border: 0; padding: 0;
  background: transparent; color: var(--text-3);
  font-size: .78rem; cursor: pointer;
  border-bottom: .5px solid var(--border);
  transition: color .12s;
}
body .bhoa-order-app__card-more::after { content: " \2192"; font-size: .9em; }
body .bhoa-order-app__card-more:hover { color: var(--text-2); }
body .bhoa-order-app__bottle-note {
  margin: .15rem 0 0; font-size: .65rem; color: var(--accent-dim);
  letter-spacing: .08em; text-transform: uppercase;
}
body .bhoa-order-app__soft-note { margin: .15rem 0 0; font-size: .7rem; color: var(--text-3); }
body .bhoa-order-app__card-pairing {
  font-size: .72rem; color: var(--text-3); margin: 3px 0 0; line-height: 1.4;
}

/* ── Card buttons: add (+) ────────────────────────────────────────────────── */
body .bhoa-order-app__card-button--inline {
  width: 36px; min-width: 36px;
  height: 36px; min-height: 36px;
  padding: 0;
  border: 2px solid var(--accent);
  border-radius: 0;
  background: transparent; color: var(--accent);
  font-size: 1.2rem; font-weight: 900; line-height: 1;
  display: inline-grid; place-items: center;
  transform: none; flex-shrink: 0;
  transition: background .1s ease, color .1s ease, transform .1s var(--ease-out);
  box-shadow: none;
}
body .bhoa-order-app__card-button--inline:hover {
  background: var(--accent); color: #fff;
  box-shadow: none;
}
body .bhoa-order-app__card-button--inline:active {
  transform: translate(2px, 2px);
  transition-duration: .05s;
}
body .bhoa-order-app__card-button--inline.is-config {
  width: auto; min-width: 44px; padding: 0 .6rem;
  border-radius: 0; font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
}

/* Ghost card button */
body .bhoa-order-app__card-button {
  min-height: 44px; border-radius: 0;
  border: 2px solid var(--accent);
  background: transparent; color: var(--accent);
  font-weight: 900; font-size: .65rem; letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 .9rem; transition: all .1s; cursor: pointer;
  box-shadow: none;
}
body .bhoa-order-app__card-button:hover {
  background: var(--accent); color: #fff;
}
body .bhoa-order-app__card-button:active {
  transform: translate(2px, 2px);
}
body .bhoa-order-app__card-foot .bhoa-order-app__card-button {
  min-height: 24px; padding: 0; border: 0; border-radius: 0;
  background: transparent; color: var(--accent);
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: none;
}

/* ── In-card stepper ─────────────────────────────────────────────────────── */
body .bhoa-order-app__card-stepper {
  display: inline-flex; align-items: center; gap: 0;
  min-height: 34px; padding: 3px;
  border-radius: 10px; border: none;
  background: var(--bg);
}
body .bhoa-order-app__card-step {
  width: 30px; height: 30px; min-height: 44px; min-width: 44px;
  border: 0; border-radius: 8px;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: .95rem;
  display: inline-grid; place-items: center;
  transition: background .15s ease, transform .2s var(--ease-spring);
}
body .bhoa-order-app__card-step:hover { background: var(--surface-2); }
body .bhoa-order-app__card-step:active { transform: scale(.82); transition-duration: .08s; }
body .bhoa-order-app__card-step.is-plus { color: var(--accent); font-weight: 700; }
body .bhoa-order-app__card-stepper-value {
  min-width: 22px; text-align: center;
  color: var(--text); font-size: .88rem; font-weight: 800;
}
body .bhoa-order-app__card-button.is-added,
body .bhoa-order-app__card-button--inline.is-added {
  background: #0f8a4f; color: #fff;
  box-shadow: 0 2px 8px rgba(15,138,79,.25);
  animation: bhoaAddPop .3s var(--ease-spring);
}
@keyframes bhoaAddPop {
  0%   { transform: scale(.8); }
  60%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@keyframes bhoaFlash {
  0%   { box-shadow: 0 0 0 rgba(26,141,95,0); }
  45%  { box-shadow: 0 0 14px rgba(26,141,95,.25); }
  100% { box-shadow: 0 0 0 rgba(26,141,95,0); }
}
body .bhoa-order-app__config-link,
body .product-config-link {
  margin-top: .2rem; border: 0; padding: 0;
  background: transparent; color: var(--accent); font-size: .75rem;
  text-decoration: underline; text-transform: uppercase;
  letter-spacing: .06em; cursor: pointer; transition: color .12s;
}
body .bhoa-order-app__config-link:hover,
body .product-config-link:hover { color: var(--accent-bright); }
body .bhoa-order-app__config-icon {
  width: 26px; height: 26px; border-radius: 6px;
  border: 1.5px solid var(--border-accent);
  background: transparent; color: var(--accent); font-size: .85rem;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Menu animation */
body .bhoa-order-app__menu.is-refreshing .bhoa-order-app__card {
  animation: bhoaFadeSlide .38s var(--ease-out) both;
}
@keyframes bhoaFadeSlide {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
body .bhoa-order-app__menu.is-refreshing .bhoa-order-app__card:nth-child(2) { animation-delay: .04s; }
body .bhoa-order-app__menu.is-refreshing .bhoa-order-app__card:nth-child(3) { animation-delay: .07s; }
body .bhoa-order-app__menu.is-refreshing .bhoa-order-app__card:nth-child(4) { animation-delay: .10s; }
body .bhoa-order-app__menu.is-refreshing .bhoa-order-app__card:nth-child(5) { animation-delay: .13s; }
body .bhoa-order-app__menu.is-refreshing .bhoa-order-app__card:nth-child(n+6) { animation-delay: .15s; }

/* No-image cards: text left, button right */
body .bhoa-order-app__card.is-text-only {
  grid-template-columns: 1fr auto;
  align-items: center; gap: 12px; padding: 14px 16px;
}
body .bhoa-order-app__card.is-text-only .bhoa-order-app__card-content {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 2px; text-align: left; min-width: 0;
}
body .bhoa-order-app__card.is-text-only > .bhoa-order-app__card-button--inline,
body .bhoa-order-app__card.is-text-only > .bhoa-order-app__card-stepper {
  position: static; margin: 0; align-self: center;
  grid-column: 2; grid-row: 1; flex-shrink: 0;
}

/* ── Sold-out state ─────────────────────────────────────────────────────── */
body .bhoa-order-app__card.is-sold-out,
body .bhoa-order-app__card[data-sold-out] {
  opacity: .5; pointer-events: none; position: relative;
}
body .bhoa-order-app__card.is-sold-out .bhoa-order-app__card-media,
body .bhoa-order-app__card[data-sold-out] .bhoa-order-app__card-media {
  filter: grayscale(1);
}
body .bhoa-order-app__card.is-sold-out::before,
body .bhoa-order-app__card[data-sold-out]::before {
  content: "Sold Out";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: .3rem .8rem; border-radius: var(--radius-sm);
  background: var(--text); color: var(--surface);
  font-size: .7rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}

/* ── Recent / History rail ───────────────────────────────────────────────── */
body .bhoa-order-app__recent {
  border: 0; padding: .1rem 0; overflow: hidden; min-width: 0;
}
body .bhoa-order-app__recent-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: .5rem; margin-bottom: .2rem;
}
body .bhoa-order-app__recent-head h4 {
  margin: 0; font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
}
body .bhoa-order-app__recent-head small { color: var(--text-3); font-size: .65rem; }
body .bhoa-order-app__recent-row {
  display: flex; gap: .4rem; overflow-x: auto;
  scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: .1rem;
}
body .bhoa-order-app__recent-row::-webkit-scrollbar { display: none; }
body .bhoa-order-app__recent-pill {
  flex: 0 0 auto; max-width: min(240px, 80vw);
  display: inline-flex; align-items: center;
  border: 0; background: transparent; color: var(--text-3);
  font-size: .7rem; padding: 0; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; line-height: 1.2;
}
body .bhoa-order-app__recent-pill + .bhoa-order-app__recent-pill {
  padding-left: .35rem; border-left: 1px solid var(--border);
}
body .bhoa-order-app__recent-pill:hover { color: var(--text-2); }
body .bhoa-order-app__recent.is-in-cart {
  margin: 0; padding: .45rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
body .bhoa-order-app__recent.is-in-cart .bhoa-order-app__recent-pill {
  color: var(--accent); font-size: .78rem; font-weight: 600;
  min-height: 28px; padding: 3px 10px;
  border: 1.5px solid var(--border-accent);
  border-radius: 999px; background: var(--accent-bg);
  transition: all .12s;
}
body .bhoa-order-app__recent.is-in-cart .bhoa-order-app__recent-pill:hover {
  background: var(--accent-bg); border-color: var(--accent);
}
body .bhoa-order-app__recent.is-menu-rail {
  margin-top: .4rem; padding-top: .75rem; border-top: 1px solid var(--border);
}
body .bhoa-order-app__recent.is-menu-rail .bhoa-order-app__recent-pill {
  min-height: 30px; padding: 0 .75rem;
  border: 1.5px solid var(--border); border-radius: 999px;
  background: var(--surface); color: var(--text-2); font-size: .7rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CART
   ═══════════════════════════════════════════════════════════════════════════ */
body .bhoa-order-app__cart {
  border-radius: var(--radius-lg);
  display: grid; grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 280px;
  background: var(--bg);
  border: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

/* ── Mobile bottom-sheet cart ────────────────────────────────────────────── */
@media (max-width: 767px) {
  body .bhoa-order-app__cart {
    position: fixed; left: 0; right: 0; bottom: 0;
    max-height: 90dvh; max-height: 90vh;
    border-radius: 24px 24px 0 0;
    border: 0;
    border-top: 1px solid var(--glass-border);
    z-index: var(--z-cart);
    display: none;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    box-shadow:
      0 -4px 16px rgba(0,0,0,.06),
      0 -12px 48px rgba(0,0,0,.12),
      0 -32px 80px -8px rgba(0,0,0,.1);
    background: var(--bg);
    will-change: transform;
  }
  body .bhoa-order-shell.is-cart-open .bhoa-order-app__cart { display: flex; }
  body .bhoa-order-shell.is-cart-open .bhoa-order-app__mobile-cart,
  body .bhoa-order-shell.is-cart-open .bhoa-call-waiter { display: none !important; }

  /* ── Handle + Head ─────────────────────────────────────────────── */
  body .bhoa-order-app__cart-head {
    flex: 0 0 auto;
    padding: 0 1.1rem .65rem;
    border-bottom: 1px solid var(--border);
    cursor: grab;
    display: block !important;
    background: var(--surface);
    border-radius: 24px 24px 0 0;
  }
  body .bhoa-order-app__cart-head::before {
    content: '';
    display: block;
    width: 36px; height: 4px;
    margin: 10px auto 10px;
    border-radius: 999px;
    background: var(--surface-3);
    transition: width .25s var(--ease-spring), background .2s ease, transform .2s var(--ease-out);
  }
  body .bhoa-order-app__cart-head:active::before {
    width: 48px; background: var(--text-3);
    transform: scaleY(1.2);
  }
  body .bhoa-order-app__cart-head-main { display: inline; }
  body .bhoa-order-app__cart-actions {
    float: right; display: inline-flex; align-items: center; gap: .5rem;
  }
  body .bhoa-order-app__cart-head h3,
  body .bhoa-order-app__cart-head #bhoa-cart-title {
    font-size: .92rem; font-weight: 800; letter-spacing: -.01em;
    text-transform: none;
  }
  body .bhoa-order-app__cart-subtitle {
    font-size: .72rem; color: var(--text-3); font-weight: 500;
  }

  /* ── Items: flex-grow, scrollable ─────────────────────────────────── */
  body .bhoa-order-app__cart-items {
    flex: 1 1 auto;
    min-height: 80px;
    overflow-y: auto; overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    max-height: none;
    padding: .25rem 1.1rem .5rem;
  }

  /* ── Ticket banner ────────────────────────────────────────────────── */
  body .bhoa-order-app__ticket-banner { flex: 0 0 auto; }

  /* ── Foot: fixed bottom ───────────────────────────────────────────── */
  body .bhoa-order-app__cart-foot {
    flex: 0 0 auto;
    padding: 10px 1.1rem calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
    border-top: 1px solid var(--glass-border, rgba(255,255,255,.08));
    overflow: hidden;
    background: var(--glass, var(--surface));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
  }

  /* ETA badge */
  body .bhoa-cart-eta { padding: 3px 10px; font-size: .7rem; border-radius: 6px; }

  /* ── Tip row ──────────────────────────────────────────────────────── */
  body .bhoa-order-app__tips {
    flex-direction: row !important; align-items: center; gap: 8px;
    padding: 0; margin: 0;
  }
  body .bhoa-order-app__tips::before { display: none; }
  body .bhoa-tips__label {
    font-size: .7rem; white-space: nowrap; flex-shrink: 0;
    text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); font-weight: 600;
  }
  body .bhoa-order-app__tips-panel {
    flex: 1; gap: 3px; padding: 2px;
    border: none; border-radius: 10px;
    background: var(--bg);
  }
  body .bhoa-order-app__tip {
    height: 36px; min-height: 36px;
    font-size: .76rem; padding: 0 .5rem;
    border-radius: 8px;
  }

  /* (Payment tabs removed — checkout modal handles its own) */

  /* ── Breakdown: hidden by default, expand on tap ─────────────────── */
  body .bhoa-cart-foot__breakdown { display: none !important; }
  body .bhoa-cart-foot__breakdown.is-expanded { display: block !important; }
  body .bhoa-order-app__totals { padding: 2px 0; font-size: .78rem; line-height: 1.4; }
  body .bhoa-order-app__totals--adjustment { font-size: .72rem; }
  body .bhoa-order-app__smart-suggest { display: none !important; }
  body .bhoa-order-app__cart-policy { display: none !important; }

  /* ── Total row: tappable to show/hide breakdown ─────────────────── */
  body .bhoa-cart-foot__total {
    cursor: pointer; -webkit-tap-highlight-color: transparent;
    border-top: none;
    padding: 6px 0 4px;
    background: var(--bg);
    border-radius: 10px;
    padding: 10px 14px;
    margin: 0 -4px;
  }
  body .bhoa-order-app__totals--total {
    padding: 0; margin: 0; border: 0; font-size: .9rem;
  }
  body .bhoa-order-app__totals--total strong { font-size: 1.15rem; }
  body .bhoa-order-app__totals--total span::after {
    content: ' details \25BE'; font-size: .58rem; color: var(--text-3);
    font-weight: 500; letter-spacing: .04em;
  }
  body .bhoa-cart-foot__total.is-details-open .bhoa-order-app__totals--total span::after {
    content: ' hide \25B4';
  }

  /* ── Submit button ─────────────────────────────────────────────── */
  body .bhoa-cart-foot__submit { padding: 2px 0 0; }
  body .bhoa-order-app__submit,
  body #bhoa-order-submit {
    min-height: 54px; font-size: .92rem; border-radius: 14px;
    font-weight: 800; letter-spacing: -.01em;
  }

  /* ── Cart item rows ─────────────────────────────────────────────── */
  body .bhoa-order-app__cart-row {
    padding: 14px 0; gap: 6px 10px;
    grid-template-columns: 1fr auto;
    border-bottom: none;
  }
  body .bhoa-order-app__cart-row + .bhoa-order-app__cart-row {
    border-top: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  }
  body .bhoa-order-app__cart-row:last-child { border-bottom: 0; }
  body .bhoa-order-app__cart-row-info { grid-column: 1; }
  body .bhoa-order-app__cart-price { grid-column: 2; grid-row: 1; }
  body .bhoa-order-app__stepper { grid-column: 1; grid-row: 2; justify-self: start; }
  body .bhoa-order-app__cart-remove { grid-column: 2; grid-row: 2; }
  body .bhoa-order-app__cart-name {
    font-size: .9rem; font-weight: 600; letter-spacing: -.01em;
  }
  body .bhoa-order-app__cart-price {
    font-size: .9rem; font-weight: 700;
    color: var(--text);
  }
  body .bhoa-order-app__stepper {
    background: var(--bg); padding: 3px;
    border-radius: 10px;
  }
  body .bhoa-order-app__stepper button {
    width: 30px; height: 30px;
    min-width: 44px; min-height: 44px;
    font-size: .92rem; border-radius: 8px;
  }
  body .bhoa-order-app__stepper button:active {
    background: var(--surface-2);
  }
  body .bhoa-order-app__stepper-value {
    font-size: .88rem; min-width: 22px; font-weight: 800;
  }
  body .bhoa-order-app__cart-remove {
    width: 30px; height: 30px;
    min-width: 44px; min-height: 44px;
    font-size: .85rem; border-radius: 8px;
  }

  /* Cart empty */
  body .bhoa-order-app__cart-empty { padding: 1.5rem .75rem; }
  body .bhoa-order-app__cart-empty--compact { min-height: 80px; }
}

/* Cart head */
body .bhoa-order-app__cart-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: .3rem; padding: .7rem .85rem .5rem;
  border-bottom: 1px solid var(--border);
}
body .bhoa-order-app__cart-head-main { min-width: 0; }
body .bhoa-order-app__cart-head h3,
body .bhoa-order-shell .bhoa-order-app__cart-head #bhoa-cart-title {
  margin: 0; font-size: .88rem; font-weight: 800;
  color: var(--text); letter-spacing: -.01em;
  text-transform: none;
}
body .bhoa-order-app__cart-subtitle {
  display: inline-block; margin: 0 0 0 .3rem;
  color: var(--text-3); font-size: .72rem; font-weight: 500;
}
body .bhoa-order-app__cart-actions {
  display: inline-flex; gap: .5rem; align-items: center; margin: 0; padding: 0;
}
body .bhoa-order-app__cart-back,
body .bhoa-order-app__cart-open-orders {
  background: var(--bg); border: 0;
  color: var(--text-2); font-size: .74rem;
  cursor: pointer; transition: color .12s, background .12s;
  font-weight: 600; padding: 6px 10px; border-radius: 8px;
}
body .bhoa-order-app__cart-back:hover,
body .bhoa-order-app__cart-open-orders:hover { color: var(--text); background: var(--surface-2); }

/* Cart items */
body .bhoa-order-app__cart-items {
  padding: .35rem .85rem; display: grid; gap: 0;
  overflow: auto; min-height: 0; overscroll-behavior: contain;
}
body .bhoa-order-app__cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 6px 10px; align-items: center;
  padding: 14px 0;
  border-bottom: none;
  background: transparent;
  transition: opacity .25s var(--ease-smooth), transform .25s var(--ease-out);
  animation: bhoaCartRowIn .3s var(--ease-out) both;
}
@keyframes bhoaCartRowIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
body .bhoa-order-app__cart-row + .bhoa-order-app__cart-row {
  border-top: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
}
body .bhoa-order-app__cart-row:last-child { border-bottom: 0; }
body .bhoa-order-app__cart-row-info {
  grid-column: 1; grid-row: 1;
  min-width: 0; overflow: hidden;
}
body .bhoa-order-app__cart-name {
  margin: 0; font-size: .9rem; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--text); letter-spacing: -.01em;
}
body .bhoa-order-app__cart-meta-note {
  margin: 2px 0 0; font-size: .72rem; color: var(--text-3);
  font-weight: 400;
}
body .bhoa-order-app__cart-price {
  grid-column: 2; grid-row: 1;
  font-size: .9rem; color: var(--text); font-weight: 700;
  font-family: var(--font-mono); white-space: nowrap; text-align: right;
}

/* Cart stepper */
body .bhoa-order-app__stepper {
  grid-column: 1; grid-row: 2;
  display: inline-flex; align-items: center; gap: .15rem;
  background: var(--bg); border: none;
  border-radius: 10px; padding: 3px;
}
body .bhoa-order-app__stepper button {
  width: 30px; height: 30px; min-height: 44px; min-width: 44px; border-radius: 8px;
  border: none; background: transparent; color: var(--text);
  font-size: .88rem; display: grid; place-items: center;
  transition: background .12s;
}
body .bhoa-order-app__stepper button:hover { background: var(--surface-2); }
body .bhoa-order-app__stepper button:active { background: var(--surface-3); }
body .bhoa-order-app__stepper-value {
  min-width: 22px; text-align: center;
  font-size: .88rem; font-weight: 800; color: var(--text);
}
body .bhoa-order-app__cart-remove {
  grid-column: 2; grid-row: 2; justify-self: end;
  width: 30px; height: 30px; min-height: 44px; min-width: 44px; border-radius: 8px;
  border: none; background: transparent; color: var(--text-3);
  font-size: .85rem; display: grid; place-items: center;
  transition: color .12s ease, background .12s ease;
}
body .bhoa-order-app__cart-remove:hover { color: var(--danger); background: rgba(192,57,43,.06); }

/* Cart empty */
body .bhoa-order-app__cart-empty { text-align: center; padding: 2rem 1rem; }
body .bhoa-order-app__cart-empty p {
  margin: 0; color: var(--text-3); font-size: .86rem;
  line-height: 1.5; font-weight: 400;
}
body .bhoa-order-app__cart-empty--compact::before {
  content: ''; display: block; width: 36px; height: 36px;
  opacity: .25;
  background: var(--text);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 00-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 00-16.536-1.84M7.5 14.25L5.106 5.272M6 20.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm12.75 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 00-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 00-16.536-1.84M7.5 14.25L5.106 5.272M6 20.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm12.75 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
body .bhoa-order-app__cart-empty--compact {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  min-height: 100px;
  border: none;
  border-radius: 14px; background: var(--bg);
  animation: bhoaFadeIn .3s var(--ease-out) both;
}
body .bhoa-order-app__cart-empty--compact p {
  margin: 0; font-size: .82rem; color: var(--text-3);
  font-style: normal; font-weight: 400;
}
@keyframes bhoaFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Cart footer */
body .bhoa-order-app__cart-foot {
  padding: .5rem .85rem .75rem;
  border-top: 1px solid var(--glass-border, var(--border));
  display: grid; gap: .5rem;
  background: var(--glass, var(--surface));
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}
body .bhoa-order-app__cart.is-empty .bhoa-order-app__totals,
body .bhoa-order-app__cart.is-empty .bhoa-order-app__tips,
body .bhoa-order-app__cart.is-empty .bhoa-order-app__smart-suggest,
body .bhoa-order-app__cart.is-empty .bhoa-order-app__vip { display: none !important; }

/* Totals */
body .bhoa-order-app__totals {
  display: flex; justify-content: space-between; gap: .6rem;
  font-size: .82rem; color: var(--text-3);
  padding: 4px 0;
}
body .bhoa-order-app__totals strong { font-family: var(--font-mono); color: var(--text); font-weight: 700; }
body .bhoa-order-app__totals--adjustment strong { color: var(--text-2); font-weight: 600; }
body .bhoa-order-app__totals--total {
  align-items: end; font-size: .9rem; color: var(--text);
  padding-top: .35rem; border-top: 1px solid color-mix(in srgb, var(--border) 50%, transparent); margin-top: .1rem;
}
body .bhoa-order-app__totals--total strong {
  color: var(--text); font-family: var(--font-sans); font-size: 1.2rem; font-weight: 800;
}

/* Tips */
body .bhoa-order-app__tips {
  display: flex; flex-direction: column; gap: .35rem;
}
body .bhoa-order-app__tips[hidden] { display: none !important; }
body .bhoa-order-app__tips::before {
  /* Label injected via data-tip-label so it follows the EN/ES toggle */
  content: attr(data-tip-label);
  font-size: .62rem; color: var(--text-3);
  letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600;
}
body .bhoa-order-app__tips-trigger {
  pointer-events: none; cursor: default; border: none;
  background: none; padding: 0;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
body .bhoa-order-app__tips-label {
  font-size: .68rem; color: var(--text-3);
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
body .bhoa-order-app__tips-trigger strong { font-size: .82rem; color: var(--accent); font-weight: 700; }
body .bhoa-order-app__tips-panel {
  position: static;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px; padding: 3px;
  border: none; border-radius: 10px;
  background: var(--bg);
  opacity: 1; transform: none;
  pointer-events: auto; box-shadow: none;
}
body .bhoa-order-app__tip {
  height: 36px; min-height: 36px;
  border: 0; border-radius: 8px; background: transparent;
  color: var(--text-3); padding: 0 .5rem;
  font-size: .72rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color .2s var(--ease-smooth), background .2s var(--ease-smooth), transform .2s var(--ease-spring), box-shadow .25s var(--ease-smooth);
}
body .bhoa-order-app__tip:hover { color: var(--text-2); background: var(--surface-2); }
body .bhoa-order-app__tip:active { transform: scale(.9); transition-duration: .08s; }
body .bhoa-order-app__tip[data-tip="0"] { opacity: .65; font-size: .64rem; }
body .bhoa-order-app__tip.is-active {
  background: var(--text); color: var(--bg); font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.16);
  transform: scale(1);
}
body .bhoa-order-app__tip.is-active:active { transform: scale(.92); }
body .bhoa-order-app__tip[data-tip="0"].is-active { opacity: 1; font-size: .72rem; }

/* VIP */
body .bhoa-order-app__vip {
  border: none; border-radius: var(--radius-sm);
  background: var(--surface-2); padding: .5rem .6rem; display: grid; gap: .25rem;
}
body .bhoa-order-app__vip-head {
  display: flex; justify-content: space-between; gap: .5rem;
  font-size: .72rem; color: var(--text-3);
}
body .bhoa-order-app__vip-track {
  height: 4px; border-radius: 999px; background: var(--border); overflow: hidden;
}
body .bhoa-order-app__vip-track span {
  display: block; height: 100%; width: 0;
  background: var(--accent); transition: transform .2s var(--ease-out);
  transform-origin: left;
}

/* Smart suggest / policy */
body .bhoa-order-app__smart-suggest {
  border: none; border-radius: var(--radius-sm);
  padding: .45rem .6rem; color: var(--text-3); font-size: .75rem;
  background: var(--surface-2);
}
body .bhoa-order-app__cart-policy {
  border: 0; border-radius: var(--radius-sm);
  padding: .4rem 0; background: transparent;
  color: var(--text-3); font-size: .78rem; line-height: 1.4;
}

/* Minimum order progress bar */
body .bhoa-min-progress { display: flex; flex-direction: column; gap: .3rem; }
body .bhoa-min-progress__bar {
  width: 100%; height: 4px; border-radius: 999px;
  background: var(--surface-2); overflow: hidden;
}
body .bhoa-min-progress__fill {
  height: 100%; border-radius: 999px;
  background: var(--accent); transition: transform .3s var(--ease-out);
  transform-origin: left;
}
body .bhoa-min-progress__label { font-size: .75rem; color: var(--text-3); }

/* ── Submit button ───────────────────────────────────────────────────────── */
body .bhoa-order-app__submit,
body #bhoa-order-submit {
  width: 100%; min-height: 52px;
  border-radius: 14px; border: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright, var(--accent)) 100%);
  color: #fff;
  font-weight: 800; text-transform: none;
  letter-spacing: -.01em; padding: 0 22px; font-size: .9rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  transition: opacity .15s ease, transform .2s var(--ease-spring), box-shadow .25s var(--ease-smooth), background .3s var(--ease-smooth);
  box-shadow:
    0 2px 6px color-mix(in srgb, var(--accent) 18%, transparent),
    0 6px 20px color-mix(in srgb, var(--accent) 14%, transparent);
}
body .bhoa-order-app__submit-label { flex: 1; text-align: left; }
body .bhoa-order-app__submit-total {
  font-size: .95rem; font-weight: 900; opacity: .95; white-space: nowrap;
}
body .bhoa-order-app__submit[disabled],
body #bhoa-order-submit[disabled] {
  opacity: .2; cursor: not-allowed;
  background: var(--surface-3); color: var(--text-3);
  box-shadow: none; transform: none;
  justify-content: center;
}
body .bhoa-order-app__submit:not([disabled]):hover,
body #bhoa-order-submit:not([disabled]):hover {
  opacity: .95;
  background: linear-gradient(135deg, var(--accent-bright, var(--accent)) 0%, var(--accent) 100%);
  box-shadow:
    0 4px 10px color-mix(in srgb, var(--accent) 28%, transparent),
    0 8px 28px color-mix(in srgb, var(--accent) 22%, transparent),
    0 0 24px color-mix(in srgb, var(--accent) 18%, transparent),
    0 0 0 3px color-mix(in srgb, var(--accent) 10%, transparent);
  transform: translateY(-1px);
}
body .bhoa-order-app__submit:not([disabled]):active {
  opacity: .88; transform: scale(.96); transition-duration: .08s;
  box-shadow: 0 2px 6px color-mix(in srgb, var(--accent) 18%, transparent);
}
body .bhoa-order-app__submit.is-flash { animation: bhoaFlash .18s ease; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
body .bhoa-order-app__footer {
  margin-top: .8rem; padding-top: .8rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  display: flex; align-items: end; justify-content: space-between;
  gap: 1rem; color: var(--text-3); font-size: .7rem;
}
body .bhoa-order-app__footer-copy,
body .bhoa-order-app__footer-meta { display: grid; gap: .15rem; }
body .bhoa-order-app__footer-copy strong { color: var(--text-2); font-size: .78rem; }
body .bhoa-order-app__footer-copy span,
body .bhoa-order-app__footer-meta span { letter-spacing: .1em; text-transform: uppercase; }

/* ── Profile status ──────────────────────────────────────────────────────── */
body .bhoa-order-app__profile-status { font-size: .72rem; color: var(--text-3); letter-spacing: .06em; }

/* ── Control menu items ────────────────────────────────────────────────── */
body .bhoa-control-menu__section-title {
  margin: .5rem 0 .2rem; font-size: .6rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-3); font-weight: 600;
}
body .bhoa-control-menu__section { display: grid; gap: .2rem; }
body .bhoa-control-menu__item {
  display: flex; align-items: center; width: 100%;
  padding: .5rem .6rem; border-radius: var(--radius-sm);
  border: 0; background: transparent; color: var(--text-2);
  font-size: .85rem; text-align: left; text-decoration: none;
  transition: background .12s, color .12s; cursor: pointer;
}
body .bhoa-control-menu__item:hover { background: var(--surface-2); color: var(--text); }
body .bhoa-control-menu__item--link { text-decoration: none; }
body .bhoa-control-menu__login-trigger { color: var(--accent); }
body .bhoa-control-menu__auth { display: grid; gap: .3rem; padding: .4rem 0; }
body .bhoa-control-menu__auth input {
  min-height: 38px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg);
  color: var(--text); padding: 0 .6rem;
}
body .bhoa-control-menu__unlock {
  min-height: 38px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-accent);
  background: transparent; color: var(--accent);
  font-size: .78rem; font-weight: 600; cursor: pointer;
}

/* ── Table quick select ──────────────────────────────────────────────────── */
body .bhoa-order-app__table-quick {
  display: flex; gap: .4rem; align-items: center;
  padding: .1rem 0 .15rem; overflow-x: auto;
}
body .bhoa-order-app__table-quick::-webkit-scrollbar { display: none; }
body .bhoa-order-app__table-quick-item {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text-3);
  display: inline-grid; place-items: center;
  font-size: .78rem; cursor: pointer; transition: all .12s;
}
body .bhoa-order-app__table-quick-item.is-selected { color: var(--accent); border-color: var(--accent); background: var(--accent-bg); }

/* ── Mobile cart button ──────────────────────────────────────────────────── */
body .bhoa-order-app__mobile-cart {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  padding: 0 24px;
  height: calc(56px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-radius: 0;
  border: none;
  border-top: 3px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: .7rem; font-weight: 900; letter-spacing: .18em;
  text-transform: uppercase; z-index: var(--z-cart);
  box-shadow: 0 -4px 0 rgba(0,0,0,0.5);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  transform: translateZ(0);
  transition: opacity .12s var(--ease-out);
}
body .bhoa-order-app__mobile-cart[hidden] { display: none !important; }
body .bhoa-order-app__mobile-cart.is-pop { animation: bhoaCartPop .25s var(--ease-out); }
@keyframes bhoaCartPop {
  0%   { transform: translateY(4px); }
  100% { transform: translateY(0); }
}
body .bhoa-order-app__mobile-cart:active { opacity: .85; }
body .bhoa-order-app__mobile-cart-icon { font-size: 1.1rem; }
body .bhoa-order-app__mobile-cart-count {
  font-size: .7rem; font-weight: 900; letter-spacing: .18em;
}
/* Running total — the key info on a self-order bar. Was hidden in aria-label only. */
body .bhoa-order-app__mobile-cart-total {
  font-size: .8rem; font-weight: 900; letter-spacing: .12em;
}
body .bhoa-order-app__mobile-cart-total::before {
  content: "•"; margin: 0 6px 0 0; opacity: .55; font-weight: 700;
}
body .bhoa-order-app__mobile-cart.has-items { animation: none; }
body .bhoa-order-app__mobile-cart-close { display: none !important; }

/* ── Call Waiter Button ────────────────────────────────────────────────── */
body .bhoa-call-waiter {
  position: fixed; bottom: 1rem; left: 1rem; z-index: var(--z-cart);
  display: inline-flex; align-items: center; gap: .4rem;
  height: 42px; padding: 0 .9rem;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text); font-size: .78rem; font-weight: 600;
  box-shadow: var(--glass-shadow);
  cursor: pointer;
  transition: transform .2s var(--ease-spring), background .15s ease, opacity .15s ease;
}
body .bhoa-call-waiter:active { transform: scale(.94); }
body .bhoa-call-waiter__icon { flex-shrink: 0; }
/* When the full-bleed mobile cart bar is visible it spans the whole bottom edge,
   so lift the floating waiter button to sit just above it (they are DOM siblings,
   cart first). When the cart bar is hidden (empty cart), the waiter drops back to
   the bottom corner — no gap. Scoped to phones: at >=768px the cart bar is
   display:none'd (becomes a sidebar) so there is nothing to clear. */
@media (max-width: 767px) {
  body .bhoa-order-app__mobile-cart:not([hidden]) ~ .bhoa-call-waiter {
    bottom: calc(56px + env(safe-area-inset-bottom, 0px) + 0.7rem);
  }
}
body .bhoa-call-waiter.is-sent {
  background: var(--success-bg); border-color: var(--success);
  color: var(--success);
}
body .bhoa-call-waiter.is-cooldown {
  opacity: .55; pointer-events: none;
}
body .bhoa-call-waiter.is-sent .bhoa-call-waiter__icon { display: none; }
@media (max-width: 360px) {
  body .bhoa-call-waiter { left: .6rem; bottom: .8rem; height: 38px; padding: 0 .7rem; font-size: .72rem; }
}

/* ── Call Waiter Reason Sheet ────────────────────────────────────────────── */
.bhoa-waiter-sheet {
  position: fixed; inset: 0; z-index: var(--z-modal, var(--bhoa-z-modal, 2000));
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(0,0,0,.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  animation: bhoaFadeIn .2s ease;
}
.bhoa-waiter-sheet__panel {
  width: 100%; max-width: 420px;
  background: var(--surface-2, var(--bhoa-surface-2, #eeeded)); border-radius: var(--radius-lg, 16px) var(--radius-lg, 16px) 0 0;
  padding: 20px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  animation: bhoaSlideUp .25s var(--ease-spring);
}
.bhoa-waiter-sheet__title {
  margin: 0 0 14px; font-size: 1rem; font-weight: 700; color: var(--text, var(--bhoa-text, #141414));
  text-align: center;
}
.bhoa-waiter-sheet__grid {
  /* minmax(0,1fr) lets columns shrink below content width on narrow phones */
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.bhoa-waiter-reason {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--surface, var(--bhoa-surface, #fff)); border: 1px solid var(--border, var(--bhoa-border, rgba(0,0,0,.08)));
  color: var(--text, var(--bhoa-text, #141414)); font-size: .88rem; font-weight: 600;
  cursor: pointer; transition: background .15s ease, border-color .15s ease, transform .15s var(--ease-spring);
}
.bhoa-waiter-reason:active { transform: scale(.95); }
.bhoa-waiter-reason:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); }
.bhoa-waiter-reason__icon { font-size: 1.2rem; flex-shrink: 0; }
.bhoa-waiter-reason__label { min-width: 0; line-height: 1.25; }
.bhoa-waiter-sheet__cancel {
  display: block; width: 100%; margin-top: 12px; padding: 12px;
  background: none; border: none; color: var(--text-3, var(--bhoa-text-3, #8a8a8a));
  font-size: .88rem; font-weight: 600; cursor: pointer; text-align: center;
  transition: color .15s;
}
.bhoa-waiter-sheet__cancel:hover { color: var(--text); }
/* Last reason spans full width when odd count */
.bhoa-waiter-sheet__grid .bhoa-waiter-reason:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
@keyframes bhoaSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes bhoaFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body .bhoa-order-app__cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.3); z-index: calc(var(--z-cart) - 1);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  backdrop-filter: saturate(120%) blur(8px);
  opacity: 0;
  transition: opacity .3s var(--ease-smooth);
  pointer-events: none;
}
body .bhoa-order-app__cart-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
body .bhoa-order-app__cart-overlay[hidden] { display: none !important; }

/* ── Admin bar ───────────────────────────────────────────────────────────── */
body .bhoa-order-app__admin-status-bar {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px; z-index: var(--z-admin);
}
body .bhoa-order-app__admin-status-bar.is-open  { background: var(--success); }
body .bhoa-order-app__admin-status-bar.is-closed { background: var(--danger); }
body .bhoa-order-app__admin-status-dot {
  position: fixed;
  top: max(10px, calc(env(safe-area-inset-top) + 10px));
  right: max(12px, calc(env(safe-area-inset-right) + 12px));
  z-index: calc(var(--z-header) + 1);
  width: 10px; height: 10px; min-width: 10px; min-height: 10px;
  border: 2px solid var(--surface); border-radius: 999px;
  box-shadow: 0 0 0 1px var(--border); padding: 0;
}
body .bhoa-order-app__admin-status-dot.is-open  { background: var(--success); }
body .bhoa-order-app__admin-status-dot.is-closed { background: var(--danger); }
body.admin-bar .bhoa-order-app__admin-status-dot { top: 42px; }
body.logged-in.local-cerrado .bhoa-app-shell::before,
body.admin-bar.local-cerrado .bhoa-app-shell::before {
  content: "\25CF LOCAL CERRADO";
  position: fixed; top: 6px; left: 50%; transform: translateX(-50%);
  z-index: calc(var(--z-admin) + 1);
  color: var(--danger); font-size: .65rem; letter-spacing: .1em; pointer-events: none;
}
body.admin-bar.local-cerrado .bhoa-app-shell::before { top: 38px; }

/* ── Toast ───────────────────────────────────────────────────────────────── */
body .bhoa-order-app__toast {
  position: fixed; left: 16px; right: 16px;
  bottom: max(82px, calc(env(safe-area-inset-bottom) + 82px));
  transform: translateY(8px);
  max-width: 400px; margin: 0 auto;
  padding: .65rem 1rem .65rem .85rem;
  border-radius: 0; border: 2px solid rgba(255,255,255,.12);
  background: var(--surface);
  color: var(--text); font-size: .8rem;
  font-weight: 700; letter-spacing: .04em;
  line-height: 1.35;
  z-index: calc(var(--z-modal) + 10); opacity: 0;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
  box-shadow: 3px 3px 0 rgba(0,0,0,.6);
  display: flex; align-items: center; gap: 8px;
  /* Informational only — must never intercept taps on the UI underneath */
  pointer-events: none;
}
body .bhoa-order-app__toast.is-visible {
  opacity: 1; transform: translateY(0);
}
body .bhoa-order-app__toast[data-severity="success"] {
  background: #0f2a18; color: #5fcd91;
  border-color: rgba(95,205,145,.3);
  box-shadow: 3px 3px 0 rgba(0,0,0,.6);
}
body .bhoa-order-app__toast[data-severity="error"] {
  background: #2a0f0f; color: #ff7060;
  border-color: rgba(192,57,43,.4);
  box-shadow: 3px 3px 0 rgba(192,57,43,.5);
}
body .bhoa-order-app__toast[data-severity="info"] {
  background: var(--surface); color: var(--text);
}
body .bhoa-order-app__toast::before {
  content: ''; flex-shrink: 0;
  width: 18px; height: 18px;
  background: currentColor; opacity: .9;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
body .bhoa-order-app__toast:not([data-severity])::before,
body .bhoa-order-app__toast[data-severity="info"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
body .bhoa-order-app__toast[data-severity="success"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
body .bhoa-order-app__toast[data-severity="error"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

/* ── Button loading state ────────────────────────────────────────────────── */
@keyframes bhoaSpin {
  to { transform: rotate(360deg); }
}
body .bhoa-order-app button[disabled] {
  opacity: .6; cursor: not-allowed;
}
body .bhoa-order-app__submit[disabled]::after,
body .bhoa-auth-gate__btn[disabled]::after {
  content: ''; display: inline-block;
  width: 14px; height: 14px; margin-left: 6px;
  border: 2px solid color-mix(in srgb, currentColor 30%, transparent);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: bhoaSpin .6s linear infinite;
  vertical-align: middle;
}

/* ── QR Modal ────────────────────────────────────────────────────────────── */
body .bhoa-order-app__qr-modal { position: fixed; inset: 0; z-index: var(--z-modal); }
body .bhoa-order-app__qr-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.3);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  backdrop-filter: saturate(120%) blur(8px);
}
body .bhoa-order-app__qr-dialog {
  position: relative; width: min(360px, calc(100vw - 24px));
  margin: 10vh auto 0; border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: var(--surface); padding: 1rem;
  display: grid; gap: .6rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.14), 0 2px 6px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.12);
  animation: bhoaDialogIn .35s var(--ease-out) both;
}
@keyframes bhoaDialogIn {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
body .bhoa-order-app__qr-close {
  position: absolute; right: .6rem; top: .6rem;
  width: 30px; height: 30px; border-radius: 50%;
  border: none; background: var(--surface-2);
  color: var(--text); display: grid; place-items: center;
  transition: background .15s ease, transform .2s var(--ease-spring);
}
body .bhoa-order-app__qr-close:hover { background: var(--surface-3); transform: scale(1.08); }
body .bhoa-order-app__qr-close:active { transform: scale(.9); transition-duration: .08s; }
body .bhoa-order-app__qr-title {
  margin: 0; font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
}
body .bhoa-order-app__qr-code {
  display: block; font-family: var(--font-mono);
  font-size: 1rem; letter-spacing: .04em; color: var(--accent);
}
body .bhoa-order-app__qr-image {
  width: 200px; height: 200px; object-fit: contain;
  margin: 0 auto; border-radius: var(--radius-sm);
  background: var(--surface); padding: 6px;
}
body .bhoa-order-app__qr-actions { display: flex; justify-content: center; }

/* ── Table Modal ─────────────────────────────────────────────────────────── */
body .bhoa-order-app__table-modal { position: fixed; inset: 0; z-index: var(--z-modal); }
body .bhoa-order-app__table-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.3);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  backdrop-filter: saturate(120%) blur(8px);
}
body .bhoa-order-app__table-dialog {
  position: relative; width: min(420px, calc(100vw - 24px));
  margin: 10vh auto 0; border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border); background: var(--surface); padding: 1.2rem 1.2rem 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.14), 0 2px 6px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.12);
  animation: bhoaDialogIn .35s var(--ease-out) both;
}
body .bhoa-order-app__table-title {
  margin: 0 0 .5rem; font-size: .88rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text); font-weight: 700;
}
body .bhoa-order-app__table-legend {
  display: flex; gap: .75rem; align-items: center;
  margin: 0 0 .75rem; font-size: .65rem; color: var(--text-3); font-weight: 500;
}
body .bhoa-order-app__table-legend-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 3px;
  margin-right: 3px; vertical-align: middle;
}
body .bhoa-order-app__table-legend-dot--available { background: var(--green); }
body .bhoa-order-app__table-legend-dot--occupied { background: var(--accent); }
body .bhoa-order-app__table-legend-dot--selected { background: var(--text); }
body .bhoa-order-app__table-close {
  position: absolute; right: .6rem; top: .6rem;
  width: 30px; height: 30px; border-radius: 50%;
  border: none; background: var(--surface-2);
  color: var(--text); display: grid; place-items: center;
  transition: background .15s ease, transform .2s var(--ease-spring);
}
body .bhoa-order-app__table-close:hover { background: var(--surface-3); transform: scale(1.08); }
body .bhoa-order-app__table-close:active { transform: scale(.9); transition-duration: .08s; }
body .bhoa-order-app__table-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .5rem;
}
body .bhoa-order-app__table-dot {
  height: 52px; border-radius: var(--radius-sm);
  border: 2px solid transparent; background: var(--surface-2);
  color: var(--text-2); font-size: .82rem; font-weight: 700;
  cursor: pointer; transition: background .12s ease, color .12s ease, border-color .12s ease, transform .1s ease;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
}
body .bhoa-order-app__table-dot:hover { background: var(--surface-3); color: var(--text); transform: scale(1.04); }
body .bhoa-order-app__table-dot:active { transform: scale(.97); }
body .bhoa-order-app__table-dot-status {
  font-size: .52rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  line-height: 1;
}
body .bhoa-order-app__table-dot.is-occupied {
  color: var(--accent); border-color: var(--border-accent);
  background: var(--accent-bg);
}
body .bhoa-order-app__table-dot.is-occupied .bhoa-order-app__table-dot-status { color: var(--accent); }
body .bhoa-order-app__table-dot.is-selected {
  background: var(--text); color: var(--bg); border-color: var(--text);
}
body .bhoa-order-app__table-dot.is-selected .bhoa-order-app__table-dot-status { color: color-mix(in srgb, var(--bg) 70%, transparent); }
body .bhoa-order-app__table-dot:not(.is-occupied):not(.is-selected) .bhoa-order-app__table-dot-status { color: var(--green); }

/* ── Auth Gate ──────────────────────────────────────────────────────────── */
/* Premium phone-first login — borderless, shadow-depth, tactile CTA.      */
@keyframes authSheetIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes authFadeStep {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
body .bhoa-auth-gate {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: flex; align-items: center; justify-content: center;
  overscroll-behavior: none;
}
body .bhoa-auth-gate[hidden] { display: none !important; }
body .bhoa-auth-gate__overlay {
  position: fixed; inset: 0; z-index: -1;
  background: rgba(8,8,8,.88);
}
body .bhoa-auth-gate__sheet {
  position: relative; width: min(92vw, 380px);
  padding: 40px 32px 32px; text-align: center;
  background: var(--surface);
  border: 2px solid rgba(255,255,255,.06);
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(192,57,43,.5);
  overflow-y: auto;
  animation: authSheetIn .25s var(--ease-out) both;
}
@media (max-width: 767px) {
  body .bhoa-auth-gate__overlay {
    background: var(--bg);
  }
  body .bhoa-auth-gate__sheet {
    width: 100%; min-height: 100%;
    border: none; border-radius: 0; box-shadow: none;
    display: flex; flex-direction: column; justify-content: center;
    padding: 32px 28px env(safe-area-inset-bottom, 24px);
    animation: none;
  }
}
body .bhoa-auth-gate__logo {
  display: flex; justify-content: center; margin-bottom: 32px;
}
body .bhoa-auth-gate__logo img {
  width: 56px; height: 56px; border-radius: 0;
  border: 2px solid rgba(255,255,255,.08);
}
body .bhoa-auth-gate__step[hidden] { display: none !important; }
body .bhoa-auth-gate__step:not([hidden]) {
  animation: authFadeStep .3s var(--ease-out) both;
}
body .bhoa-auth-gate__title {
  margin: 0 0 8px; color: var(--text);
  font-size: 1.6rem; font-weight: 900; letter-spacing: -.03em;
  line-height: 1.1; text-transform: uppercase;
}
body .bhoa-auth-gate__sub {
  margin: 0 0 32px; color: var(--text-3);
  font-size: .84rem; line-height: 1.5; font-weight: 400;
}
body .bhoa-auth-gate__field {
  display: flex; flex-direction: column; gap: 6px;
  text-align: left; margin-bottom: 20px;
}
body .bhoa-auth-gate__label {
  font-size: .67rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-3); padding-left: 2px;
}
body .bhoa-auth-gate__input,
body .bhoa-auth-gate__select {
  background: var(--bg);
  border: none; border-bottom: 2px solid rgba(255,255,255,.12);
  border-radius: 0; padding: 14px 16px;
  color: var(--text); font-size: 1rem; font-family: inherit;
  width: 100%; -webkit-appearance: none;
  transition: border-color .15s;
}
body .bhoa-auth-gate__input::placeholder { color: var(--text-3); opacity: .7; }
body .bhoa-auth-gate__input:focus,
body .bhoa-auth-gate__select:focus {
  outline: none; border-bottom-color: var(--accent);
  background: var(--surface);
}
body .bhoa-auth-gate__input--otp {
  text-align: center; letter-spacing: .4em;
  font-size: 1.75rem; font-weight: 900;
  font-family: 'DM Sans', var(--font-mono, monospace);
  padding: 18px 12px; background: var(--surface);
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 0;
}
body .bhoa-auth-gate__input--otp:focus {
  border-color: var(--accent);
}
body .bhoa-auth-gate__select { appearance: none; cursor: pointer; }
body .bhoa-auth-gate__dob-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 4px;
}
body .bhoa-auth-gate__error {
  color: var(--danger); font-size: .8rem; font-weight: 700; margin: 0 0 14px;
  text-align: left; background: rgba(192,57,43,.06);
  border: none; border-left: 3px solid var(--danger); border-radius: 0;
  padding: 10px 14px; line-height: 1.5;
}
body .bhoa-auth-gate__error[hidden] { display: none !important; }
body .bhoa-auth-gate__btn {
  width: 100%; min-height: 52px;
  border: 2px solid var(--accent); border-radius: 0;
  background: var(--accent); color: #fff;
  font-size: .85rem; font-weight: 900; font-family: inherit;
  text-transform: uppercase; letter-spacing: .14em;
  cursor: pointer; margin-top: 4px;
  transition: transform .15s var(--ease-out), box-shadow .15s var(--ease-out);
  box-shadow: 3px 3px 0 rgba(0,0,0,.6);
}
body .bhoa-auth-gate__btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0,0,0,.6);
}
body .bhoa-auth-gate__btn:active {
  transform: translate(0, 0);
  box-shadow: none;
}
body .bhoa-auth-gate__btn:disabled {
  opacity: .25; cursor: not-allowed;
  transform: none; box-shadow: none;
}
body .bhoa-auth-gate__link {
  display: block; margin-top: 18px;
  border: none; background: transparent;
  color: var(--text-3); font-size: .78rem; font-weight: 500;
  font-family: inherit; cursor: pointer; padding: 8px;
  text-decoration: none; transition: color .15s;
}
body .bhoa-auth-gate__link:hover { color: var(--text); }
body .bhoa-auth-gate__terms-check {
  display: flex; align-items: flex-start; gap: 10px;
  text-align: left; margin: 20px 0 6px; font-size: .8rem;
  color: var(--text-2); line-height: 1.55; cursor: pointer;
}
body .bhoa-auth-gate__terms-check input[type="checkbox"] {
  flex-shrink: 0; margin-top: 2px; accent-color: var(--text);
  width: 18px; height: 18px; border-radius: 4px;
}
body .bhoa-auth-gate__terms-link {
  border: none; background: transparent; padding: 0;
  color: var(--text); font-family: inherit; font-size: inherit;
  font-weight: 600;
  text-decoration: underline; text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: pointer; transition: opacity .12s;
}
body .bhoa-auth-gate__terms-link:hover { opacity: .6; }
body .bhoa-auth-gate__terms-content {
  text-align: left; margin-top: 20px;
  border-top: 2px solid rgba(255,255,255,.06); padding-top: 18px;
}
body .bhoa-auth-gate__terms-content[hidden] { display: none !important; }
body .bhoa-auth-gate__terms-content h3 {
  margin: 0 0 10px; font-size: .88rem; font-weight: 700; color: var(--text);
  letter-spacing: -.01em;
}
body .bhoa-auth-gate__terms-scroll {
  max-height: 200px; overflow-y: auto;
  font-size: .74rem; color: var(--text-2); line-height: 1.65;
  -webkit-overflow-scrolling: touch;
}
body .bhoa-auth-gate__terms-scroll p { margin: 0 0 8px; }
body .bhoa-auth-gate__terms-scroll strong { color: var(--text); font-weight: 600; }

/* ── Mixology Modal ──────────────────────────────────────────────────────── */
body .bhoa-mixology { position: fixed; inset: 0; z-index: var(--z-modal); display: flex; justify-content: flex-end; }
body .bhoa-mixology[hidden] { display: none !important; }
body .bhoa-mixology__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.35);
  -webkit-backdrop-filter: saturate(120%) blur(16px);
  backdrop-filter: saturate(120%) blur(16px);
}
body .bhoa-mixology__dialog {
  position: relative; width: 100%;
  max-width: 720px;
  margin: auto auto 0; max-height: 90vh;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0; padding: 0 1rem 1rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  border: none;
  border-top: 1px solid var(--glass-border);
  background: var(--surface);
  box-shadow: 0 -12px 48px rgba(0,0,0,.15), 0 -2px 8px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.15);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  animation: bhoaSheetUp .4s var(--ease-out) both;
}
@keyframes bhoaSheetUp {
  from { opacity: 0; transform: translateY(40%); }
  to   { opacity: 1; transform: translateY(0); }
}
body .bhoa-mixology__hero {
  position: relative; height: clamp(180px, 35vh, 340px);
  margin: 0 -1rem .5rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--product-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* Imageless items (e.g. all cocktails): JS sets hidden=true — honor it so the
   hero collapses instead of leaving ~295px of empty space above the content. */
body .bhoa-mixology__hero[hidden] { display: none; }
body .bhoa-mixology__hero.is-bottle {
  background: transparent; padding: 1rem 1.5rem;
}
body .bhoa-mixology__hero.is-bottle .bhoa-mixology__hero-img {
  mix-blend-mode: normal; filter: none;
  object-fit: contain;
}
body .bhoa-mixology__hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}
body .bhoa-mixology__close {
  position: absolute; top: 14px; right: 12px; z-index: 4;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text); display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.20);
  transition: background .15s ease, transform .2s var(--ease-spring);
}
body .bhoa-mixology__close:hover { background: var(--surface-3); transform: scale(1.08); }
body .bhoa-mixology__close:active { transform: scale(.9); transition-duration: .08s; }
body .bhoa-mixology__eyebrow {
  margin: .65rem 0 0; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent); font-size: .62rem; font-weight: 600;
}
body .bhoa-mixology__dialog h3 {
  margin: .2rem 0 .35rem; color: var(--text);
  font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700;
}
body .bhoa-mixology__price {
  display: inline-block; margin: 0 0 .75rem;
  padding: .2rem .8rem; border-radius: 999px;
  background: var(--accent-bg); color: var(--accent);
  font-size: .85rem; font-weight: 700; letter-spacing: .02em;
}
body .bhoa-mixology__tasting { display: none; }
body .bhoa-mixology__taste-row {
  display: grid; grid-template-columns: 65px 1fr; gap: .5rem; align-items: center;
}
body .bhoa-mixology__taste-row span { color: var(--text-3); font-size: .78rem; }
body .bhoa-mixology__taste-row i {
  display: block; height: 4px; border-radius: 999px;
  background: var(--surface-2); overflow: hidden;
}
body .bhoa-mixology__taste-row b {
  display: block; height: 100%; width: 40%; background: var(--accent);
}
body .bhoa-mixology__story {
  display: block; margin: -.15rem 0 .3rem;
  color: var(--text-3); font-size: .85rem; line-height: 1.5;
}
body .bhoa-mixology__customize { display: grid; gap: .5rem; }
body .bhoa-mixology__section {
  border: 0; border-radius: 0; padding: .15rem 0; background: transparent;
}
body .bhoa-mixology__section h4 {
  margin: 0 0 .3rem; font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-3);
}
body .bhoa-mixology__checks { display: flex; flex-wrap: wrap; gap: 8px; }
body .bhoa-mixology__opt-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  min-height: 32px; border-radius: var(--radius-sm);
  border: 1px solid transparent; background: var(--surface-2);
  color: var(--text-2); padding: 3px 13px; font-size: .82rem;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
body .bhoa-mixology__opt-btn:hover { background: var(--surface-3); }
body .bhoa-mixology__opt-btn.is-active {
  background: var(--accent-bg); color: var(--accent);
  border-color: var(--border-accent);
}
body .bhoa-mixology__opt-prefix { color: var(--accent); font-weight: 600; font-size: .72rem; }
body .bhoa-mixology__opt-label  { font-size: .82rem; }
body .bhoa-mixology__opt-price  { color: var(--text-3); font-size: .75rem; }
body .bhoa-mixology__opt-disabled { opacity: .35; font-size: .82rem; padding: .25rem .2rem; }
body .bhoa-mixology__note { display: grid; gap: .25rem; }
body .bhoa-mixology__note span {
  color: var(--text-3); font-size: .65rem; text-transform: uppercase; letter-spacing: .14em;
}
body .bhoa-mixology__note textarea {
  width: 100%; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text);
  padding: .5rem .65rem; resize: none; height: 44px; min-height: 44px;
  transition: border-color .15s ease;
}
body .bhoa-mixology__note textarea:focus { border-color: var(--accent); outline: none; }
body .bhoa-mixology__note textarea::placeholder { color: var(--text-3); }
body .bhoa-mixology__section-copy { margin: 0 0 .5rem; color: var(--text-3); font-size: .85rem; line-height: 1.45; }
body .bhoa-mixology__select-wrap { display: grid; gap: .3rem; }
body .bhoa-mixology__select-wrap span { color: var(--text-3); font-size: .65rem; text-transform: uppercase; letter-spacing: .14em; }
body .bhoa-mixology__select {
  width: 100%; min-height: 40px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg);
  color: var(--text); padding: 0 .9rem; font-size: .88rem;
  appearance: none; outline: none; transition: border-color .15s;
}
body .bhoa-mixology__select:focus { border-color: var(--accent); }
body .bhoa-mixology__actions {
  display: flex; justify-content: space-between; align-items: center;
  gap: .75rem; margin-top: .85rem; padding-top: .6rem;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1px solid var(--border);
  position: sticky; bottom: 0;
  background: var(--surface); z-index: 2;
}
body .bhoa-mixology__actions .bhoa-order-app__link { font-size: .78rem; color: var(--text-3); }
body .bhoa-mixology__actions .bhoa-order-app__submit {
  flex: 1; min-height: 44px; padding: 0 1.2rem;
  border-radius: var(--radius); font-size: .85rem; font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  box-shadow: 0 2px 12px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* ── Receipt ─────────────────────────────────────────────────────────────── */
body .bhoa-receipt { position: fixed; inset: 0; z-index: var(--z-modal); }
body .bhoa-receipt[hidden] { display: none !important; }
body .bhoa-receipt__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.3);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  backdrop-filter: saturate(120%) blur(8px);
}
body .bhoa-receipt__dialog {
  position: relative; width: min(540px, calc(100vw - 24px));
  margin: 9vh auto 0; padding: 1.1rem 1rem;
  border-radius: var(--radius-xl); background: var(--surface);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px rgba(0,0,0,.14), 0 2px 6px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.12);
  animation: bhoaDialogIn .35s var(--ease-out) both;
}
body .bhoa-receipt__close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--surface-2);
  color: var(--text); display: grid; place-items: center;
  transition: background .15s ease, transform .2s var(--ease-spring);
}
body .bhoa-receipt__close:hover { background: var(--surface-3); transform: scale(1.08); }
body .bhoa-receipt__close:active { transform: scale(.9); transition-duration: .08s; }
body .bhoa-receipt__eyebrow {
  margin: 0; font-size: .62rem; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .14em;
}
body .bhoa-receipt__dialog h3 {
  margin: .25rem 0 .85rem; color: var(--text); font-size: 1.15rem; font-weight: 700;
}
body .bhoa-receipt__line {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: .7rem; font-size: .85rem; color: var(--text-2);
  padding: .35rem 0; border-bottom: 1px solid var(--border);
}
body .bhoa-receipt__line:last-child { border-bottom: 0; }
body .bhoa-receipt__line--total { font-size: .95rem; color: var(--text); font-weight: 700; }
body .bhoa-receipt__line--total strong { color: var(--accent); font-family: var(--font-mono); }

/* ── Bottle card ─────────────────────────────────────────────────────────── */
body .bhoa-order-app__card--bottle { min-height: auto; }
body .bhoa-order-app__card[data-item-category="bodega"] {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  text-align: center;
  padding: 16px 12px 12px;
  transition: transform .25s var(--ease-out), box-shadow .3s var(--ease-smooth), border-color .3s var(--ease-smooth);
}
body .bhoa-order-app__card[data-item-category="bodega"] .bhoa-order-app__card-aside {
  grid-column: 1; grid-row: 1;
  flex-direction: column; align-items: center;
}
body .bhoa-order-app__card[data-item-category="bodega"] .bhoa-order-app__card-content {
  grid-column: 1; grid-row: 2;
  align-items: center;
}
@media (hover:hover) {
  body .bhoa-order-app__card[data-item-category="bodega"]:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.10);
  }
}
body .bhoa-order-app__card[data-item-category="bodega"] .bhoa-order-app__card-media {
  width: 80px; height: 110px;
  margin: 0 auto 4px;
}

/* Soft drink opacity */
body .bhoa-order-app__card[data-item-category="soft_drinks"] .bhoa-order-app__card-title,
body .bhoa-order-app__card[data-item-category="soft_drinks"] .bhoa-order-app__card-price { opacity: .55; }

/* ── Nav helpers ─────────────────────────────────────────────────────────── */
body .order-nav-top { display: flex; align-items: center; gap: .4rem; }
body .btn-back-menu,
body .btn-history-orders {
  background: transparent; border: 0;
  color: var(--text-3); font-size: .78rem;
  cursor: pointer; transition: color .12s;
}
body .btn-back-menu:hover,
body .btn-history-orders:hover { color: var(--text); }

/* ── Scrollbars ──────────────────────────────────────────────────────────── */
body .bhoa-order-app__cart-items::-webkit-scrollbar { width: 3px; }
body .bhoa-order-app__cart-items::-webkit-scrollbar-track { background: transparent; }
body .bhoa-order-app__cart-items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }

/* ── Very small ──────────────────────────────────────────────────────────── */
@media (max-width: 360px) {
  body .bhoa-order-app { padding: .4rem .6rem .6rem; }
  body .bhoa-order-app__header-shell { margin-left: -.6rem; margin-right: -.6rem; padding-left: .6rem; padding-right: .6rem; }
  body .bhoa-order-app__tab { padding: 0 .7rem; font-size: .6rem; }
  body .bhoa-home__hero-inner { padding: 14px 12px; }
  body .bhoa-home__tile { padding: 10px 10px 24px; }
  body .bhoa-home__pick-card { flex: 0 0 132px; }
  body .bhoa-home__pick-img { height: 84px; }
  body .bhoa-mixology__hero { height: clamp(150px, 30vh, 240px); }
  body .bhoa-mixology__hero.is-bottle { padding: .5rem .75rem; }
  body .bhoa-mixology__dialog { padding: 0 .75rem .75rem; }
}

/* ── Admin bar offsets ────────────────────────────────────────────────────── */
@media (max-width: 782px) {
  body.admin-bar .bhoa-order-app__cart { bottom: 0; }
}

/* (Payment method toggle removed — checkout modal handles its own tabs) */

/* ── Happy Hour Banner ──────────────────────────────────────────────────── */
body .bhoa-happy-hour-banner {
  padding: .6rem 1rem;
  background: var(--accent-bg);
  border: none;
  border-radius: var(--radius);
  color: var(--accent);
  font-size: .82rem; font-weight: 600;
  text-align: center;
  margin-bottom: .5rem;
}
body .bhoa-happy-hour-banner[hidden] { display: none !important; }

/* ── Cart ETA ──────────────────────────────────────────────────────────── */
body .bhoa-cart-eta {
  padding: .45rem .75rem;
  background: var(--green-bg);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-size: .75rem; font-weight: 600;
  text-align: center;
}
body .bhoa-cart-eta[hidden] { display: none !important; }

/* ── Bodega Upsell (in mixology modal) ─────────────────────────────────── */
body .bhoa-bodega-upsell {
  padding: .75rem;
  margin: .5rem 0;
  background: var(--surface-2);
  border-radius: var(--radius);
}
body .bhoa-bodega-upsell__label {
  margin: 0 0 .4rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-3);
}
body .bhoa-bodega-upsell__list { display: grid; gap: .3rem; }
body .bhoa-bodega-upsell__item {
  display: flex; align-items: center; gap: .5rem;
  padding: .45rem .6rem;
  border: none; border-radius: var(--radius-sm);
  background: var(--surface-2); color: var(--text);
  font-size: .78rem; cursor: pointer;
  transition: background .15s ease;
}
body .bhoa-bodega-upsell__item:hover { background: var(--surface-3); }
body .bhoa-bodega-upsell__item-name { flex: 1; min-width: 0; font-weight: 500; }
body .bhoa-bodega-upsell__item-price { color: var(--text-3); font-size: .72rem; }
body .bhoa-bodega-upsell__item-add {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--accent); color: #fff;
  font-size: .7rem; font-weight: 700;
}

/* ── Open ticket banner ──────────────────────────────────────────────────── */
body .bhoa-order-app__ticket-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 10px 16px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
}
body .bhoa-order-app__ticket-badge { color: var(--text-2); }
body .bhoa-order-app__ticket-badge strong { color: var(--accent); }
body .bhoa-order-app__ticket-close-btn {
  border: 0; background: transparent; color: var(--text-3);
  font-size: .75rem; cursor: pointer; padding: 2px 0;
  text-decoration: underline; transition: color .12s;
}
body .bhoa-order-app__ticket-close-btn:hover { color: var(--text); }

/* ── Open ticket button ──────────────────────────────────────────────────── */
body .bhoa-order-app__open-ticket-btn {
  width: 100%; margin-top: 8px;
  padding: 12px 18px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: .78rem; font-weight: 700;
  font-family: inherit; text-transform: uppercase;
  letter-spacing: .06em; cursor: pointer;
  transition: background .12s, border-color .12s;
}
body .bhoa-order-app__open-ticket-btn:hover {
  background: var(--accent-bg); border-color: var(--accent);
}
body .bhoa-order-app__open-ticket-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── Mode-specific card accents ──────────────────────────────────────────── */
body .bhoa-order-shell.is-mode-restaurant .bhoa-order-app__card[data-category="food"] {
  box-shadow: inset 0 -2px 0 var(--accent);
}
body .bhoa-order-shell.is-mode-nightlife .bhoa-order-app__card[data-category="cocktails"] {
  box-shadow: inset 0 -2px 0 var(--accent);
}

/* ── Mode toggle (when visible) ──────────────────────────────────────────── */
body .bhoa-order-app__mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 3px;
  gap: 0;
  border: none;
}
body .bhoa-order-app__mode-btn {
  justify-content: center; width: 100%;
  border-radius: var(--radius-sm);
  padding: 10px 12px; border: none;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .02em; color: var(--text-3);
  background: transparent;
  transition: background .15s, color .15s;
  margin-bottom: 0; display: inline-flex; align-items: center; gap: 5px;
}
body .bhoa-order-app__mode-btn svg { opacity: .5; }
body .bhoa-order-app__mode-btn:hover { color: var(--text-2); }
body .bhoa-order-app__mode-btn.is-active {
  background: var(--surface); color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
body .bhoa-order-app__mode-btn.is-active svg { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════════
   WELCOME OVERLAY
   ═══════════════════════════════════════════════════════════════════════════ */
#bhoa-welcome {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); padding: 0; overflow: hidden;
}
#bhoa-welcome[hidden] { display: none !important; }
.bhoa-welcome__panel {
  width: 100%; max-width: 480px;
  background: var(--surface); border-radius: 0;
  padding: 32px 24px 40px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0; height: 100dvh; overflow-y: auto; overscroll-behavior: contain;
}
.bhoa-welcome__dots { display: flex; justify-content: center; gap: 6px; margin-bottom: 28px; }
.bhoa-welcome__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); transition: background .25s, transform .25s var(--ease-out);
}
.bhoa-welcome__dot.is-active { background: var(--accent); width: 20px; border-radius: 3px; }
.bhoa-welcome__logo { text-align: center; margin-bottom: 20px; }
.bhoa-welcome__logo img {
  height: 64px; width: 64px; border-radius: 50%; object-fit: cover; opacity: .95;
}
.bhoa-welcome__title {
  font-size: 1.5rem; font-weight: 800; color: var(--text);
  margin: 0 0 6px; line-height: 1.2;
}
.bhoa-welcome__sub {
  font-size: .9rem; color: var(--text-3); margin: 0 0 24px; line-height: 1.5;
}
.bhoa-welcome__step[hidden] { display: none !important; }
.bhoa-welcome__form {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px;
}
.bhoa-welcome__field { display: flex; flex-direction: column; gap: 6px; }
.bhoa-welcome__label {
  font-size: .82rem; font-weight: 600; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .04em;
}
.bhoa-welcome__input,
.bhoa-welcome__select {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 1rem; padding: 14px 16px; outline: none;
  width: 100%; appearance: none; -webkit-appearance: none;
  transition: border-color .2s;
}
.bhoa-welcome__input:focus,
.bhoa-welcome__select:focus { border-color: var(--accent); }
.bhoa-welcome__select option { background: var(--surface); color: var(--text); }
.bhoa-welcome__dob { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px; }
.bhoa-welcome__error { font-size: .85rem; color: var(--danger); margin: -8px 0 0; }
.bhoa-welcome__error[hidden] { display: none !important; }
.bhoa-welcome__modes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;
}
.bhoa-welcome__mode-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 24px 14px;
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg); color: var(--text);
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
  text-align: center;
}
.bhoa-welcome__mode-card:hover,
.bhoa-welcome__mode-card:focus-visible {
  background: var(--accent-bg); border-color: var(--accent);
  transform: translateY(-2px);
}
.bhoa-welcome__mode-card strong { font-size: 1.05rem; font-weight: 700; display: block; }
.bhoa-welcome__mode-card span { font-size: .78rem; color: var(--text-3); line-height: 1.4; }
.bhoa-welcome__mode-icon { font-size: 2rem; line-height: 1; }
.bhoa-welcome__tables {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 20px;
}
.bhoa-welcome__cta {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; width: 100%; padding: 16px 22px;
  background: var(--accent); color: #fff;
  font-size: 1rem; font-weight: 800;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  transition: opacity .2s ease, transform .2s var(--ease-spring), box-shadow .25s var(--ease-smooth);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 20%, transparent);
  margin-bottom: 12px;
}
.bhoa-welcome__cta:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 6px 24px color-mix(in srgb, var(--accent) 28%, transparent); }
.bhoa-welcome__cta:active { transform: scale(.96); transition-duration: .08s; }
.bhoa-welcome__skip {
  display: block; width: 100%; padding: 10px;
  background: none; border: none; color: var(--text-3);
  font-size: .88rem; cursor: pointer; text-align: center;
  transition: color .2s;
}
.bhoa-welcome__skip:hover { color: var(--text); }
.bhoa-welcome__legal {
  font-size: .78rem; color: var(--text-3); text-align: center;
  margin: 10px 0 0; line-height: 1.5;
}
.bhoa-welcome__backdrop { position: absolute; inset: 0; z-index: -1; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first breakpoints
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 639px) {
  body .bhoa-header-actions {
    flex-wrap: wrap; gap: 4px; justify-content: flex-end;
  }
  body .bhoa-order-shell.is-search-open .bhoa-order-app__search-wrap {
    width: min(52vw, 12rem) !important;
    max-width: min(52vw, 12rem) !important;
  }
  body .bhoa-order-app__card { padding: 12px; }
  body .bhoa-order-app__card-media { width: 76px !important; height: 64px !important; }
  body .bhoa-order-app__card-description { -webkit-line-clamp: 1; font-size: .72rem; }
  body .bhoa-order-app__card-pairing { display: none; }
  body .bhoa-order-app__cart-back {
    display: inline-flex; align-items: center; gap: 4px; font-size: .78rem;
  }
}

/* ── Safe area insets ────────────────────────────────────────────────────── */
@supports (padding: env(safe-area-inset-top)) {
  body .bhoa-order-app__header-shell {
    padding-top: max(6px, env(safe-area-inset-top));
  }
  @media (max-width: 767px) {
    body .bhoa-order-app__cart {
      padding-bottom: env(safe-area-inset-bottom);
    }
    /* The redesigned cart bar is full-bleed and must sit FLUSH to the bottom edge;
       its height/padding already extend the background under the home indicator
       (height: 56px + safe-area; padding-bottom: safe-area). The old rule floated
       it 16px up (a leftover from when it was a pill), which both left a dark gap
       below a "full-bleed" bar AND pushed its top to 72px — making the lifted
       call-waiter button (bottom: 56px + safe + .7rem) overlap it by ~5px.
       Flush at bottom:0 keeps the bar correct and lets the waiter lift clear it. */
    body .bhoa-order-app__mobile-cart {
      bottom: 0;
    }
  }
}

/* ── Font import ─────────────────────────────────────────────────────────── */
/* DM Sans from Google Fonts — add to wp_enqueue or <link> in theme */
