/* Future Production — 2026 rebuild.
   Lives inside the existing site shell (common.css + index-beta.css supply the header,
   footer and Playfair/Mulish). Everything here is scoped to the content area. */

:root {
  --fp-ink:        #16221a;
  --fp-ink-soft:   #4a5b4f;
  --fp-ink-faint:  #7c8a80;
  --fp-surface:    #f4f7f4;
  --fp-card:       #ffffff;
  --fp-line:       #dde5de;
  --fp-line-firm:  #c3d0c6;

  /* The two phases. Green = planted and growing here. Gold = scheduled, not yet in the
     ground. Nothing else on the page is allowed to use these two hues. */
  --fp-ground:     #3f7d4f;
  --fp-ground-dim: #e2efe5;
  --fp-planned:    #b3862f;
  --fp-planned-dim:#f6ecd8;

  --fp-evergreen:  #1f3d2b;
  --fp-focus:      #2f9e5e;

  --fp-radius:     10px;
  --fp-shadow:     0 1px 2px rgba(22, 34, 26, .05), 0 8px 24px -16px rgba(22, 34, 26, .3);
}

html.dark-mode {
  --fp-ink:        #e8efe9;
  --fp-ink-soft:   #a9bbaf;
  --fp-ink-faint:  #7e9185;
  --fp-surface:    #121815;
  --fp-card:       #1a221d;
  --fp-line:       #2a352d;
  --fp-line-firm:  #3a483e;
  --fp-ground:     #6fbf85;
  --fp-ground-dim: #1e2f23;
  --fp-planned:    #d9ac57;
  --fp-planned-dim:#2e2617;
  --fp-evergreen:  #cfe3d5;
  --fp-shadow:     0 1px 2px rgba(0,0,0,.3), 0 8px 24px -16px rgba(0,0,0,.8);
}

.fp-wrap {
  max-width: 1180px;
  /* The site header is position:fixed under the announcement bar, so the content has to be
     pushed clear of both or the page title hides behind it. */
  margin: calc(var(--announcement-height, 40px) + var(--header-height, 80px)) auto 0;
  padding: 2rem 1.25rem 8rem;
  color: var(--fp-ink);
  font-family: 'Mulish', system-ui, sans-serif;
  position: relative;
}

/* index-beta.css puts a full-bleed photograph on the body. A dense schedule needs a calm
   surface to read against, so this page opts out. It has to be set on body itself: a
   negative-z-index backdrop inside main would still paint *below* body's own background,
   because in-flow descendants' backgrounds are painted after negative-z-index children. */
body.fp-page { background: var(--fp-surface); }

.gotcha { position: absolute; left: -9999px; top: -9999px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.visually-hidden:focus {
  position: fixed; top: 0; left: 0; width: auto; height: auto;
  padding: 1rem 2rem; margin: 0; overflow: visible; clip: auto;
  white-space: normal; background: var(--fp-evergreen); color: #fff; z-index: 9999; font-weight: 600;
}

/* ---------- Hero ---------- */

.fp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: end;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--fp-line);
}

.fp-eyebrow {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fp-ink-faint);
  margin: 0 0 .5rem;
}

.fp-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0 0 .75rem;
  color: var(--fp-evergreen);
}

.fp-lede {
  margin: 0;
  max-width: 46ch;
  color: var(--fp-ink-soft);
  line-height: 1.6;
}

.fp-legend { margin: 0; display: grid; gap: .9rem; }
.fp-legend div { display: grid; gap: .25rem; }
.fp-legend dt { margin: 0; }
.fp-legend dd {
  margin: 0;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--fp-ink-soft);
}

/* ---------- Phase tags ---------- */

.phase-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .2rem .55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.phase-tag--on_ground { background: var(--fp-ground-dim); color: var(--fp-ground); }
.phase-tag--planned {
  background: var(--fp-planned-dim);
  color: var(--fp-planned);
  /* Dashed edge reads as "not here yet" without needing a second colour. */
  box-shadow: inset 0 0 0 1px currentColor;
}

/* ---------- Standing notice ----------
   Deliberately NOT gold: gold already means "planned phase" on this page, and reusing it here
   would blur the one colour distinction the table depends on. Neutral card with an evergreen
   rule instead — it reads as the site talking, not as a data category. */

