#feed-scroll {
  padding-bottom: 0;
  background: var(--svc-color-canvas);
  overscroll-behavior-y: none;
}

#feed-scroll > .order-overview {
  min-height: 100%;
  background: var(--svc-color-canvas);
}

.order-overview {
  box-sizing: border-box;
  min-height: 100%;
  padding: 0 var(--app-page-padding) 28px;
  background: var(--svc-color-canvas);
  color: var(--svc-color-text);
  font-family: var(--svc-font-family);
}

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

.order-bulk-mode {
  flex: 0 0 auto;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: var(--svc-color-operational-fill);
  color: var(--neutral-950);
  cursor: pointer;
  font: 500 16px/1 "Inter Display", Inter, sans-serif;
}

.order-bulk-mode:active {
  background: var(--svc-color-operational-fill-muted);
}

.order-bulk-mode-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.order-overview-filters {
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.order-overview-filters::-webkit-scrollbar {
  display: none;
}

.order-overview-filter-row {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  margin-inline: calc(-1 * var(--app-page-padding));
  padding: 20px var(--app-page-padding);
  border-bottom: 1px solid var(--svc-color-operational-divider-soft);
  background: var(--svc-color-operational-surface);
}

.order-overview-filter-row:has(+ .order-bulk-bar) {
  margin-bottom: 30px;
}

.order-overview-search {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.order-overview-search svg {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--neutral-400);
  stroke-width: 2;
  stroke-linecap: round;
  pointer-events: none;
}

.order-overview-search input {
  width: 100%;
  height: 56px;
  padding: 0 88px 0 46px;
  border: 1px solid var(--menu-stroke);
  border-radius: 14px;
  outline: 0;
  appearance: none;
  background: var(--app-surface);
  box-shadow: none;
  color: var(--neutral-950);
  font: 500 16px/1 "Inter Display", Inter, sans-serif;
}

.order-overview-search input::-webkit-search-cancel-button {
  display: none;
}

.order-overview-search button {
  position: absolute;
  top: 50%;
  right: 8px;
  height: 40px;
  padding: 0 12px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--neutral-600);
  cursor: pointer;
  font: 500 15px/1 "Inter Display", Inter, sans-serif;
}

.order-bulk-bar {
  position: fixed;
  right: var(--app-page-padding);
  bottom: 20px;
  left: calc(112px + var(--app-page-padding));
  z-index: 24;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  margin: 0;
  padding: 10px 10px 10px 24px;
  border: 0;
  border-radius: 18px;
  background: var(--neutral-950);
  box-shadow: var(--svc-shadow-floating-bar);
  color: var(--svc-color-inverse-muted);
  font-size: 16px;
  font-weight: 500;
  animation: order-bulk-bar-in 180ms cubic-bezier(.22, 1, .36, 1) both;
  transform-origin: 50% 100%;
  will-change: transform, opacity, filter;
}

.order-bulk-bar.is-exiting {
  pointer-events: none;
  animation: order-bulk-bar-out 140ms cubic-bezier(.4, 0, 1, 1) both;
}

@keyframes order-bulk-bar-in {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes order-bulk-bar-out {
  from {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(2px);
  }
}

.order-overview:has(.order-bulk-bar) {
  padding-bottom: 120px;
}

.order-bulk-bar strong {
  color: var(--svc-color-operational-surface);
  font-weight: 500;
}

.order-bulk-bar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-bulk-bar button {
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: var(--svc-color-operational-surface);
  color: var(--neutral-950);
  cursor: pointer;
  font: 500 16px/1 "Inter Display", Inter, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  .order-bulk-bar,
  .order-bulk-bar.is-exiting {
    animation-duration: 1ms;
    filter: none;
  }
}

.order-bulk-bar .order-bulk-clear {
  background: var(--svc-color-inverse-fill);
  color: var(--svc-color-operational-surface);
}

.order-overview-filter {
  position: relative;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 9999px;
  background: var(--svc-color-operational-fill);
  color: var(--svc-color-operational-text-strong);
  cursor: pointer;
  font: 500 16px/1 "Inter Display", Inter, sans-serif;
  white-space: nowrap;
}

.order-overview-filter-count {
  margin-left: 7px;
  opacity: .55;
}

.order-overview-filter-unread {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--svc-color-operational-brand);
  box-shadow: 0 0 0 4px var(--svc-color-operational-surface);
}

.order-overview-filter.is-active {
  background: var(--neutral-950);
  color: var(--svc-color-operational-surface);
}

.order-overview-section + .order-overview-section {
  margin-top: 34px;
}

.order-overview-list {
  display: grid;
  gap: 12px;
}

.order-overview-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 208px;
  align-items: stretch;
  min-height: 156px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--svc-color-operational-surface);
  transform-origin: center;
  transition:
    transform .12s cubic-bezier(.2, .8, .2, 1),
    border-color .14s ease,
    background-color .14s ease,
    box-shadow .14s ease;
}

.order-overview-row.is-cancelled {
  border-color: var(--svc-color-operational-danger);
  background: var(--svc-color-operational-danger);
}

.order-overview-row.is-new {
  background: var(--svc-color-operational-surface);
  box-shadow: none;
}

.order-overview-row.is-prep {
  grid-template-columns: minmax(0, 1fr) 208px;
  background: var(--svc-color-operational-surface);
  box-shadow: none;
}

