:root {
  --delivery-paper: #f3f0ed;
  --delivery-surface: #fcfdf9;
  --delivery-virid: #0f3234;
  --delivery-ink: #161c1d;
  --delivery-panel: #fcfdf9;
  --delivery-rule: #c8d6d0;
  --delivery-rule-dark: rgb(219 229 224 / 0.22);
  --delivery-muted: #4c6260;
  --delivery-muted-dark: #a9bec2;
  --delivery-accent: #a9bec2;
  --delivery-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.delivery-page {
  background: var(--delivery-paper);
  color: var(--delivery-virid);
}

.delivery-page.cart-is-open,
.delivery-page.checkout-is-open,
.delivery-page.photo-is-open {
  overflow: hidden;
}

.delivery-site-header {
  color: var(--delivery-paper);
  background: var(--delivery-virid);
  border-bottom: 1px solid var(--delivery-rule-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.delivery-site-header.is-on-light {
  color: var(--delivery-virid);
  background: rgb(243 240 237 / 0.94);
  border-bottom-color: var(--delivery-rule);
}

.delivery-site-header .header-cta:hover {
  background: var(--delivery-paper);
  color: var(--delivery-virid);
}

.delivery-site-header.is-on-light .header-cta:hover {
  background: var(--delivery-virid);
  color: var(--delivery-paper);
}

.delivery-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(560px, 1.55fr);
  align-items: end;
  gap: clamp(48px, 8vw, 140px);
  min-height: 250px;
  padding: 104px clamp(20px, 4vw, 64px) 32px;
  border-bottom: 1px solid var(--delivery-rule-dark);
  color: var(--delivery-paper);
  background:
    radial-gradient(circle at 88% 30%, rgb(155 111 93 / 0.17), transparent 32%),
    var(--delivery-virid);
}

.delivery-hero__copy h1 {
  max-width: 7ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.035em;
}

.delivery-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--delivery-rule-dark);
}