.fp-notice {
  margin: 1.5rem 0 0;
  padding: .9rem 1.1rem;
  background: var(--fp-card);
  border: 1px solid var(--fp-line);
  border-left: 4px solid var(--fp-evergreen);
  border-radius: var(--fp-radius);
}
.fp-notice p { margin: 0; font-size: .88rem; line-height: 1.55; color: var(--fp-ink-soft); }
.fp-notice strong { color: var(--fp-ink); }

/* Same notice, inside a modal directly above the submit button. */
.fp-notice--inline {
  display: block;
  margin: 1.2rem 0 0;
  font-size: .84rem;
  line-height: 1.5;
  color: var(--fp-ink-soft);
}

.modal-note { margin: 0 0 .4rem; font-size: .84rem; color: var(--fp-ink-soft); }

/* ---------- Season ribbon (signature) ---------- */

.fp-ribbon-wrap { margin: 2rem 0 1.5rem; }

.fp-ribbon-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}
.fp-ribbon-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
  color: var(--fp-evergreen);
}
.fp-ribbon-hint { margin: 0; font-size: .8rem; color: var(--fp-ink-faint); }

.fp-ribbon {
  background: var(--fp-card);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  padding: 1rem 1rem .75rem;
  box-shadow: var(--fp-shadow);
}

.ribbon-track {
  display: flex;
  align-items: flex-end;
  gap: .3rem;
  height: 150px;
  overflow-x: auto;
  padding-bottom: .25rem;
}

.ribbon-col {
  flex: 1 1 0;
  min-width: 46px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: .3rem;
  height: 100%;
  background: none;
  border: 0;
  border-radius: 6px;
  padding: .25rem .15rem;
  cursor: pointer;
  color: var(--fp-ink-faint);
  transition: background .15s ease;
}
.ribbon-col:hover:not(:disabled) { background: var(--fp-surface); color: var(--fp-ink); }
/* A month with nothing scheduled still holds its place — the gap is the information. */
.ribbon-col.is-empty { cursor: default; opacity: .45; }
.ribbon-col.is-empty .ribbon-bar { background: transparent; border-bottom: 2px dotted var(--fp-line-firm); }
.ribbon-col.is-active { background: var(--fp-surface); color: var(--fp-ink); }
.ribbon-col.is-active .ribbon-month { color: var(--fp-evergreen); font-weight: 700; }

/* Stacked: how much of this month is already planted vs still only scheduled. */
.ribbon-bar {
  width: 100%;
  max-width: 34px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  background: var(--fp-line);
  min-height: 4px;
}
.ribbon-seg { display: block; width: 100%; flex: 0 0 auto; }
.ribbon-seg--on_ground { background: var(--fp-ground); }
.ribbon-seg--planned {
  background: repeating-linear-gradient(
    -45deg,
    var(--fp-planned) 0 3px,
    color-mix(in srgb, var(--fp-planned) 65%, transparent) 3px 6px
  );
}
.ribbon-col.is-active .ribbon-bar { outline: 2px solid var(--fp-focus); outline-offset: 1px; }

.ribbon-month { font-size: .74rem; font-weight: 600; line-height: 1; }
.ribbon-year { font-size: .64rem; line-height: 1; opacity: .7; }

.ribbon-yearbreak {
  flex: 0 0 1px;
  align-self: stretch;
  background: var(--fp-line-firm);
  margin: 0 .35rem;
}

.ribbon-extras {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid var(--fp-line);
}

.ribbon-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .75rem;
  border-radius: 999px;
  border: 1px dashed var(--fp-line-firm);
  background: transparent;
  color: var(--fp-ink-soft);
  cursor: pointer;
}
.ribbon-chip:hover { border-color: var(--fp-ink-faint); color: var(--fp-ink); }
.ribbon-chip.is-active {
  border-style: solid;
  border-color: var(--fp-evergreen);
  background: var(--fp-surface);
  color: var(--fp-evergreen);
}
.ribbon-chip-count {
  font-variant-numeric: tabular-nums;
  font-size: .75rem;
  color: var(--fp-ink-faint);
}
/* Both undated planned states border in the planned gold; the on-the-ground and beyond-horizon
   chips keep the neutral outline, so the chip row reads in the same colour language as the rows. */
