:root {
  --color-brand: #d9251b;
  --brand-red: #d9251b;
  --color-brand-pressed: #b91d15;
  --color-ink: #171717;
  --color-muted: #6f6b67;
  --color-subtle: #98918b;
  --color-canvas: #ffffff;
  --color-surface: #ffffff;
  --color-soft: #f7f6f3;
  --color-line: #e7e5e1;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-round: 999px;
  --app-header-height: 64px;
  --header-height: 64px;
  --tabbar-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-ink);
  background: #ffffff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgb(217 37 27 / 20%);
  outline-offset: 2px;
}

.mobile-app {
  position: relative;
  width: min(100%, 390px);
  min-height: 100vh;
  margin-inline: auto;
  overflow-x: clip;
  background: var(--color-canvas);
  box-shadow: 0 0 0 1px rgb(25 24 23 / 5%);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.app-header {
  position: sticky;
  z-index: 40;
  top: 0;
  height: var(--app-header-height);
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(231 229 225 / 82%);
  backdrop-filter: blur(14px);
}

.topbar {
  display: grid;
  height: 100%;
  grid-template-columns: 44px minmax(0, 1fr) 44px 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
}

.brand-logo {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmarks {
  display: block;
  width: 118px;
  height: 42px;
  justify-self: center;
}

.brand-wordmark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark--dark {
  display: none;
}

.icon-button {
  position: relative;
  display: flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius-md);
}

.cart-button {
  color: var(--color-ink);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
}

.cart-button > .icon {
  opacity: 1;
}

.cart-badge {
  position: absolute;
  top: 3px;
  right: 2px;
  display: flex;
  min-width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  padding-inline: 5px;
  color: #fff;
  background: var(--control-fill);
  border: 2px solid #fff;
  border-radius: var(--radius-round);
  font-size: 9px;
  font-weight: 750;
}

.cart-badge[hidden],
.tabbar-cart [data-cart-count][hidden],
.active-order-strip[hidden] {
  display: none !important;
}

.active-order-strip {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  margin: 0;
  padding: 10px 14px;
  color: var(--color-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 22px rgb(35 25 18 / 9%);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.active-order-strip::before {
  position: absolute;
  top: 12px;
  left: 47px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--color-brand);
  border: 2px solid #fff;
  border-radius: 50%;
}

.active-order-strip:active {
  transform: scale(0.985);
}

.active-order-strip__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--color-ink);
  background: var(--color-soft);
  border-radius: 13px;
}

.active-order-strip__icon .icon {
  width: 20px;
  height: 20px;
}

.active-order-strip__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.active-order-strip__copy strong,
.active-order-strip__copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.active-order-strip__copy strong {
  font-size: 14px;
  line-height: 18px;
}

.active-order-strip__copy small {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 16px;
}

.active-order-strip > .icon {
  width: 19px;
  height: 19px;
  color: var(--color-muted);
}

.fulfillment-switch {
  display: grid;
  height: 42px;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-inline: 0;
  padding: 3px;
  background: var(--color-soft);
  border-radius: var(--radius-md);
}

.fulfillment-switch button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 650;
}

.fulfillment-switch button.is-active {
  color: var(--color-ink);
  background: var(--color-surface);
  box-shadow: 0 2px 7px rgb(40 28 20 / 7%);
}

.desktop-nav,
.desktop-fulfillment {
  display: none;
}

.menu-empty {
  display: grid;
  min-height: 280px;
  padding: 48px 24px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.menu-empty__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: var(--color-muted);
  background: var(--color-surface-soft);
  border-radius: 20px;
  place-items: center;
}

.menu-empty__icon .icon {
  width: 30px;
  height: 30px;
}

.menu-empty h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: 24px;
}

