:root {
  --yolk: #f2b705;
  --yolk-hot: #e09400;
  --yolk-wash: #fff4cc;
  --cream: #f7ead3;
  --paper: #fffaf1;
  --ticket: #fffdf8;
  --ink: #24170f;
  --cocoa: #6a4630;
  --muted: #8a6b52;
  --tomato: #c4452d;
  --leaf: #2c6b4a;
  --line: #ead7b6;
  --shadow: 0 18px 40px -24px rgba(36, 23, 15, 0.45);
  --radius: 18px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Outfit", "Gill Sans", "Trebuchet MS", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  background-color: #f3ddb0;
  background-image:
    radial-gradient(circle at 12px 10px, rgba(255, 248, 230, 0.55) 1.5px, transparent 2.2px),
    linear-gradient(180deg, #fbf1dc 0%, #f3ddb0 42%, #efd09a 100%);
  background-size: 28px 28px, auto;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: var(--tomato);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.awning {
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    var(--tomato) 0 22px,
    #fbf3e4 22px 44px,
    var(--ink) 44px 66px,
    var(--yolk) 66px 88px
  );
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12);
}

.site-header {
  padding: 28px 20px 12px;
}

.brand {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
}

.brand-logo,
.egg {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  filter: drop-shadow(0 8px 10px rgba(36, 23, 15, 0.18));
}

.brand-copy h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 0.95;
}

.brand-copy .tag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--yolk);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy .meta {
  color: var(--cocoa);
  margin-top: 8px;
  font-size: 0.95rem;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 20px 120px;
}

.lede {
  max-width: 62ch;
  color: var(--cocoa);
  margin: 8px auto 22px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.panel {
  background: var(--paper);
  border: 1px solid rgba(36, 23, 15, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.panel + .panel,
form .panel + .panel {
  margin-top: 16px;
}

.panel h2 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.hint {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 721px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

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

label.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cocoa);
}

label.field input,
label.field select,
label.field textarea {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 1rem;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

label.field textarea {
  min-height: 96px;
  resize: vertical;
}

label.field input:focus,
label.field select:focus,
label.field textarea:focus {
  border-color: var(--yolk-hot);
  box-shadow: 0 0 0 4px rgba(242, 183, 5, 0.28);
}

.inline-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  background: var(--yolk-wash);
  border-radius: 12px;
  color: var(--cocoa);
  font-size: 0.92rem;
  margin-top: 12px;
}

.inline-note strong {
  color: var(--ink);
}

.packs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pack-card {
  position: relative;
  display: block;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 14px 14px 12px;
  cursor: pointer;
  min-height: 132px;
  transition: transform 0.12s ease, border-color 0.12s, box-shadow 0.12s, background 0.12s;
}

.pack-card:hover {
  transform: translateY(-1px);
  border-color: var(--yolk-hot);
}

.pack-card:has(input:checked) {
  background: linear-gradient(180deg, #fff7d6, #fff);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--yolk);
}

.pack-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pack-card .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1;
}

.pack-card .price span {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--muted);
}

.pack-card h3 {
  font-size: 1.05rem;
  margin: 8px 0 4px;
}

.pack-card p {
  font-size: 0.86rem;
  color: var(--cocoa);
}

.pack-card .chip {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 3px 7px;
  border-radius: 999px;
}

.addons {
  display: grid;
  gap: 8px;
}

.addon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.addon-row .who {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.addon-row .who strong {
  font-size: 0.98rem;
}

.addon-row .who span {
  color: var(--muted);
  font-size: 0.82rem;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stepper button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 1.15rem;
  line-height: 1;
}

.stepper input {
  width: 64px;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 7px 4px;
}

.addon-row.is-per-person {
  align-items: center;
}

.addon-row.is-selected {
  border-color: var(--ink);
  background: linear-gradient(180deg, #fff7d6, #fff);
  box-shadow: 0 0 0 2px var(--yolk);
}

.addon-unit {
  color: var(--cocoa);
  font-size: 0.82rem;
  font-weight: 650;
}

.addon-live {
  color: var(--ink);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.addon-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}

.addon-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
  flex: 0 0 auto;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  position: relative;
}

.pill input {
  position: absolute;
  opacity: 0;
}

.pill span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-weight: 650;
}

.pill input:checked + span {
  background: var(--ink);
  color: var(--yolk);
  border-color: var(--ink);
}

.pay-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pay-toggle label {
  position: relative;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}

.pay-toggle input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.pay-toggle label:has(input:checked) {
  border-color: var(--ink);
  background: var(--yolk-wash);
  box-shadow: 0 0 0 3px var(--yolk);
}

.pay-toggle strong {
  display: block;
}

.pay-toggle span {
  color: var(--muted);
  font-size: 0.85rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
}

.btn-primary {
  background: var(--ink);
  color: var(--yolk);
}

.btn-primary:hover {
  background: #170f0a;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--line);
}

.quote-rail {
  position: sticky;
  top: 16px;
}

.ticket {
  background: var(--ticket);
  border-radius: 18px;
  border: 1.5px dashed #c9ae86;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ticket-head {
  padding: 16px 18px 10px;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(242, 183, 5, 0.18) 6px,
      rgba(242, 183, 5, 0.18) 12px
    ),
    linear-gradient(180deg, #fff7d8, #fff);
  border-bottom: 1.5px dashed #c9ae86;
}

.ticket-head .stamp {
  display: inline-block;
  border: 2px solid var(--tomato);
  color: var(--tomato);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 4px;
  transform: rotate(-6deg);
}

.ticket-head h2 {
  margin-top: 10px;
  font-size: 1.4rem;
}

.ticket-body {
  padding: 12px 18px 16px;
}

.line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.92rem;
}