.order-overview-row.is-ready {
  background: var(--svc-color-operational-surface);
  box-shadow: none;
}

.order-overview-row.is-bulk-selected,
.order-overview-row.is-bulk-selected.is-new,
.order-overview-row.is-bulk-selected.is-prep,
.order-overview-row.is-bulk-selected.is-ready {
  background: var(--svc-color-operational-selected);
  box-shadow: inset 0 0 0 2px var(--blue-600);
}

.order-overview-details {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(120px, .55fr) auto;
  align-items: center;
  gap: 28px;
  min-width: 0;
  padding: 26px 48px 26px 30px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.order-overview-identity,
.order-overview-fulfilment,
.order-overview-timing {
  display: grid;
  min-width: 0;
}

.order-overview-identity {
  align-content: center;
}

.order-overview-identity strong {
  overflow: hidden;
  color: var(--neutral-950);
  font-size: var(--svc-type-section-title-size);
  font-weight: var(--svc-type-section-title-weight);
  line-height: var(--svc-type-section-title-line-height);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-overview-number,
.order-overview-fulfilment span {
  margin-top: var(--space-2);
  color: var(--svc-color-text-secondary);
  font-size: var(--svc-font-size-16);
  font-weight: var(--svc-font-weight-regular);
  line-height: 22px;
}

.order-overview-fulfilment {
  justify-items: start;
  align-content: center;
  white-space: nowrap;
}

.order-overview-fulfilment strong {
  color: var(--svc-color-text);
  font-size: 17px;
  font-weight: var(--svc-font-weight-medium);
  line-height: 24px;
}

.order-overview-timing {
  justify-items: start;
  align-content: center;
  text-align: left;
  white-space: nowrap;
}

.order-overview-timing strong {
  color: var(--svc-color-text);
  font-size: 17px;
  font-weight: var(--svc-font-weight-medium);
  line-height: 24px;
}

.order-overview-timing span {
  margin-top: var(--space-2);
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--svc-color-text-secondary);
  font-size: var(--svc-font-size-16);
  font-weight: var(--svc-font-weight-regular);
  line-height: 22px;
}

.order-overview-timing span.is-overdue {
  color: var(--svc-color-danger);
  font-weight: var(--svc-font-weight-medium);
}

.order-overview-row.is-cancelled .order-overview-action {
  background: var(--svc-color-operational-surface);
  color: var(--svc-color-operational-danger);
}

.order-overview-row.is-cancelled .order-overview-details {
  padding-left: 30px;
}

.order-overview-row.is-cancelled .order-overview-identity strong {
  color: var(--svc-color-operational-surface);
}

.order-overview-row.is-cancelled .order-overview-number,
.order-overview-row.is-cancelled .order-overview-fulfilment strong,
.order-overview-row.is-cancelled .order-overview-fulfilment span,
.order-overview-row.is-cancelled .order-overview-timing strong,
.order-overview-row.is-cancelled .order-overview-timing span {
  color: var(--svc-color-inverse-muted);
}

.order-overview-action {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: 10px;
  min-height: 74px;
  margin: 18px 24px 18px 0;
  padding: 0 24px;
  border: 0;
  border-radius: 18px;
  background: var(--svc-color-action-primary);
  color: var(--svc-color-text-inverse);
  cursor: pointer;
  font: var(--svc-font-weight-semibold) var(--svc-font-size-body)/1 var(--svc-font-family);
  text-align: center;
  white-space: nowrap;
}

.order-overview-action svg {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.order-overview-action.is-accept {
  min-height: 64px;
  border-radius: 14px;
  background: var(--svc-color-operational-text);
  font-size: 17px;
  font-weight: 500;
}

.order-overview-action.is-mark-ready {
  min-height: 64px;
  border-radius: 14px;
  background: var(--success-600);
  font-size: 17px;
  font-weight: 500;
}

.order-bulk-check {
  display: grid;
  place-items: center;
  place-self: center;
  box-sizing: border-box !important;
  flex: 0 0 40px !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid var(--svc-color-operational-border-muted);
  border-radius: 8px;
  background: var(--svc-color-operational-surface);
  color: transparent;
  cursor: pointer;
  transition: border-color .12s ease, background-color .12s ease, color .12s ease;
}

.order-bulk-check svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.order-bulk-check.is-selected {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: var(--svc-color-operational-surface);
}

@media (min-width: 921px) {
  .order-overview-row:has(.order-bulk-check) {
    grid-template-columns: minmax(0, 1fr) 170px;
  }
}

.order-overview-row:has(.order-overview-details:active),
.order-overview-row:has(.order-overview-action:active) {
  border-color: var(--svc-color-operational-border-disabled);
  transform: scale(.995);
}

.order-overview-row:has([data-bulk-order]:active) {
  transform: none;
}

.order-overview-details:active,
.order-overview-action:active {
  scale: 1 !important;
}

@media (prefers-reduced-motion: reduce) {
  .order-overview-row {
    transition: border-color .14s ease, background-color .14s ease, box-shadow .14s ease;
  }

  .order-overview-row:has(.order-overview-details:active),
  .order-overview-row:has(.order-overview-action:active) {
    transform: none;
  }
}

.order-overview-details:focus-visible,
.order-overview-action:focus-visible,
.order-overview-filter:focus-visible,
.order-bulk-mode:focus-visible,
.order-bulk-check:focus-visible,
.order-bulk-bar button:focus-visible {
  outline: 3px solid var(--svc-color-operational-focus);
  outline-offset: -3px;
}

.order-overview-empty {
  display: grid;
  min-height: calc(100dvh - 236px);
  place-content: center;
  justify-items: center;
  gap: var(--space-2);
  padding: var(--space-8);
  color: var(--svc-color-text-muted);
  text-align: center;
}

.order-overview-empty-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-2);
  background: currentColor;
  -webkit-mask: url("./assets/empty-state-dashed.svg") center/contain no-repeat;
  mask: url("./assets/empty-state-dashed.svg") center/contain no-repeat;
}

