:root {
  --bg: #fff7ef;
  --surface: #ffffff;
  --surface-2: #fff0df;
  --text: #1e1713;
  --muted: #796861;
  --line: #ead7c8;
  --red: #db2b1f;
  --red-dark: #b91f15;
  --green: #1f7a43;
  --amber: #f6a526;
  --charcoal: #17110f;
  --shadow: 0 18px 45px rgba(73, 35, 18, .12);
  --soft-shadow: 0 10px 24px rgba(73, 35, 18, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(219,43,31,.08), transparent 32%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 42%, #fff 100%);
  color: var(--text);
  font-family: Manrope, Arial, Helvetica, sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(220px, .9fr) auto minmax(220px, 360px) auto auto auto;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 8px clamp(14px, 4vw, 48px);
  background: rgba(255, 250, 244, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
.brand b { display: block; font-size: 19px; text-transform: uppercase; line-height: 1; letter-spacing: 0; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }
.main-nav { display: flex; gap: 18px; color: var(--muted); font-weight: 700; font-size: 14px; }
.main-nav a:hover { color: var(--red); }
.header-search {
  min-width: 0;
}
.header-search input {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 16px;
  outline: none;
}
.header-search input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(219,43,31,.08);
}
.header-city {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.phone { font-weight: 800; white-space: nowrap; cursor: default; }
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}
.cart-button b {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 99px;
  background: #fff;
  color: var(--red);
  font-size: 12px;
}

.catalog-start {
  display: grid;
  grid-template-columns: minmax(160px, 190px) minmax(0, 1fr) minmax(260px, 310px);
  gap: 22px;
  align-items: start;
  padding: 18px clamp(14px, 4vw, 48px) 16px;
  background:
    linear-gradient(180deg, rgba(255,250,244,.98), rgba(255,242,228,.84)),
    radial-gradient(circle at 82% 0%, rgba(219,43,31,.12), transparent 34%);
}
.desktop-category-nav,
.desktop-order-widget {
  position: sticky;
  top: 84px;
}
.desktop-category-nav {
  display: grid;
  gap: 12px;
  padding: 14px 0;
}
.desktop-category-nav > b {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}
.desktop-category-nav nav {
  display: grid;
  gap: 5px;
}
.desktop-category-nav a {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  color: #5e4d46;
  font-size: 14px;
  font-weight: 850;
}
.desktop-category-nav a:hover,
.desktop-category-nav a.active {
  background: #fff;
  color: var(--red);
  box-shadow: var(--soft-shadow);
}
.catalog-main {
  min-width: 0;
  display: grid;
  gap: 14px;
}
.catalog-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.catalog-intro h1 {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(30px, 3vw, 46px);
}
.catalog-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.catalog-intro .primary {
  flex: 0 0 auto;
  min-height: 44px;
}
.desktop-order-widget {
  display: grid;
  gap: 10px;
}
.receive-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #ead7c8;
}
.receive-switch span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #6a5a53;
  font-size: 13px;
  font-weight: 950;
}
.receive-switch span.active {
  background: var(--red);
  color: #fff;
}
.address-shortcut,
.mini-cart-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.address-shortcut {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 14px;
}
.address-shortcut span,
.desktop-order-widget small,
.mini-cart-card p,
.mini-cart-meta span {
  color: var(--muted);
}
.address-shortcut span {
  font-size: 12px;
  font-weight: 850;
}
.address-shortcut b { font-size: 17px; }
.mini-cart-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}
.mini-cart-card h2 {
  font-size: 24px;
}
.mini-cart-card p {
  min-height: 38px;
  margin: 0;
  line-height: 1.35;
}
.mini-cart-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.mini-cart-meta b {
  font-size: 24px;
}
.mini-cart-card .primary {
  width: 100%;
  min-height: 46px;
}
.desktop-order-widget small {
  display: block;
  line-height: 1.4;
}

.hero-shop {
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(620px, 1.28fr);
  gap: clamp(16px, 2.6vw, 32px);
  align-items: stretch;
  min-height: auto;
  padding: clamp(14px, 2vw, 24px) clamp(14px, 4vw, 48px) 14px;
  background:
    linear-gradient(90deg, rgba(255,247,239,.98), rgba(255,247,239,.86)),
    radial-gradient(circle at 90% 14%, rgba(219,43,31,.13), transparent 36%);
}
.hero-copy {
  max-width: 760px;
  display: grid;
  align-content: center;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eaf8ef;
  color: #166534;
  font-size: 13px;
  font-weight: 800;
}
.live-pill span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
}
h1 {
  margin: 14px 0 10px;
  max-width: 760px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}