.menu-empty p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.home-content {
  padding-bottom: calc(var(--tabbar-height) + 28px);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 760px;
  overflow: hidden;
  background: var(--color-canvas);
  animation: home-enter 240ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.hero-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-section::after {
  position: absolute;
  z-index: 1;
  inset: 36% 0 0;
  background: linear-gradient(
    180deg,
    rgb(255 249 243 / 0%) 0%,
    rgb(255 249 243 / 16%) 18%,
    rgb(255 249 243 / 78%) 55%,
    var(--color-canvas) 76%,
    var(--color-canvas) 100%
  );
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.hero-kicker {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
  color: var(--color-ink);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .32em;
}

.hero-kicker i {
  height: 2px;
  background: var(--brand-red);
  border-radius: var(--radius-round);
}

.hero-copy h1 {
  display: grid;
  margin: 0;
  font-size: 51px;
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.055em;
}

.hero-copy h1 span,
.hero-copy h1 strong {
  display: block;
}

.hero-copy h1 strong {
  color: var(--brand-red);
  font-weight: 900;
}

.hero-copy p {
  margin: 10px 0 17px;
  color: #5f5a55;
  font-size: 14px;
  font-weight: 540;
  line-height: 18px;
}

.hero-cta {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand-red);
  border: 1px solid rgb(185 29 21 / 45%);
  border-radius: 18px;
  box-shadow:
    0 10px 22px rgb(217 37 27 / 22%),
    inset 0 1px 0 rgb(255 255 255 / 22%),
    inset 0 -2px 0 rgb(128 16 11 / 18%);
  font-size: 16px;
  font-weight: 750;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-cta .icon {
  width: 22px;
  height: 22px;
  transition: transform 160ms ease;
}

.hero-cta:active {
  background: var(--color-brand-pressed);
  box-shadow:
    0 5px 12px rgb(217 37 27 / 18%),
    inset 0 2px 3px rgb(116 15 10 / 16%);
}

.hero-cta:active .icon {
  transform: translateX(2px);
}

.hero-cta:active,
.add-button:active {
  transform: scale(.98);
}

.fulfillment-panel {
  padding: 12px 16px 4px;
  background: var(--color-canvas);
}

.service-summary {
  padding: 10px 16px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 18px;
}

.service-summary p {
  margin: 0 0 4px;
}

.service-summary nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.service-summary a,
.reviews-map-link {
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews-map-link {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
}

#restaurant-contacts {
  scroll-margin-top: calc(var(--app-header-height) + 60px);
}

.categories {
  position: sticky;
  z-index: 20;
  top: var(--app-header-height);
  scroll-margin-top: var(--app-header-height);
  padding-block: 5px 0;
  background: rgb(255 255 255 / 97%);
  border-bottom: 1px solid rgb(231 229 225 / 72%);
  backdrop-filter: blur(12px);
}

.category-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-inline: 16px;
  scrollbar-width: none;
}

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

.category {
  position: relative;
  display: inline-flex;
  min-width: max-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 620;
  transition: color 180ms ease;
}

.category.is-active {
  color: var(--color-brand);
  font-weight: 720;
}

.category::after {
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 2px;
  background: var(--color-brand);
  border-radius: var(--radius-round);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-state) var(--motion-ease-out);
}

.category.is-active::after {
  transform: scaleX(1);
}

.menu-section {
  padding: 10px 16px 28px;
}

.menu-section__heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 14px;
}

.ordering-status {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 12px 16px 0;
  padding: 12px 14px;
  color: var(--color-ink);
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: 18px;
}

.ordering-status[hidden] {
  display: none;
}

.ordering-status > .icon {
  width: 22px;
  height: 22px;
  margin: auto;
  color: var(--color-brand);
}

.ordering-status div {
  display: grid;
  gap: 2px;
}

.ordering-status strong {
  font-size: 13px;
  line-height: 17px;
}

.ordering-status span {
  color: var(--color-muted);
  font-size: 11px;
  line-height: 15px;
}

.menu-section__heading h2 {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
}

.menu-meat-switch {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 3px;
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.menu-meat-switch button {
  min-width: 92px;
  min-height: 44px;
  padding-inline: 12px;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  border-radius: calc(var(--radius-md) - 3px);
  font-size: 12px;
  font-weight: 650;
}

.menu-meat-switch button.is-active {
  color: var(--color-ink);
  background: var(--color-surface);
  box-shadow: 0 2px 8px rgb(30 24 20 / 8%);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.menu-meat-switch button > span,
.menu-meat-switch button > small {
  display: block;
}

.menu-meat-switch button > small {
  margin-top: 2px;
  font-size: 9px;
  line-height: 11px;
}

.menu-meat-switch button:disabled {
  opacity: 0.55;
}

[data-home-meat-switch] {
  width: 100%;
}

[data-home-meat-switch][hidden] {
  display: none;
}

.menu-list--text {
  grid-template-columns: 1fr;
}

.menu-product.menu-product--text {
  min-height: 76px;
  grid-template-rows: 1fr;
  box-shadow: none;
}

.menu-product--text .menu-product__content {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 12px 14px;
}

.menu-product--text .menu-product__content footer {
  min-width: 154px;
}

.menu-product {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 266px;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgb(53 37 26 / 4%);
}

.menu-product__link {
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: inherit;
}

.menu-product__link:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: -3px;
}

.menu-product__media {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-soft);
}