.delivery-hero__facts > div {
  display: flex;
  min-height: 82px;
  padding: 16px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.delivery-hero__facts > div + div {
  border-left: 1px solid var(--delivery-rule-dark);
}

.delivery-hero__facts span {
  color: var(--delivery-muted-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.delivery-hero__facts strong {
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
  line-height: 1;
}

.delivery-catalog {
  position: relative;
  padding: 0 clamp(20px, 4vw, 64px) 80px;
  background: var(--delivery-paper);
}

.delivery-catalog__heading {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.delivery-tabs {
  position: sticky;
  top: 72px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 0;
  min-height: 62px;
  background: rgb(243 240 237 / 0.96);
  border-bottom: 1px solid var(--delivery-rule);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.delivery-tabs button {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--delivery-muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.delivery-tabs button::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--delivery-virid);
  transition: transform 320ms var(--delivery-ease);
}

.delivery-tabs button:hover,
.delivery-tabs button:focus-visible,
.delivery-tabs button[aria-selected="true"] {
  color: var(--delivery-virid);
}

.delivery-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.delivery-workspace,
.delivery-menu {
  min-width: 0;
}

.delivery-category {
  border-bottom: 1px solid var(--delivery-rule);
}

.delivery-category__trigger {
  display: grid;
  grid-template-columns: 1fr auto 48px;
  align-items: center;
  gap: 22px;
  width: 100%;
  min-height: 84px;
  padding: 16px 4px;
  border: 0;
  background: transparent;
  color: var(--delivery-virid);
  text-align: left;
  cursor: pointer;
  transition: background-color 220ms ease;
}

.delivery-category__trigger:hover,
.delivery-category__trigger:focus-visible {
  background: #e8eeeb;
}

.delivery-category__trigger:focus-visible {
  outline-color: var(--delivery-accent);
  outline-offset: -3px;
}

.delivery-category__trigger strong {
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.delivery-category__trigger span {
  color: var(--delivery-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.delivery-category__trigger svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--delivery-rule);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.4;
  transition: transform 400ms var(--delivery-ease), border-color 200ms ease;
}

.delivery-category__trigger:hover svg {
  border-color: var(--delivery-accent);
}

.delivery-category__trigger[aria-expanded="true"] {
  box-shadow: inset 0 0 0 1px var(--delivery-accent);
}

.delivery-category__trigger[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.delivery-category__content {
  padding: 0 0 30px;
  animation: delivery-reveal 620ms var(--delivery-ease) both;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--delivery-rule);
}

.delivery-product {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 210px;
  flex-direction: column;
  background: var(--delivery-surface);
  color: var(--delivery-virid);
}

.delivery-product__image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #e8eeeb;
  color: var(--delivery-paper);
  cursor: zoom-in;
}

.delivery-product__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(to top, rgb(8 30 31 / 0.18), transparent);
}

.delivery-product__image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--delivery-ease), filter 700ms var(--delivery-ease);
}

.delivery-product__image:hover > img,
.delivery-product__image:focus-visible > img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.delivery-product__image:focus-visible {
  outline: 2px solid #315f65;
  outline-offset: 3px;
}

.delivery-product__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  background: rgb(15 50 52 / 0.9);
  color: var(--delivery-paper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgb(15 50 52 / 0.14);
}

.delivery-product__zoom svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.photo-viewer {
  width: min(1040px, calc(100vw - 40px));
  max-width: none;
  height: min(90dvh, 900px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #061819;
  color: var(--delivery-paper);
  box-shadow: 0 32px 90px rgb(1 12 13 / 0.46);
}

.photo-viewer::backdrop {
  background: rgb(2 12 13 / 0.86);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.photo-viewer figure {
  width: 100%;
  height: 100%;
  margin: 0;
}

.photo-viewer figure > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-viewer figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 74px 28px 28px;
  background: linear-gradient(to top, rgb(2 12 13 / 0.78), transparent);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 53px);
  line-height: 0.95;
}

.photo-viewer__close {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(243 240 237 / 0.5);
  background: rgb(6 24 25 / 0.74);
  color: var(--delivery-paper);
  cursor: pointer;
}

.photo-viewer__close:hover,
.photo-viewer__close:focus-visible {
  background: var(--delivery-paper);
  color: var(--delivery-virid);
}

.photo-viewer__close svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.delivery-product__body {
  flex: 1;
  padding: 20px 20px 12px;
}

.delivery-product h3 {
  max-width: 18ch;
  margin: 0;
  color: var(--delivery-virid);
  font-family: var(--display);
  font-size: clamp(27px, 2.35vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.delivery-product__meta {
  margin: 10px 0 0;
  color: #4c6260;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.delivery-product__description {
  max-width: 48ch;
  margin: 14px 0 0;
  color: #4c6260;
  font-size: 12px;
  font-weight: 350;
  line-height: 1.55;
}

.delivery-product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  padding: 10px 20px 16px;
}

.delivery-product__price {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  white-space: nowrap;
}

.delivery-product__availability {
  max-width: 12ch;
  color: var(--delivery-muted);
  font-size: 11px;
  line-height: 1.35;
}

.add-product,
.quantity-control {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.add-product {
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--delivery-virid);
  background: transparent;
  color: var(--delivery-virid);
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.add-product:hover,
.add-product:focus-visible {
  background: var(--delivery-virid);
  color: var(--delivery-paper);
}

.add-product svg,
.quantity-control svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.quantity-control {
  border: 1px solid currentColor;
}

.quantity-control button {
  display: grid;
  width: 40px;
  min-height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control button:hover,
.quantity-control button:focus-visible {
  background: rgb(15 50 52 / 0.1);
}

.quantity-control output {
  min-width: 25px;
  text-align: center;
  font-size: 12px;
  font-weight: 650;
}

.cart-ledger {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.cart-ledger__scrim {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgb(2 12 13 / 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity 280ms ease;
}

.cart-ledger__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(460px, 100%);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(102%);
  background: var(--delivery-panel);
  color: var(--delivery-virid);
  box-shadow: -22px 0 70px rgb(0 0 0 / 0.28);
  transition: transform 440ms var(--delivery-ease);
}

.cart-is-open .cart-ledger {
  pointer-events: auto;
}

.cart-is-open .cart-ledger__scrim {
  opacity: 1;
}

.cart-is-open .cart-ledger__panel {
  transform: none;
}

.cart-view,
.checkout-view,
.success-view {
  min-height: 100dvh;
  padding: 0 30px calc(30px + env(safe-area-inset-bottom));
}

.cart-ledger [hidden] {
  display: none !important;
}

.cart-ledger__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: calc(92px + env(safe-area-inset-top));
  margin: 0 -30px;
  padding: calc(18px + env(safe-area-inset-top)) 30px 18px;
  border-bottom: 1px solid var(--delivery-rule);
  background: rgb(252 253 249 / 0.96);
}

.cart-ledger__header h2,
.success-view h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.cart-ledger__header span {
  display: block;
  margin-top: 5px;
  color: var(--delivery-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-close,
.cart-back {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--delivery-rule);
  background: transparent;
  color: var(--delivery-virid);
  cursor: pointer;
}

.cart-close svg,
.cart-back svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.checkout-header {
  grid-template-columns: auto 1fr auto;
  gap: 15px;
}

.cart-items {
  padding-top: 8px;
}

.cart-empty {
  margin: 32px 0;
  color: var(--delivery-muted);
  font-size: 13px;
  line-height: 1.6;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 10px 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--delivery-rule);
}

.cart-item__image {
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  margin: 0;
  overflow: hidden;
  background: #e8eeeb;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__copy {
  min-width: 0;
}

.cart-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.cart-item p {
  margin: 7px 0 0;
  color: var(--delivery-muted);
  font-size: 11px;
}

.cart-item .quantity-control {
  grid-column: 2;
  width: max-content;
  color: var(--delivery-virid);
}

.cart-item .quantity-control button:hover,
.cart-item .quantity-control button:focus-visible {
  background: #e8eeeb;
}

.cart-summary {
  padding: 24px 0;
  border-bottom: 1px solid var(--delivery-rule);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  font-size: 13px;
}

.cart-summary__total {
  align-items: baseline;
}

.cart-summary__total strong {
  font-family: var(--display);
  font-size: 32px;
}

.cart-summary > div:last-of-type {
  margin-bottom: 0;
}

.cart-summary > div strong {
  font-weight: 500;
}

.cart-summary p,
.checkout-form__note {
  margin: 20px 0 0;
  color: var(--delivery-muted);
  font-size: 11px;
  line-height: 1.55;
}

.cart-primary {
  width: 100%;
  min-height: 56px;
  margin-top: 24px;
  border: 0;
  background: var(--delivery-virid);
  color: var(--delivery-paper);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.cart-primary:hover:not(:disabled),
.cart-primary:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  background: #315f65;
}

.cart-primary:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.checkout-form {
  display: grid;
  gap: 18px;
  padding-top: 24px;
}

.checkout-form > label:not(.checkout-consent):not(.checkout-honeypot) {
  display: grid;
  gap: 8px;
}

.checkout-form label > span {
  color: var(--delivery-muted);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--delivery-rule);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--delivery-virid);
  font: 400 15px/1.4 var(--body);
}

.checkout-form textarea {
  min-height: 78px;
  resize: vertical;
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
  color: var(--delivery-muted);
}

.checkout-form input:focus-visible,
.checkout-form textarea:focus-visible {
  border-color: var(--delivery-virid);
  outline: 2px solid #315f65;
  outline-offset: 3px;
}

.checkout-form [aria-invalid="true"] {
  border-color: #9b6f5d;
}

.checkout-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  cursor: pointer;
}

.checkout-consent input {
  width: 20px;
  min-height: 20px;
  margin: 0;
  accent-color: var(--delivery-accent);
}

.checkout-consent span {
  text-transform: none !important;
  line-height: 1.5;
}

.checkout-optional {
  border-block: 1px solid var(--delivery-rule);
}

.checkout-optional summary {
  min-height: 50px;
  padding: 17px 0;
  cursor: pointer;
  color: var(--delivery-virid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  list-style-position: inside;
  text-transform: uppercase;
}

.checkout-optional > div {
  display: grid;
  gap: 18px;
  padding: 2px 0 20px;
}

.checkout-optional label {
  display: grid;
  gap: 8px;
}

.checkout-honeypot {
  position: absolute;
  left: -9999px;
}

.checkout-status {
  min-height: 20px;
  color: #7e5043;
  font-size: 12px;
  line-height: 1.5;
}

.success-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.success-view p {
  max-width: 34ch;
  margin: 16px 0 0;
  color: var(--delivery-muted);
  font-size: 14px;
  line-height: 1.6;
}

.success-mark {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--delivery-accent);
  border-radius: 50%;
}

.success-mark svg {
  width: 30px;
  fill: none;
  stroke: var(--delivery-accent);
  stroke-width: 1.7;
}

.mobile-cart {
  position: fixed;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 45;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  min-height: 62px;
  padding: 10px 16px 10px 10px;
  border: 1px solid var(--delivery-rule);
  background: var(--delivery-panel);
  color: var(--delivery-virid);
  box-shadow: 0 14px 42px rgb(15 50 52 / 0.18);
  cursor: pointer;
  transition: transform 280ms var(--delivery-ease), opacity 180ms ease;
}

.mobile-cart > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--delivery-virid);
  color: var(--delivery-paper);
  font-size: 11px;
  font-weight: 700;
}