.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.hero-actions--offers {
  margin-top: 16px;
}
.hero-actions--offers .primary,
.hero-actions--offers .secondary {
  min-width: 170px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.hero-trust span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  padding: 0 11px;
  color: #5e4d46;
  font-size: 13px;
  font-weight: 850;
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  max-width: 560px;
  margin-top: 8px;
}
.order-steps div {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 6px 14px rgba(73,35,18,.05);
}
.order-steps b {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
}
.order-steps span { font-size: 12px; font-weight: 900; line-height: 1.15; }
.hero-promo-slider {
  min-width: 0;
  width: 100%;
  display: grid;
  gap: 12px;
  align-content: center;
}
.promo-banners {
  display: flex;
  gap: 0;
  width: 100%;
  min-height: clamp(230px, 20vw, 310px);
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.promo-banners::-webkit-scrollbar { display: none; }
.promo-banner {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(230px, 20vw, 310px);
  display: grid;
  align-content: space-between;
  gap: 9px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 0;
  border-radius: 0;
  background: #211816;
  scroll-snap-align: start;
  transition: transform .18s ease;
}
.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.72) 36%, rgba(0,0,0,.28) 61%, rgba(0,0,0,.06) 100%),
    linear-gradient(0deg, rgba(0,0,0,.35), transparent 45%);
  pointer-events: none;
}
.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-banner:hover { transform: none; }
.promo-banner span {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(219,43,31,.26);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.promo-banner b {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 520px;
  color: #f2bd3d;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0,0,0,.72);
}
.promo-banner small {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: rgba(255,255,255,.94);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,.74);
}
.promo-banner--hot {
  background: linear-gradient(135deg, #2a1711 0%, #6d1f17 52%, #d8271b 100%);
  border-color: rgba(216,39,27,.35);
}
.promo-banner--hot span {
  background: var(--red);
  color: #fff;
}
.promo-banner--hot b { color: #f2bd3d; }
.promo-banner--hot small { color: rgba(255,255,255,.94); }
.hero-fast-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.hero-fast-picks a {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.hero-fast-picks span,
.quick-pick-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.hero-fast-picks b {
  font-size: 15px;
  line-height: 1.12;
}
.primary, .secondary, .contact-form button, .pay-button, .ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  border: 0;
  padding: 0 20px;
  font-weight: 900;
}
.primary, .contact-form button, .pay-button {
  background: var(--red);
  color: #fff;
}
.primary:hover, .contact-form button:hover, .pay-button:hover { background: var(--red-dark); }
.secondary, .ghost-button {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}
.primary {
  box-shadow: 0 12px 28px rgba(219,43,31,.24);
}
.conversion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(14px, 4vw, 48px) 16px;
  background: #fff2e4;
}
.conversion-strip div {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: #fffaf4;
}
.conversion-strip div:first-child { border-radius: 8px 0 0 8px; }
.conversion-strip div:last-child { border-radius: 0 8px 8px 0; }
.conversion-strip b { font-size: 19px; line-height: 1; }
.conversion-strip span { color: var(--muted); font-size: 13px; font-weight: 800; line-height: 1.3; }
.quick-picks-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(14px, 4vw, 48px) 18px;
  background: #fff2e4;
}
.quick-pick-card {
  min-height: 104px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.96)),
    #fff;
  box-shadow: var(--soft-shadow);
}
.quick-pick-card--dark {
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.2)),
    url("../img/promo-shashlik-1kg.png") center/cover;
  border-color: rgba(219,43,31,.28);
  color: #fff;
}
.quick-pick-card--image {
  background-size: cover;
  background-position: center;
  border-color: rgba(219,43,31,.32);
  color: #fff;
}
.quick-pick-card--dark span,
.quick-pick-card--image span,
.quick-pick-card--image b,
.quick-pick-card--image small,
.quick-pick-card--dark small {
  color: rgba(255,255,255,.86);
}
.quick-pick-card b {
  font-size: 20px;
  line-height: 1.1;
}
.quick-pick-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}
.category-panel {
  position: sticky;
  top: 72px;
  z-index: 35;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px clamp(14px, 4vw, 48px);
  background: rgba(255, 250, 244, .94);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.category-panel button {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 14px;
  color: var(--text);
  font-weight: 800;
}
.category-panel button:hover { border-color: var(--red); color: var(--red); box-shadow: var(--soft-shadow); }
.category-panel button.active {
  border-color: var(--red-dark);
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 20px rgba(219,43,31,.18);
}

.section { padding: 46px clamp(14px, 4vw, 48px); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.eyebrow {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}
.muted {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.section-note {
  max-width: 600px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.search-box input {
  width: min(340px, 100%);
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 14px;
  outline: none;
}
.search-box input:focus, input:focus, textarea:focus, select:focus { border-color: var(--red); }

.category-block { margin-bottom: 44px; scroll-margin-top: 150px; }
.category-block h3 {
  margin: 0 0 16px;
  font-size: 28px;
}
.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product:hover {
  transform: translateY(-3px);
  border-color: #efb49d;
  box-shadow: 0 18px 36px rgba(73, 35, 18, .14);
}
.product-image {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-2);
}
.product-image-button {
  display: block;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}
.product-image-button:focus-visible {
  outline: 3px solid rgba(219,43,31,.35);
  outline-offset: -3px;
}
.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product:hover .product-image img { transform: scale(1.04); }
.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}
.product h4 {
  margin: 0 0 5px;
  font-size: 19px;
  line-height: 1.2;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 9px;
}
.weight {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}
.nutrition-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  background: #fff2e4;
  padding: 0 8px;
  color: #6e5044;
  font-size: 11px;
  font-weight: 950;
}
.product-description,
.product-composition-line {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}
.product-composition-line {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #5d4f48;
  font-size: 13px;
}
.product-composition-line b {
  color: var(--text);
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
}
.price { font-size: 22px; font-weight: 900; }
.add {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}
.product[id="product-1100"] {
  border-color: rgba(219,43,31,.36);
  background: linear-gradient(180deg, #fff 0%, #fff4ed 100%);
}
.product[id="product-1100"],
.product[id="product-1101"] {
  border-color: rgba(219,43,31,.36);
  background: linear-gradient(180deg, #fff 0%, #fff4ed 100%);
}
.product[id="product-1100"] .price,
.product[id="product-1101"] .price { color: var(--red); }
.product-action { width: 100%; }
.qty-control {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid rgba(219,43,31,.28);
  border-radius: 8px;
  background: #fff7f4;
}
.qty-control button {
  width: 100%;
  height: 46px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}
.qty-control button:hover { background: var(--red-dark); }
.qty-control b {
  text-align: center;
  color: var(--text);
  font-size: 17px;
}

.product-skeleton {
  min-height: 430px;
  padding: 14px;
  gap: 12px;
}
.product-skeleton div,
.product-skeleton span,
.product-skeleton p,
.product-skeleton button,
.skeleton-title {
  border-radius: 8px;
  background: linear-gradient(90deg, #f2e4d8 0%, #fff7ef 48%, #f2e4d8 100%);
  background-size: 220% 100%;
  animation: shimmer 1.15s infinite linear;
}
.product-skeleton div { height: 210px; }
.product-skeleton span { height: 24px; width: 70%; }
.product-skeleton p { height: 56px; width: 100%; }
.product-skeleton button { height: 46px; width: 100%; border: 0; }
.skeleton-title { width: 220px; height: 34px; }
@keyframes shimmer {
  to { background-position: -220% 0; }
}

.modal-lock { overflow: hidden; }
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.product-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.product-modal__shade {
  position: absolute;
  inset: 0;
  background: rgba(23,17,15,.58);
  backdrop-filter: blur(5px);
}
.product-modal__card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 1.02fr) minmax(360px, .98fr);
  width: min(1040px, calc(100vw - 56px));
  height: min(760px, calc(100vh - 56px));
  max-height: calc(100vh - 56px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: #fffaf4;
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
  transform: translateY(12px) scale(.98);
  transition: transform .2s ease;
}
.product-modal.open .product-modal__card { transform: translateY(0) scale(1); }
.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(23,17,15,.72);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}
.product-modal__media {
  position: relative;
  min-height: 0;
  background: var(--charcoal);
}
.product-modal__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.54));
}
.product-modal__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  overflow-y: auto;
  padding: 34px;
}
.product-modal__content h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: .98;
}
.product-modal__description {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.product-modal__composition {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf4;
}
.product-modal__composition b,
.product-modal__nutrition h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
}
.product-modal__composition p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.product-modal__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.product-modal__facts div {
  display: grid;
  gap: 4px;
  min-height: 82px;
  align-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.product-modal__facts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.product-modal__facts b {
  color: var(--text);
  font-size: 18px;
}
.product-modal__nutrition {
  display: grid;
  gap: 10px;
}
.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.nutrition-grid div {
  display: grid;
  gap: 4px;
  min-height: 70px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}
.nutrition-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.nutrition-grid b {
  color: var(--text);
  font-size: 18px;
}
.product-modal__notes {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-modal__notes li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}
.product-modal__notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.product-modal__footer {
  position: sticky;
  bottom: -34px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: auto;
  padding: 18px 0 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,250,244,.92), #fffaf4 28%);
}
.product-modal__footer strong {
  font-size: 34px;
  line-height: 1;
}
.product-modal__action .add { min-width: 220px; }
.product-modal__nav {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-modal__cart,
.product-modal__continue {
  min-height: 48px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
}
.product-modal__cart {
  border: 0;
  background: var(--red);
  color: #fff;
}
.product-modal__cart:hover { background: var(--red-dark); }
.product-modal__continue {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}
.product-modal__continue:hover {
  border-color: var(--red);
  color: var(--red);
}

.payment-choice {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.payment-choice.open { display: flex; }
.payment-choice__shade {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, .62);
  backdrop-filter: blur(8px);
}
.payment-choice__card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 26px;
}
.payment-choice__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}
.payment-choice__eyebrow {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}
.payment-choice__card h2 {
  margin: 8px 42px 10px 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: .98;
}
.payment-choice__card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.45;
}
.payment-choice__actions {
  display: grid;
  gap: 10px;
  margin: 18px 0 12px;
}
.payment-choice__sbp {
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.payment-choice__sbp:hover { filter: brightness(.95); }
.payment-choice__card small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
}