.line .lbl {
  color: var(--cocoa);
}

.line.total {
  border-top: 1.5px dashed #c9ae86;
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.15rem;
  font-weight: 750;
}

.line.muted {
  color: var(--muted);
}

.arrival {
  margin-top: 8px;
  padding: 10px;
  background: #f6efe2;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--cocoa);
}

.quote-footnote {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--muted);
}

.mobile-quote-bar {
  display: none;
}

.invoice-view {
  display: none;
}

body.show-invoice .booking-view {
  display: none;
}

body.show-invoice .invoice-view {
  display: block;
}

body.show-invoice .wrap {
  padding-bottom: 40px;
}

.invoice {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto 24px;
}

.invoice-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.invoice table {
  width: 100%;
  border-collapse: collapse;
}

.invoice th,
.invoice td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #eee3cf;
  vertical-align: top;
}

.invoice td.amt,
.invoice th.amt {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.invoice .totals td {
  border-bottom: 0;
}

.invoice .grand td {
  font-size: 1.15rem;
  font-weight: 800;
  padding-top: 12px;
}

.invoice-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.invoice-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.site-footer {
  text-align: center;
  color: var(--cocoa);
  font-size: 0.85rem;
  padding: 8px 20px 28px;
}

.error {
  color: var(--tomato);
  font-size: 0.88rem;
  min-height: 1.2em;
}

.is-hidden {
  display: none !important;
}

.weekend-note {
  margin: 0 0 14px;
}

.location-block .field {
  margin-bottom: 0;
}

.pickup-stores {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 6px;
}

.pickup-store {
  position: relative;
  display: block;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.12s, box-shadow 0.12s, background 0.12s;
}

.pickup-store input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.pickup-store strong {
  display: block;
  font-size: 0.98rem;
}

.pickup-store span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.pickup-store:hover {
  border-color: var(--yolk-hot);
}

.pickup-store:has(input:checked) {
  border-color: var(--ink);
  background: var(--yolk-wash);
  box-shadow: 0 0 0 3px var(--yolk);
}

.fulfill-when.pickup-mode {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 720px) {
  .pickup-stores {
    grid-template-columns: 1fr 1fr;
  }
}

.addr-wrap {
  position: relative;
}

.addr-input {
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 1rem;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: var(--font-body);
}

.addr-input:focus {
  border-color: var(--yolk-hot);
  box-shadow: 0 0 0 4px rgba(242, 183, 5, 0.28);
}

.addr-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 30;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--ticket);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-height: 280px;
  overflow: auto;
}

.addr-list[hidden] {
  display: none !important;
}

.addr-option {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 9px 10px;
  cursor: pointer;
  font-family: var(--font-body);
}

.addr-option:hover,
.addr-option[aria-selected="true"] {
  background: var(--yolk-wash);
}

.addr-option .addr-primary {
  color: var(--ink);
  font-weight: 650;
  font-size: 0.95rem;
}

.addr-option .addr-secondary {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 1px;
}

.location-hint {
  margin: 8px 0 0;
  font-size: 0.88rem;
}

.addr-warn {
  margin: 6px 0 0;
  color: var(--tomato);
  font-size: 0.85rem;
}

.pack-menu {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--ticket);
  border: 1.5px dashed #c9ae86;
  border-radius: 14px;
}