.mobile-cart strong,
.mobile-cart b {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-cart strong {
  text-align: left;
}

.mobile-cart b {
  font-weight: 500;
  white-space: nowrap;
}

.mobile-cart:hover:not(:disabled),
.mobile-cart:focus-visible:not(:disabled) {
  transform: translateY(-3px);
}

.mobile-cart:disabled {
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
}

.delivery-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  min-height: 150px;
  padding: 36px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--delivery-rule);
  background: #061819;
  color: var(--delivery-paper);
}

.delivery-footer p,
.delivery-footer > a:last-child {
  margin: 0;
  color: var(--delivery-muted-dark);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.delivery-footer > a:last-child:hover,
.delivery-footer > a:last-child:focus-visible {
  color: var(--delivery-paper);
}

.has-delivery-motion .delivery-hero__copy,
.has-delivery-motion .delivery-hero__facts {
  animation: delivery-hero-in 760ms var(--delivery-ease) both;
}

.has-delivery-motion .delivery-hero__facts {
  animation-delay: 90ms;
}

@keyframes delivery-hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes delivery-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 14% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@media (max-width: 1000px) {
  .delivery-hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 28px;
  }

  .delivery-hero__copy h1 {
    max-width: none;
  }

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

@media (max-width: 800px) {
  .delivery-site-header nav {
    display: none;
  }

  .delivery-hero {
    min-height: 0;
    padding-top: 100px;
  }

  .delivery-hero__copy h1 {
    font-size: clamp(62px, 20vw, 96px);
  }

  .delivery-hero__facts > div {
    min-height: 72px;
    padding: 12px 8px;
  }

  .delivery-hero__facts strong {
    font-size: clamp(18px, 4.8vw, 25px);
  }

  .delivery-catalog {
    padding-bottom: 108px;
  }

  .delivery-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 62px;
  }

  .delivery-category__trigger {
    grid-template-columns: 1fr auto 42px;
    min-height: 76px;
    gap: 12px;
  }

  .delivery-category__trigger strong {
    font-size: clamp(32px, 8vw, 48px);
  }

  .delivery-category__trigger svg {
    width: 40px;
    height: 40px;
  }

  .mobile-cart {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .delivery-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 100px;
  }
}