.delivery-section { background: #fff2e4; }
.zones-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.zone {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}

.reviews-section {
  background: #fff;
}
.orders-proof {
  display: grid;
  gap: 4px;
  min-width: 220px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff7ef;
}
.orders-proof b { font-size: 34px; line-height: 1; color: var(--red); }
.orders-proof span { color: var(--muted); font-size: 13px; font-weight: 850; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.review-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf4;
  box-shadow: var(--soft-shadow);
}
.review-card div { color: var(--amber); letter-spacing: 0; }
.review-card h3 { margin: 0; font-size: 20px; }
.review-card p { margin: 0; color: var(--muted); line-height: 1.55; }

.seo-local-section {
  background: linear-gradient(180deg, #fffaf4 0%, #fff2e4 100%);
}
.seo-local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 20px;
  align-items: stretch;
}
.seo-local-grid p {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.seo-local-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.seo-local-card h3 {
  margin: 0;
  font-size: 22px;
}
.seo-local-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}
.seo-local-card li::marker { color: var(--red); }
.seo-local-card .primary {
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
}
.zone h3 { margin: 0 0 8px; font-size: 22px; }
.zone dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}
.zone dt { color: var(--muted); font-size: 12px; }
.zone dd { margin: 3px 0 0; font-weight: 900; }
.map-card { display: none; }
.map-card.has-map {
  display: block;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.map-card iframe { width: 100%; min-height: 360px; border: 0; display: block; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 24px;
  align-items: stretch;
  margin-inline: clamp(14px, 4vw, 48px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,244,235,.94)),
    radial-gradient(circle at 10% 0%, rgba(219,43,31,.10), transparent 32%);
  box-shadow: var(--soft-shadow);
}
.contact-section.section { padding: 22px; }
.contact-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 100%;
}
.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
input, textarea, select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  outline: none;
}
textarea { min-height: 92px; resize: vertical; }
small { color: var(--muted); line-height: 1.4; }
.consent a, .cookie-banner a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(14px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--charcoal);
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.site-footer div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.site-footer b {
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}
.site-footer a {
  color: #ffd9a3;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.shade {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,.42);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.shade.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 70;
  display: flex;
  flex-direction: column;
  width: min(460px, 100%);
  transform: translateX(102%);
  transition: transform .24s ease;
  background: var(--bg);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.cart-head h2 { margin: 0; font-size: 26px; }
.cart-head button, .qty button {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-weight: 900;
}
.cart-head button { width: 38px; height: 38px; }
.cart-items {
  display: grid;
  gap: 10px;
  flex: 0 1 auto;
  max-height: 38vh;
  overflow: auto;
  padding: 14px 18px;
}
.cart-line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.cart-line img { width: 58px; height: 58px; border-radius: 10px; object-fit: cover; }
.cart-line h4 { margin: 0 0 4px; font-size: 14px; line-height: 1.2; }
.cart-line span { color: var(--muted); font-weight: 800; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button { width: 30px; height: 30px; }
.cart-empty { padding: 20px 18px; color: var(--muted); }
.cart-empty.hidden { display: none; }
.checkout-form {
  display: grid;
  flex: 1;
  gap: 9px;
  padding: 12px 14px 14px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}
.cart-drawer .hidden,
.checkout-form .hidden {
  display: none !important;
}
.checkout-form label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  min-height: 38px;
  border-radius: 8px;
  padding: 8px 10px;
}
.checkout-form textarea {
  min-height: 74px;
}
.fulfillment-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff7ef;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}
.fulfillment-toggle label {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: .18s ease;
  box-shadow: 0 8px 18px rgba(73,35,18,.05);
}
.fulfillment-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: .001;
  pointer-events: none;
}
.fulfillment-toggle span {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.fulfillment-toggle b {
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
}
.fulfillment-toggle small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
}
.fulfillment-toggle .is-active {
  border-color: var(--red-dark);
  background: var(--red);
  box-shadow: 0 8px 18px rgba(219,43,31,.18);
}
.fulfillment-toggle .is-active b,
.fulfillment-toggle .is-active small {
  color: #fff;
}
.pickup-panel {
  display: grid;
  gap: 9px;
  padding: 10px;
  border: 1px solid #f0cfa9;
  border-radius: 10px;
  background: linear-gradient(180deg, #fffaf2, #fff0df);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.pickup-panel p {
  margin: 0;
  color: #8a4b0a;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.35;
}
.pickup-field {
  display: grid;
  gap: 6px;
}
.pickup-field > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.pickup-kitchen-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.pickup-kitchen-buttons button {
  min-height: 48px;
  display: grid;
  gap: 3px;
  align-content: center;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  text-align: left;
  box-shadow: 0 6px 14px rgba(73,35,18,.05);
  transition: .18s ease;
}
.pickup-kitchen-buttons button.active {
  border-color: var(--red-dark);
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 16px rgba(219,43,31,.18);
}
.pickup-kitchen-buttons b {
  font-size: 12.5px;
  font-weight: 950;
}
.pickup-kitchen-buttons small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.pickup-kitchen-buttons button.active small {
  color: rgba(255,255,255,.82);
}
.fulfillment-time-note {
  display: block;
  margin-top: -2px;
  padding: 7px 9px;
  border: 1px solid #f0cfa9;
  border-radius: 8px;
  background: #fffaf2;
  color: #8a4b0a;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}
.checkout-form select:disabled {
  cursor: not-allowed;
  opacity: .65;
  background: #f4f4f4;
}
.address-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.address-details input {
  min-width: 0;
}
.delivery-check { display: grid; gap: 8px; }
.delivery-result {
  padding: 8px 10px;
  border: 1px solid #f5d28e;
  border-radius: 8px;
  background: #fff8df;
  color: #7a4b00;
  font-size: 12px;
  line-height: 1.35;
}
.delivery-result.ok {
  border-color: #b7e4c7;
  background: #edf9f0;
  color: #14532d;
}
.delivery-result.bad {
  border-color: #ffb4ac;
  background: #fff0ee;
  color: #9b1c12;
}
.consent { display: flex !important; gap: 8px; align-items: flex-start; }
.consent input { width: 18px; min-height: 18px; margin-top: 1px; }
.upsell { display: flex; gap: 8px; overflow-x: auto; }
.upsell button {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 10px;
  font-weight: 800;
}
.promo-code-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
}
.promo-code-box label {
  min-width: 0;
}
.promo-code-box button {
  min-height: 38px;
  white-space: nowrap;
}
.promo-code-result {
  grid-column: 1 / -1;
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.promo-code-result.ok { color: var(--green); }
.promo-code-result.bad { color: var(--red-dark); }
.cart-adjustments {
  display: grid;
  gap: 7px;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.cart-adjustments:empty {
  display: none;
}
.cart-adjustments div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.cart-adjustments b {
  color: var(--text);
  white-space: nowrap;
}
.cart-adjustments .discount span,
.cart-adjustments .discount b {
  color: var(--green);
}
.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}
.total-row b { font-size: 24px; }
.pay-button:disabled { opacity: .55; cursor: wait; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 120;
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  max-width: min(520px, calc(100vw - 28px));
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--text);
  color: #fff;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.cookie-banner {
  position: fixed;
  left: clamp(14px, 4vw, 42px);
  bottom: 18px;
  z-index: 115;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(720px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin: 0; color: var(--muted); line-height: 1.45; font-size: 14px; }
.cookie-banner button {
  flex: 0 0 auto;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  padding: 0 16px;
  background: var(--text);
  color: #fff;
  font-weight: 800;
}

.promo-trigger-wrap {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 112;
  width: 104px;
  height: 104px;
}
body.cart-is-open .promo-trigger-wrap {
  right: min(500px, calc(100vw - 128px));
  bottom: 28px;
}
.promo-trigger-wrap.hidden { display: none; }
.promo-trigger {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255,255,255,.36), transparent 30%),
    linear-gradient(145deg, #f6a526 0%, #db2b1f 58%, #a91610 100%);
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(219,43,31,.34), 0 0 0 0 rgba(219,43,31,.26);
  transform-origin: 50% 92%;
  animation: promo-wobble 2.8s ease-in-out infinite, promo-pulse 1.65s ease-out infinite;
}
.promo-trigger-close {
  display: none;
  position: absolute;
  top: -10px;
  right: -8px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}
.promo-trigger::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(219,43,31,.32);
  border-radius: inherit;
}
.promo-trigger span,
.promo-trigger b,
.promo-trigger small {
  position: relative;
  z-index: 1;
  line-height: 1;
}
.promo-trigger span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}
.promo-trigger b {
  margin-top: -4px;
  font-size: 28px;
  font-weight: 950;
}
.promo-trigger small {
  margin-top: -4px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}
