:root {
  --page-width: 1180px;
  --header-height: 54px;
  --sticky-offset: 54px;
  --font-family: "Montserrat", Arial, Helvetica, sans-serif;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fafafa;
  --text: #111111;
  --soft: #6d6d6d;
  --muted: #8c8c8c;
  --line: #e8e8e8;
  --line-dark: #dadada;
  --yellow: #ffe700;
  --yellow-dark: #e1c800;
  --brand-soft: #fff4a8;
  --brand-soft-alt: #fff7c9;
  --green: #39a63f;
  --danger: #b64224;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text);
  background: var(--bg);
}

body.has-overlay {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(calc(100% - 32px), var(--page-width));
  margin: 0 auto;
}

.brand-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background: var(--yellow);
}

.brand-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 52px;
  padding: 4px 14px;
}

.brand-header__logo--image {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.brand-header__logo img {
  width: auto;
  height: 84px;
  object-fit: contain;
}

.brand-header__logo--image img {
  height: 72px;
}

.brand-header__logo-text {
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.brand-header__nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  margin-right: 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-header__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #000;
}

.brand-header__cta,
.brand-header__basket-link {
  padding: 0 14px;
  border: 2px solid #111;
  background: var(--brand-soft-alt);
  color: #000 !important;
}

.brand-header__basket-link {
  gap: 8px;
}

.brand-header__help {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.brand-header__menu {
  width: 34px;
  height: 34px;
  border: 0;
  background: #93939300;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  color: #000;
}

.brand-header__menu span {
  display: block;
  width: 28px;
  height: 2px;
  background: #000;
}

.brand-header__menu-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.brand-header__menu-link span {
  display: block;
  width: 28px;
  height: 2px;
  background: #111;
}

.utility-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.utility-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.default-page .utility-header__inner {
  grid-template-columns: auto minmax(220px, 1fr) auto;
}

.ghost-control,
.icon-control,
.toolbar-select,
.toolbar-basket,
.qty-control button,
.remove-item,
.checkout-button,
.icon-close,
.modal-add-button,
.floating-basket,
.category-chip,
.small-outline {
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--text);
}

.ghost-control {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.icon-control {
  width: 40px;
  height: 38px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

.utility-search,
.toolbar-search {
  position: relative;
  display: block;
}

.utility-search input,
.toolbar-search input,
.form-input,
.content-card input,
.content-card select,
.content-card textarea,
.option-group textarea {
  width: 100%;
  height: 38px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #fff;
  padding: 0 42px 0 14px;
  font-size: 13px;
}

.content-card textarea,
.option-group textarea {
  height: auto;
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.utility-search span {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--soft);
}

.utility-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.utility-order-mode {
  min-width: 126px;
}

.utility-basket {
  min-width: 124px;
  justify-content: center;
  font-size: 13px;
}

.utility-basket strong {
  font-weight: 700;
}

.utility-basket.is-link {
  text-decoration: none;
}

.utility-title-block {
  display: grid;
  gap: 3px;
  padding-left: 4px;
}

.utility-title-block strong {
  font-size: 14px;
}

.utility-title-block span {
  color: var(--soft);
  font-size: 11px;
}

main.page-shell {
  padding-bottom: 60px;
}

.landing-page main.page-shell {
  width: 100%;
  max-width: none;
  padding-bottom: 0;
}

.landing-page .alert,
.landing-page .landing-strip__inner,
.landing-page .promo-grid,
.landing-page .landing-banner-panel,
.landing-page .story-row,
.landing-page .app-panel,
.landing-page .franchise-panel__content,
.landing-page .landing-footer__inner,
.auth-page .alert,
.auth-page .auth-layout,
.account-page .alert,
.account-page .account-hero,
.account-page .account-grid {
  width: min(calc(100% - 48px), 1240px);
  margin-left: auto;
  margin-right: auto;
}

.alert {
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 12px;
}

.alert.error {
  background: #fff3ef;
  border: 1px solid #f0cabd;
  color: #7d3b27;
}

.alert.success {
  background: #eff9f1;
  border: 1px solid #cfe5d4;
  color: #23623b;
}

.menu-page .alert--cart {
  position: fixed;
  top: 102px;
  right: 24px;
  z-index: 140;
  min-width: 320px;
  max-width: min(420px, calc(100vw - 32px));
  margin: 0;
  padding: 16px 18px 16px 52px;
  border-radius: 16px;
  border: 1px solid #bfe5ca;
  background: linear-gradient(135deg, #f2fff6, #e5f8eb);
  box-shadow: 0 18px 40px rgba(35, 98, 59, 0.16);
  font-size: 14px;
  font-weight: 700;
}

.menu-page .alert--cart::before {
  content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #42cf8b;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.menu-page main.page-shell {
  width: 100%;
  max-width: none;
  padding-bottom: 60px;
}

.menu-page .alert,
.menu-page .restaurant-overview,
.menu-page .catalog-toolbar__inner,
.menu-page .category-rail,
.menu-page .menu-catalog {
  width: calc(100% - 48px);
  max-width: none;
  margin-left: 24px;
  margin-right: 24px;
}

.hero-strip {
  margin: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-strip img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.restaurant-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 28px;
  padding: 22px 20px 18px;
}

.restaurant-title-block {
  display: block;
  margin-bottom: 10px;
}

.restaurant-title-copy {
  min-width: 0;
}

.restaurant-logo {
  display: none;
  width: 84px;
  height: 84px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 84px;
  border: 1px solid var(--line);
  background: #fff;
}

.restaurant-logo--fallback {
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 700;
  background: var(--brand-soft-alt);
  color: #111;
}

.restaurant-overview__left h1 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
}

.restaurant-address,
.restaurant-subline {
  margin: 0;
  font-size: 12px;
  color: var(--soft);
}

.restaurant-rating-line {
  margin: 8px 0 6px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.stars {
  letter-spacing: 0.05em;
  font-size: 16px;
  color: #111;
}

.restaurant-rating-line a {
  color: #1d4fa3;
}

.small-outline {
  margin-top: 14px;
  height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  background: #f4f4f4;
  border-color: #f4f4f4;
  font-size: 14px;
}

.restaurant-overview__right {
  display: grid;
  gap: 10px;
  align-content: start;
}

.status-card {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.status-card.is-plain {
  grid-template-columns: 22px minmax(0, 1fr);
}

.status-card__icon {
  font-size: 24px;
  line-height: 1;
}

.status-card__icon.is-open {
  color: var(--green);
}

.status-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.status-card p,
.status-card__end {
  margin: 2px 0 0;
  color: var(--soft);
  font-size: 13px;
}

.catalog-toolbar {
  position: sticky;
  top: var(--sticky-offset);
  z-index: 80;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.05);
}

.catalog-toolbar__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 156px minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 8px 10px 6px;
}

.toolbar-select,
.toolbar-basket {
  height: 48px;
  border-radius: 6px;
  font-size: 13px;
}

.toolbar-select {
  width: 100%;
  text-align: left;
  padding: 0 16px 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: #2a2a2a;
}

.toolbar-select__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toolbar-select__icon,
.toolbar-search-icon,
.toolbar-icon-svg,
.toolbar-basket__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.toolbar-select__icon svg,
.toolbar-search-icon svg,
.toolbar-icon-svg svg,
.toolbar-basket__icon svg {
  width: 18px;
  height: 18px;
}

.toolbar-search input {
  height: 48px;
  font-size: 14px;
  padding-right: 52px;
  border-radius: 6px;
}

.toolbar-search input::placeholder {
  color: #b2b2b2;
}

.toolbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.toolbar-mobile-menu__mobile,
.toolbar-basket__items {
  display: none;
}

.toolbar-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #111;
}

.toolbar-icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.flag-button {
  font-size: 24px;
  line-height: 1;
}

.toolbar-basket {
  position: relative;
  width: auto;
  min-width: 102px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px 0 12px;
  font-weight: 700;
}

.toolbar-basket__icon {
  color: #111;
}

.toolbar-basket__count {
  position: absolute;
  top: 7px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #333;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.toolbar-basket__total {
  font-size: 15px;
  line-height: 1;
}

.category-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 20px 12px;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.category-rail--subtle {
  opacity: 0.92;
}

.category-chip {
  flex: 0 0 auto;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 20px;
  /* font-weight: 600; */
  color: #000000;
}

.category-chip.is-active {
  background: var(--yellow);
  border-color: #b9b9b9;
  color: #000;
}

.mobile-category-sheet {
  position: fixed;
  inset: 0;
  z-index: 145;
  display: none;
}

.mobile-category-sheet.is-open {
  display: block;
}

.mobile-category-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.3);
}

