/* customer.css — the Customer Portal's only stylesheet (forked from the farm
   portal's, same palette as src/styles.css so it reads as one product).
   TABLET-FIRST since the 2026-08-05 showroom pass: the primary device is a
   ~10" in-store iPad (768–1024px), so touch targets are ≥44px, popouts are
   full-screen sheets under 820px, and NOTHING ever scrolls the page sideways —
   wide strips scroll inside their own containers. */
:root {
  color-scheme: light;
  --bg: #f4f6f5;
  --surface: #ffffff;
  --surface-soft: #eef3f1;
  --ink: #17211b;
  --muted: #66736d;
  --line: #d9e1dc;
  --green: #16774a;
  --green-soft: #e3f3e8;
  --amber: #b87916;
  --amber-soft: #fff2d6;
  --red: #b94a48;
  --red-soft: #fde8e6;
  --blue: #2471a3;
  --blue-soft: #e3f1fb;
  --teal: #0f7c80;
  --shadow: 0 18px 45px rgba(20, 34, 28, 0.08);
}

* { box-sizing: border-box; }

/* MUST outrank the id-selector display rules below (#login is display:grid). The
   UA's own `[hidden] { display: none }` loses to any id selector, so without this
   the login card stays on screen behind the signed-in dashboard. */
[hidden] { display: none !important; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(22, 119, 74, 0.06), rgba(36, 113, 163, 0.03) 320px, transparent 680px),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button, input { font: inherit; }
h1, h2 { margin: 0; letter-spacing: 0; }
.boot, .fine { color: var(--muted); font-size: 13px; }
.boot { padding: 28px 18px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden;
}
.eyebrow {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---- sign in ---- */
#login { display: grid; place-items: center; min-height: 100vh; padding: 20px; }
.login-card, .auth-card {
  width: min(430px, 100%);
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.login-card h1, .auth-card h1 { font-size: 26px; }
.lede { margin: 8px 0 20px; color: var(--muted); line-height: 1.5; }
.login-card label, .auth-card label {
  display: block; margin: 0 0 6px;
  color: var(--muted);
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.login-card input, .auth-card input {
  width: 100%; min-height: 46px; margin-bottom: 14px; padding: 10px 12px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 7px;
}
#login-submit {
  width: 100%; min-height: 46px;
  color: #fff; background: #22312a;
  border: 1px solid #22312a; border-radius: 7px; font-weight: 800; cursor: pointer;
}
#login-submit[disabled] { opacity: 0.6; cursor: progress; }
.error {
  margin: 14px 0 0; padding: 10px 12px;
  color: var(--red); background: var(--red-soft);
  border: 1px solid rgba(185, 74, 72, 0.26); border-radius: 7px; font-size: 13px;
}
.error:empty { display: none; }
.fine { margin: 18px 0 0; }

/* ---- shell ---- */
.portal-topbar {
  display: grid; gap: 12px;
  padding: 16px 16px 12px;
  background: rgba(244, 246, 245, 0.94);
}
.portal-topbar .brand {
  margin: 0 0 4px;
  color: var(--teal);
  font-size: 11px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
}
.portal-topbar h1 { font-size: 24px; line-height: 1.15; }
.portal-topbar .subtitle { margin: 4px 0 0; }
.topbar-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.auth-card .brand {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 11px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
}
.portal-main { padding: 4px 16px 8px; }
.portal-footer {
  padding: 8px 16px 30px;
  color: var(--muted); font-size: 13px;
}
/* The fixed cart bar must never sit on top of the last content row. */
#app.has-cart .portal-main { padding-bottom: 92px; }
#app.has-cart .portal-footer { padding-bottom: 96px; }

/* ---- chips & buttons (touch targets >= 44px — in-store iPads) ---- */
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  min-height: 44px; padding: 8px 16px;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 700; cursor: pointer;
}
.chip.is-active { color: #fff; background: var(--green); border-color: var(--green); }
.ghost-button {
  min-height: 44px; padding: 8px 14px;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 7px;
  font-size: 13px; font-weight: 700; cursor: pointer;
}
.ghost-button.wide { width: 100%; margin-top: 10px; }
#signout { margin-left: auto; }

/* ---- panels ---- */
.panel {
  margin: 16px 0;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.section-title {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  margin-bottom: 10px;
}
.section-title h2 { font-size: 17px; }
.section-title span { color: var(--muted); font-size: 12px; text-align: right; }
.subtitle { margin: 0 0 12px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.state { margin: 6px 0; color: var(--muted); font-size: 13px; }
.state.is-error { color: var(--red); }

/* ---- tiles (every tile is a BUTTON that opens its evidence) ---- */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.tile {
  position: relative;
  display: flex; flex-direction: column; align-items: stretch;
  min-height: 108px; padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line); border-top: 5px solid var(--green); border-radius: 8px;
  font: inherit; text-align: left; cursor: pointer;
}
.tile:hover, .tile:focus-visible { border-color: var(--green); box-shadow: 0 6px 18px rgba(20, 34, 28, 0.08); }
.tile span, .tile small { color: var(--muted); font-size: 12px; line-height: 1.35; }
.tile > span:first-child { min-height: 32px; }
.tile strong { display: block; margin: 8px 0 4px; font-size: 24px; line-height: 1; }
.tile small { margin-top: auto; }
.tile-cta {
  position: absolute; top: 8px; right: 10px;
  color: var(--muted); font-size: 16px; font-weight: 800; opacity: 0.55;
}

/* ---- drillable rows + chart hit areas ---- */
tr.row-link { cursor: pointer; }
tr.row-link:hover td, tr.row-link:focus-visible td { background: #f3f7f5; }
.row-cta { margin-right: 6px; color: var(--green); font-weight: 800; }
.bar-hit { cursor: pointer; }
.bar-hit:hover { fill: rgba(22, 119, 74, 0.07); }

/* ---- chart ---- */
.legend { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 6px; }
.legend-key {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 12px;
}
.swatch { width: 11px; height: 11px; border-radius: 3px; }
.mom-chart { display: block; width: 100%; height: auto; }

/* ---- tables ---- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line); border-radius: 8px;
}
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td {
  padding: 10px 12px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 13px; vertical-align: top;
}
tr:last-child td { border-bottom: 0; }
th {
  color: var(--muted); background: var(--surface-soft);
  font-size: 11px; font-weight: 800; text-transform: uppercase; white-space: nowrap;
}
th.num, td.num { text-align: right; font-variant-numeric: tabular-nums; }
td small { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }
td strong { color: var(--green); }
.good { color: var(--green); font-weight: 700; }
.bad { color: var(--red); font-weight: 700; }
.dash { color: var(--muted); cursor: help; border-bottom: 1px dotted var(--line); }
th.sortable { cursor: pointer; user-select: none; }
th.sortable::after {
  content: "\2195"; margin-left: 5px; color: var(--teal); font-size: 10px; opacity: 0.3;
}
th.sortable[data-sort-dir="asc"]::after { content: "\25B2"; opacity: 0.9; }
th.sortable[data-sort-dir="desc"]::after { content: "\25BC"; opacity: 0.9; }

/* ---- market chips ---- */
.chip-label {
  margin: 14px 0 6px;
  color: var(--muted);
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.trend-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.market-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; white-space: nowrap;
}
.market-chip b { font-weight: 800; }
.market-chip.is-up { color: var(--green); background: var(--green-soft); border-color: rgba(22, 119, 74, 0.24); }
.market-chip.is-down { color: var(--red); background: var(--red-soft); border-color: rgba(185, 74, 72, 0.24); }
.market-chip.is-flat { color: var(--muted); }

/* ---- inventory controls ---- */
.controls { display: grid; gap: 8px; margin-bottom: 10px; }
#inv-search {
  width: 100%; min-height: 44px; padding: 8px 12px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 7px;
}

/* Inline text-link button (the cadence nudge's "see what's in stock" — a real
   tab switch, so a button, styled as the link it replaced). */
.link-btn {
  padding: 0; border: 0; background: none; cursor: pointer;
  color: var(--green); font: inherit; font-weight: 600; text-decoration: underline;
}

/* ---- >= 820px: tiles 4-up, centred column, header on one line ---- */
@media (min-width: 820px) {
  .portal-topbar {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
    padding: 20px max(28px, calc((100% - 1440px) / 2 + 28px)) 14px;
  }
  .portal-main, .portal-footer { max-width: 1440px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
  .portal-main { width: 100%; }
  .portal-topbar h1 { font-size: 28px; }
  .topbar-controls { justify-content: flex-end; }
  .panel { padding: 18px; }
  .section-title h2 { font-size: 18px; }
  .tile-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
  .controls { grid-template-columns: auto minmax(180px, 1fr) auto; align-items: center; }
  .ghost-button.wide { width: auto; }
}

/* --- proposal + feedback + drilldown (2026-07-29) ------------------------- */
#proposal-form, #portal-feedback-form { display: grid; gap: 10px; max-width: 560px; }
#proposal-form textarea, #portal-feedback-form textarea {
  width: 100%; padding: 10px; border: 1px solid #d6ddd9; border-radius: 8px; font: inherit;
}
tr.bucket-row { cursor: pointer; }
tr.bucket-row:hover td { background: #f3f7f5; }
tr.bucket-drill > td { background: #f6f8f7; padding: 10px 14px; }
.bucket-lots table { margin: 0; }
.market-chip.is-down b { color: #b3452f; }

.tile-note { margin: 8px 2px 0; font-size: 12.5px; color: #5f6b66; }

/* ---- "Your business insights" collapse (2026-08-12 Tim×Jace) --------------
   Native <details> panel, DEFAULT-COLLAPSED. The summary row is the whole
   expand affordance: full-width tap target, chevron flips on open. */
.insights-panel > summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  min-height: 44px; cursor: pointer; list-style: none;
}
.insights-panel > summary::-webkit-details-marker { display: none; }
.insights-panel > summary::after {
  content: "▸"; margin-left: auto; color: var(--green); font-size: 15px;
  transition: transform 0.15s ease;
}
.insights-panel[open] > summary::after { transform: rotate(90deg); }
.insights-panel > summary:hover .insights-title { color: var(--green); }
.insights-title { font-size: 17px; font-weight: 700; }
.insights-hint { color: var(--muted); font-size: 12px; }
.insights-panel[open] > summary { margin-bottom: 12px; }
/* Inner sections: the ids (#monthly/#strains) keep their renderers; the
   chrome is a divider, not a nested card. */
.insights-sub { padding: 12px 0 0; border-top: 1px solid var(--line); margin-top: 12px; }
.insights-sub:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }

/* Gamified tiles inside the collapse: soft-green celebration cards. */
.insight-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin-bottom: 4px; }
.insight-tile {
  display: grid; gap: 2px; padding: 12px 14px;
  background: linear-gradient(135deg, var(--green-soft), rgba(36, 113, 163, 0.08));
  border: 1px solid rgba(22, 119, 74, 0.3); border-radius: 8px;
}
.insight-tile strong { font-size: 22px; line-height: 1.15; color: var(--green); }
.insight-tile span { color: var(--muted); font-size: 12px; line-height: 1.35; }
.insight-tile .it-emoji { font-size: 18px; }

/* ---- credit standing (2026-08-12 decision: SHOW it) ---------------------- */
.standing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-bottom: 10px; }
.standing-grid .fact {
  display: grid; gap: 2px; padding: 10px 12px;
  background: var(--surface-soft); border: 1px solid var(--line); border-radius: 8px;
}
.standing-grid .fact span { color: var(--muted); font-size: 12px; }
.standing-grid .fact strong { font-size: 20px; line-height: 1.15; }
.standing-grid .is-good { color: var(--green); }
.standing-grid .is-over { color: var(--red); }
.standing-bar {
  height: 12px; border-radius: 999px; overflow: hidden;
  background: var(--surface-soft); border: 1px solid var(--line);
}
.standing-fill { display: block; height: 100%; background: var(--green); border-radius: 999px; }
.standing-bar.is-over .standing-fill { background: var(--red); }
.standing-line { margin: 8px 2px 0; font-size: 12.5px; color: #5f6b66; }

/* Parity with the internal screen: no stuck parent header over an open drilldown. */
.table-wrap:has(tr.bucket-drill) thead th { position: static; }

.how-to-read { margin: 0 0 10px; font-size: 13px; color: #5f6b66; }
.how-to-read summary { cursor: pointer; color: #1e7d4f; font-weight: 600; }
.how-to-read ul { margin: 8px 0 0 18px; display: grid; gap: 4px; }

/* Top strains: bounded name column, numbers together (2026-07-30). */
#strains table { table-layout: fixed; }
#strains th:nth-child(1) { width: 34%; }
#strains th:nth-child(2) { width: 22%; }
#strains th:nth-child(3) { width: 18%; }
#strains th:nth-child(4) { width: 26%; }
#strains td.num, #strains th.num { padding-right: 24px; }

/* Print = the downloadable report: chrome off, content only. */
@media print {
  .portal-topbar .chips, .portal-topbar button, #inv-search, #inv-csv, #print-report,
  #proposal-form, #portal-feedback-form, #format-chips, .how-to-read, .ghost-button,
  /* the profile panel is interactive chrome AND carries the phone number —
     neither belongs on a printed purchase report */
  #profile-panel,
  .overlay, .cart-bar, .filters-pill, .tile-cta, .row-cta { display: none !important; }
  .panel { break-inside: avoid; box-shadow: none; border: 1px solid #d6ddd9; }
  body { background: #fff; }
  .menu-controls { position: static; box-shadow: none; }
}

th.sortable { cursor: pointer; user-select: none; }
th.sortable:hover { color: #1e7d4f; }

.cadence-nudge { margin-top: 10px; padding: 10px 12px; background: #fdf6e7; border: 1px solid #eadfc0; border-radius: 8px; color: #5c4d20; }
.cadence-nudge a { color: #1e7d4f; font-weight: 600; }

/* --- Showroom menu + cart (2026-08-05 tablet-showroom spec) ----------------
   Tablet-first: the menu mirrors the physical room (farm sections A→Z), cards
   sized for fingers, no page-level horizontal scroll ever (wide strips scroll
   inside their own containers). */

.portal-tabs {
  display: flex; gap: 6px;
  padding: 10px 16px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 246, 245, 0.94);
}
.portal-tab {
  min-height: 44px; padding: 10px 18px;
  color: var(--muted); background: transparent;
  border: 1px solid transparent; border-bottom: none;
  border-radius: 9px 9px 0 0;
  font-size: 14px; font-weight: 800; cursor: pointer;
}
.portal-tab.is-active {
  color: var(--green); background: var(--surface);
  border-color: var(--line);
  margin-bottom: -1px; border-bottom: 1px solid var(--surface);
}
/* The account-window/format chips + report button mean nothing on the menu tab. */
#app.menu-active #format-chips, #app.menu-active #window-chips, #app.menu-active #print-report { display: none; }

/* Sticky controls: the search row (plus the filter panel when open) rides the
   top of the viewport while the floor scrolls underneath. The panel collapses
   behind the "⚙ Filters" pill below 1100px — the pill badge counts active
   filters; ≥1100px there's room, so the panel is always open and the pill hides. */
.menu-controls { display: grid; gap: 10px; margin-bottom: 12px; }
/* Wraps on phones: the search takes its own line, pill + view toggle drop
   below — nothing may ever push the page sideways. */
.menu-search-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
#menu-search {
  flex: 1 1 240px; min-width: 0; min-height: 44px; padding: 8px 12px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 7px;
}
.filters-pill {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 44px; padding: 8px 14px;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 800; cursor: pointer; white-space: nowrap;
}
.filters-count {
  display: inline-grid; place-items: center;
  min-width: 22px; height: 22px; padding: 0 5px;
  color: #fff; background: var(--green);
  border-radius: 999px; font-size: 12px;
}
.menu-controls.filters-open .filters-pill { color: #fff; background: #22312a; border-color: #22312a; }
.menu-controls.filters-open .filters-pill .filters-count { background: var(--green); }
.menu-filters-panel { display: grid; gap: 10px; }
.view-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
.view-btn {
  min-height: 44px; padding: 8px 12px;
  color: var(--muted); background: var(--surface);
  border: none; font-size: 13px; font-weight: 700; cursor: pointer;
}
.view-btn.is-active { color: #fff; background: var(--green); }
.menu-filter-row { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.menu-filter {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 12.5px; font-weight: 600;
}
.menu-filter input[type="number"] {
  width: 84px; min-height: 44px; padding: 6px 8px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 7px;
}
.menu-filter select {
  min-height: 44px; padding: 6px 10px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 7px; font: inherit;
}
.menu-check { min-height: 44px; }
.menu-check input { width: 22px; height: 22px; accent-color: var(--green); }
/* Tablet + phone (<1100px): the filter panel collapses behind the sticky pill
   row; farm section headers re-stick BELOW the pill row (62px ≈ its height). */
@media (max-width: 1099px) {
  .menu-controls {
    position: sticky; top: 0; z-index: 5;
    background: var(--surface);
    padding: 8px 0;
    box-shadow: 0 8px 14px -12px rgba(20, 34, 28, 0.35);
  }
  .menu-controls:not(.filters-open) .menu-filters-panel { display: none; }
  #menu-panel .farm-head { top: 62px; }
}
/* Desktop (≥1100px): room for everything — panel always open, pill hidden. */
@media (min-width: 1100px) {
  .filters-pill { display: none; }
  .menu-controls .menu-filters-panel { display: grid; }
}

/* Per-farm rollup: its own scrolling strip, never the page. */
.rollup-strip { display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 12px; -webkit-overflow-scrolling: touch; }
.rollup-chip {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  min-height: 52px; padding: 8px 14px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 9px;
  font-size: 12px; cursor: pointer; text-align: left;
}
.rollup-chip b { font-size: 13px; color: var(--green); }
.rollup-chip span { color: var(--muted); }
.rollup-chip:hover { border-color: var(--green); }

/* ---- "Your farms" (2026-08-11): per-farm affinity rollup ---- */
/* The #1-farm chip: their affinity, stated plainly — both surfaces share it. */
.top-farm-chip {
  display: inline-block; margin-left: 6px; padding: 2px 8px;
  color: var(--green); background: var(--green-soft);
  border: 1px solid rgba(22, 119, 74, 0.25); border-radius: 999px;
  font-size: 11px; font-weight: 700; white-space: nowrap; vertical-align: 1px;
}
.farm-units { color: var(--muted); font-size: 11px; white-space: nowrap; }

/* Menu tie-in: native <details>, compact rows, its own strip between the
   filters and the rollup. Summary is the whole one-click collapse target. */
.farm-glance {
  margin: 0 0 12px; padding: 0 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 10px;
}
.farm-glance summary {
  padding: 10px 2px; min-height: 44px; display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; cursor: pointer; user-select: none;
}
.farm-glance .fg-note { color: var(--muted); font-size: 12px; font-weight: 500; }
.fg-rows { display: flex; flex-wrap: wrap; gap: 6px 8px; padding: 0 0 12px; }
.fg-row {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 12px;
}
.fg-row b { color: var(--green); font-size: 12.5px; }
.fg-row span { color: var(--muted); white-space: nowrap; }
.fg-more { margin: 0; padding: 0 0 12px; color: var(--muted); font-size: 12px; }

.farm-section { margin: 4px 0 22px; scroll-margin-top: 12px; }
.farm-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  margin-bottom: 10px; padding: 6px 0;
  border-bottom: 2px solid var(--green);
  position: sticky; top: 0; background: var(--surface); z-index: 2;
}
.farm-head h3 { margin: 0; font-size: 16px; letter-spacing: 0.01em; }
.farm-head span { color: var(--muted); font-size: 12px; white-space: nowrap; }

/* Cards: 1-2up on phones (auto-fill), 2-up at 768, 3-up at 1024 (locked below). */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.menu-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer; /* the WHOLE card opens the item detail sheet */
}
.menu-card:hover, .menu-card:focus-visible, .menu-row:hover, .menu-row:focus-visible {
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(20, 34, 28, 0.08);
}
.mi-media {
  display: block; width: 100%; aspect-ratio: 4 / 3;
  padding: 0; overflow: hidden;
  background: var(--surface-soft);
  border: none; border-radius: 8px; cursor: pointer;
}
.mi-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mi-media-empty {
  display: grid; place-items: center;
  color: var(--muted); font-size: 30px; cursor: default;
}
.mi-media.is-broken img { display: none; }
.mi-media.is-broken { display: grid; place-items: center; cursor: default; }
.mi-media.is-broken::after { content: "🌿"; font-size: 30px; }
.mi-info { display: grid; gap: 3px; }
.mi-name { margin: 0; font-size: 14.5px; font-weight: 800; line-height: 1.25; }
.mi-name .star, .menu-row .star { color: var(--amber); }
.mi-sub { margin: 0; color: var(--muted); font-size: 12px; }
.mi-size { color: var(--muted); font-weight: 600; font-size: 12px; }
.mi-meta { margin: 0; color: var(--ink); font-size: 12.5px; }
/* Soft-holds hint (2026-08-11): pounds in another customer's cart. Subtle by
   design — the reduced availableLbs does the enforcing; this only explains. */
.mi-held { margin: 0; color: var(--muted); font-size: 11.5px; }
.mi-price { font-weight: 800; color: var(--green); }
.mi-list { color: var(--muted); font-size: 11.5px; }
.your-price {
  display: inline-block; padding: 1px 7px;
  color: var(--blue); background: var(--blue-soft);
  border-radius: 999px; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
}
.mi-cart { margin-top: auto; }
.add-btn {
  width: 100%; min-height: 44px;
  color: #fff; background: #22312a;
  border: 1px solid #22312a; border-radius: 7px;
  font-size: 13px; font-weight: 800; cursor: pointer;
}
.qty-stepper { display: flex; align-items: stretch; gap: 6px; }
.qty-stepper button {
  flex: 0 0 44px; min-height: 44px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 7px;
  font-size: 18px; font-weight: 800; cursor: pointer;
}
.qty-stepper .cart-qty, .cart-table .cart-qty {
  width: 100%; min-width: 0; min-height: 44px; padding: 6px;
  text-align: center; font-variant-numeric: tabular-nums;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 7px;
}
.cart-table .cart-qty { width: 74px; }

/* List view: one row per lot inside the farm section (row = detail tap target). */
.menu-list { display: grid; gap: 8px; }
.menu-row {
  display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 10px; align-items: center;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: 9px;
  cursor: pointer;
}
.mi-media-sm { display: block; width: 56px; height: 44px; aspect-ratio: auto; border-radius: 6px; overflow: hidden; background: var(--surface-soft); }
.mi-media-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mi-media-sm.mi-media-empty { display: grid; place-items: center; font-size: 20px; }
.menu-row .qty-stepper button { flex-basis: 44px; min-height: 44px; }
.menu-row .cart-qty { min-height: 44px; width: 58px; }
.menu-row .add-btn { min-height: 44px; width: auto; padding: 8px 12px; }

/* --- cart bar (fixed BOTTOM bar, thumb-reachable button) ------------------- */
.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px max(16px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -14px 34px rgba(20, 34, 28, 0.16);
}
.cart-bar-info { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; font-weight: 700; }
#cart-open {
  flex: 0 0 auto;
  min-height: 52px; padding: 10px 26px;
  color: #fff; background: #22312a;
  border: 1px solid #22312a; border-radius: 999px;
  font-size: 15px; font-weight: 800; cursor: pointer;
  box-shadow: 0 8px 22px rgba(20, 34, 28, 0.28);
}
/* --- share select mode + compose (WCHH Shares port, 2026-08-10) ------------
   ☑ Select swaps card cart controls for checkboxes; the floating pill reuses
   the cart bar's chassis (and its print-hide rules); the compose/created
   states paint into the ONE shared sheet. */
.select-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 44px; padding: 8px 14px;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 800; cursor: pointer; white-space: nowrap;
}
.select-toggle.is-active { color: #fff; background: var(--green); border-color: var(--green); }
#app.share-select #cart-bar { display: none; } /* selecting ≠ ordering */
.menu-card.is-selected, .menu-row.is-selected {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green) inset;
  background: #f2f9f5;
}
.sel-box {
  display: grid; place-items: center;
  width: 30px; height: 30px; margin-left: auto;
  color: #fff; background: var(--surface-soft);
  border: 2px solid var(--line); border-radius: 8px;
  font-size: 16px; font-weight: 800;
}
.is-selected .sel-box { background: var(--green); border-color: var(--green); }
.menu-card .sel-box { margin: 0 0 0 auto; }
.share-bar-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
#share-open {
  min-height: 52px; padding: 10px 26px;
  color: #fff; background: #22312a;
  border: 1px solid #22312a; border-radius: 999px;
  font-size: 15px; font-weight: 800; cursor: pointer;
  box-shadow: 0 8px 22px rgba(20, 34, 28, 0.28);
}
#share-open:disabled { opacity: 0.45; cursor: default; box-shadow: none; }
.share-compose, .share-done { display: grid; gap: 10px; }
.share-picks { margin: 0; padding-left: 18px; display: grid; gap: 4px; font-size: 13.5px; }
.share-label { color: var(--muted); font-size: 12.5px; font-weight: 700; }
.share-compose textarea, .share-compose select {
  width: 100%; min-height: 44px; padding: 8px 10px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 7px; font: inherit;
}
#share-create {
  min-height: 48px; padding: 10px 22px;
  color: #fff; background: var(--green);
  border: 1px solid var(--green); border-radius: 8px;
  font-size: 14px; font-weight: 800; cursor: pointer;
}
#share-create:disabled { opacity: 0.6; cursor: default; }
.share-mark { margin: 0; font-size: 34px; text-align: center; }
.share-url {
  width: 100%; min-height: 46px; padding: 10px 12px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 13px; font-variant-ligatures: none;
}
.share-actions { display: flex; gap: 8px; flex-wrap: wrap; }
#share-copy {
  flex: 1 1 200px; min-height: 52px;
  color: #fff; background: var(--green);
  border: 1px solid var(--green); border-radius: 8px;
  font-size: 15px; font-weight: 800; cursor: pointer;
}

.overlay {
  position: fixed; inset: 0; z-index: 50;
  display: grid; place-items: center;
  padding: 14px;
  background: rgba(16, 26, 21, 0.5);
}
.overlay-card {
  width: min(700px, 100%); max-height: 92vh; overflow: auto;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow);
}
.overlay-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.overlay-head h2 { font-size: 18px; }
.overlay-close {
  min-width: 44px; min-height: 44px;
  color: var(--muted); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 15px; cursor: pointer;
}
/* --- kiosk mode (shared in-store tablets, 2026-08-05) ---------------------- */
.kiosk-badge {
  position: fixed; top: 10px; right: 10px; z-index: 70;
  padding: 4px 12px;
  color: var(--teal); background: var(--blue-soft);
  border: 1px solid rgba(36, 113, 163, 0.3); border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.idle-toast {
  position: fixed; left: 50%; bottom: 84px; transform: translateX(-50%); z-index: 60;
  display: flex; align-items: center; gap: 14px;
  width: min(560px, calc(100% - 28px)); padding: 14px 18px;
  color: #fff; background: #22312a;
  border: 1px solid #22312a; border-radius: 12px;
  box-shadow: 0 12px 30px rgba(20, 34, 28, 0.35);
  font-size: 14px;
}
.idle-toast p { margin: 0; flex: 1; }
.idle-toast strong { color: #ffd27d; }
#idle-stay {
  min-height: 44px; padding: 8px 18px;
  color: #17211b; background: #fff;
  border: 1px solid #fff; border-radius: 999px;
  font-size: 13.5px; font-weight: 800; cursor: pointer; white-space: nowrap;
}

/* --- account switcher (multi-account logins, 2026-08-05) ------------------ */
.account-pill {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px; min-height: 36px; padding: 6px 14px;
  color: var(--teal); background: var(--blue-soft);
  border: 1px solid rgba(36, 113, 163, 0.25); border-radius: 999px;
  font-size: 12.5px; font-weight: 700; cursor: pointer;
}
.account-card { width: min(440px, 100%); }
.account-options { display: grid; gap: 8px; }
.account-option {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 52px; padding: 10px 14px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 14.5px; font-weight: 700; text-align: left; cursor: pointer;
}
.account-option.is-active { background: var(--green-soft); border-color: rgba(22, 119, 74, 0.35); }
.account-option b { color: var(--green); font-size: 12px; white-space: nowrap; }

.cart-table { min-width: 480px; }
.cart-table td small { white-space: nowrap; }
.cart-remove {
  min-width: 44px; min-height: 44px;
  color: var(--red); background: var(--red-soft);
  border: 1px solid rgba(185, 74, 72, 0.26); border-radius: 7px; cursor: pointer;
}
.cart-total { margin: 12px 2px; font-size: 14px; }
.cart-total strong { color: var(--green); font-size: 17px; }
/* Budget mode (2026-08-10): informational — amber in the last 10%, red over. */
.cart-budget-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 2px 12px; }
.cart-budget-row label { color: var(--muted); font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
#cart-budget {
  width: 120px; min-height: 44px; padding: 6px 10px; text-align: right;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 7px;
  font-variant-numeric: tabular-nums;
}
.cart-budget-status { font-size: 13.5px; font-weight: 700; }
.budget-left.is-warn { color: var(--amber); }
.budget-left.is-over { color: var(--red); }
.cart-ar {
  margin: 0 0 12px; padding: 10px 12px;
  color: #5c4d20; background: var(--amber-soft);
  border: 1px solid #eadfc0; border-radius: 8px; font-size: 12.5px; line-height: 1.5;
}
.cart-ar.is-warn { color: var(--red); background: var(--red-soft); border-color: rgba(185, 74, 72, 0.26); }
#cart-note { width: 100%; margin: 2px 0 10px; padding: 10px; border: 1px solid var(--line); border-radius: 8px; font: inherit; }
.cart-actions { display: flex; align-items: center; gap: 12px; }
#cart-send {
  min-height: 46px; padding: 10px 20px;
  color: #fff; background: var(--green);
  border: 1px solid var(--green); border-radius: 7px;
  font-size: 14px; font-weight: 800; cursor: pointer;
}
.cart-confirm { text-align: center; padding: 18px 8px 8px; }
.cart-confirm-mark {
  width: 54px; height: 54px; margin: 0 auto 10px;
  display: grid; place-items: center;
  color: #fff; background: var(--green);
  border-radius: 999px; font-size: 26px; font-weight: 800;
}
.cart-confirm h3 { margin: 0 0 6px; font-size: 19px; }
.cart-confirm p { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.cart-confirm-lines { list-style: none; margin: 12px auto 16px; padding: 0; max-width: 420px; text-align: left; }
.cart-confirm-lines li { padding: 7px 2px; border-bottom: 1px solid var(--line); font-size: 13px; }

/* --- the ONE drilldown sheet (2026-08-05) ----------------------------------
   Centered card on desktop; FULL-SCREEN slide-up sheet under 820px (the same
   threshold as the internal app's .modal-backdrop > .table-modal full-screen
   sheets). The card is a flex column: the head stays put, .sheet-body scrolls,
   and a swipe-down on the card (tracked in JS via translateY) dismisses it. */
.sheet-card {
  display: flex; flex-direction: column;
  width: min(760px, 100%); max-height: 92vh;
  padding: 0; overflow: hidden;
  touch-action: pan-y;
}
.sheet-card.dragging { transition: none; }
.sheet-grip {
  flex: 0 0 auto;
  width: 44px; height: 5px; margin: 8px auto 0;
  background: var(--line); border-radius: 999px;
}
.sheet-head { flex: 0 0 auto; margin: 0; padding: 8px 16px 10px; border-bottom: 1px solid var(--line); }
.sheet-head h2 { font-size: 19px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sheet-body { flex: 1 1 auto; overflow-y: auto; padding: 14px 16px 18px; -webkit-overflow-scrolling: touch; }
@media (max-width: 819px) {
  .sheet-overlay { padding: 0; align-items: end; }
  .sheet-card { width: 100%; height: 100dvh; max-height: none; border-radius: 0; border: none; }
}

/* Item detail inside the sheet */
.item-sheet { display: grid; gap: 14px; }
.sheet-media {
  position: relative; display: block; width: 100%;
  aspect-ratio: 4 / 3; max-height: 46vh;
  padding: 0; overflow: hidden;
  background: var(--surface-soft);
  border: none; border-radius: 10px; cursor: pointer;
}
.sheet-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sheet-media-hint {
  position: absolute; right: 10px; bottom: 10px;
  padding: 5px 10px;
  color: #fff; background: rgba(16, 26, 21, 0.62);
  border-radius: 999px; font-size: 12px; font-weight: 700;
}
.sheet-media-empty { display: grid; place-items: center; color: var(--muted); font-size: 44px; cursor: default; }
.item-sheet-info { display: grid; gap: 8px; }
.item-sheet-name { margin: 0; font-size: 24px; line-height: 1.2; }
.item-sheet-name .star { color: var(--amber); }
.item-sheet-farm { margin: 0; color: var(--green); font-size: 14.5px; font-weight: 800; }
.item-sheet-farm .farm-code { color: var(--muted); font-weight: 600; font-size: 12.5px; }
.fact-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0; }
.fact {
  flex: 1 1 120px; display: grid; gap: 3px;
  padding: 10px 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 9px;
}
.fact span { color: var(--muted); font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.fact strong { font-size: 19px; line-height: 1.15; }
.fact strong small { font-size: 12px; color: var(--muted); font-weight: 700; }
.fact strong.is-yours { color: var(--green); }
.fact strong.is-list { color: var(--muted); font-weight: 600; }
.sheet-history {
  margin: 2px 0; padding: 10px 12px;
  color: #5c4d20; background: var(--amber-soft);
  border: 1px solid #eadfc0; border-radius: 9px; font-size: 13px; line-height: 1.5;
}
.sheet-history.is-new { color: var(--muted); background: var(--surface-soft); border-color: var(--line); }
.item-sheet-cart .add-btn, .item-sheet-cart .qty-stepper button, .item-sheet-cart .cart-qty { min-height: 52px; }
.item-sheet-cart .qty-stepper button { flex-basis: 56px; font-size: 22px; }

/* ---- "Good alternatives" (2026-08-11) ---- */
/* Item sheet strip: compact tappable rows at the bottom — same size, similar
   price (the label says so). Shares the rec-name/rec-meta text styles with
   the menu's Recommended-for-you cards below. */
.alt-strip { margin-top: 14px; padding-top: 10px; border-top: 1px solid var(--line); }
.alt-title {
  margin: 0 0 8px; display: flex; align-items: baseline; gap: 8px;
  font-size: 13.5px; font-weight: 700;
}
.alt-rows { display: grid; gap: 6px; }
.alt-row, .rec-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  padding: 9px 12px; min-height: 52px;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 9px;
  font: inherit; font-size: 12.5px; text-align: left; cursor: pointer;
}
.alt-row:hover, .alt-row:focus-visible, .rec-card:hover, .rec-card:focus-visible { border-color: var(--green); }
/* "See more similar" (Jace, 2026-08-12: top four, then the rest on request).
   The extra rows are already in the DOM — expanding is one class flip, so the
   sheet never re-renders and never jumps. Tablet-first: the rows are the same
   52px touch targets as the first four, and the control is a full-width tap
   line, not a hairline link. */
.alt-row.is-extra { display: none; }
.alt-strip.is-expanded .alt-row.is-extra { display: flex; }
.alt-more {
  display: block; width: 100%; margin-top: 8px; padding: 8px 0;
  min-height: 40px; text-align: left; font-size: 12.5px; font-weight: 700;
}
.rec-name { font-weight: 700; font-size: 13px; }
.rec-meta { color: var(--muted); font-size: 12px; }
/* Menu block: horizontal card rail inside the collapsible (farm-glance chrome). */
.rec-cards { display: flex; gap: 8px; overflow-x: auto; padding: 0 0 12px; -webkit-overflow-scrolling: touch; }
.rec-cards .rec-card { flex: 0 0 auto; max-width: 240px; }
.rec-chip {
  padding: 2px 8px; margin-top: 2px;
  color: var(--green); background: var(--green-soft);
  border: 1px solid rgba(22, 119, 74, 0.25); border-radius: 999px;
  font-size: 11px; font-weight: 700; white-space: nowrap;
}

/* Reorder-rhythm timeline (time reads top-down; bars = gap length). Since the
   2026-08-12 pace rework each row also carries the order's pounds and that
   window's lbs/day pace with a direction arrow vs the previous window. */
.rhythm-list { display: grid; gap: 6px; }
.rhythm-row {
  display: grid; grid-template-columns: 92px minmax(0, 1fr) auto; gap: 10px; align-items: center;
  min-height: 34px; padding: 4px 2px;
  border-bottom: 1px solid var(--line);
}
.rhythm-row:last-child { border-bottom: 0; }
.rhythm-date { font-size: 13px; font-weight: 700; white-space: nowrap; }
.rhythm-mid { display: flex; align-items: center; gap: 8px; min-width: 0; }
.rhythm-bar { display: block; flex: 0 1 auto; min-width: 6px; height: 10px; background: var(--green-soft); border: 1px solid rgba(22, 119, 74, 0.35); border-radius: 999px; }
.rhythm-gap { color: var(--muted); font-size: 12.5px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.rhythm-lbs { font-size: 12.5px; font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.rhythm-pace {
  justify-self: end; white-space: nowrap; font-variant-numeric: tabular-nums;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  padding: 2px 8px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-soft);
}
.rhythm-pace.is-up { color: var(--green); background: var(--green-soft); border-color: rgba(22, 119, 74, 0.35); }
.rhythm-pace.is-down { color: var(--amber); background: var(--amber-soft); border-color: rgba(184, 121, 22, 0.35); }
.rhythm-dir { font-style: normal; font-size: 10px; }
.rhythm-trend { margin: 2px 0 10px; font-size: 13.5px; }
.rhythm-trend.is-up b:first-child { color: var(--green); }
.rhythm-trend.is-down b:first-child { color: var(--amber); }
.rhythm-trend.is-flat b:first-child { color: var(--muted); }
@media (max-width: 520px) {
  .rhythm-row { grid-template-columns: 72px minmax(0, 1fr); }
  .rhythm-pace { grid-column: 2; justify-self: start; }
}

.fee-chip {
  display: inline-block; margin-left: 4px; padding: 1px 7px;
  color: var(--muted); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
}

/* --- lightbox (stacks OVER the sheet — zoom from inside the detail) -------- */
.lightbox { grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; background: rgba(10, 16, 13, 0.86); z-index: 60; }
.lightbox figure { margin: 0; display: grid; gap: 8px; justify-items: center; min-width: 0; }
.lightbox img { max-width: 100%; max-height: 78vh; border-radius: 10px; }
.lightbox figcaption { color: #e8efe9; font-size: 13.5px; text-align: center; }
.lightbox-close { position: absolute; top: 14px; right: 14px; }
.lightbox-nav {
  min-width: 44px; min-height: 64px; margin: 0 4px;
  color: #fff; background: rgba(255, 255, 255, 0.12);
  border: none; border-radius: 9px; font-size: 28px; cursor: pointer;
}

/* --- walk list print (floor order) ----------------------------------------
   Same body-class doctrine as the Mahdi brief print: the hidden .walklist-print
   is a direct child of <body>; body.walklist-printing collapses everything else. */
.walklist-print { display: none; }
@media print {
  body.walklist-printing > :not(.walklist-print) { display: none !important; }
  .walklist-print { display: block; color: #000; font-size: 12px; line-height: 1.45; }
  .wl-head { border-bottom: 2px solid #16774a; padding-bottom: 10px; margin-bottom: 14px; }
  .wl-eyebrow { margin: 0; font-size: 10.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: #16774a; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .wl-head h1 { margin: 2px 0 4px; font-size: 21px; }
  .wl-sub { margin: 0; color: #444; font-size: 11.5px; }
  .wl-farm { break-inside: avoid; margin-bottom: 14px; }
  .wl-farm h2 { display: flex; justify-content: space-between; align-items: baseline; margin: 0 0 6px; font-size: 14.5px; border-bottom: 1.5px solid #16774a; padding-bottom: 3px; }
  .wl-farm h2 span { font-size: 11px; font-weight: 600; color: #444; }
  .wl-farm table { width: 100%; border-collapse: collapse; min-width: 0; }
  .wl-farm th, .wl-farm td { padding: 4px 8px; border-bottom: 1px solid #d6ddd9; font-size: 11.5px; text-align: left; }
  .wl-farm th.num, .wl-farm td.num { text-align: right; }
  .wl-check { width: 26px; font-size: 14px; }
  /* The portal's own chrome never prints alongside a walk list or a report. */
  .portal-tabs, .cart-bar, .overlay, .menu-controls, #menu-rollup, .kiosk-badge, .idle-toast, #menu-watch-banner, #menu-reorder-nudge, #menu-farm-glance, #menu-recs, .portal-toast { display: none !important; }
}

/* --- invoice print (2026-08-10) --------------------------------------------
   Same body-class doctrine as the walk list: the hidden .invoice-print is a
   direct child of <body>; body.invoice-printing collapses everything else.
   No emoji glyphs in print (house rule). */
.invoice-print { display: none; }
@media print {
  body.invoice-printing > :not(.invoice-print) { display: none !important; }
  .invoice-print { display: block; color: #000; font-size: 12px; line-height: 1.45; }
  .ip-head { border-bottom: 2px solid #16774a; padding-bottom: 10px; margin-bottom: 14px; }
  .ip-eyebrow { margin: 0; font-size: 10.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: #16774a; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .ip-head h1 { margin: 2px 0 4px; font-size: 21px; }
  .ip-sub { margin: 0; color: #444; font-size: 11.5px; }
  .ip-facts { display: flex; flex-wrap: wrap; gap: 18px; margin: 0 0 14px; }
  .ip-fact span { display: block; font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #444; }
  .ip-fact strong { font-size: 13.5px; }
  /* ONE fixed layout (colgroup + fixed) so the columns align page-wide. */
  .invoice-print table { width: 100%; min-width: 0; border-collapse: collapse; table-layout: fixed; }
  .invoice-print th, .invoice-print td {
    padding: 5px 8px; border-bottom: 1px solid #d6ddd9;
    font-size: 11.5px; text-align: left;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .invoice-print th.num, .invoice-print td.num { text-align: right; }
  .ip-fine { margin-top: 12px; color: #444; font-size: 10.5px; }
}

/* --- >= 700px (tablet): the showroom's native habitat ----------------------
   Card counts are LOCKED per breakpoint (Tim's tablet pass): 2-up on a
   portrait iPad (768), 3-up on a landscape one (1024), 4-up on big desktops. */
@media (min-width: 700px) {
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .menu-controls { grid-template-columns: none; }
  .portal-tabs { padding-left: max(28px, calc((100% - 1440px) / 2 + 28px)); }
  .farm-head h3 { font-size: 18px; }
  .mi-name { font-size: 15.5px; }
}

/* --- barcode scanner (spec §4) --------------------------------------------- */
/* Tablet-first: every control here is a fat touch target. */
/* The Scan button makes the header row three-up — on phones the row WRAPS
   (view toggle drops to its own line) instead of clipping off the card. */
.menu-search-row { flex-wrap: wrap; }
#menu-search { flex: 1 1 160px; }
.scan-open-btn {
  flex: 0 0 auto;
  min-height: 46px; padding: 10px 18px;
  color: #fff; background: #22312a;
  border: 1px solid #22312a; border-radius: 9px;
  font-size: 15px; font-weight: 800; cursor: pointer;
}
.scan-card { width: min(560px, 100%); }
.scan-video-wrap {
  position: relative; margin-bottom: 10px;
  border-radius: 10px; overflow: hidden;
  background: #0c130f;
}
#scan-video { display: block; width: 100%; max-height: 44vh; object-fit: cover; }
.scan-region {
  position: absolute; left: 10%; right: 10%; top: 26%; bottom: 26%;
  border: 3px solid rgba(255, 255, 255, 0.85); border-radius: 10px;
  box-shadow: 0 0 0 999px rgba(12, 19, 15, 0.35);
  pointer-events: none;
}
.scan-status { min-height: 20px; margin: 2px 2px 10px; font-size: 14px; color: var(--muted); }
.scan-status.is-error { color: var(--red); }
#scan-manual-form label { display: block; margin: 0 2px 6px; font-size: 13px; color: var(--muted); }
.scan-manual-row { display: flex; gap: 8px; }
#scan-manual-input {
  flex: 1; min-width: 0; min-height: 52px; padding: 8px 14px;
  font-size: 20px; letter-spacing: 0.06em; font-variant-numeric: tabular-nums;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 9px;
}
#scan-manual-go {
  flex: 0 0 auto; min-height: 52px; padding: 8px 20px;
  color: #fff; background: #22312a;
  border: 1px solid #22312a; border-radius: 9px;
  font-size: 15px; font-weight: 800; cursor: pointer;
}
.scan-hit {
  display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 12px; align-items: center;
  padding: 12px; margin-bottom: 10px;
  background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 10px;
}
.scan-hit-media {
  width: 96px; height: 96px; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--line);
}
.scan-hit-media-empty { display: grid; place-items: center; font-size: 34px; background: var(--surface); }
.scan-hit-name { font-size: 17px; font-weight: 800; }
.scan-hit-sub { margin-top: 2px; font-size: 13px; color: var(--muted); }
.scan-hit-meta { margin-top: 6px; font-size: 14px; }
.scan-actions { display: flex; gap: 10px; align-items: stretch; margin-bottom: 14px; }
.scan-cart { flex: 1; min-width: 0; }
.scan-cart .add-btn, .scan-cart .qty-stepper button, .scan-cart .cart-qty { min-height: 52px; }
.scan-next {
  flex: 1;
  min-height: 52px; padding: 8px 16px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 9px;
  font-size: 15px; font-weight: 800; cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1440px) {
  .menu-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
/* Item sheet: media beside the facts once the sheet is wide enough. */
@media (min-width: 820px) {
  .item-sheet { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: start; }
}

/* Media gallery additions (2026-08-05 evening pass) */
.mi-media { position: relative; }
.mi-badge {
  position: absolute; right: 6px; bottom: 6px;
  padding: 2px 8px; border-radius: 999px;
  color: #fff; background: rgba(20, 34, 28, 0.72);
  font-size: 12px; font-weight: 800;
}
.mi-badge-n { right: auto; left: 6px; }
.sheet-media-wrap { display: flex; flex-direction: column; gap: 8px; }
.sheet-media-strip { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; }
.sheet-thumb {
  flex: 0 0 auto; width: 64px; height: 64px; padding: 0;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: var(--surface-soft); cursor: pointer;
}
.sheet-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sheet-thumb-video { display: grid; place-items: center; font-size: 20px; color: var(--ink); }
#lightbox-video { max-width: 92vw; max-height: 80vh; border-radius: 8px; background: #000; }

/* Walk list: ONE shared fixed column layout so every farm section aligns. */
.walklist-print table { table-layout: fixed; width: 100%; border-collapse: collapse; }
.walklist-print td, .walklist-print th {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Sheet action row (invoice sheet: order again + print) + its result banner */
.sheet-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 12px; }
.sheet-actions:empty { display: none; }
.reorder-note {
  margin: 0 0 12px; padding: 10px 12px;
  color: #205b3c; background: var(--green-soft);
  border: 1px solid rgba(22, 119, 74, 0.25); border-radius: 8px;
  font-size: 13px; line-height: 1.5;
}

/* Sheet back button (sheet→sheet drills pop back to the parent list) */
.sheet-back {
  flex: 0 0 auto; min-height: 44px; padding: 6px 14px; margin-right: 4px;
  color: var(--green); background: var(--green-soft);
  border: 1px solid rgba(22, 119, 74, 0.25); border-radius: 999px;
  font-size: 14px; font-weight: 800; cursor: pointer; white-space: nowrap;
}
.sheet-head { display: flex; align-items: center; gap: 8px; }
.sheet-head h2 { flex: 1; min-width: 0; }

/* --- payments + account ledger (2026-08-10) --------------------------------
   Tablet-first like everything here: rows are ≥44px tap targets, the table
   scrolls inside .table-wrap (never the page), the sheet is already
   full-screen under 820px. Debits (invoices) read red, credits (payments,
   write-offs) read green; the running balance stays neutral ink. */
.section-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.section-actions .ghost-button { white-space: nowrap; }
.ledger-top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 10px;
}
.ledger-table td, .payments-table td { padding: 12px; }
.ledger-date { white-space: nowrap; }
.ledger-chip {
  display: inline-block; padding: 3px 10px;
  border-radius: 999px; font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.03em; white-space: nowrap;
}
.ledger-chip.is-invoice { color: var(--blue); background: var(--blue-soft); border: 1px solid rgba(36, 113, 163, 0.25); }
.ledger-chip.is-payment { color: var(--green); background: var(--green-soft); border: 1px solid rgba(22, 119, 74, 0.25); }
.ledger-chip.is-writeoff { color: var(--amber); background: var(--amber-soft); border: 1px solid rgba(184, 121, 22, 0.3); }
.amt-debit { color: var(--red); font-weight: 700; font-variant-numeric: tabular-nums; }
.amt-credit { color: var(--green); font-weight: 700; font-variant-numeric: tabular-nums; }
.ledger-bal { font-weight: 800; font-variant-numeric: tabular-nums; }
tr.pay-detail > td {
  background: #f6f8f7; color: var(--ink);
  padding: 10px 14px; font-size: 12.5px; line-height: 1.55;
}
tr.pay-detail b { font-variant-numeric: tabular-nums; }
.pay-applied-label { color: var(--muted); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; margin-right: 4px; }
.pay-ref { color: var(--muted); }
.ledger-unapplied {
  margin: 12px 2px 0; padding: 10px 12px;
  color: #5c4d20; background: var(--amber-soft);
  border: 1px solid #eadfc0; border-radius: 8px; font-size: 12.5px; line-height: 1.5;
}
.ledger-end { margin: 12px 2px 2px; font-size: 14px; text-align: right; }
.ledger-end strong { font-size: 18px; font-variant-numeric: tabular-nums; }

/* Ledger statement print: same body-class doctrine as the walk list — the
   hidden .ledger-print is a direct child of <body>; body.ledger-printing
   collapses everything else. Fixed colgroup so columns line up page-wide. */
.ledger-print { display: none; }
.ledger-print table { table-layout: fixed; width: 100%; border-collapse: collapse; }
@media print {
  body.ledger-printing > :not(.ledger-print) { display: none !important; }
  .ledger-print { display: block; color: #000; font-size: 12px; line-height: 1.45; }
  .lp-head { border-bottom: 2px solid #16774a; padding-bottom: 10px; margin-bottom: 14px; }
  .lp-eyebrow { margin: 0; font-size: 10.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: #16774a; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .lp-head h1 { margin: 2px 0 4px; font-size: 21px; }
  .lp-sub { margin: 0; color: #444; font-size: 11.5px; }
  .ledger-print th, .ledger-print td {
    padding: 4px 8px; border-bottom: 1px solid #d6ddd9; font-size: 11.5px; text-align: left;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .ledger-print th.num, .ledger-print td.num { text-align: right; }
  .ledger-print thead { display: table-header-group; }
  .lp-unapplied { margin: 10px 0 0; font-size: 11.5px; color: #5c4d20; }
  .lp-end { margin: 10px 0 0; font-size: 13px; text-align: right; }
  .lp-end strong { font-size: 15px; }
}

/* --- watchlist 🔔 + "new since your last visit" (2026-08-10) --------------- */
/* NEW chip: server-derived boolean (received since previous login) — sits on
   card/row names and the item sheet title. */
.mi-new {
  display: inline-block; vertical-align: 2px;
  margin-left: 6px; padding: 1px 7px;
  color: var(--teal); background: var(--blue-soft);
  border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.item-sheet-name .mi-new { font-size: 12px; vertical-align: 6px; }

/* Small bell on thin (≤2 lb) or already-watched cards/rows — subtle square
   beside the cart control; 44px tablet target. */
.mi-cart { display: flex; align-items: stretch; gap: 6px; }
.mi-cart > .add-btn, .mi-cart > .qty-stepper { flex: 1 1 auto; min-width: 0; }
.mi-watch {
  flex: 0 0 44px; min-height: 44px;
  color: var(--muted); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 7px;
  font-size: 16px; cursor: pointer;
}
.mi-watch.is-on { color: var(--amber); background: var(--amber-soft); border-color: rgba(184, 121, 22, 0.4); }

/* Full-width watch toggle on the item sheet + sold-out scan hit. */
.watch-btn {
  width: 100%; min-height: 48px; padding: 10px 14px;
  color: var(--ink); background: var(--surface-soft);
  border: 1px dashed var(--line); border-radius: 9px;
  font-size: 13.5px; font-weight: 700; cursor: pointer; text-align: left;
}
.watch-btn.is-on { color: #5c4d20; background: var(--amber-soft); border: 1px solid #eadfc0; }

/* Back-in-stock banner atop the menu (dismissible, client-side check). */
.watch-banner {
  position: relative;
  display: grid; gap: 8px;
  margin: 0 0 12px; padding: 12px 48px 12px 14px;
  color: #5c4d20; background: var(--amber-soft);
  border: 1px solid #eadfc0; border-radius: 10px;
}
.watch-banner p { margin: 0; font-size: 13.5px; }
.watch-hits { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.watch-hit {
  min-height: 44px; padding: 8px 14px;
  color: var(--ink); background: var(--surface);
  border: 1px solid #eadfc0; border-radius: 999px;
  font-size: 13px; font-weight: 700; cursor: pointer;
}
.watch-hit:hover, .watch-hit:focus-visible { border-color: var(--amber); }
.watch-more { color: var(--muted); font-size: 12.5px; font-weight: 700; }
.watch-dismiss {
  position: absolute; top: 6px; right: 6px;
  min-width: 44px; min-height: 44px;
  color: #5c4d20; background: transparent;
  border: none; border-radius: 8px;
  font-size: 16px; cursor: pointer;
}

/* --- Profile & alerts (2026-08-10 night) -----------------------------------
   Notification profile + watched-lots manager on My Account. Tablet targets:
   every input/checkbox row/button ≥44px. */
#profile-form { display: grid; gap: 12px; max-width: 560px; }
.profile-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.profile-field { display: grid; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
.profile-field input {
  min-height: 46px; padding: 10px 12px;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 15px; font-weight: 400;
}
.profile-channels { display: grid; gap: 2px; }
.profile-check { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.profile-check .fine { margin: 0; font-weight: 400; }
.profile-check input:disabled { accent-color: var(--green); }
#profile-save { justify-self: start; min-width: 160px; }
.watch-manager { margin-top: 20px; }
.watch-manager h3 { margin: 0 0 4px; font-size: 15px; }
.watch-row {
  display: flex; align-items: center; gap: 10px;
  min-height: 56px; padding: 8px 0;
  border-top: 1px solid var(--line);
}
.wr-info { flex: 1 1 auto; min-width: 0; }
.wr-name { margin: 0; font-weight: 700; }
.wr-name .mi-size { color: var(--muted); font-weight: 600; }
.wr-sub { margin: 2px 0 0; color: var(--muted); font-size: 12.5px; }
.wr-status.is-in { color: var(--green); font-weight: 700; }
.wr-view { flex: 0 0 auto; }
.wr-remove {
  flex: 0 0 44px; min-height: 44px;
  color: var(--muted); background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 7px;
  font-size: 15px; cursor: pointer;
}
.wr-remove:hover, .wr-remove:focus-visible { color: var(--red); border-color: var(--red); }
@media (max-width: 520px) {
  .profile-grid { grid-template-columns: 1fr; }
}

/* "You usually buy around now" (2026-08-11): same visual family as the watch
   banner (it IS a .watch-banner), just slimmer — one line + one button. */
.reorder-nudge { padding-top: 10px; padding-bottom: 10px; }

/* Transient toast (save failures) — sits above the cart bar, auto-hides. */
.portal-toast {
  position: fixed; left: 50%; bottom: 84px; transform: translateX(-50%); z-index: 65;
  width: min(480px, calc(100% - 28px)); padding: 12px 18px;
  color: #fff; background: #22312a;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(20, 34, 28, 0.35);
  font-size: 13.5px; text-align: center;
}

/* ---- line-item history search (2026-08-12 Tim × Jace) ----------------------
   Results group by invoice: a tappable head (opens the invoice sheet) over
   its matched lines (each a button — item detail when the lot is on the
   floor, the invoice otherwise). Same 44px touch-target discipline as every
   tablet surface; thumbs reuse .mi-media-sm. */
#inv-search { margin-bottom: 10px; }
#invoice-search-body { display: grid; gap: 10px; }
#invoice-search-body mark {
  padding: 0 1px;
  color: inherit; background: var(--green-soft);
  border-radius: 3px;
}
.invs-group { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.invs-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  width: 100%; min-height: 44px; padding: 8px 12px;
  color: var(--ink); background: var(--surface-soft);
  border: 0; border-bottom: 1px solid var(--line);
  font: inherit; text-align: left; cursor: pointer;
}
.invs-head:hover, .invs-head:focus-visible { background: #e6efe9; }
.invs-date { color: var(--muted); font-size: 12.5px; }
.invs-count { margin-left: auto; color: var(--green); font-size: 12.5px; font-weight: 700; }
.invs-lines { display: grid; }
.invs-line {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  min-height: 44px; padding: 7px 12px;
  color: var(--ink); background: var(--surface);
  border: 0; border-bottom: 1px solid var(--line);
  font: inherit; text-align: left; cursor: pointer;
}
.invs-line:last-child { border-bottom: 0; }
.invs-line:hover, .invs-line:focus-visible { background: #f3f7f5; }
.invs-line-name { font-weight: 700; }
.invs-line-name .mi-size { color: var(--muted); font-weight: 600; }
.invs-line-meta { margin-left: auto; color: var(--muted); font-size: 12.5px; white-space: nowrap; }
.invs-live { margin-left: 6px; color: var(--green); font-size: 11.5px; font-weight: 700; white-space: nowrap; }
.invs-more { padding: 7px 12px; color: var(--muted); font-size: 12.5px; }

/* ---- "Include recently sold out" browse (2026-08-12, Jace) -----------------
   Sold-out rows are badged, dimmed, cart-less — the 🔔 bell stays live (the
   whole point: watch → told on restock). Same classes on cards and list rows;
   the tablet breakpoints inherit unchanged. */
.mi-soldout {
  display: inline-block; padding: 1px 7px;
  color: #8a4b3a; background: #f6e9e4;
  border: 1px solid #e3c4b8; border-radius: 999px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em; vertical-align: 1px;
}
.mi-soldout-note { color: var(--muted); font-size: 12px; }
.menu-card.is-soldout .mi-media img, .menu-row.is-soldout .mi-media-sm img { filter: grayscale(0.65); opacity: 0.75; }
.menu-card.is-soldout .mi-name, .menu-row.is-soldout .mi-name { color: var(--muted); }
.soldout-text { color: #8a4b3a; }

/* ---- Your orders & requests (2026-08-12 Tim × Jace) ------------------------
   The lifecycle surface: one card per request, the head is the whole tap
   target (a real <button> — keyboard and 44px touch come free), expanding to
   the lines. Status colors follow the meaning, never the mood: nothing reads
   green until the sales order is actually confirmed. Tablet-first — the card
   is fluid and the head wraps rather than truncating. */
.req-card {
  margin-bottom: 10px; padding: 0;
  background: var(--surface-soft);
  border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden;
}
.req-card:last-child { margin-bottom: 0; }
.req-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  width: 100%; min-height: 46px; padding: 10px 12px;
  background: none; border: 0; font: inherit; color: inherit;
  text-align: left; cursor: pointer;
}
.req-head:hover, .req-head:focus-visible { background: #e7efea; }
.req-when { font-weight: 800; }
.req-sum { color: var(--muted); font-size: 13px; }
.req-urgent {
  display: inline-block; padding: 1px 7px;
  color: var(--amber); background: var(--amber-soft);
  border: 1px solid #eddcb6; border-radius: 999px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em;
}
.req-status {
  margin-left: auto; padding: 2px 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; font-weight: 800; white-space: nowrap;
}
.req-status-requested { color: var(--muted); }
.req-status-submitted { color: var(--blue); background: var(--blue-soft); border-color: #cfe4f4; }
.req-status-confirmed { color: var(--green); background: var(--green-soft); border-color: #c6e5d3; }
.req-status-invoiced { color: var(--teal); background: #e2f2f2; border-color: #c2e0e0; }
.req-status-closed { color: var(--muted); }
.req-note-line { margin: 0; padding: 0 12px 10px; color: var(--muted); font-size: 12.5px; }
.req-ref { margin-left: 6px; color: var(--ink); font-weight: 700; }
.req-sub { margin: 0; padding: 0 12px 8px; color: var(--amber); font-size: 12.5px; font-weight: 700; }
.req-note { margin: 0; padding: 8px 12px 12px; color: var(--muted); font-size: 12.5px; }
.req-card .table-wrap { padding: 0 12px 10px; }
.req-table { min-width: 320px; background: var(--surface); border-radius: 8px; }
.req-table caption {
  padding: 8px 2px 4px; color: var(--muted);
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  text-align: left; caption-side: top;
}
.req-swaps { margin: 0; padding: 0 12px 10px 30px; color: var(--ink); font-size: 13px; }
.req-swaps li { margin-bottom: 3px; }
.req-swaps small { color: var(--muted); }
.req-swap-from { color: var(--muted); text-decoration: line-through; }
.req-swap-to { font-weight: 800; }
@media (max-width: 520px) {
  .req-status { margin-left: 0; }
}