.promo-trigger:hover {
  color: #fff;
  transform: translateY(-2px) rotate(0deg) scale(1.04);
}
@keyframes promo-wobble {
  0%, 100% { transform: rotate(-3deg); }
  45% { transform: rotate(4deg); }
  70% { transform: rotate(-1deg); }
}
@keyframes promo-pulse {
  0% { box-shadow: 0 18px 44px rgba(219,43,31,.34), 0 0 0 0 rgba(219,43,31,.30); }
  100% { box-shadow: 0 18px 44px rgba(219,43,31,.34), 0 0 0 18px rgba(219,43,31,0); }
}

.mobile-tray { display: none; }

.policy-page {
  min-height: 100vh;
  padding: clamp(18px, 4vw, 48px);
}
.policy-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.policy-brand { margin-bottom: 26px; }
.policy-card h1 { margin: 0 0 18px; font-size: clamp(30px, 5vw, 52px); line-height: 1; }
.policy-card h2 { margin: 24px 0 8px; }
.policy-card p { color: var(--muted); line-height: 1.65; }
.policy-card ul { margin: 8px 0 18px; padding-left: 22px; color: var(--muted); line-height: 1.65; }
.policy-card li + li { margin-top: 6px; }
.policy-card .primary { margin-top: 12px; }