.order-overview-empty h2 {
  margin: var(--space-2) 0 0;
  color: var(--svc-color-text-muted);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 26px;
}

.order-overview-empty p {
  max-width: 280px;
  margin: 0;
  color: var(--svc-color-text-muted);
  font-size: 16px;
  line-height: 22px;
}

.sous-lite-modal-layer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 99999;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  contain: layout paint;
  isolation: isolate;
  background: var(--svc-color-overlay);
  backdrop-filter: blur(2px);
}

.sous-lite-modal-layer.is-entering {
  animation: order-sheet-backdrop-in .36s ease-out both;
}

.sous-lite-modal-layer.is-closing {
  pointer-events: none;
  animation: order-sheet-backdrop-out .34s ease-in-out both;
}

.tablet-preview > .sous-lite-modal-layer {
  background: var(--svc-color-overlay) !important;
}

.sous-lite-modal-layer[hidden],
.sous-lite-toast[hidden] {
  display: none;
}

.order-cancel-confirmation-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 1;
  background: var(--svc-color-scrim-soft);
  backdrop-filter: blur(1.5px);
}

.order-cancel-confirmation-layer.is-entering {
  animation: order-confirm-layer-in .26s ease-out both;
}

.order-cancel-confirmation-layer.is-closing {
  pointer-events: none;
  animation: order-confirm-layer-out .2s ease-in both;
}

.order-cancel-dialog {
  width: min(500px, calc(100% - 48px));
  margin: auto;
  padding: 28px;
  border-radius: 24px;
  background: var(--svc-color-operational-surface);
  box-shadow: var(--svc-shadow-dialog);
  font-family: "Inter Display", Inter, sans-serif;
}

.order-cancel-confirmation-layer.is-entering .order-cancel-dialog {
  animation: order-confirm-in .28s cubic-bezier(.16, 1, .3, 1) both;
}

.order-cancel-confirmation-layer.is-closing .order-cancel-dialog {
  animation: order-confirm-out .2s ease-in both;
}

