/* Site-wide footer, independent of restaurant page styles. */
.foodord-pre-footer,
.foodord-pre-footer * {
  box-sizing: border-box;
  letter-spacing: 0;
}
.foodord-pre-footer {
  padding: 80px 24px 48px;
  background: var(--foodord-pre-footer-bg, #111214);
  color: var(--foodord-pre-footer-text-color, #ffffff);
  font-family: var(--foodord-body-font, sans-serif);
  text-align: center;
}
body.foodord-order-page .foodord-pre-footer,
body.foodord-order-page .foodord-restaurant-footer,
body.foodord-order-page .site-footer-bottom {
  position: relative;
  z-index: 2;
}
.foodord-pre-footer__inner {
  max-width: 1248px;
  margin-inline: auto;
}
.foodord-pre-footer h2 {
  margin: 0 0 30px;
  color: inherit;
  font-family: var(--foodord-heading-font, serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.foodord-pre-footer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.foodord-pre-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--foodord-theme-button-bg, #ea004b);
  color: var(--foodord-theme-button-text-color, #ffffff);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.foodord-pre-footer__link:hover {
  background: var(--foodord-theme-button-on-hover, #c70040);
  color: var(--foodord-theme-button-text-color, #ffffff);
}
.foodord-pre-footer__link--secondary {
  border-color: rgb(255 255 255 / 35%);
  background: transparent;
  color: inherit;
}
.foodord-pre-footer__link--secondary:hover {
  border-color: var(--foodord-theme-button-on-hover, #c70040);
}
.foodord-pre-footer__link:focus-visible {
  outline: 2px solid #f4b400;
  outline-offset: 5px;
}
.foodord-restaurant-footer {
  background: #111214;
  color: #c7c9cf;
  font-family: var(--foodord-body-font, sans-serif);
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.foodord-restaurant-footer,
.foodord-restaurant-footer * {
  box-sizing: border-box;
  letter-spacing: 0;
}
.foodord-restaurant-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.7fr) minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: 56px;
  max-width: 1248px;
  margin: auto;
  padding: 36px 24px 64px;
}
body.foodord-order-page .foodord-restaurant-footer__inner {
  max-width: none;
  padding-inline: clamp(24px, 3vw, 48px);
}
.foodord-restaurant-footer__inner > * {
  min-width: 0;
}
.foodord-restaurant-footer h2 {
  margin: 0 0 24px;
  color: var(--foodord-footer-heading-color, #ffffff);
  font-family: var(--foodord-heading-font, serif);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.foodord-restaurant-footer__brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
  object-fit: contain;
}
.foodord-restaurant-footer__brand h2 {
  margin-bottom: 14px;
}
.foodord-restaurant-footer p,
.foodord-restaurant-footer address,
.foodord-restaurant-footer a {
  color: inherit;
  font-size: 14px;
  font-style: normal;
  text-decoration: none;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.foodord-restaurant-footer a:hover {
  color: var(--foodord-footer-heading-color, #ffffff);
  text-decoration: underline;
  text-decoration-color: #ea004b;
  text-underline-offset: 4px;
}
.foodord-restaurant-footer a:focus-visible {
  outline: 2px solid #f4b400;
  outline-offset: 5px;
}
.foodord-restaurant-footer address {
  margin-top: 16px;
}
.foodord-restaurant-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.foodord-restaurant-footer__menu a {
  display: block;
  padding: 4px 0;
  border: 0;
}
.foodord-restaurant-footer dl > div {
  border-color: var(--restaurant-border, #dedfe3);
}
.foodord-restaurant-footer .foodord-restaurant-hours__heading {
  color: var(--foodord-footer-heading-color, #ffffff);
}
.foodord-restaurant-footer .foodord-restaurant-hours__button:hover {
  background: rgb(255 255 255 / 10%);
}
@media (max-width: 1080px) {
  .foodord-restaurant-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}
@media (max-width: 781px) {
  .foodord-restaurant-footer__inner {
    gap: 36px 24px;
  }
  .foodord-restaurant-page .foodord-restaurant-footer__inner {
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .foodord-restaurant-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