.exit-pop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,.46);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.exit-pop.open { opacity: 1; pointer-events: auto; }
.exit-card {
  position: relative;
  width: min(520px, 100%);
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.exit-card h2 { margin-bottom: 10px; }
.exit-card p:not(.eyebrow) { color: var(--muted); line-height: 1.5; }
.exit-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 900;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
}
.success-card {
  width: min(520px, 100%);
  text-align: center;
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.success-card img { width: 110px; height: 110px; object-fit: cover; border-radius: 14px; }
.success-card h1 { font-size: 40px; margin: 18px 0 10px; }
.success-card p { color: var(--muted); line-height: 1.5; }

.page-article,
.blog-index {
  background:
    radial-gradient(circle at 12% 0%, rgba(219,43,31,.08), transparent 30%),
    linear-gradient(180deg, #fffaf4 0%, #fff7ef 48%, #fff 100%);
}
.page-hero,
.blog-hero {
  padding: clamp(34px, 6vw, 78px) clamp(14px, 8vw, 140px) clamp(24px, 4vw, 46px);
  border-bottom: 1px solid rgba(234,215,200,.72);
}
.page-hero h1,
.blog-hero h1 {
  max-width: 980px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98;
  letter-spacing: 0;
}
.page-hero p,
.blog-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.5;
}
.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.page-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.page-article .eyebrow,
.blog-index .eyebrow {
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e9f7ee;
  color: var(--green);
}
.page-hero-image {
  width: 100%;
  max-height: 520px;
  margin-top: 28px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.page-content {
  display: grid;
  gap: 24px;
  width: min(940px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 64px;
}
.page-block {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--soft-shadow);
}
.page-block:first-child {
  border-color: rgba(219,43,31,.22);
  background: linear-gradient(180deg, #fff, #fff8f1);
}
.page-block h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}
.page-block p,
.page-quote p,
.page-cta p {
  margin: 0 0 12px;
  color: #4f413b;
  font-size: 18px;
  line-height: 1.68;
}
.page-block a {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.page-block ul,
.page-block ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: #4f413b;
  font-size: 18px;
  line-height: 1.6;
}
.page-block li::marker {
  color: var(--red);
  font-weight: 900;
}
.page-block strong {
  color: var(--text);
  font-weight: 950;
}
.page-block p:last-child,
.page-quote p:last-child,
.page-cta p:last-child { margin-bottom: 0; }
.page-shortcode-block {
  margin: 18px 0;
}
.page-shortcode-block h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08;
}
.page-inline-products {
  display: grid;
  grid-template-columns: minmax(0, 320px);
}
.page-block .primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}
.page-block figure {
  margin: 18px 0;
}
.page-block figure img {
  width: 100%;
  border-radius: 8px;
}
.page-block figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.page-image-block figure {
  margin: 0;
}
.page-image-block img,
.page-gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.page-image-block figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.page-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.page-gallery img {
  aspect-ratio: 4 / 3;
}
.page-slider-block .page-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.page-slider-block .page-gallery img {
  flex: 0 0 min(72%, 520px);
  scroll-snap-align: start;
}
.page-video-block iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: var(--charcoal);
}
.page-products-grid,
.page-promos-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.page-product-card,
.blog-card {
  display: grid;
  gap: 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  color: var(--text);
  text-decoration: none;
}
.page-product-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.page-product-card span,
.blog-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  padding: 0 12px;
}
.page-product-card b,
.blog-card b {
  padding: 0 12px;
  font-size: 18px;
  line-height: 1.15;
}
.page-product-card small,
.blog-card small {
  padding: 0 12px;
  color: var(--muted);
  font-weight: 800;
}
.page-product-card strong {
  padding: 0 12px 14px;
  color: var(--red-dark);
  font-size: 22px;
}
.page-promo-card {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 7px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #221612, #7b241b);
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.page-promo-card span {
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.page-promo-card b { font-size: 24px; line-height: 1.05; }
.page-promo-card small { color: rgba(255,255,255,.86); font-weight: 800; }
.page-quote,
.page-cta {
  padding: 28px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  box-shadow: var(--shadow);
}
.page-quote {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.page-quote::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--red);
}
.page-quote p,
.page-cta p { color: rgba(255,255,255,.86); }
.page-cta {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.28)),
    url("../img/promo-shashlik-1kg.png") center/cover;
}
.page-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}
.page-cta .primary {
  width: max-content;
  max-width: 100%;
}
.blog-grid {
  padding: 0 clamp(14px, 8vw, 140px) 64px;
}
.blog-card {
  align-content: start;
}
.blog-card small {
  padding-bottom: 16px;
  line-height: 1.45;
}