.menu-product__media > img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  object-position: center;
}

.menu-product__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  align-items: center;
  justify-content: center;
  color: #a38d7a;
  background: var(--color-soft);
}

.menu-product__placeholder .icon {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.menu-product__badge {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 5px 8px;
  color: var(--color-brand);
  background: rgb(255 255 255 / 92%);
  border-radius: var(--radius-round);
  font-size: 9px;
  font-weight: 750;
}

.menu-product__unavailable,
.product-unavailable-badge {
  position: absolute;
  z-index: 3;
  top: 9px;
  right: 9px;
  padding: 6px 9px;
  color: var(--color-ink);
  background: rgb(255 255 255 / 94%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-round);
  font-size: 10px;
  font-weight: 750;
}

.menu-product.is-unavailable .menu-product__media > img,
.product-card.is-unavailable .product-card__media img,
.compact-product.is-unavailable > img {
  filter: saturate(.55);
  opacity: .7;
}

.menu-add.is-unavailable,
.featured-add.is-unavailable {
  width: auto;
  min-width: 96px;
  max-width: 100%;
  height: auto;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--color-muted);
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  font-size: 10px;
  font-weight: 750;
  line-height: 14px;
  white-space: nowrap;
}

.menu-product__content {
  display: grid;
  min-width: 0;
  align-content: space-between;
  gap: 8px;
  padding: 11px 10px 10px;
}

.menu-product__content h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -.015em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.menu-product__content p {
  display: none;
}

.menu-product__detail {
  display: block;
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 15px;
}

.menu-product__content footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.menu-product__content footer.has-quantity {
  gap: 4px;
}

.menu-product__content footer.has-quantity strong {
  font-size: 14px;
}

.menu-product__content strong {
  font-size: 15px;
  white-space: nowrap;
}

.menu-add {
  display: flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  background: var(--control-fill);
  border: 0;
  border-radius: var(--radius-md);
  transition: background 160ms ease, transform 160ms ease;
}

.menu-add:active {
  background: var(--control-fill);
  transform: scale(.97);
}

.menu-quantity {
  display: grid;
  width: 96px;
  height: 44px;
  flex: 0 0 96px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  overflow: hidden;
  color: var(--control-ink);
  background: var(--control-surface);
  border: 1px solid var(--control-border);
  border-radius: var(--radius-md);
}

.menu-quantity button {
  display: flex;
  width: 100%;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--control-ink);
  background: transparent;
  border: 0;
}

.menu-quantity output {
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.catalog-section {
  padding: 12px 16px 24px;
  scroll-margin-top: calc(var(--header-height) + 64px);
}

.section-heading {
  display: flex;
  min-height: 52px;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
}

.section-heading > div {
  display: grid;
}

.section-heading span {
  color: var(--color-brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 1px 0 0;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.035em;
}

.section-heading > button {
  min-height: 44px;
  padding: 0;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 650;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: 0 6px 18px rgb(53 37 26 / 5%);
  animation: card-enter 220ms 80ms ease-out both;
}

.product-card__link {
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: inherit;
}

.product-card__link:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: -3px;
}

.product-card__media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #f3e9dc;
}

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

.product-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: var(--color-brand);
  background: rgb(255 255 255 / 92%);
  border-radius: var(--radius-round);
  font-size: 9px;
  font-weight: 750;
}

.product-card__body {
  display: grid;
  min-height: 150px;
  gap: 16px;
  padding: 16px;
}

.product-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 22px;
}

.product-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 17px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__footer > strong {
  font-size: 19px;
}