.mobile-category-sheet__panel {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 54px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.18);
  overflow: hidden;
}

.mobile-category-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--line);
}

.mobile-category-sheet__head strong {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-category-sheet__close {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: #fff;
}

.mobile-category-sheet__body {
  max-height: min(54vh, 360px);
  overflow: auto;
  padding: 8px 10px 12px;
}

.mobile-category-link {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}

.mobile-category-link.is-active {
  background: #fff5a6;
}

.menu-catalog {
  padding: 18px 20px 48px;
}

.menu-section {
  margin-bottom: 58px;
  scroll-margin-top: 112px;
}

.menu-section:last-child {
  margin-bottom: 0;
}

.menu-section__header {
  margin-bottom: 34px;
}

.menu-section__header h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
}

.menu-section__header p {
  margin: 10px 0 0;
  font-size: 15px;
  color: #111;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 60px;
}

.product-tile {
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.product-tile.is-hidden {
  display: none;
}

.product-tile:hover {
  transform: translateY(-2px);
}

.product-tile__media {
  aspect-ratio: 1.12 / 0.9;
  background: transparent;
  border-radius: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 22px;
}

.product-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-tile__body {
  padding: 0 6px;
}

.product-tile__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.product-tile__price {
  margin: 0 0 10px;
  font-size: 15px;
  color: #111;
}

.product-tile__meta {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}

.product-tile__fav {
  margin-top: 12px;
  color: #c69b1d;
  font-size: 28px;
  line-height: 1;
}

.floating-basket {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-width: 170px;
  min-height: 52px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: var(--shadow);
}

.cart-drawer,
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
}

