:root {
  --bg: #f6f7f2;
  --paper: #ffffff;
  --ink: #1d2522;
  --muted: #66736d;
  --line: #dfe5dc;
  --primary: #1f8a70;
  --primary-dark: #14624f;
  --accent: #f4b942;
  --rose: #e85d75;
  --blue: #3a6ea5;
  --shadow: 0 18px 50px rgba(31, 49, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

.login-screen {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(246, 247, 242, 0.95), rgba(246, 247, 242, 0.72)),
    url("./assets/bento-menu/karaage-bento.png") center / cover;
}

.login-screen.hidden {
  display: none;
}

.login-card {
  width: min(520px, 100%);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.login-card h1 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.login-card p {
  color: var(--muted);
  line-height: 1.8;
}

.login-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.login-fields {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.app-shell.locked {
  display: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  background: #203a34;
  color: #fff;
  padding: 28px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent);
  color: #203a34;
  font-weight: 900;
  font-size: 24px;
}

.brand h1,
.brand p,
.topbar h2,
.hero-copy h3,
.panel h3 {
  margin: 0;
}

.brand-kicker,
.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-kicker {
  color: #a9c9bd;
}

.nav-tabs {
  display: grid;
  gap: 10px;
}

.nav-tab {
  border: 0;
  border-radius: 8px;
  padding: 14px;
  color: #dcebe5;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.nav-tab.active {
  background: #fff;
  color: #203a34;
}

.nav-tab span {
  display: block;
  font-weight: 800;
}

.nav-tab small {
  color: inherit;
  opacity: 0.7;
}

.sidebar-panel {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.sidebar-panel strong {
  display: block;
  font-size: 32px;
}

.sidebar-panel span {
  color: #bce8d8;
  font-weight: 700;
}

main {
  padding: 28px;
  min-width: 0;
}

.document-page {
  background: #f6f7f2;
}

.document-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 42px 22px 64px;
}

.document-shell h1 {
  margin: 8px 0 18px;
  font-size: clamp(28px, 5vw, 44px);
}

.document-shell h2 {
  margin-top: 28px;
  font-size: 20px;
}

.document-shell p,
.document-shell li {
  line-height: 1.85;
}

.document-shell ul {
  padding-left: 1.2em;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.topbar h2 {
  font-size: clamp(24px, 3vw, 38px);
}

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

.primary-button,
.ghost-button {
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  padding: 0 16px;
  font-weight: 800;
}

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

.primary-button:hover {
  background: var(--primary-dark);
}

.ghost-button {
  color: var(--primary-dark);
  background: #e6f1ed;
}

.small-button {
  min-height: 34px;
  padding: 0 12px;
}

.full {
  width: 100%;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.hero-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
  align-self: center;
}

.hero-copy h3 {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
  margin: 8px 0 14px;
}

.hero-copy p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.hero-band img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.order-layout,
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 20px;
  align-items: start;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  margin-bottom: 20px;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(31, 49, 42, 0.06);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.panel-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-actions {
  margin-top: 12px;
}

.panel-actions select {
  width: min(220px, 100%);
}

.check-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.check-line input {
  width: 18px;
  min-height: 18px;
  padding: 0;
}

.panel h3 {
  font-size: 22px;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 42px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 86px;
  padding: 10px 12px;
  resize: vertical;
}

label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: #43514c;
  font-weight: 700;
}

.notice {
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  background: #fff7df;
  color: #755400;
  font-weight: 700;
}

.notice.closed {
  background: #ffe8ed;
  color: #8a2438;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.menu-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card-body {
  padding: 14px;
}

.menu-card h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.menu-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.menu-card .allergen-note {
  color: #8a2438;
  background: #fff4f5;
  border: 1px solid #f2cfd4;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 13px;
  font-weight: 900;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.qty-control {
  display: grid;
  grid-template-columns: 36px 42px 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control button {
  border: 0;
  height: 36px;
  background: #edf4f0;
  font-weight: 900;
}

.qty-control span {
  text-align: center;
  font-weight: 900;
}

.qty-input-label {
  width: 96px;
  margin: 0;
  gap: 4px;
  font-size: 12px;
}

.qty-input-label input {
  min-height: 36px;
  text-align: center;
  font-weight: 900;
}

.qty-stepper {
  display: grid;
  grid-template-columns: 44px 66px 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.qty-stepper button {
  height: 44px;
  border: 0;
  background: #e6f1ed;
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 900;
}

.qty-stepper button:disabled {
  cursor: default;
  opacity: 0.45;
}

.qty-stepper input {
  min-height: 44px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 0 4px;
  text-align: center;
  font-weight: 900;
}

.checkout-form-title {
  margin: 18px 0 12px;
  color: var(--ink);
  font-weight: 900;
}

.success-notice {
  display: grid;
  gap: 4px;
  margin: 12px 0 4px;
  padding: 14px;
  border: 1px solid #bfe6d4;
  border-radius: 8px;
  background: #edf8f2;
  color: var(--primary-dark);
}

.success-notice strong {
  font-size: 24px;
}

.success-notice span {
  color: #43514c;
  line-height: 1.5;
}

.fixed-payment {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.fixed-payment span {
  color: #43514c;
  font-weight: 700;
}

.fixed-payment strong {
  color: var(--primary-dark);
  font-size: 18px;
}

.safety-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e9b8bf;
  border-radius: 8px;
  background: #fff6f7;
  color: #642233;
  font-weight: 900;
  line-height: 1.6;
}

.safety-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #8a2438;
}

.safety-note {
  margin: 0;
  color: #7d3342;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.order-number {
  font-size: 18px;
}

.check-box {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid #70827a;
  border-radius: 6px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 900;
  cursor: pointer;
}

.check-box.checked {
  border-color: var(--primary);
  background: #e4f5ee;
}

.order-items-list {
  display: grid;
  gap: 8px;
}

.order-item-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.order-item-line span {
  font-weight: 900;
  white-space: nowrap;
}

.order-item-line small {
  flex-basis: 100%;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
  background: #edf1f5;
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

.pill.green {
  background: #e4f5ee;
  color: var(--primary-dark);
}

.cart-lines {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.class-breakdown {
  margin: 14px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.class-breakdown-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.class-rows {
  display: grid;
  gap: 8px;
}

.class-row {
  display: grid;
  grid-template-columns: 1fr 84px 42px;
  gap: 8px;
  align-items: center;
}

.warning {
  color: #8a2438;
  font-weight: 800;
}

.cart-line,
.handoff-item,
.type-row,
.vendor-menu-item {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfcfa;
}

.cart-line {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cart-line strong {
  display: block;
}

.muted,
.fine-print {
  color: var(--muted);
}

.fine-print {
  font-size: 13px;
  line-height: 1.6;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.total-row strong {
  font-size: 28px;
}

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

.wide-form-field {
  grid-column: 1 / -1;
}

.delivery-types,
.vendor-menu-list,
.handoff-list {
  display: grid;
  gap: 10px;
}

.type-row {
  grid-template-columns: 1fr 110px 44px;
  align-items: end;
}

.vendor-menu-item {
  grid-template-columns: 74px minmax(150px, 1.2fr) minmax(96px, 0.8fr) 96px 86px 44px;
  align-items: end;
}

.vendor-menu-thumb {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  align-self: center;
}

.wide-field {
  grid-column: span 2;
}

.file-field input {
  padding-top: 8px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #ffe8ed;
  color: #8a2438;
  font-weight: 900;
}

.table-actions {
  display: flex;
  gap: 6px;
}

.stacked-actions {
  display: grid;
  min-width: 220px;
}

.item-adjust-row {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) 34px 34px;
  gap: 6px;
  align-items: center;
}

.item-adjust-row span {
  color: var(--muted);
  font-size: 13px;
}

.mini-button {
  min-width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: #e6f1ed;
  color: var(--primary-dark);
  font-weight: 900;
  padding: 0 10px;
}

.mini-button.danger {
  background: #ffe8ed;
  color: #8a2438;
}

.danger-button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  background: #ffe8ed;
  color: #8a2438;
  font-weight: 900;
}

.danger-button.compact {
  min-height: 34px;
}

.summary-cards,
.suggestion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.summary-card,
.suggestion-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfa;
}

.summary-card strong {
  display: block;
  font-size: 28px;
}

.readiness-list {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.readiness-item {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fbfcfa;
}

.readiness-item.warning {
  border-color: #f0c36d;
  background: #fff8e8;
}

.readiness-item.ready {
  border-color: #bfe6d4;
  background: #edf8f2;
}

.readiness-item span {
  color: var(--muted);
  line-height: 1.5;
}

.compact-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.invoice-note {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.invoice-note span {
  color: var(--muted);
  line-height: 1.6;
}

.notification-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.notification-item {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.notification-item strong,
.notification-item span,
.notification-item small {
  display: block;
}

.notification-item span,
.notification-item small {
  color: var(--muted);
  line-height: 1.5;
}

.mobile-order-list {
  display: none;
  gap: 10px;
  margin-bottom: 16px;
}

.mobile-order-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.mobile-order-card div:first-child {
  display: grid;
  gap: 3px;
}

.mobile-order-card span,
.mobile-order-card small {
  color: var(--muted);
}

.mobile-order-card p {
  margin: 0;
  font-weight: 800;
  line-height: 1.5;
}

.mobile-order-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.mobile-order-actions a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
}

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

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 13px;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-month-title {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--ink);
  white-space: nowrap;
}

.calendar-weekday {
  padding: 6px 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.day {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  padding: 8px;
}

.day.selected {
  outline: 3px solid rgba(31, 138, 112, 0.28);
  border-color: var(--primary);
  box-shadow: inset 0 0 0 2px rgba(31, 138, 112, 0.18);
}

.day.closed {
  background: #f4f0ef;
  color: #8a2438;
}

.day.open {
  background: #f8fcfa;
}

.day.out-month {
  opacity: 0.48;
}

.day strong,
.day span,
.day small {
  display: block;
}

.day span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.day small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.suggestion-grid article p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  max-width: min(420px, calc(100vw - 44px));
  padding: 14px 16px;
  border-radius: 8px;
  background: #203a34;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(20, 28, 26, 0.58);
}

.confirm-modal[hidden] {
  display: none;
}

.confirm-dialog {
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 22px 60px rgba(18, 27, 24, 0.28);
}

.confirm-dialog h3 {
  margin: 4px 0 14px;
  font-size: 24px;
}

.confirm-summary dl {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.confirm-summary dl div,
.confirm-line,
.confirm-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.confirm-summary dt {
  color: var(--muted);
  font-weight: 800;
}

.confirm-summary dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.confirm-lines {
  display: grid;
  gap: 4px;
}

.confirm-line div {
  display: grid;
  gap: 4px;
}

.confirm-line span {
  color: #8a2438;
  font-size: 13px;
  font-weight: 800;
}

.confirm-line b {
  white-space: nowrap;
}

.confirm-total {
  align-items: baseline;
  border-bottom: 0;
}

.confirm-total strong {
  font-size: 24px;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 1080px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .nav-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-panel {
    display: none;
  }

  .hero-band,
  .order-layout,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .checkout-panel {
    position: static;
  }

  .menu-grid,
  .summary-cards,
  .suggestion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body[data-role="family"] {
    background: #fff;
  }

  main {
    padding: 12px;
  }

  .sidebar {
    padding: 14px 12px;
  }

  body[data-role="family"] .sidebar {
    position: sticky;
    top: 0;
    z-index: 5;
    height: auto;
    padding: 10px 12px;
  }

  body[data-role="family"] .brand {
    margin-bottom: 10px;
  }

  body[data-role="family"] .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 18px;
  }

  body[data-role="family"] .brand h1 {
    font-size: 20px;
  }

  body[data-role="family"] .nav-tabs,
  body[data-role="family"] .topbar {
    display: none;
  }

  .topbar,
  .panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-tabs,
  .menu-grid,
  .summary-cards,
  .suggestion-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 24px;
  }

  body[data-role="family"] .hero-band {
    margin: -2px 0 12px;
    box-shadow: none;
  }

  body[data-role="family"] .hero-copy {
    padding: 20px;
  }

  body[data-role="family"] .hero-copy h3 {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-band img {
    min-height: 220px;
  }

  body[data-role="family"] .hero-band img {
    min-height: 170px;
  }

  body[data-role="family"] .panel {
    padding: 16px;
    box-shadow: none;
  }

  body[data-role="family"] .order-layout {
    gap: 12px;
  }

  body[data-role="family"] .menu-card {
    display: block;
    min-height: 0;
  }

  body[data-role="family"] .menu-card h4 {
    font-size: 19px;
  }

  body[data-role="family"] .card-footer {
    align-items: center;
  }

  body[data-role="family"] .qty-stepper {
    grid-template-columns: 46px 64px 46px;
  }

  body[data-role="family"] .checkout-panel {
    position: static;
    border-radius: 8px;
    border-bottom: 1px solid var(--line);
  }

  body[data-role="family"] .primary-button.full {
    min-height: 54px;
    font-size: 17px;
  }

  .confirm-modal {
    align-items: end;
    padding: 10px;
  }

  .confirm-dialog {
    max-height: calc(100vh - 20px);
    padding: 18px;
  }

  .confirm-actions {
    grid-template-columns: 1fr;
  }

  .type-row,
  .vendor-menu-item {
    grid-template-columns: 1fr;
  }

  .wide-field {
    grid-column: auto;
  }

  .mobile-order-list {
    display: grid;
  }

  #vendorView .table-wrap {
    display: none;
  }

  .compact-summary {
    grid-template-columns: 1fr;
  }
}