.add-button,
.featured-add {
  position: relative;
  z-index: 2;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  background: var(--control-fill);
  border: 0;
  border-radius: var(--radius-md);
  transition: background 160ms ease, transform 160ms ease;
}

.quantity-control,
.featured-quantity {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 136px;
  height: 48px;
  grid-template-columns: 44px 48px 44px;
  align-items: center;
  overflow: hidden;
  color: var(--control-ink);
  background: var(--control-surface);
  border: 1px solid var(--control-border);
  border-radius: var(--radius-md);
}

.quantity-control button,
.featured-quantity button {
  display: flex;
  min-width: 44px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--control-ink);
  background: transparent;
  border: 0;
}

.quantity-control output,
.featured-quantity output {
  text-align: center;
  font-size: 14px;
  font-weight: 750;
}

.compact-carousel {
  display: grid;
  grid-auto-columns: 276px;
  grid-auto-flow: column;
  gap: 12px;
  margin-inline: -16px;
  overflow-x: auto;
  padding-inline: 16px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.compact-carousel::-webkit-scrollbar {
  display: none;
}

.compact-product {
  display: grid;
  min-height: 142px;
  grid-template-columns: 112px 1fr;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  animation: card-enter 220ms 120ms ease-out both;
}

.compact-product > img,
.compact-product__placeholder {
  width: 112px;
  height: 100%;
  background: var(--color-soft);
  object-fit: contain;
  object-position: center;
}

.compact-product > img {
  padding: 8px;
}

.compact-product__placeholder {
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: center;
  color: #a38d7a;
  background: var(--color-soft);
}

.compact-product__placeholder .icon {
  width: 34px;
  height: 34px;
  stroke-width: 1.5;
}

.compact-product > div {
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 12px;
}

.compact-product h3 {
  margin: 0 0 3px;
  font-size: 14px;
  line-height: 18px;
}

.compact-product p {
  margin: 0;
  color: var(--color-muted);
  font-size: 10px;
  line-height: 14px;
}

.compact-product footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.compact-product strong {
  font-size: 14px;
}

.reviews-content {
  display: grid;
  gap: 14px;
}

.reviews-summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
}

.reviews-summary strong {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.03em;
}

.reviews-summary > span {
  color: #f0aa18;
  font-size: 22px;
}

.reviews-summary small {
  margin-left: 4px;
  color: var(--color-muted);
  font-size: 12px;
}

.reviews-list {
  display: grid;
  grid-auto-columns: min(82vw, 310px);
  grid-auto-flow: column;
  gap: 12px;
  margin-inline: -16px;
  overflow-x: auto;
  padding-inline: 16px;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.reviews-list::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: grid;
  min-height: 166px;
  align-content: start;
  gap: 12px;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
}

.review-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.review-card__header strong {
  overflow: hidden;
  font-size: 15px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card__header time {
  flex: 0 0 auto;
  color: var(--color-muted);
  font-size: 10px;
}

.review-card__stars {
  color: #f0aa18;
  font-size: 19px;
  letter-spacing: 0.04em;
}

.review-card p,
.reviews-empty p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 19px;
}

.review-card__muted {
  font-style: italic;
}

.reviews-empty {
  display: grid;
  min-height: 116px;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}

.reviews-empty strong {
  font-size: 16px;
}

.client-footer {
  display: grid;
  gap: 24px;
  padding: 22px 16px 104px;
  color: var(--color-muted);
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
}

.client-footer__brand {
  display: grid;
  gap: 18px;
}

.client-footer__wordmarks {
  display: block;
  width: 118px;
  height: 42px;
}