.order-cancel-dialog h2 {
  margin: 0;
  color: var(--neutral-950);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.order-cancel-dialog p {
  margin: 10px 0 26px;
  color: var(--svc-color-operational-text-support);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.order-cancel-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order-cancel-dialog-actions button {
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  font: 600 16px/1 "Inter Display", Inter, sans-serif;
  cursor: pointer;
}

.order-cancel-dialog-back {
  background: var(--svc-color-operational-fill-overlay);
  color: var(--neutral-950);
}

.order-cancel-dialog-confirm {
  background: var(--error-700);
  color: var(--svc-color-operational-surface);
}

.order-cancel-dialog-actions button:active {
  scale: .985;
}

@keyframes order-confirm-in {
  from { transform: translateY(12px) scale(.97); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes order-confirm-out {
  from { transform: scale(1); opacity: 1; }
  to { transform: translateY(8px) scale(.98); opacity: 0; }
}

@keyframes order-confirm-layer-in {
  from { opacity: 0; backdrop-filter: blur(0); }
  to { opacity: 1; backdrop-filter: blur(1.5px); }
}

@keyframes order-confirm-layer-out {
  from { opacity: 1; backdrop-filter: blur(1.5px); }
  to { opacity: 0; backdrop-filter: blur(0); }
}

.sous-lite-modal {
  position: relative;
  inset: auto;
  z-index: auto;
  display: flex;
  flex: 0 0 min(560px, 96vw);
  flex-direction: column;
  place-items: initial;
  width: min(560px, 96vw);
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  background: var(--svc-color-operational-surface);
  box-shadow: var(--svc-shadow-side-sheet);
  font-family: "Inter Display", Inter, sans-serif;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
  animation: none;
}

.sous-lite-modal-layer.is-entering > .sous-lite-modal {
  animation: order-sheet-slide-in .46s cubic-bezier(.16, 1, .3, 1) both;
}

.sous-lite-modal-layer.is-sheet-forward > .sous-lite-modal .sous-lite-modal-head > *,
.sous-lite-modal-layer.is-sheet-forward > .sous-lite-modal .sous-lite-modal-body > *,
.sous-lite-modal-layer.is-sheet-forward > .sous-lite-modal .order-sheet-footer > *,
.sous-lite-modal-layer.is-sheet-forward > .sous-lite-modal .order-sheet-critical-banner > * {
  animation: order-sheet-content-forward .3s cubic-bezier(.16, 1, .3, 1) both;
}

.sous-lite-modal-layer.is-sheet-back > .sous-lite-modal .sous-lite-modal-head > *,
.sous-lite-modal-layer.is-sheet-back > .sous-lite-modal .sous-lite-modal-body > *,
.sous-lite-modal-layer.is-sheet-back > .sous-lite-modal .order-sheet-footer > *,
.sous-lite-modal-layer.is-sheet-back > .sous-lite-modal .order-sheet-critical-banner > * {
  animation: order-sheet-content-back .3s cubic-bezier(.16, 1, .3, 1) both;
}

.sous-lite-modal-layer.is-closing > .sous-lite-modal {
  animation: order-sheet-slide-out .36s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes order-sheet-slide-in {
  from { transform: translate3d(100%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@keyframes order-sheet-slide-out {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(100%, 0, 0); }
}

@keyframes order-sheet-content-forward {
  from { transform: translate3d(18px, 0, 0); opacity: 0; filter: blur(3px); }
  to { transform: translate3d(0, 0, 0); opacity: 1; filter: blur(0); }
}

@keyframes order-sheet-content-back {
  from { transform: translate3d(-18px, 0, 0); opacity: 0; filter: blur(3px); }
  to { transform: translate3d(0, 0, 0); opacity: 1; filter: blur(0); }
}

@keyframes order-sheet-backdrop-in {
  from { background-color: var(--svc-color-scrim-clear); backdrop-filter: blur(0); }
  to { background-color: var(--svc-color-scrim); backdrop-filter: blur(2px); }
}

@keyframes order-sheet-backdrop-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sous-lite-modal-layer.is-entering,
  .sous-lite-modal-layer.is-sheet-forward,
  .sous-lite-modal-layer.is-sheet-back,
  .sous-lite-modal-layer.is-closing,
  .sous-lite-modal-layer.is-entering > .sous-lite-modal,
  .sous-lite-modal-layer.is-closing > .sous-lite-modal,
  .sous-lite-modal-layer.is-sheet-forward > .sous-lite-modal .sous-lite-modal-head > *,
  .sous-lite-modal-layer.is-sheet-forward > .sous-lite-modal .sous-lite-modal-body > *,
  .sous-lite-modal-layer.is-sheet-forward > .sous-lite-modal .order-sheet-footer > *,
  .sous-lite-modal-layer.is-sheet-forward > .sous-lite-modal .order-sheet-critical-banner > *,
  .sous-lite-modal-layer.is-sheet-back > .sous-lite-modal .sous-lite-modal-head > *,
  .sous-lite-modal-layer.is-sheet-back > .sous-lite-modal .sous-lite-modal-body > *,
  .sous-lite-modal-layer.is-sheet-back > .sous-lite-modal .order-sheet-footer > *,
  .sous-lite-modal-layer.is-sheet-back > .sous-lite-modal .order-sheet-critical-banner > *,
  .order-cancel-confirmation-layer.is-entering,
  .order-cancel-confirmation-layer.is-closing,
  .order-cancel-confirmation-layer.is-entering .order-cancel-dialog,
  .order-cancel-confirmation-layer.is-closing .order-cancel-dialog,
  .sous-lite-modal-head > .order-sheet-heading,
  .sous-lite-modal-body > * {
    animation: none;
  }
}

.sous-lite-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid var(--svc-color-operational-divider);
}

.order-sheet-heading {
  display: grid;
  flex: 1;
  gap: 10px;
  min-width: 0;
}

.order-sheet-title-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
}

.sous-lite-modal-head h2 {
  margin: 0;
  color: var(--neutral-950);
  font-size: var(--svc-type-page-title-size);
  font-weight: var(--svc-type-page-title-weight);
  letter-spacing: var(--svc-type-page-title-tracking);
  line-height: var(--svc-type-page-title-line-height);
}

.order-sheet-critical-banner {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 18px 28px;
  background: var(--error-700);
  color: var(--svc-color-operational-surface);
}

.order-sheet-critical-banner strong,
.order-sheet-critical-banner span {
  color: var(--svc-color-operational-surface);
  font-size: 16px;
  line-height: 1.4;
}

.order-sheet-critical-banner strong {
  font-weight: 600;
}

.order-sheet-critical-banner span {
  font-weight: 500;
}

.order-sheet-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.order-sheet-eyebrow {
  display: block;
  color: var(--svc-color-text-secondary);
  font-family: var(--svc-font-family);
  font-size: var(--svc-type-data-size);
  font-weight: var(--svc-type-data-weight);
  line-height: var(--svc-type-data-line-height);
  letter-spacing: -.01em;
}

.order-sheet-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 9px;
  background: var(--neutral-100);
  color: var(--neutral-700);
  font-size: var(--svc-type-status-size);
  font-weight: var(--svc-type-status-weight);
  line-height: var(--svc-type-status-line-height);
}

.order-sheet-status.is-completed {
  margin-left: auto;
  background: var(--success-100);
  color: var(--success-700);
}

.order-sheet-print-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: max-content;
  color: var(--svc-color-order-detail-muted);
  font-size: var(--svc-type-control-size);
  font-weight: var(--svc-type-control-weight);
  line-height: var(--svc-type-control-line-height);
}

.order-sheet-print-meta svg {
  width: 13px;
  height: 13px;
  flex: none;
}

.order-sheet-print-meta.is-printed {
  color: var(--success-700);
}

.order-sheet-head-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

.sous-lite-modal-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--svc-color-operational-control-fill);
  cursor: pointer;
}

