:root {
  --hotmat-brand-red: #f63d41;
  --hotmat-brand-red-dark: #d90d18;
  --hotmat-ink: #334444;
  --hotmat-muted: #737487;
  --hotmat-wide-max: 1440px;
  --hotmat-content-max: 1312px;
  --hotmat-page-gutter: clamp(16px, 4vw, 64px);
  --restaurant-shell-wide-max: var(--hotmat-wide-max);
  --restaurant-shell-content-max: var(--hotmat-content-max);
  --restaurant-shell-page-gutter: var(--hotmat-page-gutter);
  --checkout-card-max: 896px;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.topbar,
.topbar * {
  box-sizing: border-box;
}

.topbar {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 50%;
  max-width: var(--hotmat-wide-max);
  padding: 20px var(--hotmat-page-gutter);
  position: absolute;
  right: auto;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, var(--hotmat-wide-max));
  z-index: 3;
}

.topbar a {
  color: inherit;
  text-decoration: none;
}

.topbar .topbar-logo {
  align-items: center;
  display: inline-flex;
  min-width: 0;
}

.topbar .topbar-logo-wordmark {
  color: #ffffff;
  display: block;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.42));
  height: 27px;
  width: auto;
}

.topbar .top-actions {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  gap: 12px;
  justify-content: flex-end;
  line-height: 1;
  min-width: 0;
  white-space: nowrap;
}

.topbar .top-link {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  min-height: 34px;
  padding: 8px 4px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}

.topbar .top-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.topbar .partner-menu-wrap {
  position: relative;
}

.topbar .partner-menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  gap: 5px;
}

.topbar .partner-chevron {
  fill: none;
  flex: 0 0 auto;
  height: 13px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  transition: transform 180ms ease;
  width: 13px;
}

.topbar .partner-menu-button[aria-expanded="true"] .partner-chevron {
  transform: rotate(180deg);
}

.topbar .partner-menu {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--hotmat-ink, #334444);
  left: 0;
  min-width: 160px;
  opacity: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 10px);
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
  z-index: 10;
}

.topbar .partner-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.topbar .partner-option {
  align-items: center;
  border-radius: 10px;
  color: var(--hotmat-ink, #334444);
  display: flex;
  font-size: 15px;
  line-height: 1;
  min-height: 42px;
  padding: 10px 12px;
  text-decoration: none;
  transition: background 120ms ease;
}

.topbar .partner-option:hover,
.topbar .partner-option:focus-visible {
  background: #f4f4f4;
  outline: 0;
}

.topbar .top-pill {
  align-items: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  height: 34px;
  justify-content: center;
  padding: 0 14px;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.topbar .top-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.topbar .top-pill:active {
  transform: translateY(1px);
}

.topbar .top-icon {
  fill: none;
  flex: 0 0 auto;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

.topbar .language-menu-wrap {
  position: relative;
}

.topbar .language-button,
.topbar .profile-button {
  font-size: 16px;
  font-weight: 400;
}

.topbar .language-chevron {
  fill: none;
  flex: 0 0 auto;
  height: 13px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  transition: transform 180ms ease;
  width: 13px;
}

.topbar .language-button[aria-expanded="true"] .language-chevron {
  transform: rotate(180deg);
}

.topbar .language-menu {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--hotmat-ink, #334444);
  min-width: 220px;
  opacity: 0;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
  z-index: 10;
}

.topbar .language-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.topbar .language-menu-title {
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 8px 12px 6px;
  text-transform: uppercase;
}

.topbar .language-option {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--hotmat-ink, #334444);
  cursor: pointer;
  display: flex;
  font-size: 15px;
  gap: 12px;
  line-height: 1;
  min-height: 46px;
  padding: 10px 12px;
  text-align: left;
  transition: background 120ms ease;
  width: 100%;
}

.topbar .language-option:hover {
  background: #f4f4f4;
}

.topbar .language-option:focus-visible {
  outline: 2px solid rgba(51, 68, 68, 0.28);
  outline-offset: 2px;
}

.topbar .language-option.selected {
  font-weight: 700;
}

.topbar .language-code {
  align-items: center;
  background: #f0f0f0;
  border-radius: 7px;
  color: #555555;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  height: 26px;
  justify-content: center;
  letter-spacing: 0.04em;
  width: 34px;
}

.topbar .language-option.selected .language-code {
  background: #1a1a1a;
  color: #ffffff;
}

.topbar .language-name {
  flex: 1;
}

.topbar .language-check {
  color: var(--hotmat-ink, #334444);
  fill: none;
  flex: 0 0 auto;
  height: 16px;
  opacity: 0;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transform: scale(0.6);
  transition: opacity 120ms ease, transform 120ms ease;
  width: 16px;
}

.topbar .language-option.selected .language-check {
  opacity: 1;
  transform: scale(1);
}

.topbar .top-link:focus-visible,
.topbar .top-pill:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .topbar {
    gap: 10px;
    padding: 14px 16px;
  }

  .topbar .topbar-logo-wordmark {
    height: 24px;
  }

  .topbar .top-actions {
    gap: 8px;
  }

  .topbar .top-link {
    display: none;
  }

  .topbar .partner-menu-button.top-link {
    display: inline-flex;
    font-size: 14px;
    min-height: 32px;
    padding: 8px 2px;
  }

  .topbar .top-pill {
    font-size: 14px;
    height: 32px;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .topbar .partner-menu-wrap {
    display: none;
  }

  .topbar .top-pill {
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .topbar .profile-button span {
    display: none;
  }

  .topbar .profile-button .account-menu-chevron {
    display: none;
  }
}

@media (min-width: 700px) {
  .topbar .topbar-logo-wordmark {
    height: 30px;
  }
}

@media (min-width: 1024px) {
  .topbar .top-actions {
    gap: 12px;
    font-size: 16px;
  }

  .topbar .language-button.top-pill {
    padding-right: 15px;
    padding-left: 16px;
  }
}

.checkout-page-body,
.payment-page-body,
.tracking-page-body,
.driver-page-body {
  background: #ffffff;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-height: 100vh;
}

#checkout-page,
#payment-page,
#tracking-page,
#driver-page {
  box-sizing: border-box;
  flex: 1 0 auto;
  margin: 0 auto;
  max-width: var(--restaurant-shell-wide-max);
  padding: 24px var(--restaurant-shell-page-gutter) 48px;
  width: 100%;
}

.driver-page-body #driver-page {
  margin: 0;
  max-width: none;
  padding: 0;
}

.checkout-page-body #checkout-page *,
.checkout-page-body #checkout-page *::before,
.checkout-page-body #checkout-page *::after,
.payment-page-body #payment-page *,
.payment-page-body #payment-page *::before,
.payment-page-body #payment-page *::after,
.tracking-page-body #tracking-page *,
.tracking-page-body #tracking-page *::before,
.tracking-page-body #tracking-page *::after,
.driver-page-body #driver-page *,
.driver-page-body #driver-page *::before,
.driver-page-body #driver-page *::after {
  box-sizing: border-box;
}

.driver-hero {
  background: #050505;
  min-height: clamp(620px, 100svh, 760px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.driver-hero::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.22));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.driver-hero-image {
  background: #050505;
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 20%;
  position: absolute;
  width: 100%;
}

.driver-hero-inner {
  align-items: center;
  display: flex;
  gap: clamp(28px, 5vw, 64px);
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--restaurant-shell-wide-max);
  min-height: inherit;
  padding: clamp(24px, 4vw, 64px);
  position: relative;
  width: 100%;
  z-index: 2;
}

.driver-hero-copy {
  color: #ffffff;
  max-width: 760px;
  min-width: 0;
  padding-top: 0;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}

.driver-hero-title {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

.driver-hero-subtitle {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 400;
  line-height: 1.45;
  margin: 14px 0 0;
  max-width: 660px;
}

.driver-hero-badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.driver-hero-badge {
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  font-size: 15px;
  font-weight: 400;
  gap: 12px;
  line-height: 1.2;
  min-height: 54px;
  padding: 12px 16px;
  white-space: nowrap;
}

.driver-hero-badge-icon {
  color: #ef3b24;
  display: flex;
  flex: 0 0 auto;
}

.driver-hero-badge-icon svg {
  display: block;
  height: 34px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 34px;
}

.driver-registration-card {
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  flex: 0 0 auto;
  color: #1a1a1a;
  margin: 0;
  padding: 32px 28px 28px;
  width: min(100%, 368px);
}

.driver-registration-title {
  color: #1a1a1a;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
}

.driver-registration-subtitle {
  color: #555555;
  font-size: 14px;
  line-height: 1.45;
  margin: 8px 0 0;
}

.driver-registration-field {
  margin-top: 16px;
}

.driver-registration-label {
  color: #1a1a1a;
  display: block;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 7px;
}

.driver-registration-input-wrap {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  height: 44px;
  padding: 0 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.driver-registration-input-wrap:focus-within {
  border-color: #ef3b24;
  box-shadow: 0 0 0 3px rgba(239, 59, 36, 0.14);
}

.driver-registration-icon {
  color: #9a9a9a;
  display: flex;
  flex: 0 0 auto;
}

.driver-registration-icon svg {
  display: block;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 16px;
}

.driver-registration-input {
  background: transparent;
  border: 0;
  color: #1a1a1a;
  flex: 1 1 auto;
  font-size: 14px;
  min-width: 0;
  outline: 0;
  padding: 0;
}

.driver-registration-input::placeholder {
  color: #b3b3b3;
}

.driver-registration-button {
  background: #ef3b24;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  height: 46px;
  margin-top: 24px;
  transition: background 0.15s ease, transform 0.15s ease;
  width: 100%;
}

.driver-registration-button:hover,
.driver-registration-button:focus-visible {
  background: #d9301d;
}

.driver-registration-button:focus-visible {
  outline: 3px solid rgba(239, 59, 36, 0.26);
  outline-offset: 3px;
}

.driver-registration-button:active {
  transform: translateY(1px);
}

.driver-how {
  background: #f7f7f6;
  padding: 38px var(--restaurant-shell-page-gutter) 44px;
  width: 100%;
}

.driver-how-inner {
  margin: 0 auto;
  max-width: var(--restaurant-shell-content-max);
  width: 100%;
}

.driver-how-title {
  color: #161616;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 22px;
  text-align: center;
}

.driver-how-cards {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.driver-how-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.045);
  display: grid;
  gap: 20px;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 132px;
  padding: 22px 24px 22px 58px;
  position: relative;
}

.driver-how-step {
  align-items: center;
  background: var(--hotmat-brand-red);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(22, 22, 22, 0.18);
  color: #ffffff;
  display: flex;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  left: 22px;
  line-height: 1;
  position: absolute;
  top: 22px;
  width: 32px;
}

.driver-how-illustration {
  align-items: center;
  display: flex;
  height: 86px;
  justify-content: center;
  width: 104px;
}

.driver-how-illustration img {
  display: block;
  height: 86px;
  object-fit: contain;
  width: 104px;
}

.driver-how-copy {
  min-width: 0;
}

.driver-how-copy h3 {
  color: #161616;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px;
}

.driver-how-copy p {
  color: #626262;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  max-width: 260px;
  text-wrap: pretty;
}

@media screen and (max-width: 980px) {
  .driver-how-cards {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 620px;
  }

  .driver-how-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .driver-how-copy p {
    max-width: none;
  }
}

@media screen and (max-width: 520px) {
  .driver-hero {
    min-height: 0;
  }

  .driver-hero-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
    justify-content: center;
    padding: 112px 16px 42px;
  }

  .driver-hero-copy {
    padding-top: 0;
  }

  .driver-hero-title {
    font-size: 39px;
  }

  .driver-hero-subtitle {
    font-size: 16px;
    margin-top: 12px;
  }

  .driver-hero-badges {
    align-items: stretch;
    gap: 10px;
    margin-top: 22px;
  }

  .driver-hero-badge {
    flex: 1 1 100%;
    font-size: 14px;
    min-height: 48px;
    padding: 11px 13px;
  }

  .driver-hero-badge-icon svg {
    height: 30px;
    width: 30px;
  }

  .driver-registration-card {
    padding: 30px 26px 26px;
    width: 100%;
  }

  .driver-how {
    padding: 34px 16px 40px;
  }

  .driver-how-title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .driver-how-cards {
    gap: 14px;
  }

  .driver-how-card {
    gap: 16px;
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 122px;
    padding: 18px 18px 18px 48px;
  }

  .driver-how-step {
    font-size: 14px;
    height: 28px;
    left: 14px;
    top: 18px;
    width: 28px;
  }

  .driver-how-illustration,
  .driver-how-illustration img {
    height: 72px;
    width: 78px;
  }

  .driver-how-copy h3 {
    font-size: 16px;
  }

  .driver-how-copy p {
    font-size: 13px;
    line-height: 1.42;
  }
}

@media screen and (max-width: 360px) {
  .driver-hero-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .driver-registration-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .driver-registration-input-wrap {
    gap: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .driver-registration-input {
    font-size: 13px;
  }

  .driver-how-card {
    grid-template-columns: 1fr;
    padding: 56px 18px 20px;
    text-align: center;
  }

  .driver-how-step {
    left: 18px;
  }

  .driver-how-illustration {
    margin: 0 auto;
  }
}


.checkout-layout {
  align-items: flex-start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  width: 100%;
}

.payment-layout {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

@media screen and (min-width: 761px) {
  .payment-page-body #payment-page {
    align-items: center;
    display: flex;
    min-height: 0;
  }
}

.checkout-main-column {
  min-width: 0;
  width: 100%;
}

.payment-layout .checkout-main-column {
  justify-self: center;
  max-width: var(--checkout-card-max);
}

.checkout-delivery-card {
  background: #ffffff;
  border: 1px solid #e6e8ee;
  border-radius: 8px;
  margin: 0;
  max-width: var(--checkout-card-max);
  min-height: 286px;
  padding: 20px 28px 30px 23px;
  width: 100%;
}

.checkout-delivery-card--unavailable {
  min-height: 0;
}

.checkout-contact-card {
  background: #ffffff;
  border: 1px solid #e6e8ee;
  border-radius: 8px;
  color: #1b1f2a;
  margin-top: 16px;
  max-width: var(--checkout-card-max);
  padding: 22px 23px 20px;
  width: 100%;
}

.checkout-contact-title {
  color: #111111;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.checkout-contact-fields {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  padding-left: 5px;
}

.checkout-contact-field {
  color: #535b6c;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 400;
  gap: 9px;
  line-height: 1.35;
  min-width: 0;
}

.checkout-contact-field span {
  min-width: 0;
}

.checkout-contact-field > label {
  color: inherit;
  font: inherit;
}

.checkout-contact-field input,
.checkout-contact-field textarea {
  appearance: none;
  background: #ffffff;
  border: 1px solid #d6d9df;
  border-radius: 6px;
  color: #111111;
  font: inherit;
  height: 42px;
  line-height: 1.2;
  min-width: 0;
  padding: 0 12px;
  width: 100%;
}

.checkout-contact-field textarea {
  min-height: 42px;
  overflow: hidden;
  padding: 10px 12px;
  resize: none;
}

.checkout-contact-field input:focus,
.checkout-contact-field textarea:focus {
  border-color: var(--hotmat-brand-red);
  outline: 3px solid rgba(246, 61, 65, 0.18);
}

.checkout-contact-field input[aria-invalid="true"] {
  border-color: var(--hotmat-brand-red);
}

.checkout-contact-field-feedback {
  color: #b4232b;
  display: block;
  font-size: 12.5px;
  line-height: 1.4;
}

.checkout-contact-field-feedback[hidden] {
  display: none;
}

.checkout-swish-phone-feedback {
  color: #626a78;
  display: block;
  font-size: 12.5px;
  line-height: 1.4;
}

.checkout-swish-phone-feedback[hidden] {
  display: none;
}

.checkout-swish-phone-feedback--error {
  color: #b4232b;
}

.checkout-swish-phone-feedback button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--hotmat-brand-red);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  margin: 0 0 0 4px;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.checkout-swish-phone-feedback button:hover {
  text-decoration-thickness: 2px;
}

.checkout-swish-phone-feedback button:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--hotmat-brand-red);
  outline-offset: 2px;
}

