.foodord-table-reservations {
  --foodord-reservation-primary: var(--foodord-primary-color, #ec0051);
  --foodord-reservation-primary-hover: var(--foodord-primary-hover-color, #c80044);
  --foodord-reservation-text: #17212b;
  --foodord-reservation-muted: #6b7280;
  --foodord-reservation-border: #d8dde3;
  --foodord-reservation-surface: #fff;
  --foodord-reservation-soft: #f6f7f9;
  --foodord-reservation-success: #176b4d;
  --foodord-reservation-error: #b42318;
  --foodord-reservation-content-padding: clamp(28px, 4vw, 72px);
  color: var(--foodord-reservation-text);
  font-family: inherit;
  display: block;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  margin-top: 0;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-x: clip;
  position: relative;
  width: 100vw;
}

.foodord-table-reservations *,
.foodord-table-reservations *::before,
.foodord-table-reservations *::after {
  box-sizing: border-box;
}

p:has(> .foodord-table-reservations) {
  margin: 0;
}

.entry-content > p:has(+ .foodord-table-reservations) {
  height: 0;
  margin: 0;
  overflow: hidden;
}

body.foodord-theme-active .site-main:has(.foodord-table-reservations--with-banner) {
  padding-top: 0;
}

body.foodord-theme-active .site-main > article:has(.foodord-table-reservations--with-banner) > .entry-header {
  display: none;
  margin: 0;
  min-height: 0;
  padding: 0;
}

body.foodord-theme-active .site-main > article:has(.foodord-table-reservations--with-banner) > .entry-content {
  margin-top: 0;
  padding-top: 0;
}

.site-main:has(.foodord-table-reservations) {
  padding-bottom: 0;
}

.entry-content > .foodord-table-reservations + code,
.entry-content > .foodord-table-reservations + code + p:empty {
  display: none;
}

.foodord-table-reservations > code {
  background: transparent;
  border: 0;
  color: inherit;
  display: contents;
  font: inherit;
  margin: 0;
  padding: 0;
}

.foodord-table-reservations__form,
.foodord-table-reservations__empty {
  background: var(--foodord-reservation-surface);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 10px;
  padding: 22px;
}

.foodord-table-reservations__layout {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: var(--foodord-reservation-layout-height, clamp(500px, 66vh, 700px));
}

@media (min-width: 721px) {
  .foodord-table-reservations--with-banner .foodord-table-reservations__layout {
    height: var(
      --foodord-reservation-layout-height,
      calc(554.7px + var(--foodord-reservation-content-padding) + var(--foodord-reservation-content-padding))
    );
    min-height: 0;
  }

  .foodord-table-reservations--with-banner .foodord-table-reservations__banner,
  .foodord-table-reservations--with-banner .foodord-table-reservations__content {
    min-height: 0;
  }

  .foodord-table-reservations--with-banner .foodord-table-reservations__content {
    overflow-y: auto;
  }

  .foodord-table-reservations--table-selection-active .foodord-table-reservations__layout {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    min-height: var(--foodord-reservation-layout-height, clamp(500px, 66vh, 700px));
  }

  .foodord-table-reservations--table-selection-active .foodord-table-reservations__banner {
    display: none;
  }

  .foodord-table-reservations--table-selection-active .foodord-table-reservations__content {
    justify-content: flex-start;
    overflow: visible;
    padding: clamp(28px, 3vw, 48px);
    width: 100%;
  }

  .foodord-table-reservations--table-selection-active .foodord-table-reservations__content > * {
    max-width: min(1180px, calc(100vw - 64px));
  }

  .foodord-table-reservations--table-selection-active .foodord-table-reservations__timeline {
    display: none;
  }

  .foodord-table-reservations--table-selection-active .foodord-table-reservations__table-selection {
    margin: 0 auto;
  }

}

.foodord-table-reservations--no-banner .foodord-table-reservations__layout {
  grid-template-columns: minmax(0, 1fr);
}

.foodord-table-reservations--no-banner .foodord-table-reservations__content {
  justify-self: center;
  width: min(100%, 940px);
}

.foodord-table-reservations__banner {
  background: var(--foodord-reservation-soft);
  min-height: 100%;
  overflow: hidden;
}

.foodord-table-reservations__banner img {
  display: block;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  width: 100%;
}

.foodord-table-reservations__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: var(--foodord-reservation-content-padding);
}

.foodord-table-reservations__content > * {
  width: 100%;
}

.foodord-table-reservations--no-banner .foodord-table-reservations__content > * {
  max-width: 760px;
}

@media (min-width: 721px) {
  .foodord-table-reservations--no-banner.foodord-table-reservations--table-selection-active .foodord-table-reservations__content {
    width: 100%;
  }

  .foodord-table-reservations--no-banner.foodord-table-reservations--table-selection-active .foodord-table-reservations__content > * {
    max-width: min(1180px, calc(100vw - 64px));
  }
}

.foodord-table-reservations__content--measure {
  height: auto;
  left: 0;
  min-height: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  visibility: hidden;
  z-index: -1;
}

.foodord-table-reservations__timeline {
  margin: 0 0 14px;
  padding: 0 2px;
}

.foodord-table-reservations__timeline-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.foodord-table-reservations__timeline-item {
  align-items: center;
  color: var(--foodord-reservation-muted);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  line-height: 1.25;
  min-width: 0;
  position: relative;
  text-align: center;
}

.foodord-table-reservations__timeline-item::after {
  background: var(--foodord-reservation-border);
  content: "";
  height: 2px;
  left: calc(50% + 25px);
  position: absolute;
  right: calc(-50% + 25px);
  top: 16px;
}

.foodord-table-reservations__timeline-item:last-child::after {
  display: none;
}

.foodord-table-reservations__timeline-marker {
  align-items: center;
  appearance: none;
  background: var(--foodord-reservation-surface);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 999px;
  color: var(--foodord-reservation-muted);
  cursor: default;
  display: inline-flex;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  height: 34px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: relative;
  width: 34px;
  z-index: 1;
}

.foodord-table-reservations__timeline-marker:disabled {
  opacity: 1;
}

.foodord-table-reservations[data-foodord-reservation-step="contact"] [data-foodord-reservation-step-item="time"] .foodord-table-reservations__timeline-marker {
  cursor: pointer;
}

.foodord-table-reservations[data-foodord-reservation-step="contact"] [data-foodord-reservation-step-item="time"] .foodord-table-reservations__timeline-marker:hover,
.foodord-table-reservations[data-foodord-reservation-step="contact"] [data-foodord-reservation-step-item="time"] .foodord-table-reservations__timeline-marker:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--foodord-reservation-primary) 18%, transparent);
  outline: none;
}

.foodord-table-reservations__timeline-label {
  display: block;
  max-width: 120px;
}

.foodord-table-reservations[data-foodord-reservation-step="time"] [data-foodord-reservation-step-item="time"],
.foodord-table-reservations[data-foodord-reservation-step="contact"] [data-foodord-reservation-step-item="contact"],
.foodord-table-reservations[data-foodord-reservation-step="preorder"] [data-foodord-reservation-step-item="preorder"],
.foodord-table-reservations[data-foodord-reservation-step="done"] [data-foodord-reservation-step-item="done"] {
  color: var(--foodord-reservation-text);
}

.foodord-table-reservations[data-foodord-reservation-step="time"] [data-foodord-reservation-step-item="time"] .foodord-table-reservations__timeline-marker,
.foodord-table-reservations[data-foodord-reservation-step="contact"] [data-foodord-reservation-step-item="contact"] .foodord-table-reservations__timeline-marker,
.foodord-table-reservations[data-foodord-reservation-step="preorder"] [data-foodord-reservation-step-item="preorder"] .foodord-table-reservations__timeline-marker {
  background: var(--foodord-reservation-primary);
  border-color: var(--foodord-reservation-primary);
  color: #fff;
}

.foodord-table-reservations[data-foodord-reservation-step="contact"] [data-foodord-reservation-step-item="time"] .foodord-table-reservations__timeline-marker,
.foodord-table-reservations[data-foodord-reservation-step="preorder"] [data-foodord-reservation-step-item="time"] .foodord-table-reservations__timeline-marker,
.foodord-table-reservations[data-foodord-reservation-step="preorder"] [data-foodord-reservation-step-item="contact"] .foodord-table-reservations__timeline-marker,
.foodord-table-reservations[data-foodord-reservation-step="done"] [data-foodord-reservation-step-item="time"] .foodord-table-reservations__timeline-marker,
.foodord-table-reservations[data-foodord-reservation-step="done"] [data-foodord-reservation-step-item="contact"] .foodord-table-reservations__timeline-marker,
.foodord-table-reservations[data-foodord-reservation-step="done"] [data-foodord-reservation-step-item="preorder"] .foodord-table-reservations__timeline-marker,
.foodord-table-reservations[data-foodord-reservation-step="done"] [data-foodord-reservation-step-item="done"] .foodord-table-reservations__timeline-marker {
  background: var(--foodord-reservation-success);
  border-color: var(--foodord-reservation-success);
  color: #fff;
}

.foodord-table-reservations[data-foodord-reservation-step="contact"] [data-foodord-reservation-step-item="time"]::after {
  background: var(--foodord-reservation-primary);
}

.foodord-table-reservations[data-foodord-reservation-step="preorder"] [data-foodord-reservation-step-item="time"]::after,
.foodord-table-reservations[data-foodord-reservation-step="preorder"] [data-foodord-reservation-step-item="contact"]::after,
.foodord-table-reservations[data-foodord-reservation-step="done"] [data-foodord-reservation-step-item="time"]::after,
.foodord-table-reservations[data-foodord-reservation-step="done"] [data-foodord-reservation-step-item="contact"]::after,
.foodord-table-reservations[data-foodord-reservation-step="done"] [data-foodord-reservation-step-item="preorder"]::after {
  background: var(--foodord-reservation-success);
}

.foodord-table-reservations__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.foodord-table-reservations__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
}

.foodord-table-reservations__form-icon {
  color: var(--foodord-reservation-text);
  display: flex;
  height: 28px;
  justify-content: center;
  margin: 0 auto 10px;
  width: 28px;
}

.foodord-table-reservations__form-icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 100%;
}