.cart-drawer.is-open,
.product-modal.is-open {
  display: block;
}

.cart-drawer__backdrop,
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.cart-drawer__sheet,
.product-modal__dialog {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow);
}

.cart-drawer__sheet {
  top: 0;
  right: 0;
  width: min(100%, 410px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cart-drawer__head {
  padding: 20px 20px 16px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__head p {
  margin: 0 0 4px;
  font-size: 11px;
  color: var(--soft);
}

.cart-drawer__head h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
}

.icon-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 8px 20px 20px;
}

.empty-cart {
  padding: 28px 0;
  text-align: center;
}

.empty-cart strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.empty-cart p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}

.cart-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.cart-item__name {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
}

.cart-item__options {
  margin: 0;
  font-size: 11px;
  color: var(--soft);
}

.cart-item__price {
  font-size: 14px;
  font-weight: 700;
}

.cart-item__controls {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #f3f3f3;
}

.qty-control span {
  min-width: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.remove-item {
  border: 0;
  background: transparent;
  font-size: 11px;
  color: var(--soft);
}

.cart-summary {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 10px;
}

.checkout-button,
.modal-add-button,
.primary-button,
.checkout-link {
  width: 100%;
  min-height: 46px;
  border: 1px solid #111;
  border-radius: 10px;
  background: var(--yellow);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkout-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-modal__dialog {
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: min(calc(100% - 28px), 1880px);
  max-height: calc(100vh - 32px);
  border-radius: 8px;
  overflow: hidden;
}

.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.product-modal__media {
  display: none;
}

.product-modal__content {
  padding: 22px 28px 0;
  max-height: calc(100vh - 32px);
  overflow: auto;
}

.product-modal__content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.06;
  text-transform: uppercase;
}

.product-modal__content p {
  margin: 0 0 10px;
  color: var(--soft);
  font-size: 13px;
}

.modal-base-price {
  display: none;
}

.modal-builder {
  padding-top: 28px;
}

.modal-builder__head h4 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.05;
}

.modal-fulfilment-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.modal-fulfilment-card {
  min-width: 214px;
  min-height: 74px;
  padding: 0 18px;
  border: 1px solid #111;
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
}

.modal-fulfilment-card.is-active {
  border-color: #42c98d;
  background: #eefbf4;
}

.option-group {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.option-group h4 {
  margin: 0 0 10px;
  font-size: 14px;
}

.option-group__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}

.option-group__head h4 {
  margin: 0;
}

.option-group__hint {
  color: var(--soft);
  font-size: 12px;
  white-space: nowrap;
}

.option-choice {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
}

.option-choice:last-child {
  border-bottom: 0;
}

.option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.option-price {
  font-size: 11px;
  color: var(--soft);
}

.option-toggle-grid--modal {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.toggle-card--modal {
  min-width: 0;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-radius: 12px;
  padding: 10px 12px;
}

.toggle-card__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.toggle-card--modal:has(input:checked) {
  border-color: #111;
  background: #fffef0;
}

.toggle-card--modal:has(input:disabled):not(:has(input:checked)) {
  opacity: 0.45;
  background: #f3f3f3;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.toggle-card__title {
  display: block;
  width: 100%;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.toggle-card__price {
  display: block;
  width: 100%;
  color: var(--soft);
  font-size: 12px;
  font-weight: 500;
}

.product-modal__actions {
  position: sticky;
  bottom: 0;
  z-index: 3;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0 16px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.modal-total {
  min-width: 170px;
}

.modal-total span {
  display: block;
  margin-bottom: 4px;
  color: #111;
  font-size: 12px;
  font-weight: 600;
}

.modal-total strong {
  color: #d11414;
  font-size: 31px;
  line-height: 1;
}

.modal-quantity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modal-quantity button {
  width: 42px;
  height: 42px;
  border: 1px solid #dde3e8;
  border-radius: 999px;
  background: #fff;
  font-size: 24px;
  color: #9aa3ad;
}

.modal-quantity span {
  min-width: 22px;
  text-align: center;
  font-weight: 500;
}

.modal-add-button {
  max-width: 630px;
  min-height: 54px;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  background: #42cf8b;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.content-layout,
.checkout-grid {
  display: grid;
  gap: 22px;
  align-items: start;
  margin-top: 20px;
}

.content-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

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

.content-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 20px;
}

.summary-card {
  position: sticky;
  top: 84px;
}

.section-head,
.cart-detail-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.section-head h2,
.success-card h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.section-head p,
.cart-detail-copy p,
.muted,
.cart-preview-list span {
  color: var(--soft);
}

.ghost-link,
.cart-remove,
.cart-clear {
  color: #1d4fa3;
  background: transparent;
  border: 0;
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-detail-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.cart-detail-copy h3 {
  margin: 0 0 4px;
}

.cart-detail-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cart-summary-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.cart-summary-grid div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.checkout-section + .checkout-section {
  margin-top: 26px;
}

.checkout-section h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

.form-grid,
.option-toggle-grid,
.success-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.content-card label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
}

.toggle-card {
  position: relative;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--text);
  font-weight: 600;
}

.toggle-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.toggle-card:has(input:checked) {
  border-color: #111;
  background: #fffef0;
}

.cart-preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.cart-preview-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
}

.success-card {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
}

.success-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f6ffd7;
  color: #3c6f18;
  font-weight: 700;
  margin-bottom: 14px;
}

