:root {
  --bg: #f7f5ef;
  --panel: #ffffff;
  --text: #1d2a24;
  --muted: #66746d;
  --accent: #2f6f4e;
  --accent-dark: #234f39;
  --border: #d9ded8;
  --shadow: 0 10px 24px rgba(31, 49, 40, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 800;
  gap: 0.45rem;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: #e4f0e6;
  border: 1px solid #b8d6bf;
  border-radius: 8px;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.brand-mark svg {
  height: 26px;
  width: 26px;
}

.brand-mark-leaf {
  fill: var(--accent);
}

.brand-mark-row {
  fill: none;
  stroke: #f7f5ef;
  stroke-linecap: round;
  stroke-width: 2.8;
}

nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.cart-icon-link {
  align-items: center;
  display: inline-flex;
  gap: 0.35rem;
  position: relative;
}

.cart-icon {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.cart-icon svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 19px;
}

.cart-count {
  align-items: center;
  background: #1d2a24;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 850;
  justify-content: center;
  min-height: 20px;
  min-width: 20px;
  padding: 0 0.35rem;
}

.cart-bubble {
  background: #fffdf8;
  border: 1px solid #c9d8cf;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(31, 49, 40, 0.18);
  color: var(--text);
  display: grid;
  gap: 0.35rem;
  max-width: min(280px, calc(100vw - 2rem));
  opacity: 0;
  padding: 0.8rem 0.9rem;
  position: fixed;
  right: clamp(1rem, 4vw, 3rem);
  top: 76px;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 20;
}

.cart-bubble::before {
  border-bottom: 10px solid #fffdf8;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: "";
  position: absolute;
  right: 34px;
  top: -9px;
}

.cart-bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cart-bubble span {
  font-size: 0.92rem;
  font-weight: 750;
}

.cart-bubble a {
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 850;
}

.hero {
  min-height: 58vh;
  display: grid;
  align-items: center;
  padding: clamp(2rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(rgba(247, 245, 239, 0.82), rgba(247, 245, 239, 0.92)),
    url("https://images.unsplash.com/photo-1488459716781-31db52582fe9?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.public-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem) 3rem;
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.94), rgba(247, 245, 239, 0.72)),
    url("https://images.unsplash.com/photo-1566385101042-1a0aa0c1268c?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.public-hero-copy,
.public-page-hero,
.public-section,
.public-band {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.public-hero-copy {
  max-width: 820px;
}

.public-hero-copy p,
.public-page-hero p {
  max-width: 680px;
  color: #45554d;
  font-size: 1.08rem;
}

.public-page-hero {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) 2rem;
}

.public-section {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.public-band h2,
.public-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.public-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.public-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.public-grid article,
.media-placeholder-grid article,
.public-form,
.success-banner {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.public-grid article span {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 0.75rem;
  width: 34px;
}

.public-band {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
}

.public-band img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.two-column {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
}

.narrow-public {
  max-width: 760px;
}

.public-form {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 750;
}

.public-form input,
.public-form select,
.public-form textarea {
  border: 1px solid var(--border);
  border-radius: 7px;
  font: inherit;
  min-height: 44px;
  padding: 0.65rem;
  width: 100%;
}

.public-form textarea {
  min-height: 96px;
}

.public-form .full,
.full {
  grid-column: 1 / -1;
}

.success-banner {
  background: #edf7ef;
  border-color: #b8d8c1;
  color: var(--accent-dark);
  font-weight: 850;
  margin-bottom: 1rem;
}

.media-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.media-placeholder-grid article {
  align-items: end;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(rgba(255,255,255,0.2), rgba(29,42,36,0.1)),
    #e8efe6;
  display: grid;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list article {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.hero-copy,
.workspace,
.driver-shell,
.section-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-copy {
  max-width: 720px;
  margin-left: 0;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 1.02;
}

h2 {
  font-size: 1.1rem;
}

.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button,
button {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.7rem 1rem;
  background: var(--panel);
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.add-cart-button {
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 120ms ease;
}

.add-cart-button:hover:not(:disabled) {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.add-cart-button.is-adding {
  background: #d99a28;
  border-color: #d99a28;
  color: #1d2a24;
  cursor: wait;
}

.add-cart-button.is-added {
  background: #1d7f5c;
  border-color: #1d7f5c;
  color: #fff;
}

.section-grid,
.dashboard-grid,
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.section-grid,
.workspace,
.driver-shell {
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 3rem);
}

article,
.route-card,
.market-shell aside {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

article p,
.page-heading p,
.route-card li {
  color: var(--muted);
}

.market-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
}

.market-shell aside {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-self: start;
}

.driver-shell {
  max-width: 760px;
}

.route-card ol {
  padding-left: 1.4rem;
}

.wide {
  width: min(1400px, 100%);
}

.narrow {
  width: min(860px, 100%);
}

.row-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.stat-grid article {
  box-shadow: none;
}

.stat-grid span {
  color: var(--muted);
  display: block;
  font-weight: 700;
}

.stat-grid strong {
  display: block;
  font-size: 2rem;
}

.panel,
.summary-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
  padding: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid label {
  color: var(--muted);
  display: grid;
  font-weight: 750;
  gap: 0.35rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.filter-bar input,
.filter-bar select {
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text);
  font: inherit;
  min-height: 42px;
  padding: 0.6rem 0.7rem;
  width: 100%;
}

.form-grid textarea {
  min-height: 110px;
}

.full {
  grid-column: 1 / -1;
}

.check-row {
  align-items: center;
  display: flex !important;
  flex-direction: row;
}

.check-row input {
  min-height: auto;
  width: auto;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(120px, 1fr)) auto;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.table-wrap {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 860px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef3ed;
  font-size: 0.85rem;
}

td span {
  color: var(--muted);
  font-size: 0.88rem;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.summary-list dt {
  color: var(--muted);
  font-weight: 750;
}

.summary-list dd {
  margin: 0;
}

.compact-filter {
  grid-template-columns: 1.2fr 1fr 1fr auto;
}

.catalog-hero {
  min-height: 42vh;
  display: grid;
  align-items: end;
  padding: clamp(2rem, 8vw, 5rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(rgba(29, 42, 36, 0.08), rgba(247, 245, 239, 0.95)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.catalog-hero > div {
  width: min(900px, 100%);
}

.category-strip {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.category-strip a {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent-dark);
  flex: 0 0 auto;
  font-weight: 750;
  padding: 0.55rem 0.8rem;
  text-decoration: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.catalog-section-heading {
  margin-top: 2rem;
}

.product-card {
  overflow: hidden;
  padding: 0;
}

.product-image {
  aspect-ratio: 4 / 3;
  background: #e8ede6;
  display: block;
  overflow: hidden;
}

.product-image img,
.product-detail-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-card-body {
  padding: 1rem;
}

.product-card h2 a {
  text-decoration: none;
}

.product-meta,
.product-price {
  align-items: baseline;
  display: flex;
  gap: 0.25rem;
}

.product-meta strong,
.product-price {
  color: var(--accent-dark);
  font-size: 1.25rem;
  font-weight: 850;
}

.product-price {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.product-price span,
.product-meta span {
  color: var(--muted);
  font-size: 0.95rem;
}

.farm-name {
  color: var(--accent-dark);
  font-weight: 750;
}

.availability {
  color: var(--accent);
  font-weight: 800;
}

.availability.unavailable {
  color: #8f493f;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.85fr);
  min-height: calc(100vh - 74px);
}

.product-detail-image {
  background: #e8ede6;
  min-height: 520px;
}

.product-detail-copy {
  align-self: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.low-grid {
  margin-bottom: 1rem;
}

.inline-cart-form {
  margin-top: 0.8rem;
}

.inline-cart-form button,
.quantity-form button {
  width: 100%;
}

.quantity-form {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.quantity-form label,
.cart-qty {
  display: grid;
  gap: 0.4rem;
}

.quantity-form input,
.cart-qty input {
  border: 1px solid var(--border);
  border-radius: 7px;
  font: inherit;
  min-height: 44px;
  padding: 0.5rem;
}

.cart-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-row {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto minmax(90px, auto);
}

.cart-item-main h2 {
  margin-bottom: 0.2rem;
}

.cart-qty {
  align-items: center;
  display: grid;
  gap: 0.4rem;
  grid-template-columns: 44px 72px 44px;
}

.cart-qty input {
  text-align: center;
}

.cart-line-total {
  color: var(--accent-dark);
  font-size: 1.05rem;
  font-weight: 850;
  text-align: right;
}

.app-checkout-bar {
  background: var(--panel);
  border-top: 1px solid var(--border);
  bottom: 0;
  display: none;
  gap: 0.75rem;
  left: 0;
  padding: 0.75rem 1rem;
  position: sticky;
}

.cart-ready-dialog {
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 420px;
  padding: 1.25rem;
  width: calc(100% - 2rem);
}

.cart-ready-dialog::backdrop {
  background: rgba(29, 42, 36, 0.35);
}

.cart-ready-dialog form {
  display: grid;
  gap: 0.75rem;
}

.status-pill {
  background: #edf4ef;
  border: 1px solid #c9d8cf;
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 0.2rem 0.55rem;
}

.priority-pill {
  background: #fff0d6;
  border: 1px solid #e5b45f;
  border-radius: 999px;
  color: #7a4a00;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  margin-left: 0.35rem;
  padding: 0.12rem 0.45rem;
  text-transform: uppercase;
}

.marketing-grid,
.marketing-preview-grid,
.calendar-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1rem;
}

.marketing-card,
.marketing-preview,
.calendar-list article {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.marketing-card h2,
.marketing-preview h2,
.calendar-list h2 {
  font-size: 1.15rem;
  margin-top: 0.35rem;
}

.card-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.marketing-preview p {
  white-space: pre-wrap;
}

.marketing-workflow-actions {
  margin: 1rem 0;
}

.priority-row {
  background: #fffaf0;
}

.route-stop-row {
  align-items: center;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 64px minmax(170px, 1.2fr) minmax(160px, 1fr) 130px minmax(140px, 1fr) minmax(140px, 1fr) minmax(140px, 1fr) auto;
}

.route-stop-row input,
.route-stop-row select {
  min-width: 0;
}

.route-suggestion-bar {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.inline-assign-form {
  align-items: center;
  display: flex;
  gap: 0.4rem;
}

.inline-assign-form select {
  min-width: 150px;
}

.driver-app {
  background: #f3f6f0;
  min-height: calc(100vh - 70px);
  padding: 1rem;
}

.driver-topbar {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto 1rem;
  max-width: 720px;
}

.driver-topbar h1 {
  font-size: 1.8rem;
  margin: 0;
}

.driver-card,
.driver-list,
.driver-stop-list {
  margin: 0 auto 1rem;
  max-width: 720px;
}

.driver-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.driver-form {
  display: grid;
  gap: 0.85rem;
}

.driver-form input,
.driver-form select,
.driver-form textarea {
  border: 1px solid var(--border);
  border-radius: 7px;
  font: inherit;
  min-height: 48px;
  padding: 0.65rem;
  width: 100%;
}

.driver-actions {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

.route-card-head {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.driver-progress {
  background: #dfe8e1;
  border-radius: 999px;
  height: 10px;
  margin: 0.8rem 0;
  overflow: hidden;
}

.driver-progress span {
  background: var(--accent);
  display: block;
  height: 100%;
}

.driver-stop-list {
  display: grid;
  gap: 0.75rem;
}

.driver-stop {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 42px 1fr auto;
  min-height: 74px;
  padding: 0.8rem;
  text-decoration: none;
}

.driver-stop strong {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.driver-stop em {
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 850;
}

.driver-stop.delivered {
  border-color: #97c7a9;
}

.driver-stop.failed {
  border-color: #cf9a8f;
}

.app-page-bar {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  padding: 0.4rem;
  position: sticky;
  top: 76px;
  z-index: 8;
}

.app-page-bar a {
  background: #edf4ef;
  border-radius: 7px;
  color: var(--accent-dark);
  font-weight: 800;
  min-height: 44px;
  min-width: max-content;
  padding: 0.65rem 0.9rem;
  text-decoration: none;
}

.driver-tabs {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  top: 0.5rem;
}

.sticky-cart-cta {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  bottom: 1rem;
  box-shadow: var(--shadow);
  color: #fff;
  display: none;
  font-weight: 850;
  gap: 0.5rem;
  justify-content: center;
  left: 1rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  position: fixed;
  right: 1rem;
  text-decoration: none;
  z-index: 30;
}

.sticky-cart-cta span,
.mobile-app-nav span {
  background: #fff;
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 0.78rem;
  justify-content: center;
  min-width: 22px;
  padding: 0.1rem 0.35rem;
}

.sticky-action-panel {
  background: rgba(247, 245, 239, 0.96);
  border-top: 1px solid var(--border);
  bottom: 0;
  margin: 1rem -1rem -1rem;
  padding: 1rem;
  position: sticky;
}

.touch-button,
button,
.button {
  min-height: 44px;
}

.empty-state {
  background: var(--panel);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.toast {
  background: #1d2a24;
  border-radius: 999px;
  bottom: 5rem;
  box-shadow: var(--shadow);
  color: #fff;
  font-weight: 800;
  left: 50%;
  max-width: min(90vw, 420px);
  opacity: 0;
  padding: 0.8rem 1rem;
  position: fixed;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 40;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.mobile-app-nav {
  display: none;
}

button.is-loading,
button.is-adding {
  cursor: wait;
  opacity: 0.72;
}

.muted,
.form-error {
  color: var(--muted);
}

.form-error {
  color: #9a3b28;
  font-weight: 800;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    display: none;
  }

  .mobile-app-nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    min-height: 64px;
    position: fixed;
    right: 0;
    z-index: 35;
  }

  .mobile-app-nav a {
    color: var(--muted);
    display: grid;
    font-size: 0.82rem;
    font-weight: 850;
    justify-items: center;
    min-height: 52px;
    padding: 0.55rem 0.25rem;
    text-decoration: none;
  }

  .sticky-cart-cta {
    display: flex;
    bottom: 4.8rem;
  }

  .market-shell {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .filter-bar,
  .public-form,
  .two-column,
  .public-band {
    grid-template-columns: 1fr;
  }

  .row-heading {
    flex-direction: column;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-image {
    min-height: 320px;
  }

  .cart-row {
    grid-template-columns: 1fr;
  }

  .cart-qty {
    grid-template-columns: 52px 1fr 52px;
  }

  .cart-line-total {
    text-align: left;
  }

  .route-stop-row {
    grid-template-columns: 1fr;
  }

  .route-suggestion-bar,
  .inline-assign-form {
    align-items: stretch;
    flex-direction: column;
  }

  .driver-app {
    min-height: 100vh;
    padding: 0.8rem 0.8rem 5rem;
  }

  .driver-topbar {
    align-items: flex-start;
  }

  h1 {
    font-size: 2rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: unset;
  }

  .driver-stop {
    grid-template-columns: 42px 1fr;
  }

  .driver-stop em {
    grid-column: 2;
  }
}