.ribbon-chip--as-needed,
.ribbon-chip--date-pending { border-color: color-mix(in srgb, var(--fp-planned) 55%, transparent); }

/* ---------- Controls ---------- */

.fp-controls { margin-bottom: 1.25rem; }

.fp-controls-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
}

.fp-search { flex: 1 1 320px; min-width: 220px; }
.fp-search input,
.fp-select {
  width: 100%;
  font: inherit;
  font-size: .9rem;
  color: var(--fp-ink);
  background: var(--fp-card);
  border: 1px solid var(--fp-line-firm);
  border-radius: var(--fp-radius);
  padding: .6rem .8rem;
}
.fp-select { width: auto; min-width: 150px; }
.fp-search input::placeholder { color: var(--fp-ink-faint); }
.fp-search input:focus-visible,
.fp-select:focus-visible { outline: 2px solid var(--fp-focus); outline-offset: 1px; }

.fp-phase-filters {
  display: flex;
  gap: .4rem;
  border: 0;
  padding: 0;
  margin: 0;
}
/* Filter pills — the fill carries the state, no checkbox glyph.
   The input stays in the DOM: script-2026.js reads `input:checked` and listens for `change`,
   and it keeps Tab/Space working. It is hidden the visually-hidden way, never with
   display:none or visibility:hidden, either of which drops it out of the focus order. */
.phase-chip, .type-chip {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border: 1px dashed var(--fp-line-firm);
  border-radius: 999px;
  cursor: pointer;
  background: var(--fp-card);
  /* --fp-ink-faint reads as only 3.6:1 here; these labels are 12.8px, so they need 4.5:1. */
  color: var(--fp-ink-soft);
  user-select: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.phase-chip input, .type-chip input {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.phase-chip:hover:not(:has(input:checked)),
.type-chip:hover:not(:has(input:checked)) { border-color: var(--fp-ink-faint); color: var(--fp-ink-soft); }

/* On. The border going dashed → solid is the non-colour cue, so the state still reads in
   greyscale and does not depend on hue alone. */
.phase-chip:has(input:checked), .type-chip:has(input:checked) { border-style: solid; }

/* 12 type pills all default to on, so a solid fill each would be a wall of colour saying
   nothing. Tint instead — still unmistakably on, but it stays background. */
.type-chip:has(input:checked) {
  border-color: var(--fp-ground);
  background: var(--fp-ground-dim);
  /* --fp-ground on its own dim tint is 4.16:1 — not enough. Go a step darker. */
  color: var(--fp-evergreen);
}

/* There are only two phase pills and they mean something, so they fill with their own colour —
   the same green/gold as the table badges, the ribbon segments and the hero legend. */
.phase-chip:has(input[value="on_ground"]:checked) {
  border-color: var(--fp-ground);
  background: var(--fp-ground);
  color: #fff;
}
.phase-chip:has(input[value="planned"]:checked) {
  border-color: var(--fp-planned);
  background: var(--fp-planned);
  color: #241a06; /* gold is light in both themes — dark ink, never white */
}
/* Dark mode flips --fp-ground to a light green, so white text would fail on it. */
html.dark-mode .phase-chip:has(input[value="on_ground"]:checked) { color: #0f1a12; }

.phase-chip:has(input:focus-visible), .type-chip:has(input:focus-visible) {
  outline: 2px solid var(--fp-focus); outline-offset: 2px;
}

.fp-type-filters { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }

.fp-controls-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: .85rem;
  flex-wrap: wrap;
}
.fp-count { margin: 0; font-size: .85rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.fp-freshness { margin: 0; font-size: .78rem; color: var(--fp-ink-faint); }

.fp-status {
  padding: .8rem 1rem;
  border-radius: var(--fp-radius);
  background: var(--fp-card);
  border: 1px solid var(--fp-line);
  font-size: .88rem;
  color: var(--fp-ink-soft);
  margin-bottom: 1rem;
}
.fp-status.is-error { border-color: #c2573f; color: #c2573f; }

/* ---------- Buttons ---------- */

.fp-btn {
  font: inherit;
  font-size: .87rem;
  font-weight: 600;
  padding: .55rem 1rem;
  border-radius: var(--fp-radius);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.fp-btn--primary { background: var(--fp-evergreen); color: #fff; }
.fp-btn--primary:hover { background: #16301f; }
html.dark-mode .fp-btn--primary { color: #102016; }
.fp-btn--quiet {
  background: var(--fp-card);
  border-color: var(--fp-line-firm);
  color: var(--fp-ink);
}
.fp-btn--quiet:hover { border-color: var(--fp-ink-faint); }
.fp-btn:focus-visible { outline: 2px solid var(--fp-focus); outline-offset: 2px; }

/* ---------- Schedule table ---------- */

.fp-table-wrap {
  background: var(--fp-card);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  box-shadow: var(--fp-shadow);
  overflow-x: auto;
}

.fp-table { width: 100%; border-collapse: collapse; font-size: .88rem; }

.fp-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--fp-card);
  text-align: left;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fp-ink-faint);
  font-weight: 700;
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--fp-line-firm);
}
.fp-table .num, .fp-table th.num { text-align: right; font-variant-numeric: tabular-nums; }

.plant-row th {
  text-align: left;
  padding: 1.1rem 1rem .35rem;
  border-bottom: 1px solid var(--fp-line);
  background: var(--fp-card);
  font-weight: 400;
}
.plant-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--fp-evergreen);
  text-decoration: none;
}
.plant-name:hover { text-decoration: underline; }
.plant-type {
  margin-left: .6rem;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fp-ink-faint);
}

.batch-row td {
  padding: .55rem 1rem;
  border-bottom: 1px solid var(--fp-line);
  vertical-align: middle;
}
.batch-row:hover td { background: var(--fp-surface); }
.batch-row.selected-row td { background: var(--fp-ground-dim); }

.c-size { font-weight: 600; }
.c-ready { color: var(--fp-ink-soft); }
.c-ready.is-tbd { color: var(--fp-ink-faint); font-style: italic; }
.c-qty { font-weight: 700; }

.qty-input {
  width: 5.5rem;
  font: inherit;
  font-size: .85rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
  padding: .35rem .5rem;
  border: 1px solid var(--fp-line-firm);
  border-radius: 6px;
  background: var(--fp-card);
  color: var(--fp-ink);
}
.qty-input:focus-visible { outline: 2px solid var(--fp-focus); outline-offset: 1px; }
.qty-input.has-value { border-color: var(--fp-ground); font-weight: 700; }

.empty-row td {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--fp-ink-faint);
}