.foodord-table-reservations__form-title {
  color: var(--foodord-reservation-text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 8px;
  text-align: center;
}

.foodord-table-reservations__form-description {
  color: var(--foodord-reservation-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0 auto 58px;
  max-width: 430px;
  text-align: center;
}

.foodord-table-reservations__deposit-cancelled {
  background: color-mix(in srgb, var(--foodord-reservation-error) 9%, var(--foodord-reservation-surface));
  border: 1px solid color-mix(in srgb, var(--foodord-reservation-error) 26%, var(--foodord-reservation-border));
  border-radius: 8px;
  color: var(--foodord-reservation-error);
  font-size: 13px;
  line-height: 1.45;
  left: 50%;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  padding: 12px 44px 14px 14px;
  pointer-events: auto;
  position: fixed;
  text-align: center;
  top: max(20px, env(safe-area-inset-top));
  transform: translate3d(-50%, calc(-100% - 40px), 0);
  transition: opacity 0.22s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  width: min(520px, calc(100vw - 32px));
  z-index: 100001;
}

.foodord-table-reservations__deposit-cancelled.is-visible {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.foodord-table-reservations__deposit-cancelled-close {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  height: 28px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}

.foodord-table-reservations__deposit-cancelled-close span {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.foodord-table-reservations__deposit-cancelled-close:hover,
.foodord-table-reservations__deposit-cancelled-close:focus-visible {
  background: color-mix(in srgb, currentColor 10%, transparent);
  color: inherit;
}

.foodord-table-reservations__deposit-cancelled-close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 1px;
}

.foodord-table-reservations__deposit-cancelled-progress {
  background: currentColor;
  bottom: 0;
  height: 3px;
  left: 0;
  opacity: 0.7;
  position: absolute;
  right: 0;
  transform: scaleX(1);
  transform-origin: left center;
}

.foodord-table-reservations__deposit-cancelled.is-visible .foodord-table-reservations__deposit-cancelled-progress {
  animation: foodord-reservation-deposit-cancelled-progress 10s linear forwards;
}

@keyframes foodord-reservation-deposit-cancelled-progress {
  to {
    transform: scaleX(0);
  }
}

body.admin-bar .foodord-table-reservations__deposit-cancelled {
  top: calc(32px + max(20px, env(safe-area-inset-top)));
}

@media (max-width: 782px) {
  body.admin-bar .foodord-table-reservations__deposit-cancelled {
    top: calc(46px + max(16px, env(safe-area-inset-top)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .foodord-table-reservations__deposit-cancelled {
    transition: opacity 0.01s linear;
  }

  .foodord-table-reservations__deposit-cancelled.is-visible .foodord-table-reservations__deposit-cancelled-progress {
    animation: none;
  }
}

.foodord-table-reservations[data-foodord-reservation-step="contact"] .foodord-table-reservations__form-icon,
.foodord-table-reservations[data-foodord-reservation-step="contact"] .foodord-table-reservations__form-title,
.foodord-table-reservations[data-foodord-reservation-step="contact"] .foodord-table-reservations__form-description,
.foodord-table-reservations[data-foodord-reservation-step="preorder"] .foodord-table-reservations__form-icon,
.foodord-table-reservations[data-foodord-reservation-step="preorder"] .foodord-table-reservations__form-title,
.foodord-table-reservations[data-foodord-reservation-step="preorder"] .foodord-table-reservations__form-description,
.foodord-table-reservations[data-foodord-reservation-step="done"] .foodord-table-reservations__form-icon,
.foodord-table-reservations[data-foodord-reservation-step="done"] .foodord-table-reservations__form-title,
.foodord-table-reservations[data-foodord-reservation-step="done"] .foodord-table-reservations__form-description {
  display: none;
}

.foodord-table-reservations__field--note {
  margin-top: 18px;
}

.foodord-table-reservations__field span {
  color: var(--foodord-reservation-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.foodord-table-reservations__field--required span::after {
  color: var(--foodord-reservation-error);
  content: "*";
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.foodord-table-reservations__field-error {
  color: var(--foodord-reservation-error);
  display: -webkit-box;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  min-height: 32px;
  max-height: 32px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.foodord-table-reservations__privacy {
  margin-top: 18px;
  position: relative;
}

.foodord-table-reservations__privacy-consent {
  align-items: flex-start;
  color: var(--foodord-reservation-text);
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.foodord-table-reservations .foodord-table-reservations__privacy-consent input {
  appearance: none;
  background-color: var(--foodord-reservation-surface);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 4px;
  cursor: pointer;
  flex: 0 0 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  width: 18px;
}

.foodord-table-reservations .foodord-table-reservations__privacy-consent input:checked {
  background-color: var(--foodord-reservation-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m3 8 3 3 7-7'/%3E%3C/svg%3E");
  border-color: var(--foodord-reservation-primary);
}

.foodord-table-reservations .foodord-table-reservations__privacy-consent input:focus {
  box-shadow: none;
}

.foodord-table-reservations .foodord-table-reservations__privacy-consent input:focus-visible {
  outline: 2px solid var(--foodord-reservation-primary);
  outline-offset: 2px;
}

.foodord-table-reservations__privacy-text {
  color: var(--foodord-reservation-text);
  font: inherit;
  margin: 0;
}

.foodord-table-reservations__privacy-label {
  cursor: pointer;
}

.foodord-table-reservations__privacy-error {
  display: block;
  left: 28px;
  margin: 0;
  max-height: none;
  min-height: 0;
  padding-top: 3px;
  position: absolute;
  right: 0;
  top: 100%;
}

.foodord-table-reservations__privacy-error:empty {
  display: none;
}

.foodord-table-reservations__privacy-link {
  color: var(--foodord-reservation-muted);
  display: inline;
  font: inherit;
  margin-left: 3px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.foodord-table-reservations__privacy-link:hover,
.foodord-table-reservations__privacy-link:focus {
  color: var(--foodord-reservation-primary);
}

.foodord-table-reservations input,
.foodord-table-reservations select,
.foodord-table-reservations textarea {
  appearance: none;
  background: var(--foodord-reservation-surface);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 8px;
  color: var(--foodord-reservation-text);
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  min-height: 46px;
  outline: none;
  padding: 10px 12px;
  width: 100%;
}

.foodord-table-reservations textarea {
  min-height: 96px;
  resize: vertical;
}

.foodord-table-reservations input:focus,
.foodord-table-reservations select:focus,
.foodord-table-reservations textarea:focus {
  border-color: var(--foodord-reservation-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--foodord-reservation-primary) 16%, transparent);
}

.foodord-table-reservations__field--date {
  position: relative;
}

.foodord-table-reservations__field--time {
  position: relative;
}

.foodord-table-reservations__field--date input {
  padding-right: 42px;
}

.foodord-table-reservations__field--date::after {
  background: var(--foodord-reservation-muted);
  content: "";
  height: 18px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h1V3a1 1 0 0 1 1-1Zm12 9H5v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-8ZM5 9h14V7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
  position: absolute;
  right: 13px;
  top: 39px;
  width: 18px;
}

.foodord-table-reservations__field--date:focus-within::after {
  background: var(--foodord-reservation-primary);
}

.foodord-table-reservations__field--time.is-loading-times::before {
  animation: foodord-reservation-time-skeleton 1.1s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--foodord-reservation-border) 70%, transparent) 0%,
    color-mix(in srgb, var(--foodord-reservation-border) 36%, transparent) 44%,
    color-mix(in srgb, var(--foodord-reservation-border) 70%, transparent) 88%
  );
  background-size: 220% 100%;
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 13px;
  pointer-events: none;
  position: absolute;
  right: 54px;
  top: 42px;
  z-index: 1;
}

.foodord-table-reservations__field--time.is-loading-times .foodord-table-reservations__control {
  color: transparent;
  cursor: wait;
}

@keyframes foodord-reservation-time-skeleton {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

#ui-datepicker-div.foodord-table-reservations-datepicker {
  display: none;
  position: absolute;
}

.foodord-table-reservations-datepicker.ui-datepicker {
  background: #fff;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
  color: #17212b;
  font-family: inherit;
  padding: 10px;
  width: 280px;
  z-index: 999999;
}

.foodord-table-reservations-datepicker .ui-datepicker-header {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.foodord-table-reservations-datepicker .ui-datepicker-title {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.foodord-table-reservations-datepicker .ui-datepicker-prev,
.foodord-table-reservations-datepicker .ui-datepicker-next {
  align-items: center;
  border: 1px solid #d8dde3;
  border-radius: 6px;
  color: #17212b;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  height: 30px;
  justify-content: center;
  line-height: 1;
  padding: 0 8px;
  text-decoration: none;
}

.foodord-table-reservations-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0;
  width: 100%;
}

.foodord-table-reservations-datepicker th,
.foodord-table-reservations-datepicker td {
  border: 0;
  padding: 2px;
  text-align: center;
}

.foodord-table-reservations-datepicker th {
  color: #6b7280;
  font-size: 11px;
  font-weight: 600;
}

.foodord-table-reservations-datepicker td a,
.foodord-table-reservations-datepicker td span {
  align-items: center;
  border-radius: 6px;
  color: #17212b;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  width: 32px;
}

.foodord-table-reservations-datepicker td a:hover,
.foodord-table-reservations-datepicker td a:focus,
.foodord-table-reservations-datepicker .ui-datepicker-current-day a {
  background: var(--foodord-primary-color, #ec0051);
  color: #fff;
}

.foodord-table-reservations-datepicker .ui-state-disabled span {
  color: #c8ced6;
}

.foodord-table-reservations__button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  height: 46px;
  justify-content: center;
  line-height: 1.2;
  margin-top: 16px;
  min-height: 46px;
  padding: 0 18px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.foodord-table-reservations__button[hidden] {
  display: none;
}

.foodord-table-reservations__table-selection[hidden] {
  display: none;
}

.foodord-table-reservations__table-selection {
  display: grid;
  align-items: center;
  gap: 12px;
  grid-template-columns: minmax(88px, 1fr) minmax(0, max-content) minmax(88px, 1fr);
}

.foodord-table-reservations__table-selection-floors {
  box-sizing: border-box;
  display: flex;
  gap: 6px;
  grid-column: 2;
  grid-row: 1;
  justify-content: safe center;
  justify-self: center;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px;
  margin: 0 auto;
  max-width: 100%;
  width: max-content;
  background: var(--foodord-reservation-soft);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 8px;
}

.foodord-table-reservations__table-selection-floors[hidden] {
  display: none;
}

.foodord-table-reservations__table-selection-floor {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--foodord-reservation-muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  min-height: 34px;
  padding: 7px 13px;
  white-space: nowrap;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.foodord-table-reservations__table-selection-floor:hover,
.foodord-table-reservations__table-selection-floor:focus-visible {
  background: var(--foodord-reservation-surface);
  color: var(--foodord-reservation-text);
  box-shadow: none;
  outline: none;
}

.foodord-table-reservations__table-selection-floor.is-active {
  background: var(--foodord-reservation-surface);
  color: var(--foodord-reservation-primary);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--foodord-reservation-primary) 28%, transparent);
  outline: none;
}

.foodord-table-reservations__table-selection-floor:focus-visible {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--foodord-reservation-primary) 30%, transparent);
}

.foodord-table-reservations__table-selection-floor.is-active:focus-visible {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--foodord-reservation-primary) 30%, transparent);
}

.foodord-table-reservations__table-selection-plan {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
}

.foodord-table-reservations__table-selection-canvas {
  align-items: center;
  background: var(--foodord-reservation-soft);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 8px;
  display: flex;
  justify-self: center;
  max-width: 100%;
  overflow: hidden;
  width: fit-content;
}

.foodord-table-reservations__table-selection-surface {
  position: relative;
  max-height: min(72vh, 680px);
  max-width: 100%;
  width: fit-content;
}

.foodord-table-reservations__table-selection-image {
  display: block;
  height: auto;
  max-height: min(72vh, 680px);
  max-width: 100%;
  width: auto;
}

.foodord-table-reservations__table-selection-markers {
  position: absolute;
  inset: 0;
}

.foodord-table-reservations__table-selection-marker {
  position: absolute;
  left: calc(var(--foodord-reservation-marker-x-tens, 50%) + var(--foodord-reservation-marker-x-ones, 0%));
  top: calc(var(--foodord-reservation-marker-y-tens, 50%) + var(--foodord-reservation-marker-y-ones, 0%));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  margin: 0;
  padding: 5px 8px;
  background: var(--foodord-reservation-surface);
  border: 1px solid var(--foodord-reservation-primary);
  border-radius: 6px;
  color: var(--foodord-reservation-text);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  transform: translate(-50%, -50%);
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.foodord-reservation-marker-position--x-tens-0 { --foodord-reservation-marker-x-tens: 0%; }
.foodord-reservation-marker-position--x-tens-1 { --foodord-reservation-marker-x-tens: 10%; }
.foodord-reservation-marker-position--x-tens-2 { --foodord-reservation-marker-x-tens: 20%; }
.foodord-reservation-marker-position--x-tens-3 { --foodord-reservation-marker-x-tens: 30%; }
.foodord-reservation-marker-position--x-tens-4 { --foodord-reservation-marker-x-tens: 40%; }
.foodord-reservation-marker-position--x-tens-5 { --foodord-reservation-marker-x-tens: 50%; }
.foodord-reservation-marker-position--x-tens-6 { --foodord-reservation-marker-x-tens: 60%; }
.foodord-reservation-marker-position--x-tens-7 { --foodord-reservation-marker-x-tens: 70%; }
.foodord-reservation-marker-position--x-tens-8 { --foodord-reservation-marker-x-tens: 80%; }
.foodord-reservation-marker-position--x-tens-9 { --foodord-reservation-marker-x-tens: 90%; }
.foodord-reservation-marker-position--x-ones-0 { --foodord-reservation-marker-x-ones: 0%; }
.foodord-reservation-marker-position--x-ones-1 { --foodord-reservation-marker-x-ones: 1%; }
.foodord-reservation-marker-position--x-ones-2 { --foodord-reservation-marker-x-ones: 2%; }
.foodord-reservation-marker-position--x-ones-3 { --foodord-reservation-marker-x-ones: 3%; }
.foodord-reservation-marker-position--x-ones-4 { --foodord-reservation-marker-x-ones: 4%; }
.foodord-reservation-marker-position--x-ones-5 { --foodord-reservation-marker-x-ones: 5%; }
.foodord-reservation-marker-position--x-ones-6 { --foodord-reservation-marker-x-ones: 6%; }
.foodord-reservation-marker-position--x-ones-7 { --foodord-reservation-marker-x-ones: 7%; }
.foodord-reservation-marker-position--x-ones-8 { --foodord-reservation-marker-x-ones: 8%; }
.foodord-reservation-marker-position--x-ones-9 { --foodord-reservation-marker-x-ones: 9%; }
.foodord-reservation-marker-position--y-tens-0 { --foodord-reservation-marker-y-tens: 0%; }
.foodord-reservation-marker-position--y-tens-1 { --foodord-reservation-marker-y-tens: 10%; }
.foodord-reservation-marker-position--y-tens-2 { --foodord-reservation-marker-y-tens: 20%; }
.foodord-reservation-marker-position--y-tens-3 { --foodord-reservation-marker-y-tens: 30%; }
.foodord-reservation-marker-position--y-tens-4 { --foodord-reservation-marker-y-tens: 40%; }
.foodord-reservation-marker-position--y-tens-5 { --foodord-reservation-marker-y-tens: 50%; }
.foodord-reservation-marker-position--y-tens-6 { --foodord-reservation-marker-y-tens: 60%; }
.foodord-reservation-marker-position--y-tens-7 { --foodord-reservation-marker-y-tens: 70%; }
.foodord-reservation-marker-position--y-tens-8 { --foodord-reservation-marker-y-tens: 80%; }
.foodord-reservation-marker-position--y-tens-9 { --foodord-reservation-marker-y-tens: 90%; }
.foodord-reservation-marker-position--y-ones-0 { --foodord-reservation-marker-y-ones: 0%; }
.foodord-reservation-marker-position--y-ones-1 { --foodord-reservation-marker-y-ones: 1%; }
.foodord-reservation-marker-position--y-ones-2 { --foodord-reservation-marker-y-ones: 2%; }
.foodord-reservation-marker-position--y-ones-3 { --foodord-reservation-marker-y-ones: 3%; }
.foodord-reservation-marker-position--y-ones-4 { --foodord-reservation-marker-y-ones: 4%; }
.foodord-reservation-marker-position--y-ones-5 { --foodord-reservation-marker-y-ones: 5%; }
.foodord-reservation-marker-position--y-ones-6 { --foodord-reservation-marker-y-ones: 6%; }
.foodord-reservation-marker-position--y-ones-7 { --foodord-reservation-marker-y-ones: 7%; }
.foodord-reservation-marker-position--y-ones-8 { --foodord-reservation-marker-y-ones: 8%; }
.foodord-reservation-marker-position--y-ones-9 { --foodord-reservation-marker-y-ones: 9%; }

.foodord-table-reservations__table-selection-marker:hover,
.foodord-table-reservations__table-selection-marker:focus-visible,
.foodord-table-reservations__table-selection-marker.is-selected {
  background: var(--foodord-reservation-primary);
  border-color: var(--foodord-reservation-primary);
  color: #fff;
  box-shadow: none;
  outline: none;
}

.foodord-table-reservations__table-selection-marker:disabled {
  cursor: wait;
  opacity: 0.72;
}

.foodord-table-reservations__table-selection-marker.is-loading {
  color: transparent;
}

.foodord-table-reservations__table-selection-marker.is-loading::after {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  color: #fff;
  content: "";
  animation: foodord-reservation-table-selection-spinner 0.7s linear infinite;
}

.foodord-table-reservations__table-selection-back {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--foodord-reservation-muted);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  gap: 6px;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  line-height: 1.35;
  margin: 0;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  z-index: 1;
}

.foodord-table-reservations__table-selection > .foodord-table-reservations__message {
  grid-column: 1 / -1;
}

.foodord-table-reservations__table-selection-back-icon {
  fill: none;
  height: 15px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 15px;
}

.foodord-table-reservations__table-selection-back:hover,
.foodord-table-reservations__table-selection-back:focus-visible {
  color: var(--foodord-reservation-text);
  box-shadow: none;
  outline: none;
}

@keyframes foodord-reservation-table-selection-spinner {
  to {
    transform: rotate(360deg);
  }
}

.foodord-table-reservations__button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.foodord-table-reservations__button--primary {
  background: var(--foodord-reservation-primary);
  color: #fff;
  width: 100%;
}

.foodord-table-reservations__button--secondary {
  gap: 8px;
  background: var(--foodord-reservation-text);
  color: #fff;
}

.foodord-table-reservations__button--availability {
  background: var(--foodord-reservation-primary);
  border-color: var(--foodord-reservation-primary);
  color: #fff;
}

.foodord-table-reservations__button--availability:hover,
.foodord-table-reservations__button--availability:focus {
  background: var(--foodord-reservation-primary-hover);
  border-color: var(--foodord-reservation-primary-hover);
  color: #fff;
}

.foodord-table-reservations__button--home {
  gap: 8px;
  background: var(--foodord-reservation-primary);
  color: #fff;
  margin-top: 22px;
  min-width: 180px;
}

.foodord-table-reservations__button--home:hover,
.foodord-table-reservations__button--home:focus-visible {
  background: var(--foodord-reservation-primary-hover);
  color: #fff;
}

.foodord-table-reservations__button-icon {
  flex: 0 0 auto;
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 17px;
}

.foodord-table-reservations__button.is-loading {
  color: transparent;
  cursor: wait;
}

.foodord-table-reservations__button.is-loading .foodord-table-reservations__button-icon {
  opacity: 0;
}

.foodord-table-reservations__button.is-loading::after {
  animation: foodord-reservation-spinner 0.72s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  border-top-color: #fff;
  content: "";
  height: 18px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
}

@keyframes foodord-reservation-spinner {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.foodord-table-reservations__hold {
  align-items: center;
  background: color-mix(in srgb, var(--foodord-reservation-success) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--foodord-reservation-success) 26%, #fff);
  border-radius: 8px;
  color: var(--foodord-reservation-text);
  display: flex;
  font-size: 14px;
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px 14px;
}

.foodord-table-reservations__hold > span {
  min-width: 0;
}

.foodord-table-reservations__hold-cancel {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--foodord-reservation-error);
  cursor: pointer;
  display: none;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  margin: 0 0 0 auto;
  padding: 0;
  width: 34px;
}

.foodord-table-reservations__hold-cancel:hover,
.foodord-table-reservations__hold-cancel:focus-visible {
  background: color-mix(in srgb, currentColor 9%, transparent);
  outline: none;
}

.foodord-table-reservations__hold-cancel svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 19px;
}

.foodord-table-reservations__hold[hidden],
.foodord-table-reservations__section[hidden] {
  display: none;
}

.foodord-table-reservations__message {
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.15;
  margin-top: 10px;
  min-height: 28px;
  max-height: 28px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.foodord-table-reservations__message:empty {
  visibility: hidden;
}

.foodord-table-reservations__table-selection > .foodord-table-reservations__message:empty {
  display: none;
}

.foodord-table-reservations__message + .foodord-table-reservations__button,
.foodord-table-reservations__message + .foodord-table-reservations__customer-actions {
  margin-top: 4px;
}

.foodord-table-reservations [data-foodord-reservation-customer] .foodord-table-reservations__grid {
  row-gap: 28px;
}

.foodord-table-reservations [data-foodord-reservation-customer] .foodord-table-reservations__grid .foodord-table-reservations__field {
  position: relative;
}

.foodord-table-reservations [data-foodord-reservation-customer] .foodord-table-reservations__grid .foodord-table-reservations__field-error {
  display: block;
  left: 0;
  margin: 0;
  max-height: none;
  min-height: 0;
  overflow: hidden;
  padding-top: 3px;
  position: absolute;
  right: 0;
  text-overflow: ellipsis;
  top: 100%;
  white-space: nowrap;
}

.foodord-table-reservations [data-foodord-reservation-customer] .foodord-table-reservations__grid .foodord-table-reservations__field-error:empty {
  display: none;
}

.foodord-table-reservations__customer-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  margin-top: 24px;
}

.foodord-table-reservations__customer-actions .foodord-table-reservations__button {
  margin-top: 0;
  width: 100%;
}

.foodord-table-reservations__preorder-choice {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 28px 12px;
  text-align: center;
}

.foodord-table-reservations__preorder-choice-content {
  max-width: 520px;
}

.foodord-table-reservations__preorder-choice-title {
  color: var(--foodord-reservation-text);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.foodord-table-reservations__preorder-choice-text {
  color: var(--foodord-reservation-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 10px 0 0;
}

.foodord-table-reservations__preorder-choice > .foodord-table-reservations__message {
  width: 100%;
}

.foodord-table-reservations__preorder-choice-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 12px;
  max-width: 520px;
  width: 100%;
}

.foodord-table-reservations__preorder-choice-actions .foodord-table-reservations__button {
  margin-top: 0;
  width: 100%;
}

.foodord-table-reservations__message.is-success {
  color: var(--foodord-reservation-success);
}

.foodord-table-reservations__message.is-error {
  color: var(--foodord-reservation-error);
}

.foodord-table-reservations__manage-card {
  max-width: 760px;
}

.foodord-table-reservations__manage-form {
  margin-top: 0;
}

.foodord-table-reservations__manage-form .foodord-table-reservations__control:disabled {
  -webkit-text-fill-color: #7b828b;
  background: #f1f3f5;
  border-color: #d9dde2;
  color: #7b828b;
  cursor: not-allowed;
  opacity: 1;
}

.foodord-table-reservations__manage-customer-grid {
  margin-top: 14px;
}

.foodord-table-reservations__manage-cancel-form {
  margin: 12px 0 0;
  text-align: center;
}

.foodord-table-reservations__manage-cancel-trigger {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--foodord-reservation-error);
  cursor: pointer;
  display: inline;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.foodord-table-reservations__manage-cancel-trigger:hover {
  color: color-mix(in srgb, var(--foodord-reservation-error) 84%, #000);
}

.foodord-table-reservations__manage-cancel-trigger:focus-visible {
  color: color-mix(in srgb, var(--foodord-reservation-error) 84%, #000);
  outline: 2px solid color-mix(in srgb, var(--foodord-reservation-error) 34%, transparent);
  outline-offset: 3px;
}

.foodord-table-reservations__button--cancel {
  background: transparent;
  border-color: color-mix(in srgb, var(--foodord-reservation-error) 34%, var(--foodord-reservation-border));
  color: var(--foodord-reservation-error);
  width: 100%;
}

.foodord-table-reservations__button--cancel:hover,
.foodord-table-reservations__button--cancel:focus {
  background: color-mix(in srgb, var(--foodord-reservation-error) 7%, var(--foodord-reservation-surface));
}

.foodord-table-reservations__manage-notice {
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 16px;
  padding: 11px 12px;
}

.foodord-table-reservations__manage-notice.is-success {
  background: color-mix(in srgb, var(--foodord-reservation-success) 10%, var(--foodord-reservation-surface));
  border: 1px solid color-mix(in srgb, var(--foodord-reservation-success) 26%, var(--foodord-reservation-border));
  color: var(--foodord-reservation-success);
}

.foodord-table-reservations__manage-notice.is-error {
  background: color-mix(in srgb, var(--foodord-reservation-error) 8%, var(--foodord-reservation-surface));
  border: 1px solid color-mix(in srgb, var(--foodord-reservation-error) 22%, var(--foodord-reservation-border));
  color: var(--foodord-reservation-error);
}

.foodord-table-reservations__confirm {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.16s ease;
  z-index: 100000;
}

.foodord-table-reservations__confirm[hidden] {
  display: none;
}

.foodord-table-reservations__confirm.is-open {
  opacity: 1;
  pointer-events: auto;
}

.foodord-table-reservations__confirm-backdrop {
  background: rgba(17, 24, 39, 0.54);
  inset: 0;
  position: absolute;
}

.foodord-table-reservations__confirm-dialog {
  background: var(--foodord-reservation-surface);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
  color: var(--foodord-reservation-text);
  max-width: 420px;
  padding: 22px;
  position: relative;
  transform: translate3d(0, 8px, 0) scale(0.98);
  transition: transform 0.16s ease;
  width: min(100%, 420px);
}

.foodord-table-reservations__confirm.is-open .foodord-table-reservations__confirm-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.foodord-table-reservations__confirm-title {
  color: var(--foodord-reservation-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.foodord-table-reservations__confirm-text {
  color: var(--foodord-reservation-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 9px 0 0;
}

.foodord-table-reservations__confirm-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.foodord-table-reservations__confirm-actions form {
  margin: 0;
}

.foodord-table-reservations__confirm-button {
  margin-top: 0;
  width: 100%;
}

.foodord-table-reservations__confirm-button--secondary {
  background: var(--foodord-reservation-soft);
  border-color: var(--foodord-reservation-border);
  color: var(--foodord-reservation-text);
}

.foodord-table-reservations__confirm-button--secondary:hover,
.foodord-table-reservations__confirm-button--secondary:focus {
  background: color-mix(in srgb, var(--foodord-reservation-text) 5%, var(--foodord-reservation-soft));
}

.foodord-table-reservations__confirm-button--danger {
  background: var(--foodord-reservation-error);
  color: #fff;
}

.foodord-table-reservations__confirm-button--danger:hover,
.foodord-table-reservations__confirm-button--danger:focus {
  background: color-mix(in srgb, var(--foodord-reservation-error) 88%, #000);
}

@media (max-width: 420px) {
  .foodord-table-reservations__customer-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .foodord-table-reservations__preorder-choice {
    min-height: 250px;
    padding: 22px 0;
  }

  .foodord-table-reservations__confirm-actions {
    grid-template-columns: minmax(0, 1fr);
  }
}

.foodord-table-reservations__success {
  align-items: center;
  display: flex;
  flex-direction: column;
  outline: none;
  padding: 34px 18px 30px;
  text-align: center;
}

.foodord-table-reservations__success[hidden] {
  display: none;
}

.foodord-table-reservations__success.is-animated {
  animation: foodord-reservation-success-panel 0.24s ease-out both;
}

.foodord-table-reservations__success-icon {
  align-items: center;
  background: color-mix(in srgb, var(--foodord-reservation-success) 12%, var(--foodord-reservation-surface));
  border: 1px solid color-mix(in srgb, var(--foodord-reservation-success) 24%, var(--foodord-reservation-border));
  border-radius: 999px;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  width: 56px;
}

.foodord-table-reservations__success.is-animated .foodord-table-reservations__success-icon {
  animation: foodord-reservation-success-icon 0.54s cubic-bezier(0.18, 0.9, 0.24, 1.18) both;
}

.foodord-table-reservations__success-icon::before {
  border-bottom: 3px solid var(--foodord-reservation-success);
  border-right: 3px solid var(--foodord-reservation-success);
  content: "";
  height: 18px;
  margin-top: -4px;
  transform: rotate(45deg);
  width: 10px;
}

.foodord-table-reservations__success.is-animated .foodord-table-reservations__success-icon::before {
  animation: foodord-reservation-success-check 0.38s ease-out 0.2s both;
}

.foodord-table-reservations__success-icon::after {
  border: 1px solid color-mix(in srgb, var(--foodord-reservation-success) 30%, transparent);
  border-radius: inherit;
  content: "";
  inset: -8px;
  opacity: 0;
  position: absolute;
}

.foodord-table-reservations__success.is-animated .foodord-table-reservations__success-icon::after {
  animation: foodord-reservation-success-ring 0.72s ease-out 0.08s both;
}

.foodord-table-reservations__success-title {
  color: var(--foodord-reservation-text);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.foodord-table-reservations__success.is-animated .foodord-table-reservations__success-title {
  animation: foodord-reservation-success-content 0.32s ease-out 0.2s both;
}

.foodord-table-reservations__success-text {
  color: var(--foodord-reservation-muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 10px 0 0;
  max-width: 420px;
}

.foodord-table-reservations__success.is-animated .foodord-table-reservations__success-text {
  animation: foodord-reservation-success-content 0.32s ease-out 0.28s both;
}

.foodord-table-reservations__success-code-row {
  align-items: center;
  background: var(--foodord-reservation-soft);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 8px;
  color: var(--foodord-reservation-muted);
  display: inline-flex;
  font-size: 13px;
  gap: 8px;
  line-height: 1.3;
  margin: 20px 0 0;
  padding: 9px 12px;
}

.foodord-table-reservations__success-code-row[hidden] {
  display: none;
}

.foodord-table-reservations__success-code-row strong {
  color: var(--foodord-reservation-text);
  font-weight: 600;
}

.foodord-table-reservations__success.is-animated .foodord-table-reservations__success-code-row:not([hidden]) {
  animation: foodord-reservation-success-content 0.32s ease-out 0.34s both;
}

.foodord-table-reservations__success-home-form {
  margin: 0;
}

.foodord-table-reservations__success.is-animated .foodord-table-reservations__button--home {
  animation: foodord-reservation-success-content 0.34s ease-out 0.42s both;
}

@keyframes foodord-reservation-success-panel {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes foodord-reservation-success-icon {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  58% {
    opacity: 1;
    transform: scale(1.06);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes foodord-reservation-success-ring {
  0% {
    opacity: 0.75;
    transform: scale(0.72);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes foodord-reservation-success-check {
  from {
    opacity: 0;
    transform: rotate(45deg) scale(0.76);
  }

  to {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

@keyframes foodord-reservation-success-content {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .foodord-table-reservations__success.is-animated,
  .foodord-table-reservations__success.is-animated .foodord-table-reservations__success-icon,
  .foodord-table-reservations__success.is-animated .foodord-table-reservations__success-icon::before,
  .foodord-table-reservations__success.is-animated .foodord-table-reservations__success-icon::after,
  .foodord-table-reservations__success.is-animated .foodord-table-reservations__success-title,
  .foodord-table-reservations__success.is-animated .foodord-table-reservations__success-text,
  .foodord-table-reservations__success.is-animated .foodord-table-reservations__success-code-row:not([hidden]),
  .foodord-table-reservations__success.is-animated .foodord-table-reservations__button--home {
    animation: none;
  }
}

.foodord-table-reservations__empty {
  align-items: center;
  background: linear-gradient(180deg, var(--foodord-reservation-soft) 0%, var(--foodord-reservation-surface) 100%);
  display: flex;
  justify-content: center;
  min-height: clamp(300px, 48vh, 460px);
  padding: clamp(32px, 6vw, 56px) clamp(20px, 4vw, 32px);
  text-align: center;
}

.foodord-table-reservations__empty--admin {
  border-color: color-mix(in srgb, var(--foodord-reservation-primary) 24%, var(--foodord-reservation-border));
  border-style: dashed;
}

.foodord-table-reservations__empty-panel {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto;
  max-width: 440px;
  width: 100%;
}

.foodord-table-reservations__empty-icon {
  align-items: center;
  background: color-mix(in srgb, var(--foodord-reservation-primary) 10%, var(--foodord-reservation-surface));
  border: 1px solid color-mix(in srgb, var(--foodord-reservation-primary) 22%, var(--foodord-reservation-border));
  border-radius: 999px;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 20px;
  width: 64px;
}

.foodord-table-reservations__empty-icon-graphic {
  fill: none;
  height: 28px;
  stroke: var(--foodord-reservation-text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 28px;
}

.foodord-table-reservations__empty-title {
  color: var(--foodord-reservation-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.foodord-table-reservations__empty-text {
  color: var(--foodord-reservation-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 10px 0 0;
  max-width: 36ch;
}

.foodord-table-reservations__empty-action {
  margin: 22px 0 0;
  width: 100%;
}

.foodord-table-reservations__empty-button {
  gap: 8px;
  margin-top: 0;
  min-width: min(100%, 260px);
  width: auto;
}

.foodord-table-reservations__empty-button-icon {
  flex: 0 0 auto;
  margin-left: 2px;
}

.foodord-table-reservations__empty-button.foodord-table-reservations__button--primary {
  width: auto;
}

.foodord-table-reservations[data-foodord-preorder-flow="1"] .foodord-table-reservations__timeline-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.foodord-table-reservations[data-foodord-preorder-flow="0"] [data-foodord-reservation-step-item="preorder"] {
  display: none;
}

.foodord-table-reservations__preorder {
  margin-top: 0;
}

.foodord-table-reservations__preorder-heading {
  margin-bottom: 26px;
  text-align: center;
}

.foodord-table-reservations__preorder-heading h3,
.foodord-table-reservations__preorder-summary h3 {
  color: var(--foodord-reservation-text);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
}

.foodord-table-reservations__preorder-heading p {
  color: var(--foodord-reservation-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 7px 0 0;
}

.foodord-table-reservations__preorder-layout,
.foodord-table-reservations__preorder-navigation-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
}

.foodord-table-reservations__preorder-navigation {
  align-items: center;
  border-bottom: 1px solid var(--foodord-reservation-border);
  display: flex;
  gap: 6px;
  grid-column: 1;
  margin-bottom: 14px;
  overflow-x: auto;
  padding: 0 0 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.foodord-table-reservations__preorder-navigation::-webkit-scrollbar {
  display: none;
}

.foodord-table-reservations__preorder-navigation-button {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #323232;
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
  padding: 8px 11px;
  white-space: nowrap;
}

.foodord-table-reservations__preorder-navigation-button:hover,
.foodord-table-reservations__preorder-navigation-button:focus-visible {
  background: var(--foodord-reservation-soft);
  color: var(--foodord-reservation-text);
  outline: none;
}

.foodord-table-reservations__preorder-navigation-button.is-active {
  background: var(--foodord-reservation-primary);
  color: #ffffff;
}

.foodord-table-reservations__preorder-products {
  align-content: start;
  display: block;
  overflow-y: auto;
  padding-right: 4px;
  position: relative;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.foodord-table-reservations__preorder-category + .foodord-table-reservations__preorder-category {
  margin-top: 22px;
}

.foodord-table-reservations__preorder-category-title {
  color: var(--foodord-reservation-text);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0 0 10px;
}

.foodord-table-reservations__preorder-category-title.foodord-product-category--has-description {
  margin-bottom: 6px;
}

.foodord-table-reservations__preorder-category-description {
  color: var(--foodord-reservation-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 10px;
  overflow-wrap: anywhere;
}

.foodord-table-reservations__preorder-category-description > :first-child {
  margin-top: 0;
}

.foodord-table-reservations__preorder-category-description > :last-child {
  margin-bottom: 0;
}

.foodord-table-reservations__preorder-category-products {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr);
}

.foodord-table-reservations__preorder-products-end {
  align-items: center;
  color: var(--foodord-reservation-muted);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 400;
  gap: 5px;
  justify-content: center;
  line-height: 1.45;
  margin-top: 20px;
  padding: 20px 14px calc(22px + env(safe-area-inset-bottom, 0px));
  text-align: center;
}

.foodord-table-reservations__preorder-products-end strong {
  color: var(--foodord-reservation-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 5px;
}

.foodord-table-reservations__preorder-products-end p {
  margin: 0;
}

.foodord-table-reservations__preorder-products-back-to-top {
  align-items: center;
  appearance: none;
  background: var(--foodord-reservation-primary);
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
  margin: 0;
  padding: 0;
  transition: filter 0.2s ease;
  width: 44px;
}

.foodord-table-reservations__preorder-products-back-to-top:hover,
.foodord-table-reservations__preorder-products-back-to-top:focus-visible {
  filter: brightness(0.92);
  outline: none;
}

.foodord-table-reservations__preorder-products-back-to-top svg {
  display: block;
  height: 20px;
  width: 20px;
}

.foodord-table-reservations__preorder-product {
  align-items: stretch;
  background: var(--foodord-reservation-surface);
  border: 1px solid rgb(175 175 175 / 51%);
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  gap: 16px;
  min-height: 110px;
  padding: 16px;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.foodord-table-reservations__preorder-product:hover,
.foodord-table-reservations__preorder-product:focus-within {
  background: var(--foodord-reservation-surface);
  border-color: rgb(175 175 175 / 51%);
  box-shadow: 0 18px 24px -18px rgba(15, 23, 42, 0.32);
}

.foodord-table-reservations__preorder-product .product-image-container {
  align-items: center;
  background: #f9fafb;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex: 0 0 100px;
  height: 100px;
  justify-content: center;
  margin: 0;
  order: 2;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100px;
}

.foodord-table-reservations__preorder-product .product-image-wrapper {
  height: 100%;
  width: 100%;
}

.foodord-table-reservations__preorder-product-image {
  display: block;
  height: 100%;
  max-height: none;
  max-width: none;
  object-fit: cover;
  width: 100%;
}

.foodord-table-reservations__preorder-product-content {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.foodord-table-reservations__preorder-product.foodord-product-card--no-image {
  padding-right: 60px;
}

.foodord-table-reservations__preorder-product-title-row {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-bottom: 5px;
  min-width: 0;
}

.foodord-table-reservations__preorder-product-title {
  color: var(--foodord-reservation-text);
  flex: 0 1 auto;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: anywhere;
}

.foodord-table-reservations__preorder-product-description {
  margin: 0 0 5px;
  min-width: 0;
  width: 100%;
}

.foodord-table-reservations__preorder-product-description .product-description-text {
  -webkit-box-orient: vertical;
  color: var(--foodord-reservation-muted);
  display: -webkit-box;
  font-size: 13px;
  line-clamp: 2;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.foodord-table-reservations__preorder-product-title-row .foodord-allergy-trigger {
  background: #f1f5f9;
  border-radius: 5px;
  color: #64748b;
  height: 18px;
  margin-left: 0;
  top: -1px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 18px;
}

.foodord-table-reservations__preorder-product-title-row .foodord-allergy-trigger:hover {
  background-color: #334155;
  box-shadow: 0 4px 12px rgba(51, 65, 85, 0.12);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.foodord-table-reservations__preorder-product-title-row .foodord-allergy-trigger:active {
  transform: scale(0.95);
}

.foodord-table-reservations__preorder-product-title-row .foodord-allergy-trigger__icon {
  height: 12px;
  width: 12px;
}

.foodord-table-reservations__preorder-product-price {
  color: var(--foodord-reservation-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-top: auto;
}

.foodord-table-reservations__preorder-product-price .foodord-price-prefix {
  font-size: 11px;
}

.foodord-table-reservations__preorder-product-price del {
  opacity: 0.65;
}

.foodord-table-reservations__preorder-product .foodord-product-labels--card {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  margin: 6px 0 0;
  max-height: 22px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.foodord-table-reservations__preorder-product .foodord-product-labels--card::-webkit-scrollbar {
  display: none;
}

.foodord-table-reservations__preorder-product .foodord-product-label {
  --foodord-product-label-bg: #f8fafc;
  --foodord-product-label-border: #e2e8f0;
  --foodord-product-label-color: #475569;
  align-items: center;
  background: var(--foodord-product-label-bg);
  border: 1px solid var(--foodord-product-label-border);
  border-radius: 6px;
  box-sizing: border-box;
  color: var(--foodord-product-label-color);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 400;
  gap: 4px;
  line-height: 1.2;
  min-height: 20px;
  padding: 2px 7px;
  white-space: nowrap;
}

.foodord-table-reservations__preorder-product .foodord-product-label__icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 16px;
  justify-content: center;
  width: 16px;
}

.foodord-table-reservations__preorder-product .foodord-product-label__icon-svg {
  display: block;
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 100%;
}

.foodord-table-reservations__preorder-product .foodord-product-label__icon-text {
  fill: currentColor;
  font-family: Arial, Tahoma, sans-serif;
  font-size: 15px;
  font-weight: 700;
  stroke: none;
}

.foodord-table-reservations__preorder-product .foodord-product-label--halal .foodord-product-label__icon {
  height: 14px;
  width: 28px;
}

.foodord-table-reservations__preorder-product .foodord-product-label--vegetarian {
  --foodord-product-label-bg: #dcfce7;
  --foodord-product-label-border: #bbf7d0;
  --foodord-product-label-color: #166534;
}

.foodord-table-reservations__preorder-product .foodord-product-label--vegan {
  --foodord-product-label-bg: #d1fae5;
  --foodord-product-label-border: #a7f3d0;
  --foodord-product-label-color: #047857;
}

.foodord-table-reservations__preorder-product .foodord-product-label--spicy {
  --foodord-product-label-bg: #fee2e2;
  --foodord-product-label-border: #fecaca;
  --foodord-product-label-color: #b91c1c;
}

.foodord-table-reservations__preorder-product .foodord-product-label--very_spicy {
  --foodord-product-label-bg: #fecaca;
  --foodord-product-label-border: #fca5a5;
  --foodord-product-label-color: #991b1b;
}

.foodord-table-reservations__preorder-product .foodord-product-label--halal {
  --foodord-product-label-bg: #ccfbf1;
  --foodord-product-label-border: #99f6e4;
  --foodord-product-label-color: #0f766e;
}

.foodord-table-reservations__preorder-product .foodord-product-label--gluten_free {
  --foodord-product-label-bg: #fef3c7;
  --foodord-product-label-border: #fde68a;
  --foodord-product-label-color: #92400e;
}

.foodord-table-reservations__preorder-product .foodord-product-label--popular {
  --foodord-product-label-bg: #fef9c3;
  --foodord-product-label-border: #fde047;
  --foodord-product-label-color: #a16207;
}

.foodord-table-reservations__preorder-product .foodord-product-label--new {
  --foodord-product-label-bg: #e0f2fe;
  --foodord-product-label-border: #bae6fd;
  --foodord-product-label-color: #0369a1;
}

.foodord-table-reservations__preorder-product.foodord-product-card--has-labels,
.foodord-table-reservations__preorder-product.foodord-product-card--label-row-matched {
  height: auto;
  max-height: none;
  min-height: 152px;
}

.foodord-table-reservations__preorder-quantity-button {
  align-items: center;
  background: var(--foodord-reservation-soft);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 5px;
  color: var(--foodord-reservation-text);
  display: inline-flex;
  font: inherit;
  height: 26px;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 26px;
  cursor: pointer;
}

.foodord-table-reservations__preorder-product .product-actions {
  bottom: 8px;
  margin: 0;
  position: absolute;
  right: 8px;
  z-index: 2;
}

.foodord-table-reservations__preorder-product .product-actions .foodord-table-reservations__preorder-product-add {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  color: var(--foodord-reservation-text);
  cursor: pointer;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 36px;
}

.foodord-table-reservations__preorder-product .product-actions .foodord-table-reservations__preorder-product-add::before,
.foodord-table-reservations__preorder-product .product-actions .foodord-table-reservations__preorder-product-add::after {
  background: currentColor;
  border-radius: 2px;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.foodord-table-reservations__preorder-product .product-actions .foodord-table-reservations__preorder-product-add::before {
  height: 2px;
  width: 50%;
}

.foodord-table-reservations__preorder-product .product-actions .foodord-table-reservations__preorder-product-add::after {
  height: 50%;
  width: 2px;
}

.foodord-table-reservations__preorder-product .product-actions .foodord-table-reservations__preorder-product-add:hover,
.foodord-table-reservations__preorder-product .product-actions .foodord-table-reservations__preorder-product-add:focus-visible {
  background: var(--foodord-reservation-soft);
  border-color: var(--foodord-reservation-border);
  color: var(--foodord-reservation-primary);
  outline: none;
  transform: scale(1.1);
}

.foodord-table-reservations__preorder-quantity-button:hover,
.foodord-table-reservations__preorder-quantity-button:focus-visible {
  background: var(--foodord-reservation-primary);
  border-color: var(--foodord-reservation-primary);
  color: #fff;
  outline: none;
}

@media (max-width: 480px) {
  .foodord-table-reservations__preorder-product {
    gap: 12px;
    padding: 12px;
  }

  .foodord-table-reservations__preorder-product .product-image-container {
    flex-basis: 100px;
    height: 100px;
    width: 100px;
  }

  .foodord-table-reservations__preorder-product.foodord-product-card--no-image {
    padding-right: 56px;
  }
}

.foodord-table-reservations__preorder-summary {
  background: var(--foodord-reservation-soft);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 8px;
  box-sizing: border-box;
  min-width: 0;
  padding: 16px;
  position: relative;
}

.foodord-table-reservations__preorder-summary-header {
  align-items: center;
  border-bottom: 1px solid var(--foodord-reservation-border);
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
}

.foodord-table-reservations__preorder-summary-actions {
  align-items: center;
  display: flex;
  gap: 6px;
}

.foodord-table-reservations__preorder-clear {
  align-items: center;
  appearance: none;
  background: var(--foodord-reservation-surface);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 6px;
  color: var(--foodord-reservation-text);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 32px;
  height: 32px;
  justify-content: center;
  margin: 0;
  padding: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  width: 32px;
}

.foodord-table-reservations__preorder-clear:hover,
.foodord-table-reservations__preorder-clear:focus-visible {
  background: color-mix(in srgb, var(--foodord-reservation-error) 8%, var(--foodord-reservation-surface));
  border-color: var(--foodord-reservation-error);
  outline: none;
}

.foodord-table-reservations__preorder-clear:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.foodord-table-reservations__preorder-clear:disabled:hover {
  background: var(--foodord-reservation-surface);
  border-color: var(--foodord-reservation-border);
}

.foodord-table-reservations__preorder-clear svg {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 16px;
}

.foodord-table-reservations__preorder-summary h3 {
  font-size: 16px;
  margin: 0;
}

.foodord-table-reservations__preorder-mobile-backdrop,
.foodord-table-reservations__preorder-mobile-close,
.foodord-table-reservations__preorder-mobile-message,
.foodord-table-reservations__preorder-mobile-trigger {
  display: none;
}

.foodord-table-reservations__preorder-items {
  align-content: start;
  display: grid;
  gap: 12px;
  overflow-y: auto;
}

.foodord-table-reservations__preorder-item {
  align-items: start;
  border-bottom: 1px solid var(--foodord-reservation-border);
  display: grid;
  column-gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 12px;
}

.foodord-table-reservations__preorder-item-details {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.foodord-table-reservations__preorder-item-details strong {
  color: var(--foodord-reservation-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.foodord-table-reservations__preorder-item-details span {
  color: var(--foodord-reservation-muted);
  font-size: 12px;
  line-height: 1.4;
}

.foodord-table-reservations__preorder-item-actions {
  align-items: flex-end;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: auto;
}

.foodord-table-reservations__preorder-item-price {
  color: var(--foodord-reservation-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.foodord-table-reservations__preorder-item-controls {
  align-items: center;
  display: flex;
  gap: 8px;
}

.foodord-table-reservations__preorder-item-note {
  grid-column: 1 / -1;
  min-width: 0;
}

.foodord-table-reservations__preorder-note-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--foodord-reservation-text);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.foodord-table-reservations__preorder-item-note.is-editing > .foodord-table-reservations__preorder-note-toggle {
  display: none;
}

.foodord-table-reservations__preorder-note-form {
  margin-top: 7px;
}

.foodord-table-reservations__preorder-note-counter {
  color: var(--foodord-reservation-muted);
  font-size: 11px;
  line-height: 1;
  margin-bottom: 5px;
  text-align: right;
}

.foodord-table-reservations__preorder-note-input {
  appearance: none;
  background: var(--foodord-reservation-surface);
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 6px;
  box-sizing: border-box;
  color: var(--foodord-reservation-text);
  display: block;
  font: inherit;
  font-size: 12px;
  line-height: 1.4;
  min-height: 68px;
  padding: 8px 9px;
  resize: vertical;
  width: 100%;
}

.foodord-table-reservations__preorder-note-input:focus {
  border-color: var(--foodord-reservation-primary);
  outline: none;
}

.foodord-table-reservations__preorder-note-actions {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 7px;
}

.foodord-table-reservations__preorder-note-button {
  appearance: none;
  border: 1px solid var(--foodord-reservation-border);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  min-height: 32px;
  padding: 6px 9px;
}

.foodord-table-reservations__preorder-note-button--secondary {
  background: transparent;
  color: var(--foodord-reservation-text);
}

.foodord-table-reservations__preorder-note-button--primary {
  background: var(--foodord-reservation-primary);
  border-color: var(--foodord-reservation-primary);
  color: #ffffff;
}

.foodord-table-reservations__preorder-note-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.foodord-table-reservations__preorder-note-display {
  background: var(--foodord-reservation-surface);
  border-radius: 6px;
  color: var(--foodord-reservation-muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 7px 0 0;
  overflow-wrap: anywhere;
  padding: 7px 9px;
}

.foodord-table-reservations__preorder-note-feedback {
  color: var(--foodord-reservation-error);
  font-size: 11px;
  line-height: 1.4;
  margin-top: 5px;
}

.foodord-table-reservations__preorder-quantity-button.is-remove svg {
  fill: none;
  height: 14px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 14px;
}

.foodord-table-reservations__preorder-cancel-reservation {
  background: transparent;
  border: 0;
  color: var(--foodord-reservation-muted);
  cursor: pointer;
  display: block;
  font: inherit;
  font-size: 12px;
  margin: 12px auto 0;
  padding: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.foodord-table-reservations__preorder-cancel-reservation:hover {
  color: var(--foodord-reservation-text);
}

.foodord-table-reservations__preorder-summary-empty,
.foodord-table-reservations__preorder-empty {
  color: var(--foodord-reservation-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.foodord-table-reservations__preorder-summary-empty {
  box-sizing: border-box;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
}

.foodord-table-reservations__preorder-summary-empty[hidden] {
  display: none;
}

.foodord-table-reservations__preorder-total {
  align-items: center;
  border-top: 1px solid var(--foodord-reservation-border);
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
}

.foodord-table-reservations__preorder-checkout {
  margin: 0;
  width: 100%;
}

.foodord-table-reservations__preorder-summary-stack {
  display: grid;
  gap: 12px;
}

.foodord-table-reservations__preorder-modal-error {
  background: color-mix(in srgb, var(--foodord-reservation-error) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--foodord-reservation-error) 24%, transparent);
  border-radius: 6px;
  color: var(--foodord-reservation-error);
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 10px;
  padding: 9px 11px;
  width: 100%;
}

.foodord-table-reservations__preorder-modal-error:empty {
  display: none;
}

@media (min-width: 721px) {
  .foodord-table-reservations__preorder-products,
  .foodord-table-reservations__preorder-summary-stack {
    height: 460px;
  }

  .foodord-table-reservations__preorder-sidebar {
    min-width: 0;
  }

  .foodord-table-reservations__preorder-summary-stack {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .foodord-table-reservations__preorder-summary {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .foodord-table-reservations__preorder-items {
    flex: 1 1 auto;
    min-height: 0;
  }

  .foodord-table-reservations__preorder-total {
    flex-shrink: 0;
  }

  .foodord-table-reservations--preorder-active .foodord-table-reservations__layout {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    min-height: var(--foodord-reservation-layout-height, clamp(560px, 72vh, 780px));
  }

  .foodord-table-reservations--preorder-active .foodord-table-reservations__banner {
    display: none;
  }

  .foodord-table-reservations--preorder-active .foodord-table-reservations__content {
    justify-content: flex-start;
    overflow: visible;
    padding: clamp(28px, 3vw, 48px);
  }
}

body.foodord-dark-mode .foodord-table-reservations,
.foodord-dark-mode .foodord-table-reservations {
  --foodord-reservation-text: #f5f7fb;
  --foodord-reservation-muted: #aeb6c2;
  --foodord-reservation-border: #394150;
  --foodord-reservation-surface: #161b22;
  --foodord-reservation-soft: #202733;
}

body.foodord-dark-mode .foodord-table-reservations__form,
body.foodord-dark-mode .foodord-table-reservations__empty,
.foodord-dark-mode .foodord-table-reservations__form,
.foodord-dark-mode .foodord-table-reservations__empty {
  background: #121821;
  border-color: #303949;
}

body.foodord-dark-mode .foodord-table-reservations__empty,
.foodord-dark-mode .foodord-table-reservations__empty {
  background: linear-gradient(180deg, #1a2230 0%, #121821 100%);
}

body.foodord-dark-mode .foodord-table-reservations__empty--admin,
.foodord-dark-mode .foodord-table-reservations__empty--admin {
  border-color: color-mix(in srgb, var(--foodord-reservation-primary) 34%, #303949);
}

body.foodord-dark-mode .foodord-table-reservations__empty-icon,
.foodord-dark-mode .foodord-table-reservations__empty-icon {
  background: color-mix(in srgb, var(--foodord-reservation-primary) 16%, #121821);
  border-color: color-mix(in srgb, var(--foodord-reservation-primary) 30%, #303949);
}

body.foodord-dark-mode .foodord-table-reservations input,
body.foodord-dark-mode .foodord-table-reservations select,
body.foodord-dark-mode .foodord-table-reservations textarea,
.foodord-dark-mode .foodord-table-reservations input,
.foodord-dark-mode .foodord-table-reservations select,
.foodord-dark-mode .foodord-table-reservations textarea {
  background: #0f141b;
  border-color: #3c4655;
  color: #f8fafc;
  color-scheme: dark;
}

body.foodord-dark-mode .foodord-table-reservations input:focus,
body.foodord-dark-mode .foodord-table-reservations select:focus,
body.foodord-dark-mode .foodord-table-reservations textarea:focus,
.foodord-dark-mode .foodord-table-reservations input:focus,
.foodord-dark-mode .foodord-table-reservations select:focus,
.foodord-dark-mode .foodord-table-reservations textarea:focus {
  border-color: var(--foodord-reservation-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--foodord-reservation-primary) 28%, transparent);
}

body.foodord-dark-mode .foodord-table-reservations__manage-form .foodord-table-reservations__control:disabled,
.foodord-dark-mode .foodord-table-reservations__manage-form .foodord-table-reservations__control:disabled {
  -webkit-text-fill-color: #929ba8;
  background: #242a32;
  border-color: #3b434e;
  color: #929ba8;
}

body.foodord-dark-mode .foodord-table-reservations-datepicker.ui-datepicker,
.foodord-dark-mode .foodord-table-reservations-datepicker.ui-datepicker {
  background: #121821;
  border-color: #303949;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  color: #f5f7fb;
}

body.foodord-dark-mode .foodord-table-reservations-datepicker .ui-datepicker-prev,
body.foodord-dark-mode .foodord-table-reservations-datepicker .ui-datepicker-next,
.foodord-dark-mode .foodord-table-reservations-datepicker .ui-datepicker-prev,
.foodord-dark-mode .foodord-table-reservations-datepicker .ui-datepicker-next {
  border-color: #3c4655;
  color: #f5f7fb;
}

body.foodord-dark-mode .foodord-table-reservations-datepicker th,
.foodord-dark-mode .foodord-table-reservations-datepicker th {
  color: #aeb6c2;
}

body.foodord-dark-mode .foodord-table-reservations-datepicker td a,
body.foodord-dark-mode .foodord-table-reservations-datepicker td span,
.foodord-dark-mode .foodord-table-reservations-datepicker td a,
.foodord-dark-mode .foodord-table-reservations-datepicker td span {
  color: #f5f7fb;
}

body.foodord-dark-mode .foodord-table-reservations-datepicker td a:hover,
body.foodord-dark-mode .foodord-table-reservations-datepicker td a:focus,
body.foodord-dark-mode .foodord-table-reservations-datepicker .ui-datepicker-current-day a,
.foodord-dark-mode .foodord-table-reservations-datepicker td a:hover,
.foodord-dark-mode .foodord-table-reservations-datepicker td a:focus,
.foodord-dark-mode .foodord-table-reservations-datepicker .ui-datepicker-current-day a {
  color: #fff;
}

body.foodord-dark-mode .foodord-table-reservations-datepicker .ui-state-disabled span,
.foodord-dark-mode .foodord-table-reservations-datepicker .ui-state-disabled span {
  color: #606b7a;
}

body.foodord-dark-mode .foodord-table-reservations__button--secondary,
.foodord-dark-mode .foodord-table-reservations__button--secondary {
  background: var(--foodord-reservation-primary);
  border-color: var(--foodord-reservation-primary);
  color: #ffffff;
}

body.foodord-dark-mode .foodord-table-reservations__button--home,
.foodord-dark-mode .foodord-table-reservations__button--home {
  background: var(--foodord-reservation-primary);
  border-color: var(--foodord-reservation-primary);
  color: #ffffff;
}

body.foodord-dark-mode .foodord-table-reservations__button--secondary:hover,
body.foodord-dark-mode .foodord-table-reservations__button--secondary:focus,
.foodord-dark-mode .foodord-table-reservations__button--secondary:hover,
.foodord-dark-mode .foodord-table-reservations__button--secondary:focus,
body.foodord-dark-mode .foodord-table-reservations__button--home:hover,
body.foodord-dark-mode .foodord-table-reservations__button--home:focus,
.foodord-dark-mode .foodord-table-reservations__button--home:hover,
.foodord-dark-mode .foodord-table-reservations__button--home:focus {
  background: color-mix(in srgb, var(--foodord-reservation-primary) 86%, #000000);
  border-color: color-mix(in srgb, var(--foodord-reservation-primary) 86%, #000000);
  color: #ffffff;
}

body.foodord-dark-mode .foodord-table-reservations__hold,
.foodord-dark-mode .foodord-table-reservations__hold {
  background: color-mix(in srgb, var(--foodord-reservation-success) 24%, #121821);
  border-color: color-mix(in srgb, var(--foodord-reservation-success) 42%, #303949);
}

body.foodord-dark-mode .foodord-table-reservations__deposit-cancelled,
.foodord-dark-mode .foodord-table-reservations__deposit-cancelled {
  background: color-mix(in srgb, #ff8a80 14%, var(--foodord-reservation-surface));
  border-color: color-mix(in srgb, #ff8a80 34%, var(--foodord-reservation-border));
  color: #ff9e96;
}

body.foodord-dark-mode .foodord-table-reservations__table-selection-floors,
.foodord-dark-mode .foodord-table-reservations__table-selection-floors {
  background: #121821;
  border-color: #303949;
}

body.foodord-dark-mode .foodord-table-reservations__table-selection-floor:hover,
body.foodord-dark-mode .foodord-table-reservations__table-selection-floor:focus-visible,
body.foodord-dark-mode .foodord-table-reservations__table-selection-floor.is-active,
.foodord-dark-mode .foodord-table-reservations__table-selection-floor:hover,
.foodord-dark-mode .foodord-table-reservations__table-selection-floor:focus-visible,
.foodord-dark-mode .foodord-table-reservations__table-selection-floor.is-active {
  background: #1c2531;
}

body.foodord-dark-mode .foodord-table-reservations__table-selection-canvas,
.foodord-dark-mode .foodord-table-reservations__table-selection-canvas {
  background: #121821;
  border-color: #303949;
}

body.foodord-dark-mode .foodord-table-reservations__table-selection-marker,
.foodord-dark-mode .foodord-table-reservations__table-selection-marker {
  background: #1c2531;
  border-color: var(--foodord-reservation-primary);
  color: var(--foodord-reservation-text);
}

body.foodord-dark-mode .foodord-table-reservations__table-selection-marker:hover,
body.foodord-dark-mode .foodord-table-reservations__table-selection-marker:focus-visible,
body.foodord-dark-mode .foodord-table-reservations__table-selection-marker.is-selected,
.foodord-dark-mode .foodord-table-reservations__table-selection-marker:hover,
.foodord-dark-mode .foodord-table-reservations__table-selection-marker:focus-visible,
.foodord-dark-mode .foodord-table-reservations__table-selection-marker.is-selected {
  background: var(--foodord-reservation-primary);
  color: #ffffff;
}

body.foodord-dark-mode .foodord-table-reservations__preorder-product,
body.foodord-dark-mode .foodord-table-reservations__preorder-summary,
.foodord-dark-mode .foodord-table-reservations__preorder-product,
.foodord-dark-mode .foodord-table-reservations__preorder-summary {
  background: #121821;
  border-color: #303949;
}

body.foodord-dark-mode .foodord-table-reservations__preorder-product:hover,
body.foodord-dark-mode .foodord-table-reservations__preorder-product:focus-within,
.foodord-dark-mode .foodord-table-reservations__preorder-product:hover,
.foodord-dark-mode .foodord-table-reservations__preorder-product:focus-within {
  background: #1c2531;
  border-color: color-mix(in srgb, var(--foodord-reservation-primary) 52%, #303949);
}

body.foodord-dark-mode .foodord-table-reservations__preorder-product .product-image-container,
.foodord-dark-mode .foodord-table-reservations__preorder-product .product-image-container {
  background: #121821;
  border: 1px solid #303949;
}

body.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label,
.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label {
  --foodord-product-label-bg: rgba(148, 163, 184, 0.18);
  --foodord-product-label-border: rgba(203, 213, 225, 0.34);
  --foodord-product-label-color: #f1f5f9;
}

body.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--vegetarian,
body.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--vegan,
.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--vegetarian,
.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--vegan {
  --foodord-product-label-bg: rgba(34, 197, 94, 0.24);
  --foodord-product-label-border: rgba(134, 239, 172, 0.44);
  --foodord-product-label-color: #bbf7d0;
}

body.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--spicy,
body.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--very_spicy,
.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--spicy,
.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--very_spicy {
  --foodord-product-label-bg: rgba(239, 68, 68, 0.24);
  --foodord-product-label-border: rgba(252, 165, 165, 0.44);
  --foodord-product-label-color: #fecaca;
}

body.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--halal,
.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--halal {
  --foodord-product-label-bg: rgba(20, 184, 166, 0.24);
  --foodord-product-label-border: rgba(94, 234, 212, 0.44);
  --foodord-product-label-color: #99f6e4;
}

body.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--gluten_free,
body.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--popular,
.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--gluten_free,
.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--popular {
  --foodord-product-label-bg: rgba(245, 158, 11, 0.24);
  --foodord-product-label-border: rgba(253, 224, 71, 0.44);
  --foodord-product-label-color: #fde68a;
}

body.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--new,
.foodord-dark-mode .foodord-table-reservations__preorder-product .foodord-product-label--new {
  --foodord-product-label-bg: rgba(14, 165, 233, 0.24);
  --foodord-product-label-border: rgba(125, 211, 252, 0.44);
  --foodord-product-label-color: #bae6fd;
}

@media (min-width: 1200px) {
  .foodord-table-reservations__preorder-category-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.foodord-dark-mode .foodord-table-reservations__preorder-product-add,
body.foodord-dark-mode .foodord-table-reservations__preorder-quantity-button,
.foodord-dark-mode .foodord-table-reservations__preorder-product-add,
.foodord-dark-mode .foodord-table-reservations__preorder-quantity-button {
  background: #1c2531;
  border-color: #3c4655;
  color: #f5f7fb;
}

body.foodord-dark-mode .foodord-table-reservations__preorder-modal-error,
.foodord-dark-mode .foodord-table-reservations__preorder-modal-error {
  background: color-mix(in srgb, #ff8a80 13%, #121821);
  border-color: color-mix(in srgb, #ff8a80 30%, #303949);
  color: #ff9e96;
}

@media (min-width: 721px) {
  .foodord-table-reservations__button--secondary {
    display: flex;
    margin-left: auto;
    width: fit-content;
  }
}

@media (max-width: 720px) {
  body.foodord-reservation-preorder-cart-open {
    overflow: hidden;
  }

  .foodord-table-reservations__customer-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .foodord-table-reservations__customer-actions .foodord-table-reservations__button--primary {
    order: 1;
  }

  .foodord-table-reservations__customer-actions .foodord-table-reservations__button--cancel {
    order: 2;
  }

  body.foodord-reservation-preorder-active > .foodord-mobile-cart,
  body.foodord-reservation-preorder-active > .foodord-mobile-cart__modal {
    display: none;
  }

  .foodord-table-reservations__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .foodord-table-reservations__banner {
    aspect-ratio: 16 / 8;
    min-height: 0;
  }

  .foodord-table-reservations__content {
    padding: 18px 14px 24px;
  }

  .foodord-table-reservations__timeline {
    margin-bottom: 12px;
  }

  .foodord-table-reservations__timeline-item {
    font-size: 12px;
  }

  .foodord-table-reservations__timeline-label {
    max-width: 88px;
  }

  .foodord-table-reservations__form,
  .foodord-table-reservations__empty {
    border-radius: 8px;
    padding: 16px;
  }

  .foodord-table-reservations__empty {
    min-height: clamp(260px, 42vh, 360px);
    padding: 28px 16px;
  }

  .foodord-table-reservations__empty-icon {
    height: 56px;
    margin-bottom: 16px;
    width: 56px;
  }

  .foodord-table-reservations__empty-button,
  .foodord-table-reservations__empty-button.foodord-table-reservations__button--primary {
    width: 100%;
  }

  .foodord-table-reservations__grid {
    grid-template-columns: 1fr;
  }

  .foodord-table-reservations__button--secondary {
    width: 100%;
  }

  .foodord-table-reservations__table-selection {
    grid-template-columns: minmax(0, 1fr);
  }

  .foodord-table-reservations__table-selection-back {
    grid-column: 1;
    grid-row: 1;
  }

  .foodord-table-reservations__table-selection-floors {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    margin: 0 auto;
    width: max-content;
  }

  .foodord-table-reservations__table-selection-surface,
  .foodord-table-reservations__table-selection-image {
    max-height: 60vh;
  }

  .foodord-table-reservations__table-selection-marker {
    min-width: 42px;
    min-height: 30px;
    font-size: 11px;
    padding: 4px 6px;
  }

  .foodord-table-reservations__preorder-layout,
  .foodord-table-reservations__preorder-navigation-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .foodord-table-reservations__preorder-products {
    height: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .foodord-table-reservations__preorder-navigation {
    background: var(--foodord-reservation-surface);
    position: sticky;
    top: 0;
    z-index: 4;
  }

  .foodord-table-reservations__preorder-category-products {
    grid-template-columns: minmax(0, 1fr);
  }

  .foodord-table-reservations__preorder-mobile-trigger {
    align-items: center;
    appearance: none;
    background: var(--foodord-reservation-primary);
    border: 0;
    border-radius: 999px;
    bottom: max(10px, env(safe-area-inset-bottom));
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    justify-content: space-between;
    left: 16px;
    min-height: 56px;
    padding: 12px 16px;
    position: fixed;
    right: 16px;
    z-index: 9999;
  }

  .foodord-table-reservations__preorder-mobile-trigger[hidden] {
    display: none;
  }

  .foodord-table-reservations__preorder-mobile-trigger:hover,
  .foodord-table-reservations__preorder-mobile-trigger:focus-visible {
    background: var(--foodord-reservation-primary-hover);
    outline: none;
  }

  .foodord-table-reservations__preorder-mobile-trigger-info {
    align-items: center;
    display: inline-flex;
    gap: 8px;
  }

  .foodord-table-reservations__preorder-mobile-count {
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    font-size: 13px;
    height: 24px;
    justify-content: center;
    min-width: 24px;
    width: 24px;
  }

  .foodord-table-reservations__preorder-mobile-trigger strong {
    color: inherit;
    font-size: 14px;
    font-weight: 600;
  }

  .foodord-table-reservations__preorder-sidebar {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    visibility: hidden;
    z-index: 99999;
  }

  .foodord-table-reservations__preorder-sidebar.is-open,
  .foodord-table-reservations__preorder-sidebar.is-closing {
    visibility: visible;
  }

  .foodord-table-reservations__preorder-sidebar.is-open {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
  }

  .foodord-table-reservations__preorder-sidebar.is-closing {
    opacity: 0;
    transition: opacity 0.28s ease;
  }

  .foodord-table-reservations__preorder-mobile-backdrop {
    appearance: none;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    display: block;
    inset: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
  }

  .foodord-table-reservations__preorder-summary-stack {
    background: var(--foodord-reservation-surface);
    border-radius: 18px 18px 0 0;
    bottom: 0;
    box-shadow: 0 -18px 44px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0;
    height: calc(100vh - 18px);
    height: calc(100dvh - 18px);
    left: 0;
    max-height: calc(100vh - 18px);
    max-height: calc(100dvh - 18px);
    overflow: hidden;
    position: absolute;
    right: 0;
    transform: translate3d(0, 100%, 0);
  }

  .foodord-table-reservations__preorder-sidebar.is-open .foodord-table-reservations__preorder-summary-stack {
    transform: translate3d(0, 0, 0);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .foodord-table-reservations__preorder-sidebar.is-closing .foodord-table-reservations__preorder-summary-stack {
    transform: translate3d(0, 100%, 0);
    transition: transform 0.28s cubic-bezier(0.4, 0, 1, 1);
  }

  .foodord-table-reservations__preorder-summary {
    background: var(--foodord-reservation-surface);
    border: 0;
    border-radius: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    padding: 0;
  }

  .foodord-table-reservations__preorder-summary-header {
    border-bottom: 1px solid var(--foodord-reservation-border);
    flex: 0 0 auto;
    margin: 0;
    padding: 16px;
  }

  .foodord-table-reservations__preorder-mobile-close {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--foodord-reservation-text);
    cursor: pointer;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 34px;
  }

  .foodord-table-reservations__preorder-mobile-close:hover,
  .foodord-table-reservations__preorder-mobile-close:focus-visible {
    background: var(--foodord-reservation-soft);
    outline: none;
  }

  .foodord-table-reservations__preorder-mobile-close svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 20px;
  }

  .foodord-table-reservations__preorder-items {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 16px;
  }

  .foodord-table-reservations__preorder-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .foodord-table-reservations__preorder-summary-empty {
    padding: 16px;
  }

  .foodord-table-reservations__preorder-total {
    flex: 0 0 auto;
    margin: 0 16px;
    padding: 14px 0 0;
  }

  .foodord-table-reservations__preorder-checkout {
    flex: 0 0 auto;
    margin: 10px 16px max(16px, env(safe-area-inset-bottom));
    width: auto;
  }

  .foodord-table-reservations__preorder-mobile-message {
    display: block;
    flex: 0 0 auto;
    margin: 0;
    max-height: none;
    min-height: 0;
    padding: 8px 16px 0;
  }

  .foodord-table-reservations__preorder-mobile-message:empty {
    display: none;
  }

  .foodord-table-reservations__preorder > .foodord-table-reservations__message {
    display: none;
  }

  .foodord-table-reservations--preorder-active .foodord-table-reservations__hold-cancel {
    display: inline-flex;
  }

  .foodord-table-reservations__preorder-cancel-reservation {
    display: none;
  }
}