.checkout-contact-field--comment {
  margin-top: 18px;
  padding-left: 5px;
}

.checkout-contact-notice {
  align-items: center;
  border-top: 1px solid #e7eaef;
  color: #8e92a1;
  display: flex;
  font-size: 12.5px;
  gap: 8px;
  line-height: 1.4;
  margin-top: 18px;
  padding-top: 14px;
}

.checkout-contact-notice-icon {
  color: currentColor;
  display: block;
  flex: 0 0 auto;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.4;
  width: 14px;
}

.checkout-contact-notice span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.checkout-payment-card {
  background: #ffffff;
  border: 1px solid #e6e8ee;
  border-radius: 8px;
  color: #1b1f2a;
  margin-top: 16px;
  max-width: var(--checkout-card-max);
  padding: 22px 23px 20px;
  width: 100%;
}

.checkout-payment-title {
  color: #111111;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.checkout-payment-options {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.checkout-payment-option {
  min-width: 0;
  position: relative;
}

.checkout-payment-radio {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  height: 100%;
  inset: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.checkout-payment-option-body {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dfe3eb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  justify-content: center;
  min-height: 112px;
  min-width: 0;
  padding: 18px 12px 14px;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .checkout-payment-option:hover .checkout-payment-option-body {
    background: #fbfbfc;
    border-color: #cfd4df;
  }
}

.checkout-payment-radio:focus-visible + .checkout-payment-option-body {
  outline: 3px solid rgba(246, 61, 65, 0.28);
  outline-offset: 2px;
}

.checkout-payment-radio:checked + .checkout-payment-option-body {
  background: #fffafa;
  border-color: #ff161d;
  box-shadow: inset 0 0 0 1px #ff161d;
}

.checkout-payment-radio:active + .checkout-payment-option-body {
  background: #fff5f5;
}

.checkout-payment-options[aria-invalid="true"] {
  border-radius: 8px;
  outline: 2px solid var(--hotmat-brand-red);
  outline-offset: 3px;
}

.checkout-payment-option-label {
  position: absolute;
  height: 1px;
  left: 0;
  margin: -1px;
  overflow: hidden;
  top: 0;
  white-space: nowrap;
  width: 1px;
}

.checkout-payment-methods {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.checkout-payment-method {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  flex: 0 1 auto;
  height: 36px;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.checkout-payment-method img,
.checkout-payment-method svg {
  display: block;
  height: auto;
  max-height: 36px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.checkout-payment-method--swish {
  height: 38px;
  width: min(136px, 100%);
}

.checkout-payment-method--visa img {
  width: 46px;
}

.checkout-payment-method--mastercard {
  width: 48px;
}

.checkout-payment-method--apple-pay {
  width: 58px;
}

.checkout-payment-method--klarna {
  height: 42px;
  width: 86px;
}

.checkout-payment-method--klarna svg {
  width: 64px;
}

.checkout-payment-option-text {
  color: #263246;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: anywhere;
}

.checkout-payment-notice {
  align-items: center;
  color: #8e92a1;
  display: flex;
  font-size: 12.5px;
  gap: 8px;
  line-height: 1.4;
  margin-top: 13px;
}

.checkout-payment-notice-icon {
  color: currentColor;
  display: block;
  flex: 0 0 auto;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.4;
  width: 14px;
}

.checkout-payment-notice span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.payment-swish-card {
  background: #ffffff;
  border: 1px solid #ececee;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  color: #101828;
  margin: 0;
  max-width: var(--checkout-card-max);
  padding: 30px 36px 28px;
  width: 100%;
}

.payment-swish-title {
  color: #111111;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 24px;
}

.payment-swish-amount span {
  color: #475467;
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.payment-swish-amount strong {
  color: #101828;
  display: block;
  font-size: 38px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  margin-top: 4px;
}

.payment-swish-divider {
  background: #e8eaee;
  height: 1px;
  margin: 20px 0;
  width: 100%;
}

.payment-swish-method {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(246, 61, 65, 0.34);
  border-radius: 10px;
  display: flex;
  gap: 14px;
  min-width: 0;
  padding: 13px 16px;
}

.payment-swish-method-radio {
  align-items: center;
  border: 2px solid var(--hotmat-brand-red);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.payment-swish-method-radio span {
  background: var(--hotmat-brand-red);
  border-radius: 50%;
  display: block;
  height: 8px;
  width: 8px;
}

.payment-swish-methods {
  align-items: center;
  display: flex;
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.payment-swish-method-logo {
  align-items: center;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.payment-swish-method-logo svg {
  display: block;
  height: auto;
  max-height: 24px;
  max-width: 100%;
  width: auto;
}

.payment-swish-method-logo--swish {
  width: 80px;
}

.payment-swish-field-label {
  color: #101828;
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.35;
  margin: 22px 0 7px;
}

.payment-swish-phone-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 86px minmax(0, 1fr);
}

.payment-swish-country,
.payment-swish-phone {
  background: #ffffff;
  border: 1px solid #d5d9e0;
  border-radius: 8px;
  color: #101828;
  font: inherit;
  font-size: 14px;
  height: 44px;
  min-width: 0;
}

.payment-swish-country {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 0 12px;
}

.payment-swish-country svg {
  display: block;
  flex: 0 0 auto;
  height: 8px;
  width: 12px;
}

.payment-swish-phone {
  appearance: none;
  outline: none;
  padding: 0 14px;
  width: 100%;
}

.payment-swish-phone::placeholder {
  color: #98a2b3;
  opacity: 1;
}

.payment-swish-phone:focus {
  border-color: var(--hotmat-brand-red);
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.16);
}

.payment-swish-hint {
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
  margin: 8px 0 0;
}

.payment-swish-pay {
  align-items: center;
  appearance: none;
  background: #0d1b2e;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
  height: 48px;
  justify-content: center;
  line-height: 1.2;
  margin-top: 24px;
  padding: 0 16px;
  text-align: center;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.payment-swish-pay:hover {
  background: #142742;
}

.payment-swish-pay:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.24);
  outline: none;
}

.payment-swish-pay svg {
  display: block;
  flex: 0 0 auto;
  height: 13px;
  width: 17px;
}

.payment-swish-secure {
  align-items: center;
  color: #6d7278;
  display: flex;
  font-size: 12.5px;
  gap: 8px;
  justify-content: center;
  line-height: 1.45;
  min-width: 0;
  text-align: center;
}

.payment-swish-secure-icon {
  color: #34b45a;
  display: block;
  flex: 0 0 auto;
  height: 18px;
  width: 16px;
}

.payment-swish-secure span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.checkout-delivery-title {
  color: #111111;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.24;
  margin: 0;
}

.checkout-delivery-tabs {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  height: 52px;
  margin-top: 22px;
  width: 100%;
}

.checkout-delivery-tabs[aria-invalid="true"] {
  border-radius: 6px;
  outline: 2px solid var(--hotmat-brand-red);
  outline-offset: 3px;
}

.checkout-delivery-tab {
  align-items: center;
  appearance: none;
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 0 6px 6px 0;
  color: #111111;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  gap: 14px;
  justify-content: center;
  line-height: 1;
  min-width: 0;
  padding: 0 24px;
  position: relative;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.checkout-delivery-tab:first-child {
  border-radius: 6px 0 0 6px;
}

.checkout-delivery-tab + .checkout-delivery-tab {
  margin-left: -1px;
}

.checkout-delivery-tab:hover,
.checkout-delivery-tab:focus-visible {
  color: var(--hotmat-brand-red-dark);
}

.checkout-delivery-tab:focus-visible {
  outline: 3px solid rgba(246, 61, 65, 0.32);
  outline-offset: 2px;
  z-index: 2;
}

.checkout-delivery-tab--active {
  background: #fff8f8;
  border-color: #ff161d;
  color: #ff161d;
  z-index: 1;
}

.checkout-delivery-tab:disabled,
.checkout-delivery-tab--disabled {
  background: #f7f7f7;
  border-color: #e1e4e8;
  color: #918a83;
  cursor: not-allowed;
}

.checkout-delivery-tab:disabled:hover,
.checkout-delivery-tab:disabled:focus-visible,
.checkout-delivery-tab--disabled:hover,
.checkout-delivery-tab--disabled:focus-visible {
  color: #918a83;
}

.checkout-delivery-tab-copy {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.checkout-delivery-tab-label,
.checkout-delivery-tab-status {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-delivery-tab-status {
  color: currentColor;
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.1;
  opacity: 0.9;
}

.checkout-delivery-tab-status[hidden] {
  display: none;
}

.checkout-delivery-tab-icon {
  color: currentColor;
  display: block;
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.checkout-service-feedback,
.checkout-payment-feedback {
  color: #b4232b;
  display: block;
  font-size: 12.5px;
  line-height: 1.4;
  margin: 10px 0 0;
}

.checkout-service-feedback[hidden],
.checkout-payment-feedback[hidden] {
  display: none;
}

.checkout-service-unavailable {
  align-items: center;
  color: #3f4652;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.35;
  margin: 18px 0 0;
  min-height: 24px;
  overflow-wrap: anywhere;
  text-align: center;
}

.checkout-service-unavailable[hidden] {
  display: none;
}

.checkout-delivery-address-row {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 24px;
  min-width: 0;
}

.checkout-delivery-address-row[aria-invalid="true"] .checkout-delivery-change {
  animation: checkout-address-required 1.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  border-radius: 4px;
  outline: 2px solid rgba(246, 61, 65, 0.24);
  outline-offset: 2px;
}

@keyframes checkout-address-required {
  0% {
    box-shadow: 0 0 0 0 rgba(246, 61, 65, 0.22);
  }

  70%,
  100% {
    box-shadow: 0 0 0 7px rgba(246, 61, 65, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-delivery-address-row[aria-invalid="true"] .checkout-delivery-change {
    animation: none;
  }
}

.checkout-delivery-address {
  align-items: center;
  color: #121212;
  display: flex;
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 500;
  gap: 13px;
  line-height: 1.35;
  min-width: 0;
}

.checkout-delivery-address-icon {
  color: #ff161d;
  display: block;
  flex: 0 0 auto;
  height: 26px;
  width: 26px;
}

.checkout-delivery-address span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.checkout-delivery-change {
  appearance: none;
  background: transparent;
  border: 0;
  color: #ff161d;
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 0 3px;
}

.checkout-delivery-change:hover,
.checkout-delivery-change:focus-visible {
  color: var(--hotmat-brand-red-dark);
}

.checkout-delivery-change:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(246, 61, 65, 0.32);
  outline-offset: 4px;
}

.checkout-pickup-details {
  align-items: flex-start;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  gap: 13px;
  margin-top: 24px;
  padding: 16px;
}

.checkout-pickup-details[hidden],
[data-checkout-pickup-directions][hidden],
[data-checkout-delivery-details][hidden] {
  display: none;
}

.checkout-pickup-details-icon {
  color: #ff161d;
  display: block;
  flex: 0 0 auto;
  height: 26px;
  width: 26px;
}

.checkout-pickup-details-copy {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}

.checkout-pickup-details-label {
  color: #697386;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.checkout-pickup-restaurant-name {
  color: #121212;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.checkout-pickup-details-address {
  color: #3f4652;
  font-size: 15px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.checkout-pickup-directions {
  color: #e20f16;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-pickup-directions:hover,
.checkout-pickup-directions:focus-visible {
  color: var(--hotmat-brand-red-dark);
}

.checkout-pickup-directions:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(246, 61, 65, 0.32);
  outline-offset: 4px;
}

.checkout-delivery-fields {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  padding-left: 5px;
}

.checkout-delivery-field {
  color: #535b6c;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 400;
  gap: 9px;
  line-height: 1.35;
  min-width: 0;
}

.checkout-delivery-field input {
  appearance: none;
  background: #ffffff;
  border: 1px solid #d6d9df;
  border-radius: 6px;
  color: #111111;
  font: inherit;
  height: 42px;
  line-height: 1.2;
  min-width: 0;
  padding: 0 12px;
  width: 100%;
}

.checkout-delivery-field input:focus {
  border-color: var(--hotmat-brand-red);
  outline: 3px solid rgba(246, 61, 65, 0.18);
}

.checkout-summary-card {
  align-self: start;
  background: #ffffff;
  border: 1px solid #ececee;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  color: #212529;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  max-width: 360px;
  padding: 0 24px 26px;
  width: 100%;
}

.checkout-initial-loading[hidden],
.checkout-initial-error[hidden],
.checkout-empty-state[hidden],
#checkout-form[hidden],
.checkout-restaurant-bar-inner[hidden] {
  display: none;
}

.checkout-loading-status {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.checkout-initial-error {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 520px;
  padding: 56px 24px 88px;
}

.checkout-initial-error-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e6e8ee;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(20, 20, 20, 0.06);
  display: flex;
  flex-direction: column;
  max-width: 520px;
  padding: 38px 40px 40px;
  text-align: center;
  width: 100%;
}

.checkout-initial-error-icon {
  align-items: center;
  background: #fff1f1;
  border-radius: 50%;
  color: var(--hotmat-brand-red-dark);
  display: flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.checkout-initial-error-icon svg {
  display: block;
  height: 30px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 30px;
}

.checkout-initial-error h1 {
  color: #111111;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin: 22px 0 0;
}

.checkout-initial-error p {
  color: #626a78;
  font-size: 15px;
  line-height: 1.55;
  margin: 10px 0 0;
}

.checkout-initial-error button {
  appearance: none;
  background: var(--hotmat-brand-red);
  border: 1px solid var(--hotmat-brand-red);
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  margin-top: 24px;
  min-height: 46px;
  padding: 0 24px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.checkout-initial-error button:hover {
  background: var(--hotmat-brand-red-dark);
  border-color: var(--hotmat-brand-red-dark);
}

.checkout-initial-error button:focus-visible {
  outline: 3px solid rgba(246, 61, 65, 0.3);
  outline-offset: 3px;
}

.checkout-empty-state {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: clamp(500px, 68vh, 720px);
  padding: 34px 24px 72px;
  text-align: center;
}

.checkout-empty-state__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  width: 100%;
}

.checkout-empty-state__art {
  display: block;
  height: auto;
  max-width: 340px;
  width: min(72vw, 340px);
}

.checkout-empty-state h1 {
  color: #111111;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 18px 0 0;
}

.checkout-empty-state p {
  color: #626a78;
  font-size: 15px;
  line-height: 1.55;
  margin: 10px 0 0;
  max-width: 440px;
}

.checkout-empty-state a {
  align-items: center;
  background: var(--hotmat-brand-red);
  border: 1px solid var(--hotmat-brand-red);
  border-radius: 10px;
  color: #ffffff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  line-height: 1;
  margin-top: 24px;
  min-height: 48px;
  padding: 0 28px;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.checkout-empty-state__action-icon {
  fill: none;
  flex: 0 0 auto;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

.checkout-empty-state a:hover {
  background: var(--hotmat-brand-red-dark);
  border-color: var(--hotmat-brand-red-dark);
}

.checkout-empty-state a:focus-visible {
  outline: 3px solid rgba(246, 61, 65, 0.3);
  outline-offset: 3px;
}

.checkout-skeleton {
  animation: checkout-skeleton-shimmer 1.25s ease-in-out infinite;
  background: linear-gradient(90deg, #eeece9 0%, #faf8f6 50%, #eeece9 100%);
  background-size: 220% 100%;
  border-radius: 999px;
  display: block;
}

@keyframes checkout-skeleton-shimmer {
  0% {
    background-position: 120% 0;
  }

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

.checkout-restaurant-back-skeleton {
  flex: 0 0 112px;
  height: 14px;
}

.checkout-restaurant-logo-skeleton {
  border-radius: 7px;
  flex: 0 0 36px;
  height: 36px;
  width: 36px;
}

.checkout-restaurant-name-skeleton {
  height: 15px;
  width: min(176px, 42vw);
}

.checkout-loading-layout,
.checkout-loading-card,
.checkout-loading-summary-card {
  pointer-events: none;
}

.checkout-loading-title {
  height: 22px;
  width: 142px;
}

.checkout-loading-title--delivery {
  width: 174px;
}

.checkout-loading-service-tabs {
  gap: 0;
}

.checkout-loading-service {
  border-radius: 6px 0 0 6px;
  height: 52px;
}

.checkout-loading-service + .checkout-loading-service {
  border-radius: 0 6px 6px 0;
  margin-left: 1px;
}

.checkout-loading-address-row {
  align-items: center;
  display: grid;
  gap: 13px;
  grid-template-columns: 26px minmax(80px, 230px) 52px;
  margin-top: 24px;
  min-width: 0;
}

.checkout-loading-address-icon {
  border-radius: 50%;
  height: 24px;
  width: 24px;
}

.checkout-loading-address-line {
  height: 16px;
  width: 100%;
}

.checkout-loading-address-action {
  height: 14px;
  width: 52px;
}

.checkout-loading-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.checkout-loading-field-label {
  height: 14px;
  width: min(84px, 72%);
}

.checkout-loading-field-label--wide {
  width: min(216px, 70%);
}

.checkout-loading-field-input {
  border-radius: 6px;
  height: 42px;
  width: 100%;
}

.checkout-loading-comment {
  display: grid;
  gap: 9px;
  margin: 18px 0 0 5px;
}

.checkout-loading-notice {
  align-items: center;
  border-top: 1px solid #e7eaef;
  display: flex;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
}

.checkout-loading-notice-icon {
  border-radius: 4px;
  flex: 0 0 14px;
  height: 14px;
  width: 14px;
}

.checkout-loading-notice-line {
  height: 12px;
  width: min(360px, 72%);
}

.checkout-loading-payment-option {
  border-radius: 8px;
  height: 112px;
  width: 100%;
}

.checkout-loading-summary-card {
  min-height: 586px;
}

.checkout-loading-summary-title {
  height: 22px;
  margin: 30px 4px 0;
  width: 126px;
}

.checkout-loading-summary-items {
  display: grid;
  gap: 18px;
  margin: 22px 5px 0 4px;
}

.checkout-loading-summary-item {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 26px minmax(0, 1fr) 48px;
}

.checkout-loading-summary-quantity {
  border-radius: 6px;
  height: 22px;
  width: 26px;
}

.checkout-loading-summary-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.checkout-loading-summary-name {
  height: 14px;
  width: 82%;
}

.checkout-loading-summary-description {
  height: 11px;
  width: 62%;
}

.checkout-loading-summary-price {
  height: 14px;
  width: 48px;
}

.checkout-loading-summary-item:nth-child(2) .checkout-loading-summary-name {
  width: 67%;
}

.checkout-loading-summary-item:nth-child(3) .checkout-loading-summary-description {
  width: 78%;
}

.checkout-loading-summary-rows {
  display: grid;
  gap: 14px;
  margin: 20px 5px 0 4px;
}

.checkout-loading-summary-row,
.checkout-loading-summary-total,
.checkout-loading-summary-discount {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.checkout-loading-summary-row-label {
  height: 12px;
  width: 96px;
}

.checkout-loading-summary-row-price {
  height: 12px;
  width: 48px;
}

.checkout-loading-summary-row:nth-child(2) .checkout-loading-summary-row-label {
  width: 124px;
}

.checkout-loading-summary-total {
  margin: 22px 5px 0 4px;
}

.checkout-loading-summary-total-label {
  height: 20px;
  width: 84px;
}

.checkout-loading-summary-total-price {
  height: 24px;
  width: 72px;
}

.checkout-loading-summary-discount {
  grid-template-columns: minmax(0, 1fr) 87px;
  margin-top: 28px;
}

.checkout-loading-summary-code,
.checkout-loading-summary-apply {
  border-radius: 12px;
  height: 48px;
}

.checkout-loading-summary-pay {
  border-radius: 12px;
  height: 50px;
  margin-top: 14px;
  width: 100%;
}

.checkout-loading-summary-secure {
  height: 12px;
  margin: 18px auto 0;
  width: 70%;
}

.checkout-loading-summary-accept {
  height: 12px;
  margin: 20px auto 0;
  width: 74px;
}

.checkout-loading-summary-methods {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 11px;
}

.checkout-loading-summary-method {
  border-radius: 4px;
  height: 24px;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .checkout-skeleton {
    animation: none;
    background-position: 0 0;
  }
}

.checkout-summary-title {
  color: #212529;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 28px;
  margin: 26px 4px 0;
}

.checkout-stock-update {
  align-items: center;
  color: #805300;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  gap: 2px 8px;
  line-height: 1.45;
  margin: 20px 4px 0;
}

.checkout-stock-update[hidden] {
  display: none;
}

.checkout-stock-update--error {
  color: #9b1717;
}

.checkout-stock-update button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--hotmat-brand-red-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  margin: 0;
  min-height: 44px;
  padding: 10px 2px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-stock-update button:hover {
  color: #b10a14;
  text-decoration-thickness: 2px;
}

.checkout-stock-update button:focus-visible {
  border-radius: 2px;
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.checkout-stock-update button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.checkout-summary-items {
  display: grid;
  gap: 16px;
  margin: 20px 5px 0 4px;
}

.checkout-summary-item {
  align-items: flex-start;
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.checkout-summary-item--unavailable {
  opacity: 0.62;
}

.checkout-summary-quantity {
  background: #f4f5f6;
  border-radius: 6px;
  color: #6d7278;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  height: 22px;
  justify-content: center;
  line-height: 22px;
  min-width: 26px;
  padding: 0 5px;
}

.checkout-summary-item-copy {
  display: block;
  min-width: 0;
}

.checkout-summary-item-copy strong {
  color: #212529;
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 19px;
  overflow-wrap: anywhere;
}

.checkout-summary-item-copy small {
  color: #8a9097;
  display: block;
  font-size: 12.5px;
  line-height: 16px;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.checkout-summary-item-copy .checkout-summary-item-stock {
  color: #7d1010;
  font-weight: 600;
}

.checkout-summary-item-price {
  color: #202328;
  font-size: 14.5px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 19px;
  white-space: nowrap;
}

.checkout-summary-empty {
  background: #f8f9fa;
  border: 1px dashed #dfe2e5;
  border-radius: 10px;
  color: #6d7278;
  font-size: 13px;
  line-height: 18px;
  padding: 14px;
}

.checkout-summary-divider {
  background: #ecedee;
  height: 1px;
  margin: 19px -8px 0;
}

.checkout-summary-rows {
  display: grid;
  gap: 12px;
  margin: 20px 5px 0 4px;
}

.checkout-summary-row {
  align-items: center;
  color: #7c828a;
  display: flex;
  font-size: 13px;
  gap: 12px;
  justify-content: space-between;
  line-height: 18px;
  min-width: 0;
}

.checkout-summary-adjustment {
  display: grid;
  gap: 8px;
}

.checkout-summary-row strong {
  color: #5d636a;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  white-space: nowrap;
}

.checkout-summary-row--discount strong {
  color: #16813a;
}

.checkout-summary-row-label {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  min-width: 0;
}

.checkout-summary-info-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #adb2b8;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  height: 20px;
  justify-content: center;
  padding: 0;
  width: 20px;
}

.checkout-summary-info-button:hover,
.checkout-summary-info-button[aria-expanded="true"] {
  color: #5d636a;
}

.checkout-summary-info-button:focus-visible {
  outline: 2px solid #ff3f43;
  outline-offset: 2px;
}

.checkout-summary-info-icon {
  display: block;
  fill: none;
  height: 14px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 14px;
}

.checkout-summary-fee-info {
  background: #f8f9fa;
  border-radius: 8px;
  color: #6d7278;
  font-size: 12px;
  line-height: 17px;
  margin: 0;
  padding: 10px 12px;
}

.checkout-summary-fee-info[hidden] {
  display: none;
}

.checkout-summary-rows + .checkout-summary-divider {
  margin-top: 24px;
}

.checkout-summary-total {
  align-items: baseline;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 22px 5px 0 4px;
  min-width: 0;
}

.checkout-summary-total span {
  display: block;
  min-width: 0;
}

.checkout-summary-total strong {
  color: #212529;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 24px;
}

.checkout-summary-total > span > strong {
  display: block;
  font-size: 19px;
}

.checkout-summary-total > strong {
  flex: 0 0 auto;
  font-size: 23px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.checkout-summary-total small {
  color: #6d7278;
  display: block;
  font-size: 12.5px;
  line-height: 16px;
  margin-top: 3px;
}

.checkout-summary-discount {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) 87px;
  margin-top: 28px;
}

.checkout-summary-code {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e0e1e2;
  border-radius: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr);
  height: 48px;
  min-width: 0;
  padding: 0 12px 0 13px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-summary-code:focus-within {
  border-color: var(--hotmat-brand-red);
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.14);
}

.checkout-summary-code-icon {
  color: #565b61;
  display: block;
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.checkout-summary-code-text {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.checkout-summary-code input {
  appearance: none;
  background: transparent;
  border: 0;
  color: #212529;
  font-size: 14px;
  height: 100%;
  min-width: 0;
  outline: 0;
  padding: 0;
  width: 100%;
}

.checkout-summary-code input::placeholder {
  color: #78808b;
  opacity: 1;
}

.checkout-summary-apply {
  appearance: none;
  background: #f8f9f9;
  border: 1px solid #f0f1f2;
  border-radius: 12px;
  color: #212529;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  height: 48px;
  line-height: 1;
  padding: 0 14px;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  width: 87px;
}

.checkout-summary-apply:hover {
  background: #eff0f1;
}

.checkout-summary-apply:focus-visible {
  border-color: #cfd3d7;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
  outline: none;
}

.checkout-summary-apply:disabled {
  cursor: wait;
  opacity: 0.68;
}

.checkout-feedback {
  background: #fff4f4;
  border: 1px solid #ffd1d1;
  border-radius: 10px;
  color: #9b1717;
  font-size: 13px;
  line-height: 18px;
  margin-top: 16px;
  padding: 12px 14px;
}

.checkout-feedback[hidden] {
  display: none;
}

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

.checkout-feedback li ul {
  display: grid;
  gap: 2px;
  list-style: circle;
  margin: 4px 0 0;
  padding-left: 20px;
}

body.checkout-coupon-dialog-open,
body.checkout-closed-dialog-open {
  overflow: hidden;
}

.checkout-coupon-dialog {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1100;
}

.checkout-coupon-dialog[hidden] {
  display: none;
}

.checkout-coupon-dialog__backdrop {
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  cursor: default;
  inset: 0;
  padding: 0;
  position: absolute;
  width: 100%;
}

.checkout-coupon-dialog__panel {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 48px);
  max-width: 100%;
  outline: 0;
  overflow: clip;
  position: relative;
  width: 440px;
  z-index: 1;
}

.checkout-coupon-dialog__header {
  align-items: center;
  border-bottom: 1px solid #efedeb;
  display: flex;
  justify-content: space-between;
  padding: 22px 24px 18px;
}

.checkout-coupon-dialog__title {
  color: #111111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.checkout-coupon-dialog__close {
  align-items: center;
  background: #f8f7f6;
  border: 0;
  border-radius: 999px;
  color: #302d2a;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  height: 36px;
  justify-content: center;
  padding: 0;
  transition: background-color 0.15s ease, transform 0.15s ease;
  width: 36px;
}

.checkout-coupon-dialog__close:hover {
  background: #eeece9;
  transform: rotate(4deg);
}

.checkout-coupon-dialog__close:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.24);
  outline: none;
}

.checkout-coupon-dialog__close svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  width: 18px;
}

.checkout-coupon-dialog__body {
  color: #5f1c1c;
  font-size: 14px;
  line-height: 1.5;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 24px 26px;
}

.checkout-coupon-dialog__body[hidden] {
  display: none;
}

.checkout-coupon-dialog__body > ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-coupon-dialog__body > ul > li {
  background: #fff4f4;
  border: 1px solid #ffd1d1;
  border-radius: 10px;
  padding: 12px 14px;
}

.checkout-coupon-dialog__body li ul {
  display: grid;
  gap: 4px;
  list-style: circle;
  margin: 8px 0 0;
  padding-left: 20px;
}

.checkout-closed-dialog {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1100;
}

.checkout-closed-dialog[hidden] {
  display: none;
}

.checkout-closed-dialog__backdrop {
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  cursor: default;
  inset: 0;
  padding: 0;
  position: absolute;
  width: 100%;
}

.checkout-closed-dialog__panel {
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 48px);
  max-width: 100%;
  outline: 0;
  overflow-y: auto;
  padding: 36px 32px 30px;
  position: relative;
  text-align: center;
  width: 440px;
  z-index: 1;
}

.checkout-closed-dialog__close {
  align-items: center;
  background: #f8f7f6;
  border: 0;
  border-radius: 999px;
  color: #302d2a;
  cursor: pointer;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: background-color 0.15s ease, transform 0.15s ease;
  width: 36px;
}

.checkout-closed-dialog__close:hover {
  background: #eeece9;
  transform: rotate(4deg);
}

.checkout-closed-dialog__close:focus-visible,
.checkout-closed-dialog__action:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.24);
  outline: none;
}

.checkout-closed-dialog__close svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  width: 18px;
}

.checkout-closed-dialog__icon {
  align-items: center;
  background: #fff0f0;
  border-radius: 999px;
  color: #fb151a;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 20px;
  width: 64px;
}

.checkout-closed-dialog__icon svg {
  fill: none;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 32px;
}

.checkout-closed-dialog__title {
  color: #111111;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  padding: 0 32px;
}

.checkout-closed-dialog__message {
  color: #65615e;
  font-size: 15px;
  line-height: 1.55;
  margin: 12px 0 0;
  max-width: 350px;
}

.checkout-closed-dialog__action {
  background: #fb151a;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  height: 48px;
  margin-top: 26px;
  padding: 0 32px;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.checkout-closed-dialog__action:hover {
  background: #e91217;
}

.checkout-summary-pay {
  align-items: center;
  appearance: none;
  background: #fb151a;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(250, 21, 26, 0.18);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  height: 56px;
  justify-content: center;
  letter-spacing: -0.1px;
  line-height: 1.2;
  margin-top: 24px;
  padding: 0 18px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.checkout-summary-pay:hover {
  background: #e91217;
}

.checkout-summary-pay:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.checkout-summary-pay:disabled[aria-busy="true"] {
  cursor: wait;
}

.checkout-summary-pay:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.28), 0 2px 8px rgba(250, 21, 26, 0.18);
  outline: none;
}

.checkout-summary-pay-icon {
  display: block;
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.checkout-summary-secure {
  align-items: center;
  color: #6d7278;
  display: flex;
  font-size: 12px;
  gap: 9px;
  line-height: 1.5;
  margin: 16px 5px 0;
  min-width: 0;
}

.checkout-summary-secure-icon {
  color: #34b45a;
  display: block;
  flex: 0 0 auto;
  height: 21px;
  width: 21px;
}

.checkout-summary-secure span {
  min-width: 0;
  white-space: nowrap;
}

.checkout-summary-accept {
  color: #212529;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  margin: 28px 4px 0 2px;
}

.checkout-summary-payments {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 20px 0 0 1px;
  padding: 0;
}

.checkout-summary-payment {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 27px;
  justify-content: center;
  min-width: 42px;
  overflow: hidden;
  padding: 3px 6px;
}

.checkout-summary-payment img,
.checkout-summary-payment svg {
  display: block;
  height: 100%;
  max-height: 24px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.checkout-summary-payment--visa img {
  height: auto;
  width: 40px;
}

.checkout-summary-payment--mastercard {
  width: 46px;
}

.checkout-summary-payment--maestro {
  width: 46px;
}

.checkout-summary-payment--klarna {
  background: #ffa8cd;
  border-color: #ffa8cd;
  width: 54px;
}

.checkout-summary-payment--swish {
  width: 56px;
}

.checkout-summary-payment--apple-pay {
  background: transparent;
  border-color: transparent;
  padding: 0;
  width: 50px;
}

.checkout-summary-payment--google-pay {
  overflow: hidden;
  width: 58px;
}

.checkout-summary-payment--google-pay svg {
  flex: 0 0 auto;
  height: auto;
  max-height: none;
  max-width: none;
  width: 102px;
}

.checkout-summary-payment--google-pay #Base_1_,
.checkout-summary-payment--google-pay #Outline {
  display: none;
}

.tracking-summary-paid {
  align-items: center;
  color: #212529;
  display: flex;
  font-size: 13px;
  font-weight: 400;
  gap: 16px;
  justify-content: space-between;
  line-height: 18px;
  margin: 12px 5px 0 4px;
  min-height: 30px;
  min-width: 0;
}

.tracking-summary-paid > span {
  min-width: 0;
}

.tracking-summary-paid-methods {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tracking-summary-paid-method {
  align-items: center;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  overflow: hidden;
}

.tracking-summary-paid-method[hidden],
.tracking-summary-paid-methods[hidden],
.tracking-summary-paid-fallback[hidden] {
  display: none;
}

.tracking-summary-paid-fallback {
  color: #737982;
  text-align: right;
}

.tracking-summary-paid-method svg {
  display: block;
  height: auto;
  max-height: 26px;
  max-width: 74px;
  width: auto;
}

.tracking-summary-paid-method--card svg {
  color: #212529;
  height: 20px;
  max-height: none;
  max-width: none;
  width: 28px;
}

.tracking-summary-paid-method--swish svg {
  max-height: 18px;
  max-width: 56px;
}

.checkout-restaurant-bar,
.checkout-restaurant-bar * {
  box-sizing: border-box;
}

.checkout-restaurant-bar {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  flex: 0 0 auto;
  width: 100%;
}

.checkout-restaurant-bar-inner {
  align-items: center;
  display: flex;
  height: 56px;
  margin: 0 auto;
  max-width: var(--restaurant-shell-wide-max);
  min-width: 0;
  padding: 0 var(--restaurant-shell-page-gutter);
  width: 100%;
}

.checkout-restaurant-back {
  align-items: center;
  color: var(--hotmat-brand-red);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  line-height: 1;
  min-width: 0;
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.checkout-restaurant-back:hover {
  color: var(--hotmat-brand-red-dark);
}

.checkout-restaurant-back:focus-visible {
  border-radius: 6px;
  outline: 3px solid var(--hotmat-brand-red);
  outline-offset: 4px;
}

.checkout-restaurant-back-icon {
  display: block;
  fill: none;
  flex: 0 0 auto;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 16px;
}

.checkout-restaurant-divider {
  background: #e6e6e6;
  display: block;
  flex: 0 0 auto;
  height: 24px;
  margin: 0 18px;
  width: 1px;
}

.checkout-restaurant-info {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 12px;
  min-width: 0;
}

.checkout-restaurant-logo {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 7px;
  display: flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
  overflow: hidden;
  width: 36px;
}

.checkout-restaurant-logo[hidden] {
  display: none;
}

.checkout-restaurant-logo-image {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.checkout-restaurant-name {
  color: #1a1a1a;
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  --content-max: 1180px;

  margin-top: 0;
  padding: 48px 24px 28px;
  color: var(--hotmat-ink);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border-top: 1px solid #eeece9;
  background: #ffffff;
}

.payment-page-body .site-footer,
.tracking-page-body .site-footer,
.driver-page-body .site-footer {
  margin-top: auto;
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo {
  display: block;
  width: 142px;
}

.footer-logo svg {
  display: block;
  width: 100%;
  height: auto;
  color: var(--hotmat-brand-red);
}

.footer-tagline {
  margin: 0;
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.4;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  display: inline-flex;
  color: var(--hotmat-ink);
  transition: color 0.15s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--hotmat-brand-red);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: var(--hotmat-ink);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--hotmat-brand-red);
}

.footer-pay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.footer-pay-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 100%;
  width: fit-content;
}

.footer-pay h3 {
  margin: 0;
  color: var(--hotmat-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 36px;
  padding: 6px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #ffffff;
}

.footer-payment-method img,
.footer-payment-method svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-method--visa img {
  width: 40px;
  height: auto;
}

.payment-method--klarna {
  width: 66px;
  padding: 0;
  border: none;
  background: transparent;
}

.payment-method--klarna svg {
  width: 100%;
  height: auto;
}

.payment-method--swish {
  width: 78px;
  padding-right: 8px;
  padding-left: 8px;
}

.payment-method--apple-pay {
  width: 58px;
  padding: 0;
  border: none;
  background: transparent;
}

.payment-method--apple-pay svg {
  width: auto;
  height: 36px;
}

.payment-method--google-pay {
  width: 74px;
  padding: 0;
  overflow: hidden;
  border: none;
  background: transparent;
}

.payment-method--google-pay svg {
  flex: 0 0 auto;
  width: 96px;
  max-width: none;
  height: auto;
}

.footer-legal {
  max-width: var(--content-max);
  margin: 36px auto 0;
  color: #8a8a8a;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.footer-logo:focus-visible,
.footer-social a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid var(--hotmat-brand-red);
  outline-offset: 3px;
}

body.login-open {
  overflow: hidden;
}

body.restaurant-address-dialog-open {
  overflow: hidden;
}

body.address-search-viewport-open {
  left: 0;
  overflow: hidden;
  overscroll-behavior: none;
  position: fixed;
  right: 0;
  top: var(--address-scroll-lock-top, 0);
  width: 100%;
}

.address-results-viewport {
  display: contents;
}

.address-location-footer {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  min-width: 0;
}

.restaurant-shell-site-header,
.restaurant-shell-site-header *,
.restaurant-shell-address-overlay,
.restaurant-shell-address-overlay *,
.login-overlay,
.login-overlay * {
  box-sizing: border-box;
}

.restaurant-shell-site-header {
  background: #ffffff;
  border-bottom: 1px solid #efedea;
  display: block;
  min-height: 68px;
  position: sticky;
  top: 0;
  z-index: 50;
}

body.restaurant-address-dialog-open .restaurant-shell-site-header {
  z-index: 120;
}

.restaurant-shell-header-inner {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(max-content, 1fr) minmax(280px, 520px) minmax(max-content, 1fr);
  margin: 0 auto;
  max-width: var(--restaurant-shell-wide-max);
  min-height: 68px;
  padding: 0 var(--restaurant-shell-page-gutter);
  width: 100%;
}

.restaurant-shell-header-left,
.restaurant-shell-header-right {
  align-items: center;
  display: flex;
  min-width: 0;
}

.home-page-body .site-footer,
.restaurant-page-body .site-footer,
.restaurant-list-page-body .site-footer,
.checkout-page-body .site-footer,
.payment-page-body .site-footer,
.tracking-page-body .site-footer,
.driver-page-body .site-footer {
  --content-max: var(--hotmat-content-max);
}

.restaurant-shell-header-right {
  gap: 12px;
  justify-content: flex-end;
}

.restaurant-shell-header-logo {
  align-items: center;
  color: var(--hotmat-brand-red);
  display: inline-flex;
  min-width: 0;
  text-decoration: none;
}

.restaurant-shell-logo-wordmark {
  color: currentColor;
  display: block;
  height: 26px;
  width: auto;
}

.restaurant-shell-location-row {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
  position: relative;
}

.restaurant-shell-address-pill {
  align-items: center;
  appearance: none;
  background: #ffffff;
  border: 1px solid #e4e2df;
  border-radius: 999px;
  color: inherit;
  cursor: pointer;
  display: flex;
  font: inherit;
  gap: 10px;
  height: 46px;
  min-width: 0;
  padding: 0 16px;
  text-align: left;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.restaurant-shell-address-pill:hover {
  background: #f7f6f4;
  border-color: #d8d5d0;
}

.restaurant-shell-address-pill[aria-expanded="true"] {
  background: #ffffff;
  border-color: #d6d0ca;
  box-shadow: 0 8px 20px rgba(17, 17, 24, 0.08);
}

.restaurant-shell-address-pin {
  color: var(--hotmat-brand-red);
  flex: 0 0 auto;
}

.restaurant-shell-address-text {
  color: #1a1a1a;
  flex: 1 1 auto;
  font-size: 15px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.restaurant-shell-pill-button {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e4e2df;
  border-radius: 12px;
  color: #1a1a1a;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.restaurant-shell-pill-button:hover {
  background: #f7f6f4;
}

.restaurant-shell-address-pill:focus-visible,
.restaurant-shell-pill-button:focus-visible {
  border-color: var(--hotmat-brand-red);
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.12);
  outline: none;
}

.restaurant-shell-address-overlay {
  background: transparent;
  display: block;
  left: 0;
  padding-top: 12px;
  position: absolute;
  top: 100%;
  width: min(480px, calc(100vw - 32px));
  z-index: 110;
}

.restaurant-shell-address-overlay[hidden] {
  display: none;
}

.restaurant-shell-address-dialog {
  background: #ffffff;
  border: 1px solid rgba(45, 39, 34, 0.1);
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(36, 30, 25, 0.13),
    0 3px 12px rgba(36, 30, 25, 0.06),
    0 0 0 100vmax rgba(28, 24, 21, 0.08);
  color: #1a1a1a;
  padding: 24px 24px 20px;
  position: relative;
  width: 100%;
}

.restaurant-shell-address-close {
  align-items: center;
  background: #f7f5f2;
  border: 0;
  border-radius: 50%;
  color: #68635e;
  cursor: pointer;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  width: 32px;
}

.restaurant-shell-address-close svg {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 16px;
}

.restaurant-shell-address-close:hover {
  background: #efebe7;
  color: #292623;
  transform: scale(1.03);
}

.restaurant-shell-address-close:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.12);
  outline: none;
}

.restaurant-shell-address-dialog h2 {
  color: #24211f;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 44px 16px 0;
}

.restaurant-shell-address-search {
  display: grid;
  gap: 10px;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.restaurant-shell-address-dialog .address-field {
  align-items: center;
  background: #fbfaf8;
  border: 1px solid #dedad5;
  border-radius: 13px;
  display: flex;
  gap: 10px;
  height: 54px;
  padding: 0 14px;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.restaurant-shell-address-dialog .address-field:focus-within {
  background: #ffffff;
  border-color: rgba(246, 61, 65, 0.58);
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.1);
}

.restaurant-shell-address-dialog .address-field-pin {
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.restaurant-shell-address-dialog .address-field input {
  background: transparent;
  border: 0;
  color: #1a1a1a;
  font-size: 16px;
  height: 100%;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.restaurant-shell-address-dialog .address-field input::-webkit-search-cancel-button {
  display: none;
}

.restaurant-shell-address-dialog .address-field input::placeholder {
  color: #8a8580;
  opacity: 1;
}

.restaurant-shell-address-dialog .address-submit {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--hotmat-brand-red);
  cursor: pointer;
  display: none;
  flex: 0 0 30px;
  height: 30px;
  justify-content: center;
  opacity: 0.78;
  padding: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  width: 30px;
}

.restaurant-shell-address-dialog .address-submit.is-clear,
.restaurant-shell-address-dialog .address-submit.is-loading {
  display: inline-flex;
}

.restaurant-shell-address-dialog .address-submit svg {
  display: none;
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 17px;
}

.restaurant-shell-address-dialog .address-submit.is-clear .address-submit-clear-icon {
  display: block;
}

.restaurant-shell-address-dialog .address-submit-spinner,
.restaurant-shell-address-dialog .location-button-spinner {
  animation: address-search-spin 700ms linear infinite;
  border-radius: 50%;
  display: none;
}

.restaurant-shell-address-dialog .address-submit-spinner {
  border: 2px solid rgba(246, 61, 65, 0.2);
  border-top-color: currentColor;
  height: 17px;
  width: 17px;
}

.restaurant-shell-address-dialog .address-submit.is-loading .address-submit-spinner {
  display: block;
}

.restaurant-shell-address-dialog .address-submit:disabled {
  cursor: wait;
  opacity: 1;
}

.restaurant-shell-address-dialog .address-submit:hover {
  opacity: 1;
  transform: scale(1.04);
}

.restaurant-shell-address-dialog .address-submit:disabled:hover {
  opacity: 0.78;
  transform: none;
}

.restaurant-shell-address-dialog .address-submit:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.16);
  outline: none;
}

.restaurant-shell-address-dialog #addressList {
  background: #ffffff;
  border: 1px solid #e6e1dc;
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(36, 30, 25, 0.08);
  color: #1a1a1a;
  display: grid;
  max-height: 284px;
  overflow: auto;
  width: 100%;
}

.restaurant-shell-address-dialog #addressList:empty {
  display: none;
}

.restaurant-shell-address-dialog .address-suggestion {
  align-items: center;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid #eeeef1;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  min-height: 60px;
  padding: 11px 14px;
  text-align: left;
  transition: background 0.15s ease;
  width: 100%;
}

.restaurant-shell-address-dialog .address-suggestion:last-child {
  border-bottom: 0;
}

.restaurant-shell-address-dialog .address-suggestion:hover,
.restaurant-shell-address-dialog .address-suggestion:focus-visible,
.restaurant-shell-address-dialog .address-suggestion.is-active {
  background: #f8f6f3;
  outline: 0;
}

.restaurant-shell-address-dialog .address-suggestion-pin {
  align-items: center;
  background: #f6f2ee;
  border-radius: 50%;
  color: var(--hotmat-brand-red);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.restaurant-shell-address-dialog .address-suggestion-pin svg {
  display: block;
  height: 17px;
  width: 17px;
}

.restaurant-shell-address-dialog .address-suggestion-copy {
  display: block;
  min-width: 0;
}

.restaurant-shell-address-dialog .address-suggestion-primary,
.restaurant-shell-address-dialog .address-suggestion-secondary {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.restaurant-shell-address-dialog .address-suggestion-primary {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.22;
}

.restaurant-shell-address-dialog .address-suggestion-secondary {
  color: #686878;
  font-size: 13px;
  line-height: 1.28;
  margin-top: 2px;
}

.restaurant-shell-address-dialog .address-suggestion-action {
  height: 24px;
  position: relative;
  width: 24px;
}

.restaurant-shell-address-dialog .address-suggestion-action::before {
  border-right: 2px solid #8d8075;
  border-top: 2px solid #8d8075;
  content: "";
  height: 7px;
  left: 7px;
  position: absolute;
  top: 8px;
  transform: rotate(45deg);
  width: 7px;
}

.restaurant-shell-address-dialog .address-suggestion:disabled {
  cursor: default;
}

.restaurant-shell-address-dialog .address-suggestion:disabled:not(.is-saving) {
  opacity: 0.58;
}

.restaurant-shell-address-dialog .address-suggestion.is-saving {
  background: #f7f4f0;
  cursor: wait;
}

.restaurant-shell-address-dialog .address-suggestion.is-saving .address-suggestion-action::before {
  animation: address-search-spin 700ms linear infinite;
  border: 2px solid rgba(246, 61, 65, 0.2);
  border-radius: 50%;
  border-top-color: var(--hotmat-brand-red);
  height: 14px;
  left: 3px;
  top: 3px;
  transform: none;
  width: 14px;
}

.restaurant-shell-address-dialog .address-search-status {
  align-items: center;
  color: #686878;
  display: flex;
  font-size: 14px;
  gap: 10px;
  justify-content: center;
  line-height: 1.35;
  min-height: 72px;
  padding: 16px 18px;
  text-align: center;
}

.restaurant-shell-address-dialog .address-search-status-error {
  color: var(--hotmat-brand-red);
}

.restaurant-shell-address-dialog .address-search-spinner {
  animation: address-search-spin 700ms linear infinite;
  border: 2px solid rgba(246, 61, 65, 0.2);
  border-radius: 50%;
  border-top-color: var(--hotmat-brand-red);
  height: 18px;
  width: 18px;
}

.restaurant-shell-address-dialog .location-button {
  align-items: center;
  align-self: flex-start;
  background: #f7f5f2;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #403c38;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  height: 40px;
  justify-content: center;
  min-width: 0;
  margin-top: 14px;
  padding: 0 14px;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.restaurant-shell-address-dialog .location-button:hover {
  background: #f1eeea;
  border-color: #e6e0da;
}

.restaurant-shell-address-dialog .location-button:disabled {
  cursor: wait;
  opacity: 0.82;
}

.restaurant-shell-address-dialog .location-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.16);
  outline: none;
}

.restaurant-shell-address-dialog .location-button-icon {
  color: var(--hotmat-brand-red);
  flex: 0 0 auto;
  height: 16px;
  width: 16px;
}

.restaurant-shell-address-dialog .location-button-spinner {
  border: 2px solid rgba(246, 61, 65, 0.2);
  border-top-color: currentColor;
  height: 15px;
  width: 15px;
}

.restaurant-shell-address-dialog .location-button.is-loading .location-button-icon {
  display: none;
}

.restaurant-shell-address-dialog .location-button.is-loading .location-button-spinner {
  display: inline-block;
}

.restaurant-shell-address-dialog .location-button span {
  font-size: 13px;
  font-weight: 600;
}

.restaurant-shell-location-feedback {
  background: #faf7f3;
  border: 1px solid #e8e1da;
  border-left: 3px solid #d57a6f;
  border-radius: 12px;
  color: #6d4b45;
  font-size: 13px;
  line-height: 1.4;
  margin: 12px 0 0;
  padding: 10px 12px;
}

.restaurant-shell-location-feedback[hidden] {
  display: none;
}

.restaurant-shell-icon,
.restaurant-shell-chevron,
.restaurant-shell-language-check,
.restaurant-shell-login-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.restaurant-shell-icon,
.restaurant-shell-login-icon {
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.restaurant-shell-chevron {
  flex: 0 0 auto;
  height: 13px;
  stroke-width: 2.4;
  transition: transform 0.18s ease;
  width: 13px;
}

.restaurant-shell-language-button[aria-expanded="true"] .restaurant-shell-chevron {
  transform: rotate(180deg);
}

.restaurant-shell-language-wrap {
  position: relative;
}

.restaurant-shell-language-menu {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
  min-width: 220px;
  opacity: 0;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  visibility: hidden;
  z-index: 60;
}

.restaurant-shell-language-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.restaurant-shell-language-title {
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 12px 6px;
  text-transform: uppercase;
}

.restaurant-shell-language-option {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  gap: 12px;
  min-height: 46px;
  padding: 10px 12px;
  text-align: left;
  transition: background 0.12s ease;
  width: 100%;
}

.restaurant-shell-language-option:hover,
.restaurant-shell-language-option:focus-visible {
  background: #f4f4f4;
  outline: none;
}

.restaurant-shell-language-option.selected {
  font-weight: 700;
}

.restaurant-shell-language-code {
  align-items: center;
  background: #f0f0f0;
  border-radius: 7px;
  color: #555555;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  height: 26px;
  justify-content: center;
  letter-spacing: 0.04em;
  width: 34px;
}

.restaurant-shell-language-option.selected .restaurant-shell-language-code {
  background: #1a1a1a;
  color: #ffffff;
}

.restaurant-shell-language-name {
  flex: 1 1 auto;
}

.restaurant-shell-language-check {
  color: #1a1a1a;
  flex: 0 0 auto;
  height: 16px;
  opacity: 0;
  stroke-width: 3;
  transform: scale(0.6);
  transition: opacity 0.12s ease, transform 0.12s ease;
  width: 16px;
}

.restaurant-shell-language-option.selected .restaurant-shell-language-check {
  opacity: 1;
  transform: scale(1);
}

.account-menu-wrap {
  position: relative;
}

.account-menu-button[aria-expanded="true"] .account-menu-chevron {
  transform: rotate(180deg);
}

.account-menu-chevron {
  flex: 0 0 auto;
  fill: none;
  height: 13px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  transition: transform 180ms ease;
  width: 13px;
}

.account-menu {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
  min-width: 190px;
  opacity: 0;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  visibility: hidden;
  z-index: 60;
}

.account-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.account-menu-title {
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 12px 6px;
  text-transform: uppercase;
}

.account-menu-option {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  gap: 12px;
  min-height: 46px;
  padding: 10px 12px;
  text-align: left;
  transition: background 0.12s ease;
  width: 100%;
}

.account-menu-option:hover,
.account-menu-option:focus-visible {
  background: #f4f4f4;
  outline: none;
}

.account-menu-logout {
  color: #b42318;
  font-weight: 700;
}

.ongoing-orders-wrap,
.ongoing-orders-wrap *,
.ongoing-orders-sheet,
.ongoing-orders-sheet * {
  box-sizing: border-box;
}

.ongoing-orders-wrap {
  position: relative;
}

.ongoing-orders-wrap[hidden],
.ongoing-orders-dropdown[hidden],
.ongoing-orders-sheet[hidden] {
  display: none;
}

.ongoing-orders-button {
  white-space: nowrap;
}

.ongoing-orders-icon {
  color: currentColor;
}

.ongoing-orders-badge {
  align-items: center;
  background: var(--hotmat-brand-red);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  height: 20px;
  justify-content: center;
  line-height: 1;
  min-width: 20px;
  padding: 0 6px;
}

.ongoing-orders-badge.is-counting-down {
  animation: ongoing-orders-badge-countdown 1600ms ease-in-out infinite;
  transform-origin: center;
}

@keyframes ongoing-orders-badge-countdown {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(246, 61, 65, 0);
    transform: scale(1);
  }

  20% {
    box-shadow: 0 0 0 0 rgba(246, 61, 65, 0.38);
  }

  60% {
    box-shadow: 0 0 0 7px rgba(246, 61, 65, 0);
    transform: scale(1.06);
  }
}

.topbar .ongoing-orders-button {
  font-size: 16px;
  font-weight: 400;
}

.ongoing-orders-dropdown {
  background: #ffffff;
  border: 1px solid #ebe7e3;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(20, 24, 24, 0.2), 0 3px 10px rgba(20, 24, 24, 0.08);
  color: #1a1a1a;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(390px, calc(100vw - 32px));
  z-index: 80;
}

.ongoing-orders-panel-header {
  align-items: center;
  border-bottom: 1px solid #f0ece8;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 60px;
  padding: 12px 14px 12px 18px;
}

.ongoing-orders-panel-header h2 {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.ongoing-orders-close {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: #4b4b4b;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  height: 36px;
  justify-content: center;
  padding: 0;
  transition: background 140ms ease;
  width: 36px;
}

.ongoing-orders-close:hover {
  background: #f4f1ee;
}

.ongoing-orders-close:focus-visible,
.ongoing-order-card:focus-visible,
.ongoing-orders-button:focus-visible {
  outline: 3px solid rgba(246, 61, 65, 0.32);
  outline-offset: 2px;
}

.ongoing-orders-close svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 19px;
}

.ongoing-orders-list {
  max-height: min(430px, calc(100vh - 130px));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px;
  scrollbar-gutter: stable;
}

.ongoing-order-card {
  align-items: center;
  border-radius: 12px;
  color: #1a1a1a;
  display: grid;
  gap: 12px;
  grid-template-columns: 52px minmax(0, 1fr) 18px;
  min-height: 92px;
  padding: 12px 10px;
  text-decoration: none;
  transition: background 140ms ease, transform 140ms ease;
}

.ongoing-order-card + .ongoing-order-card {
  border-top: 1px solid #f2efec;
}

.ongoing-order-card:hover {
  background: #faf7f4;
}

.ongoing-order-card:active {
  transform: translateY(1px);
}

.ongoing-order-logo {
  align-items: center;
  align-self: start;
  background: #f5f1ed;
  border: 1px solid #ede7e1;
  border-radius: 12px;
  color: var(--hotmat-brand-red);
  display: flex;
  font-size: 18px;
  font-weight: 700;
  height: 52px;
  justify-content: center;
  overflow: hidden;
  width: 52px;
}

.ongoing-order-logo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ongoing-order-logo img[hidden] {
  display: none;
}

.ongoing-order-copy {
  min-width: 0;
}

.ongoing-order-heading {
  align-items: baseline;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.ongoing-order-restaurant {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ongoing-order-reference {
  color: #77716b;
  flex: 0 0 auto;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

.ongoing-order-status {
  color: #475569;
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 4px;
}

.ongoing-order-status--confirming {
  color: #b45309;
}

.ongoing-order-status--preparing {
  color: #c2410c;
}

.ongoing-order-status--delivering {
  color: #0f766e;
}

.ongoing-order-status--delivered {
  color: #15803d;
}

.ongoing-order-status--ready_to_pickup {
  color: #7c3aed;
}

.ongoing-order-status--canceled {
  color: #dc2626;
}

.ongoing-order-details {
  align-items: center;
  color: #69645f;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 4px 7px;
  line-height: 1.4;
  margin-top: 4px;
}

.ongoing-order-chevron {
  color: #9a928b;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.ongoing-orders-sheet {
  align-items: flex-end;
  display: none;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 1200;
}

.ongoing-orders-sheet-backdrop {
  background: rgba(9, 9, 9, 0.58);
  border: 0;
  cursor: default;
  inset: 0;
  padding: 0;
  position: absolute;
  width: 100%;
}

.ongoing-orders-sheet-panel {
  background: #ffffff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -12px 40px rgba(20, 24, 24, 0.22);
  color: #1a1a1a;
  max-height: calc(100dvh - 18px);
  outline: none;
  overflow: hidden;
  padding-bottom: env(safe-area-inset-bottom);
  position: relative;
  width: 100%;
}

body.ongoing-orders-sheet-open {
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .ongoing-orders-dropdown {
    display: none !important;
  }

  .ongoing-orders-sheet:not([hidden]) {
    display: flex;
  }

  .ongoing-orders-button-label {
    display: none;
  }

  .topbar .ongoing-orders-button,
  .restaurant-shell-header-right .ongoing-orders-button {
    justify-content: center;
    padding: 0;
    width: 36px;
  }

  .topbar .ongoing-orders-button {
    height: 32px;
    width: 32px;
  }

  .ongoing-orders-button {
    gap: 0;
    position: relative;
  }

  .ongoing-orders-badge {
    border: 2px solid #ffffff;
    font-size: 9px;
    height: 18px;
    min-width: 18px;
    padding: 0 4px;
    position: absolute;
    right: -6px;
    top: -6px;
  }

  .topbar .ongoing-orders-badge {
    border-color: rgba(45, 45, 45, 0.86);
  }

  .ongoing-orders-sheet-panel .ongoing-orders-list {
    max-height: calc(100dvh - 96px - env(safe-area-inset-bottom));
    padding: 8px 10px 12px;
  }

  .ongoing-orders-sheet-panel .ongoing-orders-panel-header {
    min-height: 64px;
    padding-right: 16px;
    padding-left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ongoing-orders-close,
  .ongoing-order-card {
    transition: none;
  }

  .ongoing-orders-badge.is-counting-down {
    animation: none;
    box-shadow: none;
    transform: none;
  }
}

.login-overlay {
  background: rgba(9, 9, 9, 0.62);
  display: grid;
  inset: 0;
  overflow-y: auto;
  padding: 24px;
  place-items: center;
  position: fixed;
  z-index: 1000;
}

.login-overlay[hidden],
.login-step[hidden],
.login-feedback[hidden],
.login-back-button[hidden] {
  display: none;
}

.login-dialog {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  color: var(--ink, var(--hotmat-ink));
  padding: 22px 26px 24px;
  width: min(100%, 430px);
}

.login-dialog-header {
  align-items: center;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  min-height: 40px;
}

.login-mark {
  display: grid;
  grid-column: 2;
  place-items: center;
}

.login-mark svg {
  color: var(--hotmat-brand-red);
  display: block;
  height: 38px;
  width: 38px;
}

.login-back-button,
.login-close-button {
  background: transparent;
  border: 0;
  color: var(--ink, var(--hotmat-ink));
  cursor: pointer;
  display: grid;
  height: 40px;
  padding: 0;
  place-items: center;
  width: 40px;
}

.login-back-button {
  grid-column: 1;
  grid-row: 1;
}

.login-close-button {
  grid-column: 3;
  grid-row: 1;
}

.login-back-button svg,
.login-close-button svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}

.login-back-button:hover,
.login-close-button:hover {
  color: var(--red, var(--hotmat-brand-red));
}

.login-step h2 {
  font-size: 25px;
  line-height: 1.15;
  margin: 22px 0 8px;
  text-align: center;
}

.login-intro,
.login-code-description {
  color: var(--secondary, var(--hotmat-muted));
  font-size: 14px;
  line-height: 1.45;
  margin: 0 auto 22px;
  text-align: center;
}

.login-code-description strong {
  color: var(--ink, var(--hotmat-ink));
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.social-login-list {
  display: grid;
  gap: 9px;
}

.social-login-button,
.login-primary-button {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d8d8dc;
  border-radius: 6px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  min-height: 50px;
  padding: 9px 14px;
  position: relative;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  width: 100%;
}

.social-login-button span,
.login-primary-button span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.social-login-button svg {
  height: 22px;
  width: 22px;
}

.social-login-button:hover,
.social-login-button:focus-visible {
  background: #f7f7f8;
  border-color: #9b9ba2;
}

.social-login-apple {
  background: #090909;
  border-color: #090909;
  color: #ffffff;
}

.social-login-apple svg {
  fill: #ffffff;
}

.social-login-apple:hover,
.social-login-apple:focus-visible {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
}

.login-divider {
  align-items: center;
  color: var(--secondary, var(--hotmat-muted));
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  margin: 20px 0;
}

.login-divider::before,
.login-divider::after {
  background: #dddddf;
  content: "";
  flex: 1;
  height: 1px;
}

.passwordless-request-form,
.passwordless-verify-form {
  display: grid;
  gap: 9px;
}

.passwordless-request-form label,
.passwordless-verify-form label {
  color: var(--ink, var(--hotmat-ink));
  font-size: 13px;
  font-weight: 700;
}

.passwordless-verify-form label[for="loginCode"] {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.passwordless-request-form input,
.passwordless-verify-form input {
  background: #ffffff;
  border: 1px solid #cfcfd4;
  border-radius: 6px;
  color: var(--ink, var(--hotmat-ink));
  font-size: 16px;
  height: 50px;
  outline: none;
  padding: 0 14px;
  width: 100%;
}

.passwordless-verify-form input {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}

.passwordless-request-form input:focus,
.passwordless-verify-form input:focus {
  border-color: var(--red, var(--hotmat-brand-red));
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.14);
}

.login-code-input-wrap {
  justify-self: center;
  min-height: 46px;
  position: relative;
  width: min(100%, 311px);
}

.login-code-slots {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(6, minmax(0, 46px));
  justify-content: center;
}

.login-code-slot {
  align-items: center;
  background: #ffffff;
  border: 1px solid #cfcfd4;
  border-radius: 7px;
  color: var(--ink, var(--hotmat-ink));
  display: flex;
  font-size: 22px;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.login-code-input-wrap input {
  background: transparent;
  border: 0;
  caret-color: transparent;
  color: transparent;
  height: 100%;
  inset: 0;
  opacity: 0.01;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.login-code-input-wrap input:focus {
  border: 0;
  box-shadow: none;
}

.login-code-slot.is-filled {
  background: #f7f8fa;
  border-color: #9398a3;
}

.login-code-input-wrap:focus-within .login-code-slot.is-active {
  border-color: var(--red, var(--hotmat-brand-red));
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.14);
}

.login-code-input-wrap.is-complete .login-code-slot {
  border-color: #69717d;
}

.login-code-input-wrap.is-error .login-code-slot {
  background: #fff5f5;
  border-color: var(--red, var(--hotmat-brand-red));
}

.login-primary-button {
  background: var(--red, var(--hotmat-brand-red));
  border-color: var(--red, var(--hotmat-brand-red));
  color: #ffffff;
  display: grid;
  margin-top: 4px;
}

.login-primary-button:hover,
.login-primary-button:focus-visible {
  background: var(--red-dark, var(--hotmat-brand-red-dark));
  border-color: var(--red-dark, var(--hotmat-brand-red-dark));
}

.login-primary-button > span:first-child {
  grid-column: 2;
}

.login-guest-button {
  background: transparent;
  border: 0;
  color: var(--secondary, var(--hotmat-muted));
  cursor: pointer;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 3px auto 0;
  padding: 7px 10px;
}

.login-guest-button:hover,
.login-guest-button:focus-visible {
  color: var(--red, var(--hotmat-brand-red));
}

.login-button-spinner {
  animation: login-spin 700ms linear infinite;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-right-color: transparent;
  display: none;
  grid-column: 3;
  height: 17px;
  justify-self: end;
  width: 17px;
}

.is-loading .login-button-spinner {
  display: block;
}

.social-login-button:disabled,
.login-primary-button:disabled,
.login-resend-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.login-primary-button:disabled:not(.is-loading) {
  cursor: not-allowed;
}

.login-resend-button:disabled:not(.is-loading) {
  cursor: default;
}

.login-resend-button,
.login-different-button {
  background: transparent;
  border: 0;
  color: var(--brand-red, var(--hotmat-brand-red));
  cursor: pointer;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 15px auto 0;
  padding: 5px;
}

.login-different-button {
  color: var(--secondary, var(--hotmat-muted));
  margin-top: 5px;
}

.login-code-actions {
  display: grid;
  gap: 4px;
  justify-items: center;
  margin-top: 14px;
}

.login-code-actions .login-resend-button,
.login-code-actions .login-different-button {
  margin: 0;
  min-height: 32px;
  padding: 6px 8px;
}

.login-feedback {
  background: #fff1f2;
  border-left: 3px solid var(--red, var(--hotmat-brand-red));
  color: var(--brand-red, var(--hotmat-brand-red));
  font-size: 13px;
  line-height: 1.4;
  margin: 16px 0 0;
  padding: 10px 12px;
}

.login-feedback.is-success {
  background: #eef9f2;
  border-left-color: #2c9b58;
  color: #176435;
}

.login-trigger:focus-visible,
.login-back-button:focus-visible,
.login-close-button:focus-visible,
.social-login-button:focus-visible,
.login-primary-button:focus-visible,
.login-guest-button:focus-visible,
.login-resend-button:focus-visible,
.login-different-button:focus-visible {
  outline: 3px solid var(--red, var(--hotmat-brand-red));
  outline-offset: 3px;
}

@keyframes login-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes address-search-spin {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 840px) {
  .restaurant-shell-site-header {
    min-height: 0;
  }

  .restaurant-shell-header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 0;
    padding: 12px 16px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1180px) {
  .restaurant-shell-site-header {
    min-height: 60px;
  }

  .restaurant-shell-header-inner {
    gap: 12px;
    min-height: 60px;
    padding: 8px 18px;
  }

  .restaurant-shell-header-right {
    gap: 8px;
  }

  .restaurant-shell-logo-wordmark {
    height: 22px;
  }

  .restaurant-shell-pill-button {
    border-radius: 10px;
    font-size: 14px;
    gap: 6px;
    height: 36px;
    padding: 0 10px;
  }

  .restaurant-shell-icon,
  .restaurant-shell-login-icon {
    height: 16px;
    width: 16px;
  }

  .restaurant-shell-chevron {
    height: 11px;
    width: 11px;
  }

  .restaurant-shell-address-pill {
    gap: 8px;
    height: 40px;
    padding: 0 13px;
  }

  .restaurant-shell-address-pin {
    height: 18px;
    width: 18px;
  }

  .restaurant-shell-address-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .site-footer {
    padding: 36px 20px 24px;
  }

  .footer-inner {
    gap: 28px;
  }

  .footer-legal {
    margin-top: 28px;
  }
}

@media screen and (min-width: 769px) {
  .site-footer {
    padding-right: clamp(32px, 6vw, 72px);
    padding-left: clamp(32px, 6vw, 72px);
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .footer-brand {
    flex: 1.05;
  }

  .footer-links {
    flex: 0.9;
    padding-top: 4px;
  }

  .footer-pay {
    align-items: flex-end;
    flex: 1.65;
    width: auto;
    padding-top: 4px;
    padding-left: 40px;
    border-left: 1px solid #eeece9;
  }
}

@media screen and (min-width: 960px) {
  .site-footer {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media screen and (min-width: 769px) {
  .home-page-body .site-footer,
  .restaurant-page-body .site-footer,
  .restaurant-list-page-body .site-footer,
  .checkout-page-body .site-footer,
  .payment-page-body .site-footer,
  .driver-page-body .site-footer {
    padding-right: var(--hotmat-page-gutter);
    padding-left: var(--hotmat-page-gutter);
  }
}

@media screen and (max-width: 1040px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    max-width: var(--checkout-card-max);
  }
}

@media screen and (min-width: 1041px) {
  .checkout-page-body #checkout-form .checkout-summary-card {
    --checkout-summary-sticky-top: 86px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: sticky;
    top: var(--checkout-summary-sticky-top);
  }

  .checkout-page-body #checkout-form .checkout-summary-card > :not(.checkout-summary-items) {
    flex: 0 0 auto;
  }

  .checkout-page-body #checkout-form .checkout-summary-items {
    flex: 0 0 auto;
    max-height: clamp(280px, 40vh, 400px);
    max-height: clamp(280px, 40dvh, 400px);
    min-height: 0;
    overflow-y: hidden;
    scrollbar-gutter: auto;
  }

  .checkout-page-body #checkout-form .checkout-summary-items--scrollable {
    overflow-y: auto;
    scrollbar-gutter: stable;
  }
}

@media screen and (max-width: 640px) {
  .checkout-coupon-dialog,
  .checkout-closed-dialog {
    align-items: flex-end;
    padding: 0;
  }

  .checkout-coupon-dialog__panel {
    border-radius: 16px 16px 0 0;
    max-height: calc(100dvh - 18px);
    width: 100%;
  }

  .checkout-coupon-dialog__header {
    padding: 20px 20px 16px;
  }

  .checkout-coupon-dialog__title {
    font-size: 19px;
  }

  .checkout-coupon-dialog__body {
    padding: 18px 20px calc(22px + env(safe-area-inset-bottom));
  }

  .checkout-closed-dialog__panel {
    border-radius: 16px 16px 0 0;
    max-height: calc(100dvh - 18px);
    padding: 34px 24px calc(24px + env(safe-area-inset-bottom));
    width: 100%;
  }

  .checkout-closed-dialog__close {
    right: 18px;
    top: 18px;
  }

  .checkout-closed-dialog__icon {
    height: 60px;
    margin-bottom: 18px;
    width: 60px;
  }

  .checkout-closed-dialog__title {
    font-size: 21px;
  }

  .checkout-closed-dialog__message {
    font-size: 14px;
  }

  .checkout-restaurant-bar-inner {
    height: 52px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .checkout-restaurant-back {
    font-size: 13px;
    gap: 8px;
  }

  .checkout-restaurant-divider {
    height: 22px;
    margin-right: 12px;
    margin-left: 12px;
  }

  .checkout-restaurant-info {
    gap: 9px;
  }

  .checkout-restaurant-name {
    font-size: 14px;
  }

  .checkout-restaurant-back-skeleton {
    flex-basis: 96px;
  }

  .checkout-restaurant-name-skeleton {
    width: min(142px, 38vw);
  }

  .checkout-initial-error {
    min-height: 430px;
    padding: 36px 0 64px;
  }

  .checkout-initial-error-card {
    padding: 32px 22px 34px;
  }

  .checkout-initial-error h1 {
    font-size: 22px;
  }

  .checkout-empty-state {
    min-height: 430px;
    padding: 24px 0 54px;
  }

  .checkout-empty-state__art {
    max-width: 280px;
    width: min(78vw, 280px);
  }

  .checkout-empty-state h1 {
    font-size: 24px;
    margin-top: 12px;
  }

  .checkout-empty-state a {
    max-width: 320px;
    width: 100%;
  }

  #checkout-page,
  #payment-page,
  #tracking-page {
    padding-top: 18px;
    padding-right: 14px;
    padding-bottom: 36px;
    padding-left: 14px;
  }

  .checkout-layout {
    gap: 18px;
  }

  .checkout-delivery-card {
    min-height: 0;
    padding: 19px 18px 24px;
  }

  .checkout-contact-card {
    margin-top: 14px;
    padding: 19px 18px 20px;
  }

  .checkout-contact-title {
    font-size: 20px;
  }

  .checkout-contact-fields {
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding-left: 0;
  }

  .checkout-contact-field--comment {
    margin-top: 14px;
    padding-left: 0;
  }

  .checkout-loading-comment {
    margin-top: 14px;
    margin-left: 0;
  }

  .checkout-contact-notice {
    align-items: flex-start;
  }

  .checkout-payment-card {
    margin-top: 14px;
    padding: 19px 18px 20px;
  }

  .checkout-payment-title {
    font-size: 20px;
  }

  .checkout-payment-options {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .checkout-payment-option-body {
    min-height: 92px;
    padding: 16px 12px 13px;
  }

  .checkout-loading-payment-option {
    height: 92px;
  }

  .checkout-payment-notice {
    align-items: flex-start;
  }

  .payment-swish-card {
    border-radius: 14px;
    max-width: none;
    padding: 18px 16px;
  }

  .payment-swish-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .payment-swish-amount strong {
    font-size: 32px;
  }

  .payment-swish-divider {
    margin: 18px 0;
  }

  .payment-swish-method {
    gap: 12px;
    padding: 12px;
  }

  .payment-swish-method-logo--swish {
    width: 76px;
  }

  .payment-swish-phone-row {
    gap: 8px;
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .payment-swish-country,
  .payment-swish-phone {
    font-size: 13.5px;
    height: 44px;
  }

  .payment-swish-country {
    padding-right: 10px;
    padding-left: 10px;
  }

  .payment-swish-phone {
    padding-right: 12px;
    padding-left: 12px;
  }

  .payment-swish-pay {
    font-size: 14.5px;
    height: 48px;
  }

  .payment-swish-secure {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .checkout-delivery-title {
    font-size: 21px;
  }

  .checkout-delivery-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    margin-top: 20px;
  }

  .checkout-delivery-tab {
    font-size: 13px;
    gap: 10px;
    min-height: 52px;
    padding: 0 12px;
  }

  .checkout-delivery-tab-icon {
    height: 22px;
    width: 22px;
  }

  .checkout-delivery-address-row {
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
  }

  .checkout-delivery-address {
    align-items: flex-start;
    font-size: 15px;
    gap: 11px;
  }

  .checkout-delivery-address-icon {
    height: 24px;
    width: 24px;
  }

  .checkout-pickup-details {
    gap: 11px;
    margin-top: 22px;
    padding: 15px;
  }

  .checkout-pickup-details-icon {
    height: 24px;
    width: 24px;
  }

  .checkout-pickup-restaurant-name {
    font-size: 15px;
  }

  .checkout-delivery-fields {
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding-left: 0;
  }

  .checkout-summary-card {
    border-radius: 14px;
    max-width: none;
    padding: 0 18px 24px;
  }

  .checkout-summary-title {
    font-size: 21px;
    line-height: 28px;
  }

  .checkout-summary-discount {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  .checkout-loading-summary-discount {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  .checkout-summary-apply {
    width: 82px;
  }

  .checkout-summary-pay {
    font-size: 16px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .checkout-summary-secure {
    align-items: flex-start;
  }

  .checkout-summary-secure span {
    white-space: normal;
  }

  .restaurant-shell-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    justify-content: space-between;
    row-gap: 12px;
  }

  .restaurant-shell-header-left {
    order: 1;
  }

  .restaurant-shell-header-right {
    order: 2;
  }

  .restaurant-shell-location-row {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
  }
}

@media screen and (max-width: 510px) {
  .restaurant-shell-header-inner {
    padding: 10px 14px;
    row-gap: 10px;
  }

  .restaurant-shell-header-right {
    gap: 8px;
  }

  .restaurant-shell-logo-wordmark {
    height: 20px;
  }

  .restaurant-shell-pill-button {
    border-radius: 10px;
    font-size: 14px;
    gap: 6px;
    height: 36px;
    padding: 0 10px;
  }

  .restaurant-shell-login-button {
    justify-content: center;
    padding: 0;
    width: 36px;
  }

  .restaurant-shell-login-button span {
    display: none;
  }

  .restaurant-shell-login-button .account-menu-chevron {
    display: none;
  }

  .restaurant-shell-icon,
  .restaurant-shell-login-icon {
    height: 16px;
    width: 16px;
  }

  .restaurant-shell-chevron {
    height: 11px;
    width: 11px;
  }

  .restaurant-shell-address-pill {
    gap: 8px;
    height: 40px;
    padding: 0 13px;
  }

  .restaurant-shell-address-pin {
    height: 18px;
    width: 18px;
  }

  .restaurant-shell-address-text {
    font-size: 14px;
  }

  .restaurant-shell-address-overlay {
    align-items: end;
    background: rgba(28, 24, 21, 0.34);
    display: grid;
    inset: 0;
    left: 0;
    overflow: hidden;
    padding: 0;
    place-items: end stretch;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }

  .restaurant-shell-address-dialog {
    border-radius: 24px 24px 0 0;
    border-width: 0;
    box-shadow: 0 -18px 48px rgba(36, 30, 25, 0.16);
    max-height: calc(100svh - 72px);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    padding: 30px 18px max(20px, env(safe-area-inset-bottom));
    width: 100%;
  }

  .restaurant-shell-address-dialog::before {
    background: #d8d3ce;
    border-radius: 999px;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    top: 10px;
    transform: translateX(-50%);
    width: 42px;
  }

  .restaurant-shell-address-close {
    right: 14px;
    top: 16px;
  }

  .restaurant-shell-address-dialog h2 {
    font-size: 19px;
    margin-bottom: 14px;
    margin-right: 46px;
  }

  .restaurant-shell-address-search {
    position: relative;
  }

  .restaurant-shell-address-dialog #addressList {
    margin-top: 0;
    max-height: min(260px, 36svh);
    max-height: min(260px, 36dvh);
    position: static;
    width: 100%;
    z-index: 2;
  }

  .restaurant-shell-address-dialog .location-button {
    align-self: stretch;
    background: #f7f5f2;
    border-color: transparent;
    color: #403c38;
    height: 46px;
    justify-content: center;
    margin-top: 12px;
    width: 100%;
  }

  .restaurant-shell-address-dialog .location-button:hover {
    background: #f1eeea;
    border-color: #e6e0da;
  }

  .restaurant-shell-address-dialog .location-button-spinner {
    border: 2px solid rgba(246, 61, 65, 0.2);
    border-top-color: currentColor;
  }
}

@media screen and (max-width: 370px) {
  .checkout-delivery-card,
  .checkout-contact-card,
  .checkout-payment-card,
  .payment-swish-card {
    padding-right: 14px;
    padding-left: 14px;
  }

  .payment-swish-method {
    padding-right: 12px;
    padding-left: 12px;
  }

  .payment-swish-phone-row {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .payment-swish-country {
    padding-right: 8px;
    padding-left: 8px;
  }

  .checkout-delivery-tab {
    gap: 8px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .checkout-delivery-address-row {
    flex-direction: column;
  }

  .checkout-loading-address-row {
    align-items: center;
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .checkout-loading-address-action {
    grid-column: 2;
  }

  .restaurant-shell-header-inner {
    column-gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .restaurant-shell-header-right {
    gap: 6px;
  }

  .restaurant-shell-logo-wordmark {
    height: 18px;
  }

  .restaurant-shell-language-button {
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media screen and (max-width: 520px) {
  .login-overlay {
    align-items: end;
    padding: 0;
  }

  .login-dialog {
    border-radius: 8px 8px 0 0;
    max-height: calc(100svh - 18px);
    overflow-y: auto;
    padding: 18px 20px 22px;
    width: 100%;
  }

  .login-step h2 {
    font-size: 23px;
    margin-top: 16px;
  }

  .login-code-slots {
    gap: 6px;
    grid-template-columns: repeat(6, minmax(0, 44px));
  }

  .login-code-input-wrap {
    min-height: 44px;
    width: min(100%, 294px);
  }

  .login-code-slot {
    font-size: 20px;
    height: 44px;
  }
}

@media screen and (max-width: 370px) {
  .login-code-slots {
    gap: 5px;
    grid-template-columns: repeat(6, minmax(0, 42px));
  }

  .login-code-input-wrap {
    min-height: 42px;
    width: min(100%, 277px);
  }

  .login-code-slot {
    font-size: 19px;
    height: 42px;
  }
}

/* Payment processing and initial order tracking */
.payment-page-document {
  --payment-sticky-header-offset: 80px;
  scroll-padding-top: var(--payment-sticky-header-offset);
}

.payment-page-content {
  width: 100%;
}

.payment-page-back-row,
.tracking-page-back-row {
  margin: 0 auto 12px;
  max-width: var(--restaurant-shell-content-max);
  width: 100%;
}

.payment-page-back,
.tracking-page-back {
  align-items: center;
  color: var(--hotmat-brand-red);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  line-height: 1.2;
  min-height: 44px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.payment-page-back:hover,
.tracking-page-back:hover {
  color: var(--hotmat-brand-red-dark);
}

.payment-page-back:focus-visible,
.tracking-page-back:focus-visible {
  border-radius: 6px;
  outline: 3px solid var(--hotmat-brand-red);
  outline-offset: 3px;
}

.payment-page-back-icon,
.tracking-page-back-icon {
  display: block;
  fill: none;
  flex: 0 0 auto;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

.payment-page-layout,
.tracking-page-layout {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.payment-page-layout {
  min-height: clamp(400px, 48vh, 480px);
}

.payment-page-layout[hidden],
.card-payment-layout[hidden] {
  display: none;
}

.card-payment-layout {
  margin: 0 auto;
  max-width: 1040px;
  width: 100%;
}

.card-payment-checkout {
  min-height: clamp(520px, 65vh, 720px);
  position: relative;
  width: 100%;
}

[data-nexi-checkout-container] {
  min-height: inherit;
  scroll-margin-top: var(--payment-sticky-header-offset, 80px);
  width: 100%;
}

[data-nexi-checkout-container] iframe {
  scroll-margin-top: var(--payment-sticky-header-offset, 80px);
}

.card-payment-overlay {
  align-items: center;
  background: #f7f7f8;
  display: flex;
  inset: 0;
  justify-content: center;
  min-height: inherit;
  padding: clamp(28px, 5vw, 64px) 20px;
  position: absolute;
  z-index: 2;
}

.card-payment-overlay[hidden] {
  display: none;
}

.card-payment-overlay__status {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 520px;
  text-align: center;
}

.payment-status-spinner {
  animation: payment-status-spin 0.85s linear infinite;
  border: 3px solid #e1e4e9;
  border-radius: 50%;
  border-top-color: var(--hotmat-brand-red);
  display: block;
  height: 38px;
  margin-bottom: 22px;
  width: 38px;
}

.payment-status-spinner[hidden] {
  display: none;
}

.card-payment-overlay__title {
  color: #101828;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
}

.card-payment-overlay__description {
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0 0;
}

.card-payment-overlay__actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  max-width: 330px;
  width: 100%;
}

.tracking-page-layout {
  align-items: flex-start;
  gap: clamp(20px, 3vw, 32px);
  justify-content: center;
  min-height: clamp(420px, 62vh, 640px);
}

.payment-status-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e8eaee;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
  max-width: 560px;
  padding: 42px 44px 38px;
  text-align: center;
  width: 100%;
}

.payment-status-visual {
  align-items: center;
  display: flex;
  height: 104px;
  justify-content: center;
  position: relative;
  width: 104px;
}

.payment-status-logo {
  align-items: center;
  background: linear-gradient(145deg, #ffffff 8%, #faf9ff 55%, #f2f8ff 100%);
  border: 1px solid #ebe9f5;
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(70, 57, 130, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  height: 104px;
  justify-content: center;
  width: 104px;
}

.payment-status-swish-symbol {
  display: block;
  height: 62px;
  transform-origin: center;
  width: 62px;
}

.payment-status-card[aria-busy="true"] .payment-status-swish-symbol {
  animation: payment-status-spin 1.35s linear infinite;
}

.payment-status-copy {
  margin-top: 25px;
  max-width: 430px;
}

.payment-status-title {
  color: #101828;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
}

.payment-status-description {
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0 0;
}

.payment-status-details {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 25px;
  max-width: 100%;
}

.payment-status-order,
.payment-status-total {
  align-items: center;
  background: #f8f9fb;
  border: 1px solid #eceef2;
  border-radius: 10px;
  display: inline-flex;
  gap: 10px;
  max-width: 100%;
  padding: 10px 14px;
}

.payment-status-order span,
.payment-status-total span {
  color: #667085;
  font-size: 13px;
  line-height: 1.3;
}

.payment-status-order strong,
.payment-status-total strong {
  color: #101828;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.payment-status-actions {
  display: grid;
  gap: 10px;
  margin-top: 25px;
  max-width: 330px;
  width: 100%;
}

.payment-status-action {
  align-items: center;
  appearance: none;
  border-radius: 9px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  text-decoration: none;
  width: 100%;
}

.payment-status-action[hidden],
.payment-status-order[hidden],
.payment-status-total[hidden] {
  display: none;
}

.payment-status-action--primary {
  background: #0d1b2e;
  border: 1px solid #0d1b2e;
  color: #ffffff;
}

.payment-status-action--primary:hover {
  background: #142742;
  border-color: #142742;
}

.payment-status-action--secondary {
  background: #ffffff;
  border: 1px solid #d5d9e0;
  color: #344054;
}

.payment-status-action--secondary:hover {
  background: #f8f9fb;
}

.payment-status-action--cancel {
  background: #ffffff;
  border: 1px solid #efb8bb;
  color: #c81e25;
}

.payment-status-action--cancel:hover {
  background: #fff5f5;
  border-color: #e58e93;
}

.payment-status-action:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.2);
  outline: none;
}

.payment-status-card--error .payment-status-logo {
  border-color: #f4c7c9;
  box-shadow: 0 12px 28px rgba(246, 61, 65, 0.1);
}

body.payment-leave-dialog-open {
  overflow: hidden;
}

.payment-leave-dialog {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1200;
}

.payment-leave-dialog[hidden] {
  display: none;
}

.payment-leave-dialog__backdrop {
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  cursor: default;
  inset: 0;
  padding: 0;
  position: absolute;
  width: 100%;
}

.payment-leave-dialog__panel {
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 48px);
  max-width: 100%;
  outline: 0;
  overflow-y: auto;
  padding: 36px 32px 30px;
  position: relative;
  text-align: center;
  width: 440px;
  z-index: 1;
}

.payment-leave-dialog__icon {
  align-items: center;
  background: #fff0f0;
  border-radius: 999px;
  color: #fb151a;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 20px;
  width: 64px;
}

.payment-leave-dialog__icon svg {
  fill: none;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 32px;
}

.payment-leave-dialog__title {
  color: #111111;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.payment-leave-dialog__message {
  color: #65615e;
  font-size: 15px;
  line-height: 1.55;
  margin: 12px 0 0;
  max-width: 360px;
}

.payment-leave-dialog__actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  width: 100%;
}

.payment-leave-dialog__action {
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  min-height: 48px;
  padding: 10px 18px;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.payment-leave-dialog__action--leave {
  background: #ffffff;
  border: 1px solid #d5d9e0;
  color: #344054;
}

.payment-leave-dialog__action--leave:hover {
  background: #f8f9fb;
}

.payment-leave-dialog__action--stay {
  background: #fb151a;
  border: 1px solid #fb151a;
  color: #ffffff;
}

.payment-leave-dialog__action--stay:hover {
  background: #e91217;
  border-color: #e91217;
}

.payment-leave-dialog__action:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.24);
  outline: none;
}

@media screen and (max-width: 520px) {
  .payment-leave-dialog {
    align-items: end;
    padding: 0;
  }

  .payment-leave-dialog__panel {
    border-radius: 16px 16px 0 0;
    max-height: calc(100dvh - 18px);
    padding: 30px 20px 22px;
    width: 100%;
  }

  .payment-leave-dialog__actions {
    grid-template-columns: 1fr;
  }

  .payment-leave-dialog__action--stay {
    grid-row: 1;
  }
}

.tracking-page-content {
  align-items: flex-start;
  display: flex;
  gap: clamp(20px, 3vw, 32px);
  justify-content: center;
  max-width: var(--restaurant-shell-content-max);
  min-width: 0;
  width: 100%;
}

.tracking-page-content[hidden],
.tracking-state-card[hidden] {
  display: none;
}

.tracking-page-main {
  display: grid;
  flex: 16 1 0;
  gap: clamp(16px, 2vw, 24px);
  min-width: 0;
}

.tracking-page-aside {
  display: grid;
  flex: 9 1 0;
  gap: clamp(16px, 2vw, 24px);
  min-width: 0;
}

.tracking-state-card {
  align-self: center;
  max-width: 520px;
  padding: 34px;
  width: 100%;
}

.tracking-loading-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  min-height: 190px;
  text-align: center;
}

.tracking-loading-card p {
  color: #475467;
  font-size: 15px;
  line-height: 21px;
  margin: 0;
}

.tracking-loading-spinner {
  animation: tracking-loading-spin 0.8s linear infinite;
  border: 3px solid #fbd0d1;
  border-radius: 50%;
  border-top-color: var(--hotmat-brand-red);
  height: 34px;
  width: 34px;
}

@keyframes tracking-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.tracking-state-description {
  margin: 20px 4px 0;
}

.tracking-status-card,
.tracking-summary-card,
.tracking-help-card {
  max-width: none;
}

.tracking-status-card {
  padding-bottom: 24px;
  padding-top: 26px;
}

.tracking-status-layout {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  justify-content: space-between;
}

.tracking-status-copy {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 0 0 4px;
}

.tracking-status-title {
  color: #212529;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.2px;
  line-height: 27px;
  margin: 22px 0 0;
}

.tracking-status-description {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 8px 0 0;
}

.tracking-status-eta {
  display: grid;
  gap: 4px;
}

.tracking-status-eta[hidden] {
  display: none;
}

.tracking-status-eta-label {
  color: #737982;
  font-size: 13px;
  line-height: 18px;
}

.tracking-status-eta-window {
  color: #212529;
  font-size: clamp(27px, 4vw, 34px);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.tracking-status-illustration {
  flex: 0 0 auto;
  padding-right: 2px;
}

.tracking-status-illustration span[hidden] {
  display: none;
}

.tracking-status-illustration svg {
  display: block;
  height: clamp(80px, 10vw, 106px);
  width: auto;
}

.tracking-status-address {
  display: grid;
  gap: 2px;
  margin: 12px 0 0;
}

.tracking-status-address[hidden] {
  display: none;
}

.tracking-status-address--link {
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

.tracking-status-address--link:hover .tracking-status-address-street {
  text-decoration: underline;
}

.tracking-status-address--link:focus-visible {
  outline: 2px solid #f47b20;
  outline-offset: 4px;
}

.tracking-status-address-label {
  color: #737982;
  font-size: 12.5px;
  line-height: 17px;
}

.tracking-status-address-street,
.tracking-status-address-locality {
  color: #212529;
  font-size: 14.5px;
  line-height: 20px;
  overflow-wrap: anywhere;
}

.tracking-status-address-street {
  font-weight: 600;
}

.tracking-status-address-locality {
  color: #565b61;
  font-weight: 400;
}

.tracking-status-address-locality[hidden] {
  display: none;
}

.tracking-status-steps {
  display: flex;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.tracking-status-steps[hidden] {
  display: none;
}

.tracking-status-card--canceled {
  align-items: center;
  column-gap: clamp(16px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.tracking-status-card--canceled .tracking-status-layout {
  display: contents;
}

.tracking-status-card--canceled .tracking-status-copy {
  display: none;
}

.tracking-status-card--canceled .tracking-status-title {
  align-self: end;
  grid-column: 1;
  grid-row: 1;
  margin-top: 0;
}

.tracking-status-card--canceled .tracking-status-description {
  align-self: start;
  grid-column: 1;
  grid-row: 2;
}

.tracking-status-card--canceled .tracking-status-illustration {
  align-self: center;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.tracking-status-step {
  align-items: center;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  position: relative;
  text-align: center;
}

.tracking-status-step[hidden] {
  display: none;
}

.tracking-status-step::before {
  background: #eceef2;
  border-radius: 999px;
  content: "";
  height: 3px;
  left: calc(-50% + 27px);
  position: absolute;
  right: calc(50% + 27px);
  top: 18px;
}

.tracking-status-step:first-child::before {
  display: none;
}

.tracking-status-step-marker {
  align-items: center;
  background: #f2f4f7;
  border: 2px solid transparent;
  border-radius: 50%;
  box-sizing: border-box;
  color: #98a2b3;
  display: flex;
  flex: 0 0 auto;
  height: 38px;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  width: 38px;
}

.tracking-status-step-icon {
  display: flex;
}

.tracking-status-step-icon[hidden] {
  display: none;
}

.tracking-status-step-icon svg {
  display: block;
  height: 18px;
  width: 18px;
}

.tracking-status-step--done::before {
  background: var(--hotmat-brand-red);
}

.tracking-status-step--active::before {
  background: linear-gradient(90deg, var(--hotmat-brand-red) 0%, #fbd0d1 100%);
}

.tracking-status-step--done .tracking-status-step-marker {
  background: var(--hotmat-brand-red);
  color: #ffffff;
}

.tracking-status-step--active .tracking-status-step-marker {
  animation: tracking-step-pulse 2s ease-out infinite;
  background: #ffffff;
  border-color: var(--hotmat-brand-red);
  color: var(--hotmat-brand-red);
}

.tracking-status-step-label {
  color: #98a2b3;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  overflow-wrap: break-word;
  padding: 0 2px;
}

.tracking-status-step--done .tracking-status-step-label {
  color: #475467;
}

.tracking-status-step--active .tracking-status-step-label {
  color: #212529;
}

@keyframes tracking-step-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(246, 61, 65, 0.3);
  }
  60% {
    box-shadow: 0 0 0 9px rgba(246, 61, 65, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(246, 61, 65, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tracking-status-step--active .tracking-status-step-marker {
    animation: none;
    box-shadow: 0 0 0 5px rgba(246, 61, 65, 0.14);
  }
}

@media screen and (max-width: 640px) {
  .tracking-status-layout {
    align-items: flex-start;
  }

  .tracking-status-illustration {
    margin-top: 44px;
  }

  .tracking-status-card--canceled .tracking-status-illustration {
    margin-top: 0;
  }

  .tracking-status-steps {
    flex-direction: column;
    gap: 16px;
    margin: 20px 0 0;
  }

  .tracking-status-step {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 12px;
    text-align: left;
  }

  .tracking-status-step::before {
    bottom: calc(100% - 1px);
    height: 14px;
    left: 16.5px;
    right: auto;
    top: auto;
    width: 3px;
  }

  .tracking-status-step--active::before {
    background: linear-gradient(180deg, var(--hotmat-brand-red) 0%, #fbd0d1 100%);
  }

  .tracking-status-step-marker {
    height: 36px;
    width: 36px;
  }

  .tracking-status-step-label {
    font-size: 13px;
    line-height: 17px;
    padding: 0;
  }
}

@media screen and (max-width: 900px) {
  .tracking-page-content {
    align-items: stretch;
    flex-direction: column;
  }

  .tracking-page-main,
  .tracking-page-aside {
    flex: 1 1 auto;
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
  }

  .tracking-status-illustration svg {
    height: 76px;
  }
}

.tracking-details-header {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  margin: 18px 4px 0;
}

.tracking-details-restaurant-image {
  align-items: center;
  background: #f7f7f8;
  border-radius: 8px;
  color: #98a2b3;
  display: flex;
  flex: 0 0 68px;
  height: 68px;
  justify-content: center;
  overflow: hidden;
  width: 68px;
}

.tracking-details-restaurant-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.tracking-details-restaurant-image img[hidden],
.tracking-details-restaurant-image span[hidden] {
  display: none;
}

.tracking-details-restaurant-image span {
  display: grid;
  place-items: center;
}

.tracking-details-restaurant-image svg {
  display: block;
  height: 28px;
  width: 28px;
}

.tracking-details-content {
  flex: 1 1 auto;
  min-width: 0;
}

.tracking-details-restaurant {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.tracking-details-restaurant-name {
  color: var(--hotmat-brand-red);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.tracking-details-restaurant-name:hover {
  text-decoration: underline;
}

.tracking-details-restaurant-name:focus-visible {
  border-radius: 4px;
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.2);
  outline: none;
}

.tracking-details-restaurant-name[aria-disabled="true"] {
  color: #475467;
  cursor: default;
  text-decoration: none;
}

.tracking-details-order-number {
  color: #737982;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  line-height: 17px;
  overflow-wrap: anywhere;
}

.tracking-details-note {
  color: #737982;
  font-size: 13px;
  line-height: 18px;
  margin: 8px 0 0;
}

.tracking-details-toggle {
  align-items: center;
  appearance: none;
  background: none;
  border: 0;
  color: #212529;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  gap: 10px;
  justify-content: space-between;
  margin-top: 6px;
  padding: 13px 4px;
  text-align: left;
  width: 100%;
}

.tracking-details-toggle:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.18);
  outline: none;
}

.tracking-details-toggle-chevron {
  color: #565b61;
  display: grid;
  place-items: center;
}

.tracking-details-toggle-chevron svg {
  display: block;
  height: 18px;
  transform: rotate(180deg);
  transition: transform 0.18s ease;
  width: 18px;
}

.tracking-details-toggle[aria-expanded="false"] .tracking-details-toggle-chevron svg {
  transform: rotate(0deg);
}

.tracking-details-body[hidden] {
  display: none;
}

.tracking-details-body .checkout-summary-items {
  margin-top: 4px;
}

.tracking-help-title {
  color: #212529;
  font-size: 16.5px;
  font-weight: 650;
  letter-spacing: -0.2px;
  line-height: 23px;
  margin: 24px 4px 0;
}

.tracking-summary-paid-label {
  font-weight: 600;
}

.tracking-summary-contact {
  align-items: center;
  background: #fff8f8;
  border: 0;
  border-radius: 14px;
  color: #212529;
  display: grid;
  gap: 12px;
  grid-template-columns: 44px minmax(0, 1fr) 18px;
  margin-top: 16px;
  min-height: 72px;
  padding: 10px 12px;
  text-decoration: none;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.tracking-summary-contact:hover {
  background: #fff1f1;
}

.tracking-summary-contact--unavailable {
  background: #f7f7f8;
  cursor: default;
}

.tracking-summary-contact--unavailable:hover {
  background: #f7f7f8;
}

.tracking-summary-contact--unavailable .tracking-summary-contact-icon {
  background: #eceef2;
  color: #98a2b3;
}

.tracking-summary-contact:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.18);
  outline: none;
}

.tracking-summary-contact-icon {
  align-items: center;
  background: #fff0f0;
  border-radius: 12px;
  color: var(--hotmat-brand-red);
  display: flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.tracking-summary-contact-icon svg {
  display: block;
  height: 22px;
  width: 22px;
}

.tracking-summary-contact-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.tracking-summary-contact-copy strong {
  color: #212529;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}

.tracking-summary-contact-copy > span {
  color: #737982;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  line-height: 17px;
}

.tracking-summary-contact-chevron {
  color: #a0a5ab;
  display: grid;
  place-items: center;
}

.tracking-summary-contact-chevron svg {
  display: block;
  height: 18px;
  stroke-width: 2;
  width: 18px;
}

.tracking-state-action {
  align-items: center;
  appearance: none;
  background: var(--hotmat-brand-red);
  border: 1px solid var(--hotmat-brand-red);
  border-radius: 12px;
  color: #ffffff;
  display: flex;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  justify-content: center;
  margin: 20px 4px 0;
  min-height: 46px;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  width: calc(100% - 8px);
}

.tracking-state-action:hover {
  background: var(--hotmat-brand-red-dark);
  border-color: var(--hotmat-brand-red-dark);
}

.tracking-state-action:focus-visible {
  box-shadow: 0 0 0 3px rgba(246, 61, 65, 0.28);
  outline: none;
}

@keyframes payment-status-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .payment-status-card[aria-busy="true"] .payment-status-swish-symbol {
    animation: none;
  }

  .tracking-loading-spinner {
    animation: none;
  }

  .payment-status-spinner {
    animation: none;
  }
}

@media screen and (max-width: 760px) {
  .payment-page-back-row,
  .tracking-page-back-row {
    margin-bottom: 8px;
  }

  .payment-page-layout,
  .tracking-page-layout {
    align-items: flex-start;
    min-height: 0;
    padding-top: 12px;
  }

  .card-payment-layout {
    margin-left: -14px;
    width: calc(100% + 28px);
  }

  .card-payment-checkout {
    min-height: 560px;
  }

  .card-payment-overlay {
    padding-left: 16px;
    padding-right: 16px;
  }

  .card-payment-overlay__title {
    font-size: 22px;
  }

  .payment-status-card {
    border-radius: 15px;
    padding: 32px 20px 28px;
  }

  .payment-status-title {
    font-size: 22px;
  }

  .payment-status-description {
    font-size: 14px;
  }
}

@media screen and (max-width: 699px), screen and (max-height: 520px) and (any-pointer: coarse) {
  .restaurant-shell-address-overlay.address-search-viewport-active {
    align-items: stretch;
    background: #ffffff;
    bottom: auto;
    display: block;
    height: var(--address-visible-height, 100dvh);
    inset: auto 0 auto;
    left: 0;
    overflow: hidden;
    padding: 0;
    position: fixed;
    top: var(--address-visible-top, 0);
    width: 100%;
    z-index: 1000;
  }

  .restaurant-shell-address-overlay.address-search-viewport-active .restaurant-shell-address-dialog {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: none;
    overflow: hidden;
    padding:
      max(14px, env(safe-area-inset-top))
      16px
      max(14px, env(safe-area-inset-bottom));
    width: 100%;
  }

  .restaurant-shell-address-overlay.address-search-viewport-active .restaurant-shell-address-dialog::before {
    display: none;
  }

  .restaurant-shell-address-overlay.address-search-viewport-active .restaurant-shell-address-close {
    right: 14px;
    top: max(10px, env(safe-area-inset-top));
  }

  .restaurant-shell-address-overlay.address-search-viewport-active .restaurant-shell-address-dialog h2 {
    flex: 0 0 auto;
    font-size: 19px;
    line-height: 32px;
    margin: 0 46px 12px 2px;
    min-height: 32px;
  }

  .restaurant-shell-address-overlay.address-search-viewport-active .restaurant-shell-address-search {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    overflow: hidden;
  }

  .restaurant-shell-address-overlay.address-search-viewport-active .address-field {
    flex: 0 0 54px;
  }

  .restaurant-shell-address-overlay.address-search-viewport-active .address-results-viewport {
    -webkit-overflow-scrolling: touch;
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    overscroll-behavior: contain;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-gutter: stable;
  }

  .restaurant-shell-address-overlay.address-search-viewport-active #addressList {
    max-height: none;
    overflow: visible;
  }

  .restaurant-shell-address-overlay.address-search-viewport-active .address-location-footer {
    background: #ffffff;
    flex: 0 0 auto;
    padding-top: 12px;
    width: 100%;
  }

  .restaurant-shell-address-overlay.address-search-viewport-active .location-button {
    align-self: stretch;
    height: 46px;
    margin: 0;
    width: 100%;
  }

  .restaurant-shell-address-overlay.address-search-viewport-active .restaurant-shell-location-feedback {
    margin: 0 0 10px;
    order: -1;
  }
}