.sous-lite-modal-close svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--neutral-950);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.sous-lite-modal-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px;
}

.order-sheet-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  background: transparent;
}

.order-sheet-summary > div {
  display: grid;
  gap: 7px;
  padding: 17px 18px;
  border: 0;
  border-radius: 14px;
  background: var(--svc-color-operational-fill-subtle);
}

.order-sheet-summary-meta {
  margin-top: 28px;
}

.order-sheet-summary span,
.order-sheet-section-title > span {
  color: var(--svc-color-operational-text-tertiary);
  font-size: 16px;
  font-weight: 500;
}

.order-sheet-summary strong {
  color: var(--neutral-950);
  font-size: 16px;
  font-weight: 600;
}

.order-sheet-summary > div:not(.order-sheet-summary-priority) strong {
  font-family: "Inter Display", Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.order-sheet-summary > .order-sheet-summary-priority {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.order-sheet-summary-priority span {
  color: var(--svc-color-order-detail-muted);
  font-size: 16px;
  font-weight: 500;
}

.order-sheet-summary-priority strong {
  font-size: 26px;
  letter-spacing: -.02em;
}

.order-sheet-summary-priority.is-urgent {
  background: var(--error-700);
}

.order-sheet-summary-priority.is-urgent span,
.order-sheet-summary-priority.is-urgent strong {
  color: var(--svc-color-operational-surface);
}

.order-sheet-summary-priority.is-cancelled {
  background: var(--svc-color-operational-fill);
}

.order-sheet-summary-priority.is-cancelled span,
.order-sheet-summary-priority.is-cancelled strong {
  color: var(--svc-color-operational-text-tertiary);
}

.order-sheet-location {
  display: block;
  margin-top: 24px;
  color: var(--neutral-950);
}

.order-sheet-handoff .order-sheet-location {
  margin-top: 0;
}

.order-sheet-location > div,
.order-sheet-location-link {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-width: 0;
  gap: 20px;
  padding: 12px 0;
}

.order-sheet-location-link {
  grid-template-columns: 132px minmax(0, 1fr) 16px;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.order-sheet-location-link svg {
  width: 16px;
  height: 16px;
  align-self: center;
  color: var(--svc-color-operational-text-tertiary);
}

.order-sheet-location span {
  color: var(--svc-color-operational-text-tertiary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.order-sheet-location strong {
  color: var(--neutral-950);
  font-size: 16px;
  font-family: "Inter Display", Inter, sans-serif;
  font-weight: 500;
  line-height: 1.35;
}

.order-sheet-location-link:active {
  opacity: 0.72;
}

.order-sheet-courier {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  margin-top: 0;
  padding: 12px 0;
  border: 0;
  background: transparent;
}

.order-sheet-courier-label {
  display: flex;
  align-items: flex-start;
  align-self: start;
  color: var(--svc-color-operational-text-tertiary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.order-sheet-courier-label svg {
  display: none;
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--svc-color-operational-slate);
}

.order-sheet-courier-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.order-sheet-courier-copy strong {
  color: var(--neutral-950);
  font-family: "Inter Display", Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.order-sheet-courier-copy span {
  color: var(--svc-color-order-detail-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.order-sheet-courier.is-success {
  background: transparent;
}

.order-sheet-courier.is-success .order-sheet-courier-copy strong {
  color: var(--success-700);
}

.order-sheet-courier.is-warning {
  background: transparent;
}

.order-sheet-courier.is-warning .order-sheet-courier-copy strong {
  color: var(--svc-color-operational-warning-strong);
}

.order-sheet-courier.is-error {
  background: transparent;
}

.order-sheet-courier.is-error .order-sheet-courier-copy strong {
  color: var(--svc-color-operational-danger-strong);
}

.order-sheet-section {
  padding-top: 32px;
}

.order-sheet-section + .order-sheet-section {
  margin-top: 12px;
  border-top: 0;
}

.order-sheet-section h3 {
  margin: 0 0 var(--space-2);
  color: var(--neutral-950);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.order-sheet-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.order-sheet-section-title > span {
  font-size: 16px;
}

.order-sheet-note {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--svc-color-operational-fill-subtle);
}

.order-sheet-note span {
  color: var(--svc-color-order-detail-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.order-sheet-note p {
  margin: 0;
  color: var(--neutral-950);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.order-sheet-items {
  display: grid;
}

.order-sheet-content-divider {
  height: 1px;
  margin: 24px -28px 0;
  background: var(--svc-color-operational-divider);
}

.order-sheet-content-divider + .order-sheet-section {
  padding-top: 28px;
}

.order-sheet-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  column-gap: 16px;
  row-gap: 8px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--svc-color-operational-divider-subtle);
}

.order-sheet-quantity {
  align-self: center;
}

.order-sheet-item-name,
.order-sheet-item-price {
  color: var(--neutral-950);
  font-size: var(--svc-type-data-size);
  font-weight: var(--svc-type-data-weight);
  line-height: var(--svc-type-data-line-height);
}

.order-sheet-item-options {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: 2px;
  color: var(--svc-color-operational-text-strong);
  font-size: var(--svc-type-control-size);
  font-weight: var(--svc-type-control-weight);
  line-height: var(--svc-type-control-line-height);
}

.order-sheet-item-note {
  grid-column: 2 / -1;
  margin-top: 6px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--svc-color-operational-fill-subtle);
}

.order-sheet-item-note p {
  margin: 0;
  color: var(--neutral-950);
  font-size: var(--svc-type-control-size);
  font-weight: var(--svc-type-control-weight);
  line-height: var(--svc-type-control-line-height);
}

.order-sheet-facts {
  margin: 0;
}

.order-sheet-facts > div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  padding: 12px 0;
}

.order-sheet-facts dt,
.order-sheet-facts dd {
  margin: 0;
  font-family: "Inter Display", Inter, sans-serif;
  font-size: var(--svc-type-control-size);
  font-weight: var(--svc-type-control-weight);
  line-height: var(--svc-type-control-line-height);
}

.order-sheet-facts dt {
  color: var(--svc-color-operational-text-tertiary);
}

.order-sheet-facts dd {
  color: var(--neutral-950);
}

.order-sheet-pricing {
  margin-top: 14px;
  border-top: 1px solid var(--svc-color-operational-divider-subtle);
}

.order-sheet-pricing-disclosure {
  border-bottom: 1px solid var(--svc-color-operational-divider-subtle);
}

.order-sheet-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: var(--svc-color-operational-text-tertiary);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--svc-type-control-size);
  font-weight: var(--svc-type-control-weight);
  line-height: var(--svc-type-control-line-height);
  text-align: left;
}

.order-sheet-pricing-toggle:active {
  transform: none !important;
  scale: 1 !important;
}

.order-sheet-pricing-toggle svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1);
}

.order-sheet-pricing-disclosure.is-open .order-sheet-pricing-toggle svg {
  transform: rotate(180deg);
}

.order-sheet-pricing-reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  filter: blur(3px);
  transform: translateY(-4px);
  transition:
    grid-template-rows 300ms cubic-bezier(.22, 1, .36, 1),
    opacity 180ms ease,
    filter 220ms ease,
    transform 300ms cubic-bezier(.22, 1, .36, 1);
}

.order-sheet-pricing-reveal-inner {
  min-height: 0;
  overflow: hidden;
}

.order-sheet-pricing-disclosure.is-open .order-sheet-pricing-reveal {
  grid-template-rows: 1fr;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.order-sheet-pricing-details {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding-top: 2px;
}

.order-sheet-pricing-details > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.order-sheet-pricing-details dt,
.order-sheet-pricing-details dd {
  margin: 0;
  color: var(--svc-color-operational-text-tertiary);
  font-size: var(--svc-type-status-size);
  font-weight: var(--svc-type-status-weight);
  line-height: var(--svc-type-status-line-height);
}

.order-sheet-pricing-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 2px;
  color: var(--neutral-950);
}

.order-sheet-pricing-total span,
.order-sheet-pricing-total strong {
  font-size: var(--svc-type-metric-size);
  font-weight: var(--svc-type-metric-weight);
  line-height: var(--svc-type-metric-line-height);
}

.order-sheet-reprint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid var(--svc-color-border-strong);
  border-radius: 14px;
  background: var(--svc-color-surface);
  color: var(--svc-color-text);
  cursor: pointer;
  font: 500 15px/1 "Inter Display", Inter, sans-serif;
}

.order-sheet-reprint svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.order-sheet-reprint:active {
  transform: scale(.98);
}

.order-sheet-danger-action {
  margin-top: 16px;
}

.order-sheet-danger-action button {
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: var(--svc-color-operational-danger-surface-strong);
  color: var(--svc-color-operational-danger);
  cursor: pointer;
  font: 600 15px/1 "Inter Display", Inter, sans-serif;
}

.order-sheet-danger-action button:active {
  background: var(--svc-color-operational-danger-surface-hover);
}

.order-sheet-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(136px, .8fr) minmax(190px, 1.2fr);
  gap: 12px;
  padding: 18px 28px 24px;
  border-top: 1px solid var(--svc-color-operational-divider);
  background: var(--svc-color-inverse-96);
}

.order-sheet-footer.is-manage {
  grid-template-columns: 1fr;
}

.order-sheet-footer-secondary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order-sheet-footer::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 30px;
  background: linear-gradient(to bottom, var(--svc-color-inverse-clear), var(--svc-color-inverse-94));
  pointer-events: none;
  opacity: 1;
  transition: opacity .18s ease;
}