.pack-menu h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.pack-menu .pack-menu-intro {
  color: var(--cocoa);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.pack-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.pack-menu li {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.35;
}

.pack-menu li span {
  color: var(--muted);
}

.pack-menu .pack-menu-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .quote-rail {
    display: none;
  }

  .mobile-quote-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(36, 23, 15, 0.94);
    color: #fff;
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.2);
  }

  .mobile-quote-bar .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .mobile-quote-bar strong {
    color: var(--yolk);
    font-size: 1.2rem;
  }

  .mobile-quote-bar button {
    background: var(--yolk);
    color: var(--ink);
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
  }

  .mobile-sheet {
    display: none;
    margin-top: 10px;
    max-height: 45vh;
    overflow: auto;
    background: var(--ticket);
    color: var(--ink);
    border-radius: 12px;
    padding: 10px 12px;
  }

  .mobile-quote-bar.open .mobile-sheet {
    display: block;
  }

  body.show-invoice .mobile-quote-bar {
    display: none;
  }
}

@media (max-width: 720px) {
  .packs,
  .grid-2,
  .grid-3,
  .invoice-meta {
    grid-template-columns: 1fr;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo,
  .egg {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pack-card,
  label.field input {
    transition: none;
  }
}

@media print {
  body {
    background: #fff;
  }

  .awning,
  .booking-view,
  .invoice-actions,
  .mobile-quote-bar,
  .site-footer,
  .skip-link {
    display: none !important;
  }

  body.show-invoice .invoice-view,
  .invoice {
    display: block !important;
    box-shadow: none;
    padding: 0;
    max-width: none;
  }

  .invoice-view {
    display: block !important;
  }
}

.menu {
  display: grid;
  gap: 8px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.menu-item.has-qty {
  border-color: var(--ink);
  background: linear-gradient(180deg, #fff7d6, #fff);
  box-shadow: 0 0 0 2px var(--yolk);
}

.menu-item .who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.menu-item .who strong {
  font-size: 0.98rem;
}

.menu-item .who .price-each {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.menu-item .who span {
  color: var(--muted);
  font-size: 0.82rem;
}

.sandwich-tally {
  margin: 0 0 14px;
  font-variant-numeric: tabular-nums;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.check-field:has(input:checked) {
  border-color: var(--ink);
  background: var(--yolk-wash);
  box-shadow: 0 0 0 3px var(--yolk);
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ink);
  flex: 0 0 auto;
}

.check-field strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.check-field span {
  color: var(--muted);
  font-size: 0.85rem;
}

.fulfill-toggle {
  margin-bottom: 14px;
}

@media (max-width: 720px) {
  .invoice-actions {
    flex-wrap: wrap;
  }
}

.menu-item.has-photo,
.addon-row.has-photo {
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
}

.dish-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
  box-shadow: 2px 2px 0 var(--yolk);
  flex: 0 0 auto;
}

@media (max-width: 520px) {
  .menu-item.has-photo,
  .addon-row.has-photo {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
  }

  .dish-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .menu-item .who strong,
  .addon-row .who strong {
    font-size: 0.92rem;
  }
}

label.field input[readonly] {
  background: #f3e8d4;
  color: var(--cocoa);
  cursor: default;
}

.inline-note.is-error {
  border-color: rgba(160, 40, 40, 0.35);
  background: #fde8e6;
  color: #5c1a14;
}

/* Sandwich customizations (gluten-free / no cheese) */
.menu-item {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.menu-item.has-photo {
  grid-template-columns: 56px minmax(0, 1fr) auto;
}

.menu-item .sandwich-mods {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  margin-top: 4px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(36, 23, 15, 0.04);
  border: 1px dashed var(--line);
}

.mods-caption {
  margin: 0 0 2px;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.menu-item .sandwich-mods[hidden] {
  display: none !important;
}

.mod-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.mod-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1 1 auto;
}

.mod-label strong {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink);
}

.mod-label span {
  font-size: 0.72rem;
  color: var(--muted);
}

.stepper-sm button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 1rem;
}

.stepper-sm input {
  width: 48px;
  padding: 4px 2px;
  font-size: 0.9rem;
}

.line.line-mod .lbl,
.invoice tr.line-mod td {
  color: var(--muted);
  font-size: 0.88rem;
  padding-left: 12px;
}

@media (max-width: 520px) {
  .menu-item.has-photo {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }

  .mod-row {
    gap: 6px;
  }
}