.client-footer__wordmark {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.client-footer__wordmark--dark {
  display: none;
}

.client-footer__group > strong {
  margin: 0;
}

.client-footer__address {
  display: grid;
  gap: 5px;
}

.client-footer__address-label,
.client-footer__legal-band > span {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.client-footer__address-value {
  color: var(--color-ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
  line-height: 19px;
}

.client-footer__group {
  display: grid;
  gap: 8px;
}

.client-footer__group > strong {
  color: var(--color-ink);
  font-size: 13px;
}

.client-footer__links,
.client-footer .client-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.client-footer__links a,
.client-footer .client-footer__legal a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--color-ink);
  font-size: 13px;
  text-underline-offset: 4px;
}

.client-footer .client-footer__legal {
  margin: 0;
  padding: 0;
  border-top: 0;
}

.client-footer__legal-band {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.client-footer__legal-band .client-footer__legal a {
  color: var(--color-muted);
  text-decoration: none;
}

.client-footer__links a:hover,
.client-footer__legal-band .client-footer__legal a:hover {
  color: var(--color-ink);
  text-decoration: underline;
}

html[data-theme='dark'] .client-footer__brand .client-footer__wordmark {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

html[data-theme='dark'] .client-footer__wordmark--light {
  display: none;
}

html[data-theme='dark'] .client-footer__wordmark--dark {
  display: block;
}

.add-button--small {
  width: 44px;
  height: 44px;
}

.product-card--horizontal {
  display: grid;
  grid-template-columns: 146px 1fr;
}

.product-card--horizontal .product-card__media {
  height: 190px;
}

.product-card--horizontal .product-card__body {
  min-height: 190px;
  padding: 14px;
}

.product-card--horizontal .product-card__footer {
  align-items: end;
  flex-direction: column;
  gap: 8px;
}

.toast {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: calc(var(--tabbar-height) + 16px);
  left: 20px;
  max-width: 350px;
  min-height: 48px;
  margin-inline: auto;
  padding: 14px 16px;
  color: #fff;
  background: var(--control-fill);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes home-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.mobile-tabbar {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 50%;
  display: grid;
  width: min(100%, 390px);
  min-height: var(--tabbar-height);
  grid-template-columns: repeat(3, 1fr);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  background: rgb(255 255 255 / 98%);
  border-top: 1px solid var(--color-line);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(calc(100% + 8px));
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-tabbar.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mobile-tabbar a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  color: var(--color-subtle);
  border-radius: var(--radius-md);
  font-size: 9px;
  font-weight: 650;
  text-decoration: none;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    transform 160ms ease;
}

.mobile-tabbar a.is-active {
  color: var(--color-brand);
  background: #fff4f2;
}

.mobile-tabbar .icon {
  width: 21px;
  height: 21px;
  transition: transform 200ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-tabbar a.is-active .icon {
  transform: translateY(-1px);
}

.tabbar-cart b {
  position: absolute;
  top: 2px;
  left: calc(50% + 5px);
  display: flex;
  min-width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  padding-inline: 4px;
  color: #fff;
  background: var(--color-brand);
  border: 2px solid #fff;
  border-radius: var(--radius-round);
  font-size: 8px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 380px) {
  .menu-meat-switch button {
    min-width: 0;
  }

  .client-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  body {
    background: var(--color-canvas);
  }

  .mobile-app {
    box-shadow: none;
  }
}

@media (min-width: 1024px) {
  :root {
    --app-header-height: 76px;
    --header-height: 76px;
  }

  body {
    background: #fff;
  }

  .mobile-app {
    width: 100%;
    max-width: 1440px;
    min-height: 100dvh;
    overflow-x: clip;
    box-shadow: none;
  }

  .app-header {
    height: var(--app-header-height);
    background: rgb(255 255 255 / 97%);
  }

  .topbar {
    grid-template-columns: 48px 142px minmax(300px, 1fr) auto 44px 48px;
    gap: clamp(12px, 1.6vw, 24px);
    padding: 10px clamp(24px, 3vw, 44px);
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-wordmarks {
    width: 142px;
    height: 48px;
    justify-self: start;
  }

  .desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(12px, 1.7vw, 26px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .desktop-nav::-webkit-scrollbar { display: none; }

  .desktop-nav a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--color-brand);
    border-radius: var(--radius-round);
    opacity: 0;
  }

  .desktop-nav a.is-active {
    color: var(--color-ink);
  }

  .desktop-nav a.is-active::after {
    opacity: 1;
  }

  .desktop-fulfillment {
    display: grid;
    width: 222px;
    flex: 0 0 222px;
  }

  .home-content {
    display: flex;
    padding-bottom: 48px;
    flex-direction: column;
  }

  .hero-section {
    order: 0;
    height: clamp(500px, 58vh, 680px);
    min-height: 500px;
    background: #f6f2ed;
  }

  .hero-photo {
    object-position: center;
  }

  .hero-section::after {
    display: none;
  }

  .hero-copy {
    top: 50%;
    right: auto;
    bottom: auto;
    left: clamp(44px, 5vw, 82px);
    width: min(38%, 500px);
    transform: translateY(-50%);
  }

  .hero-copy h1 {
    font-size: clamp(64px, 6vw, 88px);
  }

  .hero-copy p {
    margin: 18px 0 26px;
    color: #4d4945;
    font-size: 17px;
    line-height: 24px;
  }

  .hero-cta {
    width: 230px;
    min-height: 58px;
  }

  .active-order-strip {
    top: 24px;
    right: 32px;
    left: auto;
    width: min(360px, calc(100% - 64px));
  }

  .fulfillment-panel {
    display: none;
  }

  .categories {
    order: 1;
    top: var(--app-header-height);
    padding: 0 clamp(24px, 3vw, 44px);
  }

  .category-list {
    justify-content: center;
    gap: clamp(28px, 4vw, 64px);
    padding-inline: 0;
  }

  .category {
    min-height: 54px;
    font-size: 15px;
  }

  .menu-section {
    order: 2;
    padding: 28px clamp(24px, 3vw, 44px) 44px;
  }

  .menu-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .menu-product {
    min-height: 380px;
    border-radius: 22px;
    box-shadow: 0 6px 20px rgb(35 25 18 / 5%);
  }

  .menu-product--text {
    min-height: 76px;
  }

  .menu-product__media {
    aspect-ratio: 4 / 3;
  }

  .menu-product__media > img {
    padding: 18px;
  }

  .menu-product__content {
    gap: 14px;
    padding: 18px;
  }

  .menu-product__content h3 {
    font-size: 18px;
    line-height: 23px;
  }

  .menu-product__content p {
    display: -webkit-box;
    margin: 6px 0 0;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 19px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .menu-product__content strong {
    font-size: 18px;
  }

  #popular {
    order: 3;
  }

  #often-picked {
    order: 4;
  }

  #guest-reviews {
    order: 5;
  }

  .client-footer {
    order: 6;
    grid-template-columns: minmax(280px, 1fr) auto;
    align-items: start;
    gap: 28px clamp(48px, 8vw, 120px);
    padding: 32px clamp(32px, 4vw, 64px) 36px;
  }

  .client-footer__brand {
    grid-template-columns: 142px minmax(220px, 1fr);
    align-items: center;
    gap: 28px;
  }

  .client-footer__wordmarks {
    width: 142px;
    height: 50px;
  }

  .client-footer__group {
    min-width: 210px;
  }

  .client-footer__links {
    gap: 10px 22px;
  }

  .client-footer__legal-band {
    grid-column: 1 / -1;
    grid-template-columns: 142px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    padding-top: 20px;
  }

  .client-footer .client-footer__legal {
    gap: 12px 28px;
  }

  .client-footer .client-footer__legal a {
    min-height: 36px;
  }

  .catalog-section {
    padding: 20px clamp(24px, 3vw, 44px) 44px;
  }

  .section-heading h2 {
    font-size: 32px;
    line-height: 38px;
  }

  #popular .product-card {
    display: grid;
    grid-template-columns: minmax(0, 62fr) minmax(320px, 38fr);
  }

  #popular .product-card__media {
    height: 360px;
    background: #f7f4ef;
  }

  #popular .product-card__media img {
    padding: 0;
    object-fit: cover;
    object-position: center 38%;
  }

  #popular .product-card__body {
    min-height: 360px;
    padding: 28px;
  }

  .compact-carousel {
    grid-auto-columns: minmax(360px, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: initial;
    margin-inline: 0;
    overflow: visible;
    padding-inline: 0;
  }

  .reviews-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: initial;
    margin-inline: 0;
    overflow: visible;
    padding-inline: 0;
  }

  .mobile-tabbar {
    display: none;
  }

  .toast {
    right: 32px;
    bottom: 32px;
    left: auto;
    width: 320px;
  }
}

@media (min-width: 1280px) {
  .menu-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover {
    color: var(--color-ink);
  }

  .menu-product:hover,
  .product-card:hover,
  .compact-product:hover {
    border-color: #d5d1cb;
    box-shadow: 0 10px 28px rgb(35 25 18 / 8%);
  }
}