.sous-lite-modal.is-scroll-end .order-sheet-footer::before {
  opacity: 0;
}

.order-sheet-secondary,
.order-sheet-primary {
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font: 600 15px/1 "Inter Display", Inter, sans-serif;
}

.order-sheet-secondary {
  border: 1px solid var(--svc-color-border-strong);
  background: var(--svc-color-surface);
  color: var(--neutral-950);
}

.order-sheet-secondary:hover,
.order-sheet-secondary:focus-visible,
.order-sheet-secondary:active {
  color: var(--neutral-950);
}

.order-sheet-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--neutral-950);
  color: var(--svc-color-operational-surface);
}

.order-sheet-primary.is-mark-ready {
  width: 100%;
  background: var(--success-600);
}

.order-sheet-primary:disabled {
  background: var(--svc-color-operational-fill-disabled);
  color: var(--svc-color-operational-text-disabled);
  cursor: default;
}

.order-status-body {
  padding: 32px 28px 38px;
}

.order-status-options {
  display: grid;
  gap: 12px;
}

.order-status-choice {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid var(--svc-color-operational-divider);
  border-radius: 14px;
  background: var(--svc-color-operational-surface);
  color: var(--neutral-950);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color .12s ease, background-color .1s ease;
}

.order-status-choice:active {
  scale: 1 !important;
  background: var(--svc-color-operational-fill);
}