/* ---------- Action bar ---------- */

.fp-actionbar {
  position: sticky;
  bottom: 0;
  z-index: 5;
  display: flex;
  gap: .6rem;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0;
  padding: .75rem 1rem;
  background: var(--fp-card);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  box-shadow: var(--fp-shadow);
}

.selection-count {
  display: inline-block;
  min-width: 1.4rem;
  padding: 0 .35rem;
  margin-left: .35rem;
  border-radius: 999px;
  background: var(--fp-ground);
  color: #fff;
  font-size: .75rem;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.selection-count.empty { background: var(--fp-line-firm); color: var(--fp-ink-faint); }

.overflow-wrapper { position: relative; }
.overflow-menu {
  display: none;
  position: absolute;
  right: 0;
  bottom: calc(100% + .4rem);
  min-width: 230px;
  background: var(--fp-card);
  border: 1px solid var(--fp-line-firm);
  border-radius: var(--fp-radius);
  box-shadow: var(--fp-shadow);
  padding: .35rem;
  z-index: 20;
}
.overflow-menu.open { display: block; }
.overflow-item {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  font-size: .85rem;
  padding: .55rem .7rem;
  border: 0;
  border-radius: 6px;
  background: none;
  color: var(--fp-ink);
  cursor: pointer;
}
.overflow-item:hover { background: var(--fp-surface); }
.overflow-item-danger { color: #c2573f; }
.overflow-divider { height: 1px; background: var(--fp-line); margin: .35rem 0; }

.submit-fab { display: none; }

/* ---------- Modals ---------- */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(16, 26, 19, .55);
  padding: 1.5rem;
  overflow-y: auto;
}
.modal-content {
  position: relative;
  background: var(--fp-card);
  color: var(--fp-ink);
  max-width: 640px;
  margin: 4vh auto;
  padding: 1.75rem;
  border-radius: var(--fp-radius);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.5);
}
.modal-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  margin: 0 0 .6rem;
  color: var(--fp-evergreen);
}
.modal .close {
  position: absolute;
  top: .6rem; right: .9rem;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--fp-ink-faint);
}
.modal .close:hover { color: var(--fp-ink); }