.success-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
}

.success-meta div {
  padding: 16px;
  border-radius: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.success-meta span {
  display: block;
  color: var(--soft);
  margin-bottom: 8px;
  font-size: 12px;
}

.landing-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #181818;
}

.landing-hero__media,
.landing-hero__overlay {
  position: absolute;
  inset: 0;
}

.landing-hero__media {
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(0.85);
  transform: scale(1.05);
}

.landing-hero__overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.32) 44%, rgba(10, 10, 10, 0.05) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.4) 100%);
}

.landing-hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: center;
}

.landing-kicker {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  background: #e8c142;
  padding: 7px 12px;
  border-radius: 999px;
}

.landing-hero__copy h1,
.auth-showcase h1,
.franchise-panel h2,
.app-panel__copy h2,
.account-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.landing-hero__copy {
  color: #fff;
  max-width: 620px;
}

.landing-hero__copy p,
.auth-showcase p,
.app-panel__copy p,
.franchise-panel p,
.account-hero p {
  font-size: 18px;
  line-height: 1.6;
}

.landing-hero__actions,
.landing-banner-panel__actions,
.account-hero__actions,
.app-panel__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.landing-primary-button,
.landing-secondary-button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  border: 2px solid #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-primary-button {
  background: #e8c142;
}

.landing-secondary-button {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.landing-hero__spotlight {
  justify-self: end;
  display: grid;
  gap: 18px;
  justify-items: end;
}

.spotlight-badge {
  max-width: 320px;
  padding: 18px 20px;
  background: #111;
  color: #e8c142;
  font-size: 32px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.spotlight-cup {
  width: 320px;
  height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

.spotlight-cup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.landing-strip__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-strip strong,
.landing-strip span {
  display: block;
  text-transform: uppercase;
}

.landing-strip strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.landing-strip__cta {
  min-width: 180px;
  min-height: 44px;
  background: #e8c142;
  border: 2px solid #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0;
}

.promo-card {
  display: grid;
  grid-template-rows: 290px auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(17, 17, 17, 0.06);
}

.promo-card--yellow {
  background: var(--yellow);
}

.promo-card__image {
  background-size: cover;
  background-position: center;
}

.promo-card__body {
  padding: 22px 22px 26px;
}

.promo-card__body h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card__body p {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-card__body span {
  font-size: 14px;
  line-height: 1.5;
}

.landing-banner-panel {
  margin: 18px auto 32px;
  padding: 16px;
  border-radius: 22px;
  background: #efefef;
}

.landing-banner-panel__inner {
  display: grid;
  grid-template-columns: 0.85fr minmax(0, 1fr) 0.85fr;
  gap: 18px;
  align-items: center;
}

.landing-banner-panel__item {
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
}

.landing-banner-panel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-banner-panel__copy {
  color: #fff;
  padding: 30px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.94), rgba(65, 65, 65, 0.74));
}

.landing-banner-panel__copy h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.story-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 30px;
}

.story-row__card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--yellow);
  position: relative;
  min-height: 240px;
}

.story-row__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-row__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
}

.app-panel {
  margin: 0 auto 34px;
  padding: 34px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 231, 0, 0.12), rgba(255, 231, 0, 0.22)),
    repeating-linear-gradient(135deg, rgba(255, 231, 0, 0.08), rgba(255, 231, 0, 0.08) 8px, rgba(255,255,255,0.15) 8px, rgba(255,255,255,0.15) 16px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: center;
}

.app-panel__device {
  justify-self: end;
}

.app-panel__screen {
  width: 240px;
  height: 420px;
  border-radius: 28px;
  border: 4px solid #111;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.app-panel__buttons a {
  min-height: 44px;
  padding: 0 16px;
  border: 2px solid #111;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
}

.franchise-panel {
  margin: 0 0 44px;
  padding: 70px 0 90px;
  background: radial-gradient(circle at center, #ffffff 0%, #f6f6f6 50%, #fff9c4 100%);
}

.franchise-panel__content {
  text-align: center;
  max-width: 760px;
}

.franchise-panel p {
  color: #5a5a5a;
}

.landing-footer {
  padding: 28px 0 34px;
  background: var(--yellow);
  border-top: 3px solid #111;
}

.landing-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}

.landing-footer__logo {
  display: inline-flex;
  min-width: 120px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 3px solid #111;
  background: #fff7c9;
  font-size: 30px;
  font-weight: 900;
}

.landing-footer__logo--image {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.landing-footer__logo--image img {
  display: block;
  width: auto;
  height: 64px;
  object-fit: contain;
}

.landing-footer h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.landing-footer a,
.landing-footer p {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  color: #fff;
}

.auth-layout,
.account-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  padding: 30px 0 48px;
}