.order-status-choice.is-selected {
  border-color: var(--neutral-950);
  box-shadow: inset 0 0 0 1px var(--neutral-950);
  background: var(--svc-color-operational-fill-subtle);
}

.order-status-choice.is-selected:active {
  background: var(--svc-color-operational-fill-hover);
}

.order-status-choice.is-danger {
  border-color: var(--error-600);
  background: var(--svc-color-operational-surface);
  color: var(--error-600);
}

.order-status-choice.is-danger.is-selected {
  border-color: var(--error-600);
  box-shadow: inset 0 0 0 1px var(--error-600);
  background: var(--svc-color-operational-surface);
}

.order-status-choice.is-danger:active,
.order-status-choice.is-danger.is-selected:active {
  background: var(--svc-color-operational-surface);
}

.order-status-choice.is-danger .order-status-radio,
.order-status-choice.is-danger.is-selected .order-status-radio {
  border-color: var(--error-600);
}

.order-status-choice.is-danger .order-status-radio span {
  background: var(--error-600);
}

.order-status-radio {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--svc-color-operational-border-muted);
  border-radius: 50%;
}

.order-status-radio span {
  width: 10px;
  height: 10px;
  transform: scale(0);
  border-radius: 50%;
  background: var(--neutral-950);
  transition: transform .14s cubic-bezier(.22, 1, .36, 1);
}

.order-status-choice.is-selected .order-status-radio {
  border-color: var(--neutral-950);
}

.order-status-choice.is-selected .order-status-radio span {
  transform: scale(1);
}

.order-status-choice-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.order-status-choice-copy strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.order-status-current {
  padding: 6px 9px;
  border-radius: 9999px;
  background: var(--svc-color-operational-fill-muted);
  color: var(--svc-color-operational-text-disabled-strong);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.order-time-sheet-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

.order-time-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.order-time-heading {
  gap: 8px;
}

.order-time-back {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--svc-color-operational-control-fill);
  color: var(--neutral-950);
  cursor: pointer;
}

.order-time-back svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-time-back:active,
.order-time-stepper-control button:active {
  scale: .98;
}

.order-time-body {
  display: flex;
  flex-direction: column;
  gap: 52px;
  padding-top: 42px;
  padding-bottom: 44px;
}

.order-time-intro {
  display: grid;
  gap: 12px;
}

.order-time-intro > span,
.order-time-stepper-label {
  color: var(--svc-color-order-detail-muted);
  font-size: 16px;
  font-weight: 500;
}