.product-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(219,43,31,.08), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #fff7ef 45%, #fff 100%);
  padding: 22px clamp(14px, 4vw, 58px) 70px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.breadcrumbs a {
  color: var(--red-dark);
  text-decoration: none;
}
.breadcrumbs b { color: var(--text); }
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(380px, .76fr);
  gap: clamp(18px, 3vw, 36px);
  max-width: 1320px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.product-detail__media {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 520px;
  background: var(--charcoal);
}
.product-detail__main-image {
  min-height: 0;
}
.product-detail__main-image > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}
.product-detail__thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(62px, 88px));
  gap: 8px;
  padding: 10px;
  background: #17110f;
}
.product-detail__thumbnails button {
  width: 100%;
  min-height: 58px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #2b211e;
}
.product-detail__thumbnails button.active {
  border-color: var(--red);
}
.product-detail__thumbnails img {
  width: 100%;
  height: 62px;
  display: block;
  object-fit: cover;
}
.nutrition-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}
.product-video-frame {
  width: min(920px, 100%);
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  aspect-ratio: 16 / 9;
}
.product-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.product-video-link {
  width: max-content;
  max-width: 100%;
}
.product-detail__content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(20px, 4vw, 48px);
}
.product-detail__content h1 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 70px);
  line-height: .96;
}
.product-detail__lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}
.product-detail__composition {
  margin: 0;
}
.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.product-detail__actions strong {
  margin-right: auto;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 950;
}
.product-page-section {
  display: grid;
  gap: 16px;
  width: min(1320px, 100%);
  margin: 0 auto 28px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--soft-shadow);
}
.product-page-section h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.05;
}
.product-page-section p {
  margin: 0;
  max-width: 900px;
  color: #4f413b;
  font-size: 18px;
  line-height: 1.68;
}
.section-headline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
}
.section-headline .eyebrow {
  width: max-content;
  margin: 0 0 8px;
  color: var(--red);
}
.section-headline a {
  color: var(--red-dark);
  font-weight: 950;
  text-decoration: none;
}
.category-page .product-page-section {
  width: min(1320px, calc(100% - 28px));
}
.category-products-section {
  margin-top: 30px;
}
.orders-empty {
  padding: 20px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 850;
}

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

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 280px) auto auto;
    gap: 12px;
  }
  .main-nav,
  .header-city {
    display: none;
  }
  .catalog-start {
    grid-template-columns: 1fr;
    padding-top: 14px;
  }
  .desktop-category-nav,
  .desktop-order-widget {
    display: none;
  }
  .catalog-intro {
    align-items: start;
  }
}