.auth-showcase {
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #111 0%, #2f2f2f 100%);
  color: #fff;
  min-height: 620px;
}

.auth-showcase--yellow {
  color: #111;
  background: linear-gradient(135deg, #ffe700 0%, #ffd24c 100%);
}

.auth-showcase__card {
  margin-top: 28px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.auth-showcase--yellow .auth-showcase__card {
  background: rgba(255, 255, 255, 0.48);
}

.auth-showcase__card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}

.auth-card {
  align-self: center;
  padding: 30px;
}

.form-grid--single {
  grid-template-columns: 1fr;
}

.auth-card__footer {
  margin: 18px 0 0;
  text-align: center;
  color: var(--soft);
}

.auth-card__footer a {
  color: #1d4fa3;
  font-weight: 700;
}

.account-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 12px;
}

.account-hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  text-transform: none;
  letter-spacing: -0.04em;
}

.account-sidebar__meta {
  display: grid;
  gap: 16px;
}

.account-sidebar__meta span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.account-sidebar__meta strong {
  font-size: 15px;
}

.order-history-list {
  display: grid;
  gap: 14px;
}

.order-history-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf2;
}

.order-history-card__number {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--soft);
}

.order-history-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.order-history-card__side {
  text-align: right;
  display: grid;
  gap: 6px;
}

.order-history-card__side strong {
  font-size: 20px;
}

.landing-page {
  --foodix-dark: #121417;
  --foodix-accent: #d72612;
  --foodix-orange: linear-gradient(180deg, color-mix(in srgb, var(--yellow) 88%, #ff9f1c 12%) 0%, color-mix(in srgb, var(--yellow) 68%, #ff9300 32%) 100%);
  --foodix-soft-line: rgba(17, 17, 17, 0.08);
  --foodix-copy: #61646c;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  background: #fff;
}

.landing-page main.page-shell {
  overflow: clip;
}

.landing-page .brand-header {
  position: absolute;
  inset: 0 0 auto 0;
  background: transparent;
  box-shadow: none;
}

.landing-page .brand-header__inner {
  min-height: 98px;
  width: min(calc(100% - 52px), 1240px);
}

.landing-page .brand-header__logo {
  min-width: 0;
  min-height: 0;
  padding: 0;
}

.landing-page .brand-header__logo img {
  height: 66px;
}

.landing-page .brand-header__logo-text {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #16171a;
}

.brand-header__nav--landing {
  gap: 28px;
  margin-right: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.brand-header__actions--landing {
  gap: 16px;
}

.brand-header__landing-link {
  font-size: 14px;
  font-weight: 700;
  color: #16171a;
}

.brand-header__landing-cta {
  min-width: 122px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--foodix-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 24px rgba(215, 38, 18, 0.22);
}

.foodix-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foodix-pill--soft {
  background: #fff0ed;
  color: #e06354;
}

.foodix-button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.foodix-button--primary {
  background: var(--foodix-accent);
  color: #fff;
  box-shadow: 0 14px 24px rgba(215, 38, 18, 0.2);
}

.foodix-button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.foodix-section-head {
  margin-bottom: 36px;
}

.foodix-section-head h2 {
  margin: 12px 0 0;
  max-width: 380px;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #171926;
}

.foodix-section-head--center {
  text-align: center;
}

.foodix-section-head--center h2 {
  max-width: none;
}

.foodix-hero {
  position: relative;
  min-height: 920px;
  padding: 122px 0 128px;
  overflow: hidden;
}

.foodix-hero__background,
.foodix-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
}

.foodix-hero__background {
  inset: 0 0 220px;
  background: var(--foodix-orange);
}

.foodix-hero__curve {
  bottom: 170px;
  height: 190px;
  background: #fff;
  border-top-left-radius: 48% 100%;
  border-top-right-radius: 48% 100%;
}

.foodix-hero__inner,
.foodix-offerings,
.foodix-products,
.foodix-about,
.foodix-banners,
.foodix-showcase,
.foodix-footer__inner {
  position: relative;
  width: min(calc(100% - 52px), 1240px);
  margin: 0 auto;
}

.foodix-hero__inner {
  z-index: 2;
}

.foodix-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 540px;
  padding-top: 70px;
}

.foodix-hero__copy h1 {
  margin: 22px 0 0;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: clamp(108px, 18vw, 230px);
  line-height: 0.82;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: #fff;
}

.foodix-hero__copy p {
  max-width: 460px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.8;
}

.foodix-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.foodix-hero__plate-wrap {
  position: relative;
  margin-top: -30px;
  min-height: 640px;
}

.foodix-hero__text-shadow {
  position: absolute;
  left: 50%;
  top: 218px;
  transform: translateX(-50%);
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: clamp(72px, 11vw, 170px);
  line-height: 0.84;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(17, 17, 17, 0.14);
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.foodix-hero__plate {
  position: relative;
  z-index: 2;
  width: min(62vw, 660px);
  aspect-ratio: 1 / 1;
  margin: 40px auto 0;
  padding: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f5f0ea 0%, #d8d2cb 100%);
  box-shadow: 0 26px 60px rgba(26, 20, 10, 0.18);
}

.foodix-hero__plate::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fff;
}

.foodix-hero__plate img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.foodix-hero__decor {
  position: absolute;
  z-index: 3;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.12);
}

