:root {
  --bg: #faf7f4;
  --bg-card: #fff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --line: #ece6e0;
  --accent: #e85d4c;
  --accent-dark: #d14a3a;
  --accent-soft: rgba(232, 93, 76, 0.12);
  --green: #059669;
  --green-soft: rgba(5, 150, 105, 0.12);
  --shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
  --shadow-sm: 0 4px 16px rgba(26, 26, 26, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --font: 'Manrope', system-ui, sans-serif;
  --display: 'Unbounded', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #ff8a6b);
  color: #fff;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  display: grid; place-items: center;
}
.logo__text { font-family: var(--display); font-size: 18px; font-weight: 600; }
.logo__text span { color: var(--accent); }
.header__nav { display: flex; gap: 8px; flex: 1; overflow-x: auto; scrollbar-width: none; }
.header__nav::-webkit-scrollbar { display: none; }
.header__nav a {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: .2s;
}
.header__nav a:hover, .header__nav a.is-active {
  background: var(--accent-soft);
  color: var(--accent);
}
.header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header__link { font-size: 14px; font-weight: 600; color: var(--muted); }
.header__phone { background: none; border: none; font-weight: 700; color: var(--text); cursor: pointer; }
.cart-btn {
  position: relative;
  width: 46px; height: 46px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.cart-btn__badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
}

/* Hero */
.hero {
  position: relative;
  padding: 40px 20px 32px;
  background: linear-gradient(135deg, #fff 0%, #fff8f6 45%, var(--bg) 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-emoji {
  position: absolute;
  font-size: clamp(28px, 4vw, 52px);
  opacity: .55;
  filter: drop-shadow(0 8px 16px rgba(232, 93, 76, .15));
  animation: hero-float 5s ease-in-out infinite;
}
.hero-emoji--1 { top: 12%; left: 8%; animation-delay: 0s; }
.hero-emoji--2 { top: 22%; right: 12%; animation-delay: .8s; font-size: clamp(24px, 3vw, 40px); }
.hero-emoji--3 { bottom: 18%; left: 14%; animation-delay: 1.6s; }
.hero-emoji--4 { top: 48%; right: 6%; animation-delay: 2.2s; font-size: clamp(22px, 3vw, 36px); }
.hero-emoji--5 { bottom: 8%; right: 22%; animation-delay: 1s; }
.hero-emoji--6 { top: 8%; left: 42%; animation-delay: 2.8s; font-size: clamp(26px, 3.5vw, 44px); }
@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 16px;
  border: 1px solid rgba(232, 93, 76, .15);
}
.hero__pill-emoji {
  display: inline-block;
  animation: emoji-wiggle 2.5s ease-in-out infinite;
}
@keyframes emoji-wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-8deg) scale(1.08); }
  75% { transform: rotate(8deg) scale(1.08); }
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 14px;
}
.hero__title span {
  color: var(--accent);
  background: linear-gradient(120deg, var(--accent), #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub { color: var(--muted); font-size: 17px; margin: 0 0 20px; max-width: 480px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero__badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.hero__badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hero__promos { display: grid; gap: 12px; }
.hero-promo {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.hero-promo:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(26, 26, 26, .1); }
.hero-promo__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.hero-promo__title { font-weight: 800; font-size: 16px; margin: 0 0 4px; }
.hero-promo__sub { margin: 0; color: var(--muted); font-size: 14px; }

/* Categories */
.cats {
  position: sticky;
  top: 70px;
  z-index: 90;
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.cats__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cats__inner::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}
.cat-pill:hover, .cat-pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Catalog */
.main { padding: 28px 20px 48px; }
.main__inner { max-width: 1240px; margin: 0 auto; }
.catalog-section { margin-bottom: 40px; scroll-margin-top: 140px; }
.catalog-section__title {
  font-family: var(--display);
  font-size: 24px;
  margin: 0 0 18px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 93, 76, .18);
}
.product-card__img {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #ffe8e4, #fff5f0);
  display: grid;
  place-items: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.product-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-detail__photo {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.product-card__badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-card__badge {
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.product-card__badge--new { background: #2563eb; }
.product-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card__weight { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.product-card__title { font-size: 16px; font-weight: 800; margin: 0 0 6px; }
.product-card__desc { font-size: 13px; color: var(--muted); margin: 0 0 14px; flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-card__prices { display: flex; flex-direction: column; }
.product-card__price { font-size: 20px; font-weight: 800; color: var(--accent); }
.product-card__old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.product-card__discount {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: var(--accent-soft); color: var(--accent); }
.btn--lg { padding: 16px 28px; font-size: 16px; border-radius: 16px; }
.btn--block { width: 100%; }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--outline { background: #fff; border: 1px solid var(--line); color: var(--text); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn[hidden], .is-hidden, .checkout-nav [hidden] { display: none !important; }

/* Sections */
.section { padding: 48px 20px; }
.section--map { background: #fff; }
.section__inner { max-width: 1240px; margin: 0 auto; }
.section__title { font-family: var(--display); font-size: 28px; margin: 0 0 8px; }
.section__sub { color: var(--muted); margin: 0 0 20px; }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.promo-card {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #fff8f6);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.promo-card__badge { color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.promo-card__title { font-size: 18px; font-weight: 800; margin: 8px 0 6px; }
.promo-card__sub { color: var(--muted); margin: 0; font-size: 14px; }

.delivery-map { height: 360px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.checkout-map { height: 300px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 16px; }
.checkout-map--pick,
.checkout-map--pick .leaflet-container,
.checkout-map--pick.map-yandex {
  cursor: crosshair;
}
.field--preview {
  color: var(--muted);
  border-style: dashed;
  background: #fafafa;
}
.checkout-map.map-osm,
.delivery-map.map-osm { min-height: inherit; }
.checkout-map .leaflet-container,
.delivery-map .leaflet-container { height: 100%; width: 100%; font: inherit; z-index: 1; }
.checkout-map.map-yandex,
.delivery-map.map-yandex { min-height: inherit; }
.checkout-map.map-yandex > *,
.delivery-map.map-yandex > * { height: 100%; width: 100%; }
.ymap-pin {
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  background: var(--accent, #e85d4c);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .28);
  cursor: grab;
}
.ymap-pin:active { cursor: grabbing; }
.checkout-pane[data-pane="2"] .checkout-map.map-osm { height: auto; min-height: 280px; }
.zone-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.zone-legend__item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.zone-legend__dot { width: 12px; height: 12px; border-radius: 4px; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin: 24px 0; }
.review-card {
  padding: 18px 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.review-card__head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; flex-shrink: 0;
}
.review-card__avatar--0 { background: linear-gradient(135deg, #f97316, #ef4444); }
.review-card__avatar--1 { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.review-card__avatar--2 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.review-card__avatar--3 { background: linear-gradient(135deg, #10b981, #059669); }
.review-card__avatar--4 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.review-card__avatar--5 { background: linear-gradient(135deg, #ec4899, #db2777); }
.review-card__avatar--6 { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.review-card__avatar--7 { background: linear-gradient(135deg, #64748b, #475569); }
.review-card__meta { flex: 1; min-width: 0; }
.review-card__stars { color: #fbbf24; font-size: 14px; letter-spacing: 1px; flex-shrink: 0; }
.review-card__author { font-weight: 800; font-size: 15px; }
.review-card__date { color: var(--muted); font-size: 13px; margin-top: 2px; }
.review-card__text { color: var(--text); font-size: 14px; line-height: 1.65; margin: 0; }
.review-card__dish { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--accent); }
.reviews-empty { color: var(--muted); grid-column: 1 / -1; }
.reviews-load-more { text-align: center; margin-bottom: 32px; }
.reviews-summary {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
}
.reviews-summary__score { text-align: center; }
.reviews-summary__number { font-family: var(--display); font-size: 42px; color: var(--accent); line-height: 1; }
.reviews-summary__stars { color: #fbbf24; font-size: 18px; margin: 8px 0; letter-spacing: 2px; }
.reviews-summary__count { color: var(--muted); font-size: 14px; }
.reviews-summary__bars { display: flex; flex-direction: column; gap: 8px; }
.reviews-bar { display: grid; grid-template-columns: 36px 1fr 28px; gap: 10px; align-items: center; font-size: 13px; }
.reviews-bar__label { color: var(--muted); font-weight: 700; }
.reviews-bar__track { height: 8px; background: var(--bg); border-radius: 999px; overflow: hidden; }
.reviews-bar__fill { height: 100%; background: linear-gradient(90deg, #fbbf24, #f59e0b); border-radius: 999px; }
.reviews-bar__count { color: var(--muted); text-align: right; }
.review-form {
  max-width: 480px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.review-form h3 { margin: 0 0 16px; }
.field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: #fff;
}
.field--sm { max-width: 120px; }
.label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.hint { font-size: 13px; color: var(--muted); margin: 0 0 12px; }

/* Скрытые оверлеи — display в .modal/.cart-panel ломает атрибут hidden */
.cart-panel[hidden],
.modal[hidden],
.toast[hidden],
.address-suggest[hidden],
.name-suggest[hidden],
.checkout-suggest[hidden] {
  display: none !important;
}

/* Cart */
.cart-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100%);
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: #fff;
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.cart-panel__head h2 { margin: 0; font-size: 20px; }
.cart-panel__close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--muted); }
.cart-panel__body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item__title { flex: 1; font-weight: 600; font-size: 14px; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.cart-item__qty button {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.cart-panel__foot {
  flex-shrink: 0;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: #fff;
}
.cart-utensils {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cart-utensils__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cart-utensils__label {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}
.cart-utensils__label small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: 2px;
}
.cart-utensils__hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.cart-panel__foot .utensils-stepper { flex-shrink: 0; }
.cart-panel__total { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 18px; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.modal__dialog--checkout {
  display: flex;
  flex-direction: column;
  max-height: min(96dvh, 880px);
  overflow: hidden;
  padding-bottom: 0;
}
.modal__dialog--checkout .checkout-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.modal__dialog--checkout .checkout-pane.is-active {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding-bottom: 4px;
}
.modal__dialog--checkout .checkout-pane[data-pane="2"].is-active {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal__dialog--checkout .checkout-pane[data-pane="2"] .checkout-map {
  flex: 1;
  min-height: 280px;
  height: auto;
}
.modal__dialog--checkout .label { margin-bottom: 4px; margin-top: 10px; }
.modal__dialog--checkout .label:first-child { margin-top: 0; }
.modal__dialog--checkout .field { margin-bottom: 0; }
.modal__dialog--checkout .hint { margin: 10px 0 0; font-size: 12px; flex-shrink: 0; }
.modal__dialog--checkout .checkout-nav {
  flex-shrink: 0;
  margin-top: auto;
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: #fff;
  position: sticky;
  bottom: 0;
}
.modal__close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; z-index: 2; }
.modal__dialog--product {
  width: min(800px, calc(100vw - 32px));
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
}
.product-detail {
  display: grid;
  grid-template-columns: 44% 56%;
  max-height: 90vh;
  min-width: 0;
  overflow: hidden;
}
.product-detail__hero {
  background: linear-gradient(145deg, #ffe8e4, #fff5f0);
  display: grid;
  place-items: center;
  font-size: 72px;
  position: relative;
  min-height: 240px;
  padding: 20px;
  min-width: 0;
  overflow: hidden;
}
.product-detail__hero:has(.product-detail__photo) {
  padding: 14px;
  min-height: auto;
  background: #f8f4f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail__badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-detail__body {
  padding: 24px 24px 20px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 90vh;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-detail__cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-detail__title {
  font-family: var(--display);
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.25;
}
.product-detail__desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 14px;
}
.product-detail__meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.product-detail__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.product-detail__price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}
.product-detail__old {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}
.product-detail__discount {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 999px;
}
.product-detail__composition {
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  width: 100%;
}
.product-detail__composition h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-detail__tag {
  display: inline-block;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.product-detail__foot {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
}
.product-detail__foot .btn { flex: 1; }
.product-detail__cart-added {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 12px 14px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 93, 76, .2);
  box-sizing: border-box;
}
.product-detail__cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-detail__go-cart {
  width: 100%;
  justify-content: center;
}
.product-detail__cart-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.qty-stepper button {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: var(--bg);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
  transition: background .15s;
  flex-shrink: 0;
}
.qty-stepper button:hover { background: var(--accent-soft); color: var(--accent); }
.qty-stepper__val {
  min-width: 72px;
  padding: 0 6px;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
}
.product-card__stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 4px 8px;
}
.product-card__stepper button {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--accent);
  line-height: 1;
}
.product-card__stepper span {
  min-width: 32px;
  padding: 0 6px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
}
.checkout-steps { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.checkout-step { font-size: 12px; font-weight: 700; color: var(--muted); padding: 6px 10px; border-radius: 999px; background: var(--bg); }
.checkout-step.is-active { background: var(--accent-soft); color: var(--accent); }
.checkout-pane { display: none; }
.checkout-pane.is-active { display: block; }
.checkout-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.checkout-nav .btn { min-width: 120px; }
.checkout-nav .btn--primary { min-width: 140px; }
.sms-row, .promo-row, .bonus-row { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.address-suggest,
.checkout-suggest {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: #ecfdf5;
  border: 1px solid #86efac;
}
.address-suggest__label,
.checkout-suggest__label { font-size: 13px; color: var(--muted); font-weight: 600; }
.address-suggest__btn,
.checkout-suggest__btn {
  flex: 1;
  min-width: 0;
  text-align: left;
  padding: 8px 12px;
  border: 1px dashed #86efac;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}
.address-suggest__btn:hover,
.checkout-suggest__btn:hover { border-color: var(--green); background: #f0fdf4; }

.phone-input {
  display: flex;
  align-items: stretch;
  margin-bottom: 12px;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.phone-input:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft, rgba(232, 93, 76, 0.15));
}
.phone-input__prefix {
  display: flex;
  align-items: center;
  padding: 0 12px 0 14px;
  font-weight: 600;
  color: var(--text, #1a1a1a);
  background: var(--bg-soft, #f9fafb);
  border-right: 1px solid var(--border, #e5e7eb);
  flex-shrink: 0;
}
.phone-input__field {
  border: none !important;
  box-shadow: none !important;
  margin: 0;
  flex: 1;
  border-radius: 0 !important;
}
.phone-input__field:focus {
  outline: none;
}
.pay-methods { border: none; padding: 0; margin: 16px 0; display: grid; gap: 10px; }
.pay-method {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.pay-method:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.pay-method input { margin-top: 4px; }
.pay-method strong { display: block; }
.pay-method small { color: var(--muted); }
.checkout-summary {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.8;
}
.checkout-summary strong { color: var(--accent); font-size: 18px; }
.label-hint { font-weight: 500; color: var(--green); font-size: 12px; }
.utensils-stepper { width: fit-content; }
.utensils-stepper__input {
  width: 56px;
  padding: 0 6px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  -moz-appearance: textfield;
}
.utensils-stepper__input::-webkit-outer-spin-button,
.utensils-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Order track */
.page-order { background: var(--bg); min-height: 100vh; }
.order-track { max-width: 640px; margin: 0 auto; padding: 32px 20px; }
.order-track__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.order-status-bar {
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
  position: relative;
}
.order-status-bar::before {
  content: '';
  position: absolute;
  top: 14px; left: 10%; right: 10%;
  height: 3px;
  background: var(--line);
  z-index: 0;
}
.order-status-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.order-status-step__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--line);
  margin: 0 auto 8px;
  display: grid; place-items: center;
  font-size: 12px;
}
.order-status-step.is-done .order-status-step__dot,
.order-status-step.is-current .order-status-step__dot {
  background: var(--accent);
  color: #fff;
}
.order-status-step.is-current { color: var(--accent); }

/* Цвета этапов отслеживания заказа */
.order-track__card--waiting {
  --track-accent: #d97706;
  --track-soft: #fffbeb;
  --track-line: #fde68a;
}
.order-track__card--processing {
  --track-accent: #2563eb;
  --track-soft: #eff6ff;
  --track-line: #bfdbfe;
}
.order-track__card--preparing {
  --track-accent: #e85d4c;
  --track-soft: #fff1f0;
  --track-line: #fecaca;
}
.order-track__card--delivering {
  --track-accent: #7c3aed;
  --track-soft: #f5f3ff;
  --track-line: #ddd6fe;
}
.order-track__card--completed {
  --track-accent: #059669;
  --track-soft: #ecfdf5;
  --track-line: #a7f3d0;
}
.order-track__card--cancelled {
  --track-accent: #64748b;
  --track-soft: #f8fafc;
  --track-line: #e2e8f0;
}

.order-track__card[class*="order-track__card--"] .order-track__status {
  color: var(--track-accent);
  font-weight: 800;
}
.order-track__card[class*="order-track__card--"] .order-status-bar::before {
  background: linear-gradient(90deg, var(--track-line), var(--track-accent));
  opacity: 0.45;
}
.order-track__card[class*="order-track__card--"] .order-status-step.is-done .order-status-step__dot {
  background: var(--track-accent);
  opacity: 0.45;
}
.order-track__card[class*="order-track__card--"] .order-status-step.is-current {
  color: var(--track-accent);
}
.order-track__card[class*="order-track__card--"] .order-status-step.is-current .order-status-step__dot {
  background: var(--track-accent);
  opacity: 1;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--track-accent) 22%, transparent);
}
.order-track__card[class*="order-track__card--"] .order-status-step--waiting.is-done .order-status-step__dot { background: #d97706; }
.order-track__card[class*="order-track__card--"] .order-status-step--processing.is-done .order-status-step__dot { background: #2563eb; }
.order-track__card[class*="order-track__card--"] .order-status-step--preparing.is-done .order-status-step__dot { background: #e85d4c; }
.order-track__card[class*="order-track__card--"] .order-status-step--delivering.is-done .order-status-step__dot { background: #7c3aed; }
.order-track__card[class*="order-track__card--"] .order-timer {
  background: var(--track-soft);
  border: 1px solid color-mix(in srgb, var(--track-accent) 18%, transparent);
}
.order-track__card[class*="order-track__card--"] .order-timer__value {
  color: var(--track-accent);
}

.order-timer {
  text-align: center;
  padding: 20px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  margin: 20px 0;
}
.order-timer__value {
  font-family: var(--display);
  font-size: 36px;
  color: var(--accent);
}
.order-track__card[class*="order-track__card--"] .order-timer__value {
  color: var(--track-accent);
}
.order-timer__label { color: var(--muted); font-size: 14px; }
.order-track__title { font-family: var(--display); margin: 0 0 8px; font-size: 24px; }
.order-track__status { margin: 0 0 20px; font-weight: 600; color: var(--muted); }
.order-track__items { margin: 20px 0; line-height: 1.8; font-size: 14px; }
.order-track__hr { border: none; border-top: 1px solid var(--line); margin: 12px 0; }
.order-track__discount { color: var(--green); }
.order-track__meta { font-size: 14px; color: var(--muted); margin: 8px 0 0; }
.order-track__bonus {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 4px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #ecfdf5, #fff7ed);
  border: 1px solid rgba(5, 150, 105, .18);
}
.order-track__bonus-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.order-track__bonus-body strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.order-track__bonus-body p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.order-track__bonus-phone {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.order-track__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.order-track__actions .btn--block { width: 100%; justify-content: center; }
.header--simple .header__link { margin-left: auto; font-size: 14px; font-weight: 700; color: var(--muted); }
.header--simple .header__link:hover { color: var(--accent); }

.page-support {
  background: linear-gradient(180deg, #fff8f6 0%, var(--bg) 40%, var(--bg) 100%);
  min-height: 100vh;
}
.support-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}
.support-page__hero {
  text-align: center;
  margin-bottom: 28px;
}
.support-page__emoji-float {
  position: relative;
  height: 48px;
  margin-bottom: 4px;
}
.support-float {
  position: absolute;
  font-size: 32px;
  animation: hero-float 4.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(232, 93, 76, .12));
}
.support-float--1 { left: calc(50% - 72px); top: 0; }
.support-float--2 { left: calc(50% - 16px); top: 6px; animation-delay: 1s; font-size: 28px; }
.support-float--3 { left: calc(50% + 32px); top: 0; animation-delay: 2s; font-size: 26px; }
.support-page__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
}
.support-page__hero h1 {
  font-family: var(--display);
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
}
.support-page__lead {
  margin: 0 auto 20px;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}
.support-page__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.support-page__features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.support-page__features li span { font-size: 16px; }
.support-page__chat {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

/* Support chat */
.chat-fab {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 180;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  transition: transform .2s, background .2s;
}
.chat-fab:hover { transform: scale(1.04); background: var(--accent-dark); }
.chat-panel {
  position: fixed;
  right: 20px;
  bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  z-index: 190;
  width: min(380px, calc(100vw - 32px));
  height: min(520px, calc(100dvh - 120px));
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
}
.chat-panel[hidden] { display: none !important; }
.chat-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
}
.chat-panel__head h3 { margin: 0; font-size: 15px; font-weight: 800; }
.chat-panel__status { font-size: 12px; opacity: .9; margin-top: 2px; }
.chat-panel__close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.chat-panel__start,
.chat-panel__composer {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  flex-shrink: 0;
}
.chat-panel__start { border-bottom: 1px solid var(--line); }
.chat-panel__composer {
  border-top: 1px solid var(--line);
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}
.chat-panel__input {
  flex: 1;
  min-width: 0;
  margin: 0;
  min-height: 44px;
  padding: 10px 14px;
}
.chat-panel__action {
  flex-shrink: 0;
  min-width: 96px;
  padding: 0 18px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}
.chat-panel__action:hover { background: var(--accent-dark); }
.chat-panel__send {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.chat-panel__send:hover:not(:disabled) { background: var(--accent-dark); }
.chat-panel__send:disabled { opacity: .45; cursor: not-allowed; }
.chat-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
  min-height: 0;
}
.chat-msg { max-width: 85%; display: flex; flex-direction: column; gap: 4px; }
.chat-msg--visitor { align-self: flex-end; align-items: flex-end; }
.chat-msg--admin { align-self: flex-start; align-items: flex-start; }
.chat-msg__bubble {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  background: #fff;
  border: 1px solid var(--line);
}
.chat-msg--visitor .chat-msg__bubble { background: var(--accent); color: #fff; border-color: var(--accent); }
.chat-msg__time { font-size: 11px; color: var(--muted); }

/* Страница поддержки — чат по центру (не попап) */
.page-support .chat-panel--page {
  position: relative;
  right: auto;
  left: auto;
  bottom: auto;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  height: min(620px, calc(100dvh - 320px));
  min-height: 440px;
  margin: 0 auto;
  box-shadow: 0 20px 56px rgba(26, 26, 26, .12);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(232, 93, 76, .12);
}
.page-support .chat-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #fff;
  flex-shrink: 0;
}
.page-support .chat-panel__head-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-support .chat-panel__head-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  font-size: 22px;
  animation: emoji-wiggle 3s ease-in-out infinite;
}
.page-support .chat-panel__online-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 0 4px rgba(134, 239, 172, .35);
  flex-shrink: 0;
}
.page-support .chat-panel__messages {
  background: linear-gradient(180deg, #faf9f8 0%, #f3f1ee 100%);
  padding: 20px 18px;
}
.page-support .chat-panel__start {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 20px 18px;
}
.page-support .chat-panel__start-hint {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.page-support .chat-panel__start-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.page-support .chat-panel__composer {
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid var(--line);
}
.page-support .chat-msg__bubble {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}
.page-support .chat-msg--admin .chat-msg__bubble {
  border-bottom-left-radius: 4px;
}
.page-support .chat-msg--visitor .chat-msg__bubble {
  background: linear-gradient(135deg, var(--accent), #e85d4c);
  border-bottom-right-radius: 4px;
}

@media (max-width: 600px) {
  .chat-fab { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  .chat-panel:not(.chat-panel--page) {
    right: 0; left: 0; bottom: 0;
    width: 100%;
    height: min(72dvh, 560px);
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .order-track__actions .btn--block { width: 100%; }
  .checkout-nav { justify-content: stretch; }
  .checkout-nav .btn { flex: 1 1 calc(50% - 5px); min-width: 0; }
}
.footer__inner { max-width: 1240px; margin: 0 auto; text-align: center; }
.footer__text { color: var(--muted); }
.footer__copy { font-size: 13px; color: var(--muted); }

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  bottom: auto;
  transform: translateX(-50%) translateY(calc(-100% - 16px));
  padding: 14px 24px;
  background: #1c1917;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  z-index: 400;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
  pointer-events: none;
}
.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast--error {
  background: #fff;
  color: #dc2626;
  border: 1px solid #fecaca;
  box-shadow: 0 16px 48px rgba(220, 38, 38, 0.12);
}

.page-boot {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #faf8f6;
  opacity: 1;
  visibility: visible;
  transition: opacity .22s ease, visibility .22s ease;
  pointer-events: all;
}
.page-boot.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.stars-input { display: flex; gap: 4px; margin-bottom: 12px; }
.stars-input button {
  background: none; border: none;
  font-size: 24px; color: #ddd; cursor: pointer;
}
.stars-input button.is-on { color: #fbbf24; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .header__link { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__hero { min-height: 180px; font-size: 56px; }
  .product-detail__photo { max-height: 260px; }
  .modal__dialog--product { width: min(100%, calc(100vw - 24px)); }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-detail__body { padding: 18px 16px 16px; }
  .product-detail__photo { max-height: 220px; }
  .cart-panel { width: 100%; }
  .modal { padding: 0; align-items: stretch; }
  .modal__dialog--checkout {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
    padding: 20px 16px 0;
  }
  .checkout-map { min-height: 220px; margin-top: 14px; }
  .checkout-nav { flex-wrap: wrap; }
  .checkout-nav .btn { flex: 1; min-width: 120px; }
  .reviews-summary { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .support-page__layout { grid-template-columns: 1fr; }
  .page-support .chat-panel--page {
    height: min(560px, calc(100dvh - 280px));
    min-height: 400px;
    border-radius: var(--radius);
  }
  .page-support .chat-panel__start-row { flex-direction: column; }
  .page-support .chat-panel__action { width: 100%; min-height: 48px; }
  .hero-emoji { opacity: .35; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-emoji, .support-float, .hero__pill-emoji, .chat-panel__head-icon {
    animation: none;
  }
  .product-card:hover, .hero__badge:hover, .hero-promo:hover {
    transform: none;
  }
}

.section--page { padding-top: 100px; }
.section--page .section__sub { color: var(--muted); margin: -8px 0 24px; }
.header__nav a.is-active { color: var(--accent); }

.footer { padding: 40px 20px; border-top: 1px solid var(--line); }