.order-time-intro h3 {
  margin: 0;
  color: var(--neutral-950);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.order-time-intro p {
  max-width: 430px;
  margin: 0;
  color: var(--svc-color-order-detail-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.order-time-stepper {
  display: grid;
  gap: 22px;
  padding: 6px 0 10px;
  border-radius: 0;
  background: transparent;
}

.order-time-stepper-control {
  display: inline-grid;
  grid-template-columns: 56px minmax(180px, auto) 56px;
  align-items: center;
  gap: 18px;
  width: max-content;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.order-time-stepper-control button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 15px;
  background: var(--svc-color-operational-fill);
  color: var(--svc-color-operational-text-emphasis);
  box-shadow: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease, scale .12s ease;
}

.order-time-stepper-control button:active:not(:disabled) {
  background: var(--svc-color-operational-fill-disabled-strong);
  box-shadow: none;
}

.order-time-stepper-control button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
}

.order-time-stepper-control button:focus-visible {
  outline: 3px solid var(--svc-color-operational-focus-strong);
  outline-offset: 2px;
}

.order-time-stepper-control button:disabled {
  background: var(--svc-color-operational-canvas);
  color: var(--svc-color-operational-icon-disabled);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
  pointer-events: none;
}

.order-time-stepper-control output {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  height: 56px;
  padding: 0 10px;
  color: var(--neutral-950);
}

.order-time-odometer {
  position: relative;
  display: block;
  width: 76px;
  height: 52px;
  overflow: hidden;
}

.order-time-odometer-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  white-space: nowrap;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 52px;
}

.order-time-unit {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 52px;
}

@keyframes order-odometer-in-up {
  from { transform: translateY(100%); opacity: .25; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes order-odometer-out-up {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-100%); opacity: .25; }
}

@keyframes order-odometer-in-down {
  from { transform: translateY(-100%); opacity: .25; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes order-odometer-out-down {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(100%); opacity: .25; }
}

.order-time-odometer-value.is-entering.is-up { animation: order-odometer-in-up .2s cubic-bezier(.2,.8,.2,1) both; }
.order-time-odometer-value.is-leaving.is-up { animation: order-odometer-out-up .2s cubic-bezier(.2,.8,.2,1) both; }
.order-time-odometer-value.is-entering.is-down { animation: order-odometer-in-down .2s cubic-bezier(.2,.8,.2,1) both; }
.order-time-odometer-value.is-leaving.is-down { animation: order-odometer-out-down .2s cubic-bezier(.2,.8,.2,1) both; }

@media (prefers-reduced-motion: reduce) {
  .order-time-odometer-value {
    animation: none !important;
  }
}

.order-time-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px;
  border-radius: 14px;
  background: var(--svc-color-operational-fill-subtle);
}

.order-time-result span {
  color: var(--svc-color-order-detail-muted);
  font-size: 16px;
  font-weight: 500;
}

.order-time-result strong {
  color: var(--neutral-950);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
}

@media (max-width: 920px) {
  .order-overview-row {
    grid-template-columns: 1fr 176px;
  }

  .order-overview-row.is-prep {
    grid-template-columns: 1fr 176px;
  }

  .order-overview-details {
    grid-template-columns: minmax(170px, 1fr) minmax(108px, .55fr) auto;
    gap: 18px;
    padding-left: 30px;
  }

  .order-overview-action {
    margin-right: 18px;
    padding: 0 16px;
  }

}

@media (max-width: 700px) {
  .order-overview {
    padding: 20px var(--app-page-padding) 28px;
  }

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

  .order-overview-row.is-prep {
    grid-template-columns: 1fr;
  }

  .order-overview-details {
    grid-template-columns: minmax(0, 1fr) minmax(90px, auto) auto;
    gap: 14px;
    padding: 22px;
  }

  .order-overview-number,
  .order-overview-fulfilment span {
    font-size: 15px;
  }

  .order-overview-fulfilment strong,
  .order-overview-timing strong {
    font-size: 16px;
  }

  .order-overview-timing span {
    font-size: 15px;
  }

  .order-overview-action {
    width: auto;
    min-height: 58px;
    margin: 0 16px 16px;
  }

  .sous-lite-modal {
    width: 100%;
    border-radius: 0;
  }

  .sous-lite-modal-head,
  .sous-lite-modal-body {
    padding: 22px;
  }

  .order-sheet-footer {
    padding: 16px 20px 20px;
  }

  .order-sheet-facts > div,
  .order-sheet-location > div,
  .order-sheet-courier {
    grid-template-columns: 112px minmax(0, 1fr);
  }

}

/* A new order interrupts the passive queue until it has explicitly been
   reviewed. A short solid-blue beat repeats with a calm interval so the
   state is unmistakable without becoming a continuous strobe. */
.sous-new-order-takeover {
  position: absolute;
  inset: 0;
  z-index: 100100;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(32px, 7vw, 88px);
  background: var(--blue-600, var(--svc-color-operational-brand));
  color: var(--svc-color-operational-surface);
  outline: none;
  opacity: 0;
  visibility: hidden;
  isolation: isolate;
  transition:
    opacity 220ms cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 220ms;
}

.sous-new-order-takeover[hidden] {
  display: none;
}

.sous-new-order-takeover.is-visible {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  animation: new-order-takeover-flash 2s steps(1, end) infinite;
}

.sous-new-order-takeover.is-leaving {
  opacity: 0;
}

.sous-new-order-takeover-content {
  width: min(720px, 100%);
  text-align: center;
  transform: translateY(18px) scale(.985);
  opacity: 0;
  filter: blur(7px);
  transition:
    transform 420ms cubic-bezier(.16, 1, .3, 1) 80ms,
    opacity 260ms ease 70ms,
    filter 340ms ease 70ms;
}

.sous-new-order-takeover.is-visible .sous-new-order-takeover-content {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: blur(0);
}

.sous-new-order-takeover-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 0;
  border-radius: 10px;
  background: var(--svc-color-inverse-16);
  color: var(--svc-color-inverse-92);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
}

.sous-new-order-takeover h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 22px 0 12px;
  color: var(--svc-color-operational-surface);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
}

.sous-new-order-takeover h2 [data-new-order-count] {
  display: block;
  font-size: clamp(88px, 13vw, 156px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.06em;
}

.sous-new-order-takeover h2 [data-new-order-label] {
  display: block;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
}

.sous-new-order-takeover p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--svc-color-inverse-80);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
}

.sous-new-order-takeover button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(360px, 100%);
  min-height: 68px;
  margin-top: 40px;
  padding: 16px 28px;
  border: 0;
  border-radius: 16px;
  background: var(--svc-color-operational-surface);
  color: var(--blue-600, var(--svc-color-operational-brand));
  font: inherit;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 140ms ease,
    background-color 140ms ease;
}

.sous-new-order-takeover button:active {
  transform: scale(.985);
  background: var(--svc-color-inverse-90);
}

.sous-new-order-takeover button:focus-visible {
  outline: 3px solid var(--svc-color-operational-surface);
  outline-offset: 5px;
}

@keyframes new-order-takeover-flash {
  0%,
  49.999% {
    background-color: var(--blue-600, var(--svc-color-operational-brand));
  }

  50%,
  100% {
    background-color: var(--svc-color-brand-pressed);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sous-new-order-takeover,
  .sous-new-order-takeover-content {
    transition: none;
  }

  .sous-new-order-takeover-glow {
    animation: none;
  }

  .sous-new-order-takeover.is-visible {
    animation: none;
  }
}