.foodix-hero__decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foodix-hero__decor--1 { top: 90px; left: 4%; transform: rotate(-12deg); }
.foodix-hero__decor--2 { top: 180px; right: 7%; width: 124px; height: 124px; }
.foodix-hero__decor--3 { top: 420px; left: 10%; width: 78px; height: 78px; }
.foodix-hero__decor--4 { top: 480px; right: 11%; width: 74px; height: 74px; transform: rotate(14deg); }
.foodix-hero__decor--5 { top: 256px; left: 16%; width: 64px; height: 64px; }
.foodix-hero__decor--6 { top: 312px; right: 18%; width: 68px; height: 68px; }

.foodix-offerings,
.foodix-products,
.foodix-about,
.foodix-banners,
.foodix-showcase {
  padding: 30px 0 78px;
}

.foodix-offerings__grid {
  display: grid;
  grid-template-columns: 0.88fr 0.7fr 0.88fr;
  gap: 26px;
  align-items: stretch;
}

.foodix-offering-card {
  border-radius: 28px;
  overflow: hidden;
}

.foodix-offering-card--visual {
  min-height: 360px;
  background: #f3f4f7;
}

.foodix-offering-card--visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foodix-offering-card--cta {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  min-height: 360px;
  padding: 34px 30px;
  text-align: center;
}

.foodix-offering-card--cta img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.1);
}

.foodix-offering-card__call {
  display: grid;
  gap: 6px;
}

.foodix-offering-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--foodix-accent);
  color: #fff;
  font-size: 18px;
}

.foodix-offering-card__call strong {
  font-size: 15px;
  color: #232630;
}

.foodix-offering-card__call a {
  color: var(--foodix-accent);
  font-weight: 800;
}

.foodix-products__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.foodix-product-card {
  position: relative;
  min-height: 292px;
  border-radius: 14px;
  overflow: hidden;
  background: #16181d;
}

.foodix-product-card__media,
.foodix-product-card__media img,
.foodix-product-card__overlay {
  position: absolute;
  inset: 0;
}

.foodix-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foodix-product-card__overlay {
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.08) 14%, rgba(7, 7, 10, 0.88) 100%);
}

.foodix-product-card__copy,
.foodix-product-card__action {
  position: absolute;
  z-index: 1;
}

.foodix-product-card__copy {
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
}

.foodix-product-card__copy strong {
  display: block;
  font-size: 19px;
  font-weight: 800;
}

.foodix-product-card__copy span {
  display: block;
  margin-top: 5px;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 800;
}

.foodix-product-card__action {
  right: 14px;
  bottom: 14px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #1cbf52;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.foodix-about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.foodix-about__media {
  position: relative;
  min-height: 410px;
}

.foodix-about__media img {
  width: min(100%, 470px);
  margin: 48px auto 0;
  filter: drop-shadow(0 30px 34px rgba(17, 17, 17, 0.18));
  border-radius: 28px;
}

.foodix-about__discount {
  position: absolute;
  left: 24px;
  top: 8px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--yellow) 82%, #ff9800 18%);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 46px;
  line-height: 0.9;
  font-weight: 800;
  color: #171926;
}

.foodix-about__discount span {
  display: block;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.foodix-about__ghost {
  position: absolute;
  left: 12px;
  bottom: 0;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: clamp(82px, 9vw, 140px);
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 98, 83, 0.16);
}

.foodix-about__copy h2 {
  margin: 14px 0 0;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  color: #171926;
}

.foodix-about__copy p {
  margin: 18px 0 0;
  color: var(--foodix-copy);
  font-size: 15px;
  line-height: 1.8;
}

.foodix-about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 0;
}

.foodix-about__stat {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--foodix-soft-line);
  background: #fff;
}

.foodix-about__stat strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #171926;
}

.foodix-about__stat span {
  display: block;
  margin-top: 6px;
  color: var(--foodix-copy);
  font-size: 14px;
  font-weight: 700;
}

.foodix-about .foodix-button {
  margin-top: 28px;
}

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

.foodix-banner-card {
  min-height: 244px;
  padding: 30px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(18, 20, 23, 0.96), rgba(34, 36, 44, 0.98)),
    radial-gradient(circle at right bottom, color-mix(in srgb, var(--yellow) 64%, #ff8700 36%) 0%, transparent 42%);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  align-items: center;
  overflow: hidden;
}

.foodix-banner-card--accent {
  background:
    linear-gradient(135deg, rgba(18, 20, 23, 0.96), rgba(34, 36, 44, 0.98)),
    radial-gradient(circle at right bottom, color-mix(in srgb, var(--yellow) 58%, #ff6c00 42%) 0%, transparent 48%);
}

.foodix-banner-card__copy h3 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 0.92;
  font-weight: 800;
  text-transform: uppercase;
}

.foodix-banner-card__copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.foodix-banner-card__copy strong {
  display: block;
  margin-top: 16px;
  color: var(--yellow);
  font-size: 30px;
  font-weight: 800;
}

.foodix-banner-card__copy .foodix-button {
  margin-top: 18px;
  width: fit-content;
}

.foodix-banner-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.1);
}