.selections-table { width: 100%; border-collapse: collapse; font-size: .85rem; margin-top: .5rem; }
.selections-table th {
  text-align: left; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--fp-ink-faint); padding: .4rem .5rem; border-bottom: 1px solid var(--fp-line-firm);
}
.selections-table td { padding: .5rem; border-bottom: 1px solid var(--fp-line); }
.selections-table .num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 700; }
.remove-selection {
  border: 0; background: none; cursor: pointer; font-size: 1.1rem;
  color: var(--fp-ink-faint); line-height: 1;
}
.remove-selection:hover { color: #c2573f; }
.empty-note { color: var(--fp-ink-faint); font-size: .88rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form-field { display: grid; gap: .3rem; }
.form-field label { font-size: .78rem; font-weight: 600; color: var(--fp-ink-soft); }
.form-field input,
#suggestions {
  font: inherit; font-size: .9rem;
  padding: .55rem .7rem;
  border: 1px solid var(--fp-line-firm);
  border-radius: 8px;
  background: var(--fp-card);
  color: var(--fp-ink);
  width: 100%;
}
#suggestions { resize: vertical; }
.form-field input:focus-visible,
#suggestions:focus-visible { outline: 2px solid var(--fp-focus); outline-offset: 1px; }

.contact-modal-subtitle { color: var(--fp-ink-soft); font-size: .88rem; margin: 0 0 1rem; }
.contact-confirm-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--fp-surface); border: 1px solid var(--fp-line);
  border-radius: 8px; padding: .7rem .9rem; margin-bottom: 1rem; font-size: .88rem;
}
.contact-confirm-edit {
  border: 0; background: none; cursor: pointer; font: inherit; font-size: .82rem;
  font-weight: 600; color: var(--fp-ground); text-decoration: underline;
}
.contact-modal-actions,
.suggestion-modal-buttons { display: flex; gap: .6rem; justify-content: flex-end; margin-top: 1.2rem; }
.suggestion-message { margin-top: .8rem; font-size: .88rem; color: var(--fp-ground); }

/* ---------- Toast ---------- */

.copy-feedback {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 1rem);
  background: var(--fp-evergreen);
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 2000;
}
.copy-feedback.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .fp-hero { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .fp-wrap { padding: 1.25rem .85rem 7rem; }
  .ribbon-track { height: 120px; }
  .ribbon-col { min-width: 40px; }

  /* Table becomes stacked cards — a 6-column grid does not survive a phone. */
  .fp-table, .fp-table tbody, .fp-table tr, .fp-table td { display: block; width: 100%; }
  .fp-table thead { display: none; }
  .fp-table .plant-row th { display: block; padding: 1.1rem .9rem .4rem; }

  /* Needs .fp-table in front: the blanket `.fp-table tr { display: block }` above outranks a
     bare .batch-row, so the row silently stayed a block and every grid-area was ignored. */
  .fp-table .batch-row {
    border-bottom: 1px solid var(--fp-line);
    padding: .6rem .9rem .8rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .3rem .8rem;
    align-items: center;
  }
  /* Every cell gets an explicit slot — leaving any to auto-placement drops the quantity
     input onto a row of its own, stranded from the number it refers to. */
  .batch-row td { border: 0; padding: .1rem 0; }
  .batch-row .c-size  { grid-area: 1 / 1; font-size: .95rem; }
  .batch-row .c-phase { grid-area: 1 / 2; text-align: right; }
  .batch-row .c-ready { grid-area: 2 / 1 / 3 / 3; }
  .batch-row .c-qty   { grid-area: 3 / 1; text-align: left; }
  .batch-row .c-want  { grid-area: 3 / 2; text-align: right; }
  .batch-row .c-qty::before { content: 'Expected: '; font-weight: 400; color: var(--fp-ink-faint); }
  .batch-row .c-spacer { display: none; }

  .fp-actionbar { justify-content: stretch; }
  .fp-actionbar .fp-btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