@media (max-width: 560px) {
  .delivery-site-header .header-cta {
    padding-inline: 13px;
    font-size: 9px;
  }

  .delivery-hero {
    gap: 22px;
    padding-inline: 16px;
    padding-bottom: 20px;
  }

  .delivery-hero__facts > div {
    min-height: 70px;
    padding: 10px 7px;
  }

  .delivery-hero__facts > div + div {
    border-left: 1px solid var(--delivery-rule-dark);
  }

  .delivery-hero__facts strong {
    font-size: 17px;
    text-align: center;
  }

  .delivery-catalog {
    padding-inline: 16px;
  }

  .delivery-category__trigger {
    grid-template-columns: 1fr 38px;
    padding-block: 18px;
  }

  .delivery-category__trigger span {
    display: none;
  }

  .delivery-category__trigger strong {
    font-size: clamp(30px, 9.5vw, 42px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .delivery-product__body {
    padding: 18px 18px 10px;
  }

  .delivery-product h3 {
    font-size: 30px;
  }

  .delivery-product__footer {
    padding-inline: 18px;
  }

  .mobile-cart {
    left: 16px;
    min-width: 0;
    width: auto;
  }

  .cart-view,
  .checkout-view,
  .success-view {
    padding-inline: 20px;
  }

  .cart-ledger__header {
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .cart-item {
    grid-template-columns: 56px 1fr;
  }

  .cart-item .quantity-control {
    grid-column: 2;
    width: max-content;
  }

  .cart-item__image {
    width: 56px;
    height: 56px;
  }

  .photo-viewer {
    width: 100vw;
    height: 100dvh;
    margin: 0;
  }

  .photo-viewer figcaption {
    padding: 44px 68px calc(22px + env(safe-area-inset-bottom)) 20px;
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-delivery-motion .delivery-hero__copy,
  .has-delivery-motion .delivery-hero__facts,
  .delivery-category__content {
    animation: none !important;
  }

  .delivery-product__image > img,
  .cart-ledger__panel,
  .cart-ledger__scrim,
  .mobile-cart {
    transition: none !important;
  }
}