@media (max-width: 1020px) {
  .site-header { grid-template-columns: 1fr minmax(200px, 320px) auto auto; gap: 12px; }
  .main-nav { display: none; }
  .header-city { display: none; }
  .phone { display: block; font-size: 14px; }
  .catalog-start {
    grid-template-columns: 1fr;
    padding-top: 14px;
  }
  .desktop-category-nav,
  .desktop-order-widget {
    display: none;
  }
  .catalog-intro { align-items: start; }
  .hero-shop { grid-template-columns: 1fr; align-items: start; }
  .hero-copy { order: 1; max-width: 860px; }
  .hero-promo-slider { order: -1; max-width: 860px; }
  .conversion-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-picks-section { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .conversion-strip div:first-child,
  .conversion-strip div:last-child { border-radius: 0; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-local-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-section { grid-template-columns: 1fr; margin-inline: clamp(14px, 4vw, 48px); }
  .page-products-grid,
  .page-promos-grid,
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { padding-bottom: 82px; }
  .site-header {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding-inline: 10px;
  }
  .brand img { width: 42px; height: 42px; }
  .brand b { font-size: 16px; }
  .brand small { display: none; }
  .phone {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 900;
  }
  .header-search {
    grid-column: 1 / -1;
    order: 3;
  }
  .header-search input {
    min-height: 38px;
    font-size: 14px;
  }
  .site-header .cart-button { display: none; }
  .catalog-start {
    gap: 12px;
    padding: 12px 10px 10px;
  }
  .catalog-intro {
    display: grid;
    gap: 10px;
  }
  .catalog-intro .live-pill {
    min-height: 30px;
    font-size: 12px;
  }
  .catalog-intro h1 {
    margin: 10px 0 8px;
    font-size: 27px;
    line-height: 1.05;
  }
  .catalog-intro p {
    font-size: 14px;
    line-height: 1.45;
  }
  .catalog-intro .primary {
    width: 100%;
    min-height: 44px;
  }
  .hero-shop {
    gap: 14px;
    padding: 14px 10px 12px;
  }
  .hero-promo-slider {
    order: -1;
  }
  .hero-copy {
    order: 1;
  }
  .live-pill {
    min-height: 30px;
    font-size: 12px;
  }
  h1 {
    margin: 12px 0 10px;
    font-size: clamp(32px, 9.6vw, 42px);
    line-height: 1.02;
  }
  .hero-copy p {
    font-size: 14px;
    line-height: 1.42;
  }
  .hero-actions--offers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .hero-actions--offers .primary,
  .hero-actions--offers .secondary {
    min-width: 0;
    padding-inline: 10px;
  }
  .primary, .secondary, .contact-form button, .pay-button, .ghost-button {
    min-height: 46px;
  }
  .hero-trust {
    margin-top: 8px;
    gap: 6px;
  }
  .hero-trust span {
    min-height: 28px;
    font-size: 12px;
    padding: 0 9px;
  }
  .order-steps { grid-template-columns: 1fr; }
  .order-steps div {
    min-height: 48px;
    padding: 9px 10px;
  }
  .promo-banners { min-height: 205px; border-radius: 8px; }
  .promo-banner { min-height: 205px; padding: 15px; }
  .promo-banner b { font-size: 25px; }
  .promo-banner small { font-size: 14px; }
  .hero-fast-picks {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-fast-picks a {
    min-height: 66px;
    padding: 10px 12px;
  }
  .conversion-strip {
    grid-template-columns: 1fr;
    padding: 0 10px 10px;
  }
  .conversion-strip div { min-height: 66px; }
  .quick-picks-section {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 10px 12px;
  }
  .quick-pick-card {
    min-height: 94px;
    padding: 13px;
  }
  .quick-pick-card b {
    font-size: 18px;
  }
  .reviews-grid { grid-template-columns: 1fr; }
  .category-panel {
    top: 64px;
    display: flex;
    overflow-x: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .category-panel button {
    flex: 0 0 auto;
    width: auto;
    min-height: 38px;
    border-radius: 999px;
    white-space: normal;
    line-height: 1.15;
    padding: 7px 11px;
  }
  .section-head { display: grid; align-items: start; }
  .section { padding-top: 34px; padding-bottom: 34px; }
  .seo-local-grid p { font-size: 15px; line-height: 1.55; }
  .seo-local-card { padding: 16px; }
  .contact-section,
  .contact-section.section {
    margin-inline: 10px;
    padding: 14px;
  }
  .site-footer {
    display: grid;
    gap: 12px;
    padding-bottom: 100px;
    font-size: 12px;
  }
  .site-footer div {
    display: grid;
    gap: 6px;
  }
  .site-footer a { white-space: normal; }
  .page-hero,
  .blog-hero {
    padding: 28px 10px 18px;
  }
  .page-hero h1,
  .blog-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
  }
  .page-hero p,
  .blog-hero p {
    font-size: 15px;
  }
  .page-content {
    width: calc(100% - 20px);
    gap: 14px;
    padding-bottom: 34px;
  }
  .page-block,
  .page-quote,
  .page-cta {
    padding: 16px;
  }
  .page-block p,
  .page-quote p,
  .page-cta p {
    font-size: 15px;
    line-height: 1.55;
  }
  .page-gallery,
  .page-products-grid,
  .page-promos-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .product-page {
    padding: 12px 10px 42px;
  }
  .breadcrumbs {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 14px;
  }
  .product-detail__media,
  .product-detail__main-image,
  .product-detail__main-image > img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .product-detail__media {
    aspect-ratio: auto;
  }
  .product-detail__thumbnails {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: auto;
  }
  .product-detail__content {
    gap: 13px;
    padding: 16px;
  }
  .product-detail__content h1 {
    font-size: clamp(29px, 8.6vw, 40px);
  }
  .product-detail__lead,
  .product-page-section p {
    font-size: 15px;
    line-height: 1.55;
  }
  .product-detail__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .product-detail__actions strong {
    margin: 0;
    font-size: 31px;
  }
  .product-page-section,
  .category-page .product-page-section {
    width: 100%;
    gap: 12px;
    margin-bottom: 14px;
    padding: 16px;
  }
  .section-headline {
    display: grid;
    align-items: start;
  }
  .blog-grid {
    padding: 0 10px 34px;
  }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product { min-height: 310px; border-radius: 8px; }
  .product-body { padding: 10px; }
  .product h4 { font-size: 14px; }
  .product-meta { margin-bottom: 6px; }
  .product-meta .weight { margin-bottom: 0; }
  .weight { font-size: 11px; }
  .nutrition-pill {
    min-height: 22px;
    font-size: 10px;
    padding-inline: 7px;
  }
  .product-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
  }
  .product-composition-line { display: none; }
  .nutrition-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-foot { padding-top: 10px; }
  .price { font-size: 17px; }
  .add {
    width: 100%;
    min-height: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 12px;
  }
  .qty-control { grid-template-columns: 36px 1fr 36px; min-height: 38px; }
  .qty-control button { height: 38px; font-size: 20px; }
  .cart-items { max-height: 42vh; }
  .fulfillment-toggle { gap: 6px; }
  .fulfillment-toggle label { min-height: 46px; padding: 6px 7px; }
  .pickup-kitchen-buttons { grid-template-columns: 1fr; }
  .promo-code-box { grid-template-columns: 1fr; }
  .promo-code-box button { width: 100%; }
  .zones-list { grid-template-columns: 1fr; }
  .zone dl { grid-template-columns: 1fr; }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 82px;
    width: auto;
    display: grid;
    gap: 10px;
    padding: 12px;
  }
  .cookie-banner.hidden { display: none; }
  .cookie-banner button { width: 100%; }
  .promo-trigger-wrap {
    right: 12px;
    bottom: 92px;
    width: 82px;
    height: 82px;
  }
  body.cart-is-open .promo-trigger-wrap {
    right: 12px;
    bottom: 92px;
  }
  .promo-trigger {
    width: 82px;
    height: 82px;
    border-width: 2px;
  }
  .promo-trigger-close { display: grid; place-items: center; }
  .promo-trigger span { font-size: 10px; }
  .promo-trigger b { font-size: 22px; }
  .promo-trigger small { font-size: 12px; }
  .mobile-tray {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 248, 241, .96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }
  .mobile-tray a, .mobile-tray button {
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
  }
  .mobile-tray__phone {
    background: var(--text);
    color: #fff;
  }
  .mobile-tray__cart {
    background: var(--red);
    color: #fff;
  }
  .mobile-tray__cart.is-empty {
    background: #b9aaa2;
  }
  .mobile-tray__cart.bump {
    animation: tray-bump .22s ease;
  }
  @keyframes tray-bump {
    50% { transform: scale(1.05); }
  }
  .mobile-tray__cart b {
    display: grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #fff;
    color: var(--red);
    font-size: 12px;
  }
}

/* Hosting cache guard: keep the new offer links as cards even if an older CSS chunk is served. */
.hero-shop .hero-fast-picks {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}
.hero-shop .hero-fast-picks a {
  min-height: 72px;
  display: grid !important;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.quick-picks-section {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}
.quick-picks-section .quick-pick-card {
  min-height: 104px;
  position: relative;
  overflow: hidden;
  display: grid !important;
  align-content: end;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.96)), #fff;
  box-shadow: var(--soft-shadow);
}
.quick-picks-section .quick-pick-card--dark,
.quick-picks-section .quick-pick-card--image {
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.2)), url("../img/promo-shashlik-1kg.png") center/cover;
  border-color: rgba(219,43,31,.28);
  color: #fff;
}
.quick-picks-section .quick-pick-card--image span,
.quick-picks-section .quick-pick-card--image b,
.quick-picks-section .quick-pick-card--image small {
  color: rgba(255,255,255,.88);
}
@media (max-width: 1020px) {
  .hero-promo-slider { order: -1; }
  .hero-copy { order: 1; }
  .quick-picks-section { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 720px) {
  .hero-shop .hero-fast-picks,
  .quick-picks-section {
    grid-template-columns: 1fr !important;
  }
}

/* Homepage catalog structure guard. */
.catalog-start .hero-promo-slider {
  order: initial;
  max-width: none;
}
.catalog-start .hero-fast-picks {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
@media (max-width: 1020px) {
  .catalog-start .hero-promo-slider {
    order: initial;
    max-width: none;
  }
  .catalog-start .hero-fast-picks {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 720px) {
  .catalog-start .hero-fast-picks {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .catalog-start .hero-fast-picks::-webkit-scrollbar { display: none; }
  .catalog-start .hero-fast-picks a {
    flex: 0 0 min(78vw, 260px);
    min-height: 64px;
  }
}