.foodix-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.foodix-showcase-card {
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--yellow) 84%, #ff8f0f 16%) 100%);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05);
}

.foodix-showcase-card__media {
  aspect-ratio: 1.02 / 0.84;
  padding: 12px 12px 0;
}

.foodix-showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 26px rgba(17, 17, 17, 0.15);
}

.foodix-showcase-card__body {
  padding: 18px 18px 20px;
  text-align: center;
}

.foodix-showcase-card__body strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #171926;
}

.foodix-showcase-card__body span {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #171926;
}

.foodix-footer {
  margin-top: 34px;
  padding: 58px 0 52px;
  background: #111418;
  color: rgba(255, 255, 255, 0.72);
}

.foodix-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 26px;
}

.foodix-footer__logo {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
}

.foodix-footer__logo--image img {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.foodix-footer__logo span {
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.foodix-footer h4 {
  margin: 0 0 18px;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.foodix-footer p,
.foodix-footer a {
  display: block;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.foodix-footer p span {
  display: inline-block;
  min-width: 48px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .foodix-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .foodix-offerings__grid,
  .foodix-about,
  .foodix-banners,
  .foodix-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .landing-hero__content,
  .auth-layout,
  .account-grid,
  .app-panel,
  .landing-banner-panel__inner {
    grid-template-columns: 1fr;
  }

  .landing-footer__inner,
  .story-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .option-toggle-grid--modal {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .landing-page .brand-header {
    position: relative;
    background: color-mix(in srgb, var(--yellow) 78%, #ffae00 22%);
  }

  .landing-page .brand-header__inner {
    width: min(calc(100% - 24px), 1240px);
    min-height: 82px;
  }

  .brand-header__nav--landing,
  .brand-header__actions--landing .brand-header__landing-link {
    display: none;
  }

  .foodix-hero {
    min-height: 760px;
    padding-top: 34px;
  }

  .foodix-hero__background {
    inset: 0 0 160px;
  }

  .foodix-hero__curve {
    bottom: 120px;
    height: 140px;
  }

  .foodix-hero__copy {
    padding-top: 0;
    text-align: center;
    max-width: none;
  }

  .foodix-hero__copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .foodix-hero__actions {
    justify-content: center;
  }

  .foodix-hero__plate-wrap {
    min-height: 470px;
    margin-top: 18px;
  }

  .foodix-hero__text-shadow {
    top: 140px;
    white-space: normal;
    width: min(86vw, 560px);
  }

  .foodix-hero__decor--2,
  .foodix-hero__decor--4,
  .foodix-hero__decor--6 {
    right: 2%;
  }

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

  .brand-header__nav {
    display: none;
  }

  .landing-hero {
    min-height: 540px;
  }

  .landing-hero__content {
    min-height: 540px;
    padding: 40px 0;
  }

  .spotlight-cup {
    width: 240px;
    height: 280px;
  }

  .utility-header__inner,
  .default-page .utility-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .utility-category,
  .icon-control,
  .utility-order-mode {
    display: none;
  }

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

  .catalog-toolbar__inner {
    grid-template-columns: 1fr;
  }

  .toolbar-meta {
    justify-content: flex-end;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 20px;
  }

  .floating-basket {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .landing-page .brand-header__inner,
  .foodix-hero__inner,
  .foodix-offerings,
  .foodix-products,
  .foodix-about,
  .foodix-banners,
  .foodix-showcase,
  .foodix-footer__inner {
    width: calc(100% - 20px);
  }

  .landing-page .brand-header__logo img {
    height: 52px;
  }

  .landing-page .brand-header__logo-text {
    font-size: 32px;
  }

  .brand-header__landing-cta {
    min-width: 104px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .foodix-section-head h2,
  .foodix-about__copy h2,
  .foodix-banner-card__copy h3 {
    font-size: 42px;
  }

  .foodix-hero {
    min-height: 640px;
    padding-bottom: 72px;
  }

  .foodix-hero__copy h1 {
    font-size: 92px;
  }

  .foodix-hero__copy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .foodix-hero__text-shadow {
    top: 116px;
    font-size: 66px;
  }

  .foodix-hero__plate {
    width: min(86vw, 420px);
  }

  .foodix-hero__decor {
    width: 64px;
    height: 64px;
    border-width: 4px;
  }

  .foodix-products__grid,
  .foodix-showcase__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .foodix-product-card {
    min-height: 220px;
  }

  .foodix-about__stats {
    grid-template-columns: 1fr;
  }

  .foodix-banner-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .foodix-banner-card__image {
    max-width: 220px;
    margin: 0 auto;
  }

  .landing-page .alert,
  .landing-page .landing-strip__inner,
  .landing-page .promo-grid,
  .landing-page .landing-banner-panel,
  .landing-page .story-row,
  .landing-page .app-panel,
  .landing-page .franchise-panel__content,
  .landing-page .landing-footer__inner,
  .auth-page .alert,
  .auth-page .auth-layout,
  .account-page .alert,
  .account-page .account-hero,
  .account-page .account-grid {
    width: calc(100% - 20px);
  }

  .menu-page .alert,
  .menu-page .restaurant-overview,
  .menu-page .catalog-toolbar__inner,
  .menu-page .category-rail,
  .menu-page .menu-catalog {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .menu-page .alert--cart {
    top: 84px;
    right: 10px;
    left: 10px;
    min-width: 0;
    max-width: none;
  }

  .page-shell {
    width: min(calc(100% - 18px), var(--page-width));
  }

  .utility-header__inner,
  .default-page .utility-header__inner {
    gap: 8px;
  }

  .ghost-control,
  .utility-search input {
    min-height: 34px;
    height: 34px;
  }

  .hero-strip img {
    height: 180px;
  }

  .restaurant-overview {
    padding-top: 14px;
  }

  .brand-header__inner {
    min-height: 72px;
  }

  .brand-header__logo {
    min-width: 120px;
    min-height: 44px;
    padding: 6px 10px;
    border-width: 3px;
  }

  .brand-header__logo img {
    height: 44px;
  }

  .brand-header__logo-text {
    font-size: 18px;
  }

  .landing-hero__copy h1,
  .auth-showcase h1,
  .franchise-panel h2,
  .app-panel__copy h2 {
    font-size: 44px;
  }

  .landing-strip__inner,
  .account-hero {
    flex-direction: column;
    align-items: start;
  }

  .promo-grid,
  .story-row,
  .landing-footer__inner {
    grid-template-columns: 1fr;
  }

  .promo-card {
    grid-template-rows: 220px auto;
  }

  .landing-banner-panel__item,
  .landing-banner-panel__copy {
    min-height: 240px;
    height: auto;
  }

  .auth-showcase,
  .auth-card {
    min-height: 0;
    padding: 22px;
  }

  .order-history-card {
    flex-direction: column;
    align-items: start;
  }

  .restaurant-overview__left h1 {
    font-size: 24px;
  }

  .catalog-toolbar__inner {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    row-gap: 18px;
  }

  .toolbar-select,
  .toolbar-search input,
  .toolbar-basket {
    height: 44px;
  }

  .toolbar-icon-button {
    width: 40px;
    height: 40px;
  }

  .menu-section__header h2 {
    font-size: 18px;
  }

  .product-tile__title {
    font-size: 13px;
  }

  .product-modal__dialog {
    width: min(calc(100% - 14px), 1400px);
  }

  .product-modal__actions,
  .section-head,
  .cart-detail-card {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-add-button {
    width: 100%;
    min-width: 0;
    max-width: none;
    font-size: 22px;
  }

  .form-grid,
  .option-toggle-grid,
  .success-meta {
    grid-template-columns: 1fr;
  }

  .option-group__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .option-toggle-grid--modal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-page main.page-shell {
    padding-bottom: 92px;
  }

  .menu-page .catalog-toolbar {
    position: relative;
    top: 0;
    border-top: 0;
    box-shadow: none;
  }

  .menu-page .catalog-toolbar__inner {
    gap: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-page .toolbar-meta {
    position: fixed;
    left: 4px;
    right: 4px;
    bottom: 4px;
    z-index: 135;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 4px;
    align-items: stretch;
    background: transparent;
    border-top: 0;
    box-shadow: none;
    padding: 0 0 env(safe-area-inset-bottom) 0;
  }

  .menu-page .toolbar-meta > * {
    min-width: 0;
    border: 1px solid var(--line-dark);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 4px rgba(17, 17, 17, 0.06);
  }

  .menu-page .toolbar-mobile-menu,
  .menu-page .toolbar-basket {
    height: 29px;
  }

  .menu-page .flag-button {
    display: none;
  }

  .menu-page .toolbar-mobile-menu {
    width: 100%;
    padding: 2px 0;
  }

  .menu-page .toolbar-mobile-menu__desktop {
    display: none;
  }

  .menu-page .toolbar-mobile-menu__mobile {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    color: #444;
    font-size: 7px;
    line-height: 1;
  }

  .menu-page .toolbar-mobile-menu__mobile svg {
    width: 8px;
    height: 8px;
  }

  .menu-page .toolbar-basket {
    width: 100%;
    justify-content: flex-start;
    gap: 5px;
    padding: 0 8px 0 8px;
  }

  .menu-page .toolbar-basket__count {
    top: -5px;
    left: 13px;
    width: 12px;
    height: 12px;
    font-size: 7px;
  }

  .menu-page .toolbar-basket__items {
    display: inline-block;
    min-width: 0;
    font-size: 8px;
    color: var(--soft);
    white-space: nowrap;
  }

  .menu-page .toolbar-basket__total {
    font-size: 12px;
    font-weight: 800;
    margin-left: auto;
  }

  .menu-page .toolbar-basket__icon svg {
    width: 12px;
    height: 12px;
  }

  .menu-page .category-rail {
    display: none;
  }

  .menu-page .floating-basket {
    display: none;
  }

  .modal-fulfilment-row {
    flex-direction: column;
  }

  .modal-fulfilment-card {
    width: 100%;
  }

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