@font-face {
  font-family: "Smak Display";
  src: url("/assets/fonts/smak-display-demi.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

/* --- Retail cart and YooKassa checkout --- */
.shop-cart-button {
  gap: 9px;
  font: inherit;
}

.shop-cart-button [data-cart-count] {
  display: grid;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  place-items: center;
  color: var(--red);
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.shop-cart-panel {
  position: fixed;
  z-index: 120;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.shop-cart-panel.is-open {
  visibility: visible;
  pointer-events: auto;
}

.shop-cart-panel [hidden],
.payment-card [hidden] {
  display: none !important;
}

.shop-cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(31, 22, 21, .48);
  opacity: 0;
  cursor: pointer;
  transition: opacity .25s ease;
}

.shop-cart-panel.is-open .shop-cart-backdrop {
  opacity: 1;
}

.shop-cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(540px, 100%);
  height: 100%;
  color: var(--ink);
  background: #fffdfb;
  box-shadow: -24px 0 70px rgba(44, 27, 25, .16);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22, .61, .36, 1);
}

.shop-cart-panel.is-open .shop-cart-drawer {
  transform: none;
}

.shop-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 34px 24px;
  border-bottom: 1px solid var(--line);
}

.shop-cart-head p,
.shop-checkout-copy > p {
  margin: 0 0 3px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.shop-cart-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.shop-cart-close {
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}

.shop-cart-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 8px 34px 24px;
}

.shop-cart-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.shop-cart-item img {
  width: 76px;
  height: 76px;
  padding: 5px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #f1e7e1;
  border-radius: 10px;
}

.shop-cart-item-copy {
  min-width: 0;
}

.shop-cart-item-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.3;
}

.shop-cart-item-copy small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.shop-cart-item-qty {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.shop-cart-item-qty button {
  width: 30px;
  height: 30px;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.shop-cart-item-qty span {
  min-width: 28px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.shop-cart-item-side {
  display: grid;
  align-self: stretch;
  justify-items: end;
  align-content: space-between;
  white-space: nowrap;
}

.shop-cart-item-side strong {
  font-size: 15px;
}

.shop-cart-remove {
  padding: 0;
  color: #98999e;
  background: transparent;
  border: 0;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.shop-cart-empty {
  display: grid;
  min-height: 300px;
  place-content: center;
  padding: 40px;
  text-align: center;
}

.shop-cart-empty strong {
  font-size: 21px;
}

.shop-cart-empty p {
  max-width: 290px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.shop-cart-footer {
  padding: 24px 34px 30px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.shop-cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.shop-cart-total span {
  color: var(--muted);
  font-size: 14px;
}

.shop-cart-total strong {
  font-size: 25px;
}

.shop-cart-checkout,
.shop-checkout-submit {
  width: 100%;
}

.shop-checkout {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 28px 34px 34px;
}

.shop-checkout[hidden] {
  display: none;
}

.shop-checkout-back {
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.shop-checkout-copy {
  margin-bottom: 24px;
}

.shop-checkout-copy h3 {
  margin: 0 0 7px;
  font-size: 26px;
}

.shop-checkout-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.shop-checkout > label,
.shop-checkout-row label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.shop-checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shop-checkout input,
.shop-checkout select,
.shop-checkout textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e6ddd7;
  border-radius: 8px;
  outline: 0;
  font: inherit;
  font-weight: 500;
}

.shop-checkout textarea {
  min-height: 84px;
  resize: vertical;
}

.shop-checkout input:focus,
.shop-checkout select:focus,
.shop-checkout textarea:focus {
  border-color: var(--red);
}

.shop-checkout select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2327272d' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.shop-delivery-note {
  margin: -5px 0 16px;
  padding: 11px 13px;
  color: var(--muted);
  background: #f8f2ed;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.45;
}

.shop-checkout-error.is-success {
  color: #2b7250;
}

.shop-checkout-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.4;
}

.shop-checkout-consent input {
  flex: 0 0 auto;
  width: 17px;
  min-height: 17px;
  height: 17px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--red);
}

.shop-checkout-error {
  min-height: 20px;
  margin: 0 0 10px;
  color: #bd161c;
  font-size: 13px;
  line-height: 1.4;
}

.shop-checkout-submit strong {
  font-size: inherit;
}

.shop-checkout-submit:disabled {
  cursor: wait;
  opacity: .65;
}

.shop-checkout > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

body.shop-cart-open {
  overflow: hidden;
}

.payment-page {
  min-height: 100vh;
  color: var(--ink);
  background: #f7f2ee;
}

.payment-shell {
  display: grid;
  min-height: 100vh;
  padding: 42px 20px;
  place-items: center;
}

.payment-logo {
  position: absolute;
  top: 32px;
  left: 36px;
}

.payment-logo img {
  width: 118px;
}

.payment-card {
  width: min(560px, 100%);
  padding: 48px;
  background: #fff;
  border: 1px solid #eadfd8;
  border-radius: 16px;
  box-shadow: 0 26px 80px rgba(63, 39, 34, .08);
  text-align: center;
}

.payment-status-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--red);
  background: #fff1ed;
  border-radius: 50%;
  font-size: 27px;
  font-weight: 800;
}

.payment-card.is-success .payment-status-icon {
  color: #207b49;
  background: #e9f7ef;
}

.payment-card.is-canceled .payment-status-icon,
.payment-card.is-error .payment-status-icon {
  color: #a82429;
  background: #fbeaec;
}

.payment-eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.payment-card h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 6vw, 42px);
  line-height: 1.05;
}

.payment-card > p:not(.payment-eyebrow) {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.55;
}

.payment-details {
  margin: 30px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-details div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0;
}

.payment-details dt {
  color: var(--muted);
}

.payment-details dd {
  margin: 0;
  font-weight: 800;
}

.payment-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 720px) {
  .shop-cart-head,
  .shop-cart-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .shop-cart-content,
  .shop-checkout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .shop-cart-item {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .shop-cart-item img {
    width: 62px;
    height: 62px;
  }

  .shop-cart-item-side {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .shop-checkout-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .payment-shell {
    align-items: start;
    padding-top: 110px;
  }

  .payment-logo {
    top: 22px;
    left: 20px;
  }

  .payment-card {
    padding: 34px 22px;
  }

  .payment-actions {
    flex-direction: column;
  }
}

:root {
  --red: #e31d24;
  --red-dark: #bd1118;
  --orange: #ff6a00;
  --ink: #27272d;
  --muted: #686b74;
  --line: #eee4de;
  --cream: #fff;
  --site-bg: #fff;
  --soft: #fff;
  --white: #fff;
  --shadow: none;
  --page-pad: clamp(28px, 5.8vw, 118px);
  --smak-zoom: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--site-bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.container {
  width: 100%;
  margin: 0;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
}

.home-body .site-header {
  position: fixed;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .22s ease, border-color .22s ease, backdrop-filter .22s ease;
}

.home-body .site-header.is-scrolled,
.home-body .site-header.is-menu-open {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(227, 216, 208, .72);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  min-height: 104px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 128px;
}

.brand-logo {
  width: 146px;
  height: auto;
}

.brand-mark {
  display: grid;
  gap: 0;
  font-size: 27px;
  font-weight: 800;
  line-height: .86;
}

.brand-mark span:first-child {
  color: var(--red);
}

.brand-note {
  color: #5d6068;
  font-size: 12px;
  line-height: 1.4;
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.4vw, 30px);
  color: #30323a;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--red);
}

.phone {
  display: grid;
  justify-items: end;
  min-width: 170px;
}

.phone strong {
  font-size: 17px;
  line-height: 1.15;
}

.phone span {
  color: #777b83;
  font-size: 12px;
}

.header-info {
  display: grid;
  gap: 2px;
  min-width: 210px;
  color: #545963;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.header-info span:first-child {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  min-height: 46px;
  padding: 0 18px;
  font-size: 13px;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  place-items: center;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh / var(--smak-zoom, 1));
  min-height: calc(100svh / var(--smak-zoom, 1));
  margin-bottom: -1px;
  background:
    url("/assets/smak-hero-header-20260527-154949.png") center bottom / cover no-repeat,
    var(--site-bg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(100vh / var(--smak-zoom, 1));
  min-height: calc(100svh / var(--smak-zoom, 1));
  padding-top: 152px;
  padding-bottom: 108px;
}

.hero-copy h1 {
  max-width: 900px;
  margin: 0 0 42px;
  font-family: "Smak Display", "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: clamp(78px, 6.4vw, 118px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: 0;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.hero-title-main,
.hero-title-accent {
  display: block;
}

.hero-title-main {
  color: var(--ink);
}

.hero-title-accent {
  color: var(--red);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--red);
  paint-order: stroke fill;
}

.hero-eyebrow {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: clamp(17px, 1.25vw, 24px);
  font-weight: 900;
}

.hero-copy p {
  max-width: 490px;
  margin: 0 0 44px;
  color: #42454d;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-actions .btn {
  min-height: 66px;
  padding: 0 36px;
  font-size: 16px;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 56px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(227, 29, 36, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .76);
  transform: translateX(-50%);
  animation: arrowFloat 1.8s ease-in-out infinite;
}

.scroll-down::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(227, 29, 36, .28);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1);
  animation: arrowRingPulse 2.2s ease-out infinite;
}

.scroll-down::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: translate(-50%, -50%) rotate(45deg);
}

@keyframes arrowFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes arrowRingPulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  24% {
    opacity: .65;
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

[data-smak-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 650ms cubic-bezier(.22, .61, .36, 1),
    transform 650ms cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--smak-reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-smak-reveal="fade-left"] {
  transform: translate3d(34px, 0, 0);
}

[data-smak-reveal="fade-right"] {
  transform: translate3d(-34px, 0, 0);
}

[data-smak-reveal="zoom-in"] {
  transform: scale(.96);
}

[data-smak-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-ghost {
  color: var(--red);
  border-color: var(--red);
  background: rgba(255, 255, 255, .7);
}

.btn-light {
  color: var(--red);
  background: var(--white);
}

.section-title {
  display: grid;
  grid-template-columns: 170px auto 170px;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin: 0 0 28px;
  font-size: 28px;
  line-height: 1.2;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 170px;
  height: 1px;
  background: #f2a7a9;
}

.features {
  padding: 88px 0 24px;
  background: var(--site-bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  text-align: center;
}

.feature-grid article {
  display: grid;
  justify-items: center;
}

.feature-grid img {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
}

.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.feature-grid p {
  max-width: 172px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog {
  padding: 30px 0 124px;
  background: var(--site-bg);
}

.section-heading {
  margin: 0 0 34px;
  text-align: center;
  font-size: 29px;
  line-height: 1.2;
}

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

.catalog-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  padding: 46px 42px;
  color: var(--ink);
  border-radius: 8px;
  border: 1px solid rgba(239, 127, 26, .14);
}

.catalog-card-orange {
  background: #fdf7f1;
  border-color: rgba(254, 78, 8, .18);
}

.catalog-card-red {
  background: #fef8f6;
  border-color: rgba(246, 16, 19, .16);
}

.catalog-card > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.catalog-card h3 {
  margin: 0 0 2px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.1;
}

.catalog-card-orange h3 {
  color: #fe4e08;
}

.catalog-card-red h3 {
  color: #f61013;
}

.catalog-card p {
  max-width: 360px;
  margin: 0 0 22px;
  color: #3f4148;
  font-size: 15px;
  font-weight: 800;
}

.catalog-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.catalog-card li {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  max-width: 420px;
  color: #5e626b;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.catalog-card li img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  pointer-events: none;
}

.catalog-card li img {
  opacity: 0;
}

.catalog-card li::before {
  content: "";
  width: 16px;
  height: 16px;
  grid-column: 1;
  grid-row: 1;
  margin-top: 1px;
  background: currentColor;
  mask: url("/assets/icon-tabler-circle-check-20260527.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/icon-tabler-circle-check-20260527.svg") center / contain no-repeat;
}

.catalog-card-orange li::before {
  color: #fe4e08;
}

.catalog-card-red li::before {
  color: #f61013;
}

.catalog-card-orange .btn-primary {
  background: #fe4e08;
}

.catalog-card-orange .btn-primary:hover {
  background: #fe4e08;
}

.catalog-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.catalog-card .btn {
  min-height: 48px;
  margin-top: auto;
  align-self: flex-start;
  padding: 0 20px;
  font-size: 13px;
}

.catalog-card .btn-light {
  color: var(--red);
  background: rgba(255, 255, 255, .44);
  border-color: rgba(227, 29, 36, .34);
}

.about {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  min-height: calc(100dvh - 248px);
  padding: 25px 0 40px;
  background: var(--site-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, .76fr) minmax(0, 1.24fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  width: 100%;
  min-height: 360px;
}

.about-copy {
  padding: 18px 0 18px;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 800;
}

.about-copy h2 {
  max-width: 360px;
  margin: 0 0 14px;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.08;
}

.about-copy p {
  max-width: 520px;
  margin: 0 0 16px;
  color: #40434b;
}

.about-copy .btn {
  display: none;
}

.about-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  background: var(--site-bg);
}

.about-map {
  position: relative;
  width: min(1000px, calc(100% + 40px));
  height: clamp(340px, 26vw, 500px);
  isolation: isolate;
  margin-left: -16px;
}

.about-map canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
  padding: 0;
  background: transparent;
}

.about-facts div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: start;
  justify-items: center;
  text-align: center;
  padding: 0;
  border-bottom: 0;
}

.about-facts img {
  width: auto;
  height: 46px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  margin-bottom: 10px;
}

.about-facts strong {
  color: #5a5e66;
  font-size: 13px;
  line-height: 1.32;
}

.about-facts span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.partners {
  padding: 42px 0;
  background: var(--site-bg);
}

.partner-marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid #eee4de;
  border-bottom: 1px solid #eee4de;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 34s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(40px, 5vw, 84px);
  padding-right: clamp(40px, 5vw, 84px);
}

@keyframes partner-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track,
  .scroll-down,
  .scroll-down::after {
    animation: none;
  }

  [data-smak-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1320px) {
  .header-info {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
  }

  .main-nav {
    position: absolute;
    top: 104px;
    left: 20px;
    right: 20px;
    display: none;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    background: rgba(255, 253, 251, .98);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px;
  }

  .menu-button {
    display: block;
  }
}

.partner-logo {
  display: flex;
  flex: 0 1 auto;
  height: 78px;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.partner-logo img {
  width: auto;
  height: 46px;
  max-width: 320px;
  object-fit: contain;
}

.partner-logo-lenta img {
  height: 62px;
}

.partner-logo-x5 img {
  height: 58px;
}

.partner-logo-bahetle img {
  height: 56px;
}

.home-publications {
  padding: 154px 0 64px;
  background: var(--site-bg);
}

.home-publications-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.home-publications-head h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
}

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

.home-publication-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0ded5;
  border-radius: 8px;
  transition: transform .2s ease;
}

.home-publication-grid article:hover {
  transform: translateY(-3px);
}

.home-publication-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-publication-grid span,
.home-publication-grid a {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.home-publication-grid span {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.home-publication-grid a {
  min-height: 86px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 18px;
  background: var(--site-bg);
}

.footer-panel,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) minmax(260px, .9fr) minmax(360px, 1.25fr);
  column-gap: clamp(28px, 3.2vw, 44px);
  align-items: stretch;
  padding: 0;
  background: transparent;
}

.footer-contacts-block { grid-column: 1; }
.footer-lead-form { grid-column: 2; }
.footer-panel > .footer-map { grid-column: 3; }

.footer-contacts-block .footer-brand {
  margin-bottom: 2px;
}

.footer-contacts-block .brand-logo {
  width: 170px;
  height: auto;
}

.footer p,
.footer span,
.footer a {
  color: #545963;
  font-size: 14px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: .01em;
}

.footer-block {
  display: grid;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  align-content: start;
}

.footer-contacts-block {
  align-content: space-between;
  padding-bottom: 4px;
}

.footer-contacts-block .footer-contact-list {
  align-self: center;
}

.footer-brand {
  width: fit-content;
}

.write-link {
  color: var(--red) !important;
  font-weight: 800;
}

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

.footer-legal {
  display: grid;
  gap: 4px;
}

.footer-legal strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.footer-legal span {
  color: #545963;
  font-size: 13px;
  font-weight: 700;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  color: var(--ink) !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.35;
}

.footer-contact-row small {
  color: #858994;
  font-size: 12px;
  font-weight: 700;
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--red) !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 19px !important;
  font-weight: 500;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--red) !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.footer-social-btn:hover {
  color: #fff !important;
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.footer-social-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-social-max svg {
  width: 22px;
  height: 22px;
}

.footer-map {
  position: relative;
  display: block !important;
  min-width: 0;
  min-height: 360px;
  height: 100%;
  align-self: stretch;
}

.footer-map-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  object-fit: cover;
  object-position: center;
}

.footer-map-card {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(260px, calc(100% - 32px));
  padding: 16px 18px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.footer-map-card strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
}

.footer-map-card strong span {
  color: var(--red);
  font-size: 24px;
  line-height: 0;
}

.footer-map-card p {
  margin: 0;
  color: #545963;
  font-size: 15px;
  line-height: 1.55;
}

.footer-map-link {
  width: fit-content;
  color: var(--red) !important;
  font-size: 14px;
  font-weight: 800;
}

.footer-lead-form {
  width: 100%;
  max-width: none;
  margin: 0;
}

.footer-lead-form h3 {
  margin: 0;
}

.footer-lead-form > p {
  margin: 0 0 4px;
  color: #545963;
  font-size: 14px;
  line-height: 1.55;
}

.footer-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.subscribe input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid #e6ddd7;
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.subscribe .btn {
  width: 100%;
  min-height: 56px;
}

.subscribe small {
  min-height: 20px;
  color: var(--red);
}

.footer-consent {
  position: relative;
  margin: 0 !important;
  padding-left: 22px;
  color: #858994 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.footer-consent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 12px;
  height: 12px;
  color: #858994;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17 9V7A5 5 0 0 0 7 7v2H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-1Zm-8 0V7a3 3 0 0 1 6 0v2H9Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17 9V7A5 5 0 0 0 7 7v2H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-1Zm-8 0V7a3 3 0 0 1 6 0v2H9Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.modal-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(39, 39, 45, .34);
  opacity: 0;
  transition: opacity .18s ease;
}

.lead-modal-panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(39, 39, 45, .18);
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
}

.lead-modal.is-open .lead-modal-backdrop {
  opacity: 1;
}

.lead-modal.is-open .lead-modal-panel {
  opacity: 1;
  transform: none;
}

.lead-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-form {
  display: grid;
  gap: 18px;
}

.lead-modal-form h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.12;
}

.lead-modal-form > p {
  margin: 0;
  color: #545963;
  font-size: 15px;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(221, 211, 204, .8);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.catalog-body .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--site-bg);
  border-bottom: 1px solid rgba(227, 216, 208, .7);
}

.catalog-body .main-nav a[href="/opt/"],
.catalog-body .main-nav a[href="/roznica/"] {
  color: var(--red);
}

.investors-body .main-nav a[href="/opt/"],
.investors-body .main-nav a[href="/roznica/"] {
  color: inherit;
}

.investors-body .main-nav a[href="/investors/"] {
  color: var(--red);
}

/* --- Catalog page (опт / розница): breadcrumbs, head, sidebar + grid --- */
.catalog-page {
  padding: 28px 0 72px;
  background: var(--site-bg);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--muted);
  transition: color .2s ease;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs i {
  font-style: normal;
  opacity: .5;
}

.breadcrumbs [aria-current] {
  color: var(--ink);
  font-weight: 700;
}

.catalog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-bottom: 30px;
}

.catalog-head h1 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.015em;
}

.catalog-head-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.retail-head {
  display: grid;
  grid-template-columns: minmax(250px, .9fr) minmax(0, 3fr);
  gap: 28px;
  margin-bottom: 12px;
}

.retail-promotions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.retail-promo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 158px;
  border: 1px solid #f0ded0;
  border-radius: 14px;
  background: #fff3e7;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.retail-promo > img {
  position: absolute;
  z-index: -2;
  right: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.retail-promo::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #fff3e7 25%, rgba(255, 243, 231, .96) 44%, rgba(255, 243, 231, .1) 100%);
}

.retail-promo-birthday::before {
  background: linear-gradient(90deg, #fff0ed 25%, rgba(255, 240, 237, .96) 44%, rgba(255, 240, 237, .1) 100%);
}

.retail-promo-review::before {
  background: linear-gradient(90deg, #f2f4e9 25%, rgba(242, 244, 233, .96) 44%, rgba(242, 244, 233, .1) 100%);
}

.retail-promo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  height: 100%;
  padding: 18px;
  font-size: 12px;
  line-height: 1.4;
}

.retail-promo-copy strong {
  font-size: clamp(18px, 1.3vw, 23px);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.retail-promo-link {
  margin-top: auto;
  color: #b71920;
  font-weight: 700;
}

.retail-promo-link i {
  margin-left: 8px;
  font-style: normal;
}

.retail-promo:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(90, 36, 16, .08);
}

.retail-promo:focus-visible,
.retail-delivery-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.retail-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.retail-promo-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.retail-toolbar .catalog-head-tools {
  flex-shrink: 0;
}

.retail-delivery {
  margin-top: 20px;
  padding: 20px 17px;
  border: 1px solid #f0ded0;
  border-radius: 12px;
  background: #fff8f3;
  font-size: 13px;
  line-height: 1.5;
}

.retail-delivery-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.retail-delivery h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.retail-delivery-intro,
.retail-delivery-remote {
  margin: 0;
  color: #635b55;
}

.retail-delivery-rates {
  margin: 18px 0 14px;
}

.retail-delivery-rates > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  padding: 10px 0;
  border-top: 1px solid #eaded5;
}

.retail-delivery-rates dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.retail-delivery-rates small {
  display: block;
  color: #635b55;
  font-size: 11px;
  font-weight: 400;
}

.retail-delivery-link {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 18px;
  color: #b71920;
  font-weight: 700;
}

@media (max-width: 1320px) {
  .retail-head { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 1080px) {
  .retail-body .catalog-aside { min-width: 0; }
  .retail-delivery { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-top: 14px; }
  .retail-delivery-icon { display: none; }
  .retail-delivery h2 { margin: 0; }
  .retail-delivery-intro { grid-column: 1; }
  .retail-delivery-rates { grid-column: 2; grid-row: 1 / 4; margin: 0; }
  .retail-delivery-link { margin-top: 4px; }
}

@media (max-width: 720px) {
  .retail-promotions { grid-template-columns: 1fr; gap: 10px; }
  .retail-promo { min-height: 124px; }
  .retail-promo > img { width: 50%; }
  .retail-promo-copy { padding: 14px 18px; gap: 5px; }
  .retail-promo-copy strong { font-size: 21px; }
  .retail-promo-copy strong br { display: none; }
  .retail-promo-copy strong { max-width: 68%; }
  .retail-toolbar { flex-direction: column; align-items: stretch; gap: 16px; margin-top: 14px; }
  .retail-delivery { grid-template-columns: 1fr; padding: 18px; }
  .retail-delivery-rates { grid-column: 1; grid-row: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .retail-delivery-rates > div { display: block; }
  .retail-delivery-rates dd { text-align: left; margin-top: 3px; }
  .retail-body .product-buy { flex-direction: column; align-items: stretch; }
  .retail-body .product-qty { justify-content: space-between; }
  .retail-body .product-cart { flex: 0 0 44px; padding: 0 8px; }
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-actions .btn {
  min-width: 150px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.catalog-aside {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 6px;
}

.aside-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
}

.catalog-cats {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.cat-link span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.cat-link:hover {
  color: var(--red);
  background: #fff;
}

.cat-link.is-active {
  color: var(--red);
  background: #fff1ee;
}

.cat-link.is-active span {
  color: var(--red);
}

.cat-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.aside-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 13px 16px;
  color: var(--red);
  background: #fff;
  border: 1px solid #f1d9cf;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  transition: border-color .2s ease;
}

.aside-switch:hover {
  border-color: var(--red);
}

.catalog-main {
  min-width: 0;
}

.product-category {
  margin-top: 54px;
}

.product-category:first-of-type {
  margin-top: 0;
}

.product-category h3 {
  margin: 0 0 22px;
  font-size: 26px;
  line-height: 1.2;
}

.product-grid,
.product-grid-retail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eef0f2;
  border-radius: 14px;
  transition: transform .25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 234px;
  padding: 22px 22px 6px;
  overflow: hidden;
}

.product-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-mark {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 4px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.product-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #c7ccd2;
  background: none;
  border: 0;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, transform .15s ease;
}

.product-fav:hover {
  color: var(--red);
  transform: scale(1.12);
}

.product-fav.is-active {
  color: var(--red);
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 4px 18px 20px;
  text-align: center;
}

.product-info h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.product-descr {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.product-price {
  margin: 4px 0 2px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.product-price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.product-editions {
  width: 100%;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  text-align: left;
}

.product-editions legend {
  margin-bottom: 6px;
  padding: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.product-editions label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 0;
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
}

.product-editions label.is-disabled {
  color: #b7bcc3;
  cursor: not-allowed;
}

.product-editions input {
  margin: 0;
  accent-color: var(--red);
}

.product-buy {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
}

.product-qty {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #e3e6ea;
  border-radius: 9px;
}

.product-qty button {
  width: 34px;
  height: 44px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  transition: background .15s ease;
}

.product-qty button:hover {
  background: #f6f2ef;
}

.product-qty input {
  width: 30px;
  height: 44px;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.product-cart {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 14px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .12s ease;
}

.product-cart:hover {
  background: var(--red-dark);
}

.product-cart:active {
  transform: translateY(1px);
}

.product-oos {
  width: 100%;
  height: 44px;
  margin-top: auto;
  color: #fff;
  background: #e8a7a3;
  border: 0;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  cursor: not-allowed;
}

.catalog-contact {
  padding: 46px 0;
  color: #fff;
  background: linear-gradient(90deg, #ff6a16 0%, #ed1d24 100%);
}

.catalog-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.catalog-contact h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.15;
}

.catalog-contact p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
}

.catalog-contact .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .58);
}

/* --- Information pages: delivery and promotions --- */
.info-body .site-header {
  position: relative;
  background: rgba(255, 253, 251, .97);
  border-bottom: 1px solid var(--line);
}

.info-body .main-nav a[aria-current="page"] {
  color: var(--red);
}

.info-hero {
  padding: 58px 0 70px;
  background:
    radial-gradient(circle at 84% 22%, rgba(238, 83, 46, .13), transparent 30%),
    #f8f2ed;
}

.actions-hero {
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 106, 22, .17), transparent 32%),
    #f8f2ed;
}

.info-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.info-kicker,
.action-label {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.info-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Smak Display", Inter, sans-serif;
  font-size: clamp(52px, 6.5vw, 104px);
  line-height: .9;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.info-hero-grid > div > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.info-hero-note {
  display: grid;
  gap: 5px;
  padding: 27px 29px 29px;
  color: #fff;
  background: var(--red);
  border-radius: 3px 28px 3px 3px;
}

.info-hero-note span,
.info-hero-note small {
  color: rgba(255, 255, 255, .75);
}

.info-hero-note span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.info-hero-note strong {
  font-size: 25px;
  line-height: 1.15;
}

.info-hero-note small {
  margin-top: 4px;
  font-size: 13px;
}

.info-section {
  padding: 88px 0 102px;
  background: #fff;
}

.info-section-tinted {
  background: var(--site-bg);
}

.info-section-head {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 38px;
}

.info-section-head > span,
.info-number,
.action-index {
  color: var(--red);
  font: 800 13px/1 monospace;
  letter-spacing: .08em;
}

.info-section h2,
.info-contact h2,
.action-item h2 {
  margin: 0;
  font-size: clamp(29px, 3vw, 46px);
  line-height: 1.03;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.info-section-head p {
  margin: 9px 0 0;
  color: var(--muted);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px 28px 3px 3px;
}

.delivery-card {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  padding: clamp(28px, 4vw, 54px);
  background: #fff;
}

.delivery-card.is-accent {
  color: #fff;
  background: var(--red);
}

.delivery-card-wide {
  grid-column: 1 / -1;
  min-height: 230px;
}

.delivery-zone {
  font-size: 15px;
  font-weight: 800;
}

.delivery-card > strong {
  margin: 25px 0;
  font-family: "Smak Display", Inter, sans-serif;
  font-size: clamp(38px, 5vw, 74px);
  line-height: .95;
  font-variant-numeric: tabular-nums;
}

.delivery-card p,
.delivery-card small {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.delivery-card.is-accent p {
  color: rgba(255, 255, 255, .8);
}

.delivery-card small {
  margin-top: 13px;
}

.delivery-page-head {
  padding: 32px 0 42px;
  background: #fff;
}

.delivery-page-title {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 70px;
  align-items: end;
}

.delivery-page-title h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Smak Display", Inter, sans-serif;
  font-size: clamp(46px, 5.4vw, 84px);
  line-height: .92;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.delivery-page-title > p {
  max-width: 560px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.delivery-pricing {
  padding: 68px 0 82px;
  background: #f8f2ed;
}

.delivery-pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.delivery-pricing-head span:first-child {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.delivery-pricing-head h2,
.delivery-steps-panel h2 {
  margin: 6px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.03em;
}

.delivery-zone-grid {
  display: grid;
  grid-template-columns: .86fr .86fr 1.28fr;
  gap: 1px;
  overflow: hidden;
  background: #ded3cb;
  border: 1px solid #ded3cb;
  border-radius: 4px 28px 4px 4px;
}

.delivery-zone-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3.2vw, 48px);
  background: #fff;
}

.delivery-zone-card.is-red {
  color: #fff;
  background: var(--red);
}

.delivery-zone-card.is-remote {
  background:
    radial-gradient(circle at 90% 12%, rgba(237, 29, 36, .12), transparent 34%),
    #fff;
}

.delivery-zone-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 800;
}

.delivery-zone-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #f8f1eb;
  border-radius: 50%;
}

.delivery-zone-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.is-red .delivery-zone-icon {
  background: rgba(255, 255, 255, .16);
}

.delivery-zone-card > strong {
  max-width: 540px;
  margin: 42px 0;
  font-family: "Smak Display", Inter, sans-serif;
  font-size: clamp(58px, 6.2vw, 96px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.delivery-zone-card > strong small {
  font-size: .58em;
}

.delivery-zone-card.is-remote > strong {
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: .92;
}

.delivery-free-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.delivery-free-line b {
  color: var(--ink);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.is-red .delivery-free-line {
  color: rgba(255, 255, 255, .68);
  border-top-color: rgba(255, 255, 255, .28);
}

.is-red .delivery-free-line b {
  color: #fff;
}

.delivery-remote-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
  padding: 21px 26px;
  background: #fff;
  border: 1px solid #e7ddd6;
  border-top: 0;
}

.delivery-remote-note > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.delivery-remote-note p {
  max-width: 1050px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.delivery-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  background: #e3d8d1;
  border: 1px solid #e3d8d1;
  border-radius: 4px;
}

.delivery-facts div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 3px 16px;
  align-items: center;
  min-height: 112px;
  padding: 22px 26px;
  background: #fff;
}

.delivery-facts img {
  grid-row: 1 / span 2;
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.delivery-facts span {
  color: var(--muted);
  font-size: 12px;
}

.delivery-facts strong {
  font-size: 18px;
  line-height: 1.15;
}

.delivery-caption {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.delivery-details {
  padding: 94px 0 106px;
  background: #fff;
}

.delivery-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(48px, 8vw, 126px);
}

.delivery-steps-panel {
  padding-top: 10px;
}

.delivery-steps {
  display: grid;
  gap: 0;
  margin: 42px 0 28px;
  padding: 0;
  list-style: none;
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.delivery-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.delivery-steps li > span {
  padding-top: 3px;
  color: var(--red);
  font: 800 12px/1 monospace;
}

.delivery-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.delivery-steps p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

.delivery-text-link,
.delivery-option-card > a {
  display: inline-flex;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.delivery-option-stack {
  display: grid;
  gap: 16px;
}

.delivery-option-card {
  position: relative;
  overflow: hidden;
  padding: 32px 34px 34px;
  background: #f8f2ed;
  border-radius: 4px 24px 4px 4px;
}

.delivery-option-card.payment-methods {
  background: #292527;
  color: #fff;
}

.delivery-option-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
  place-items: center;
  background: #fff;
  border-radius: 50%;
}

.delivery-option-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.delivery-option-card > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.delivery-option-card h3 {
  margin: 5px 0 8px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.025em;
}

.delivery-option-card > p {
  margin: 0 0 16px;
  color: var(--muted);
}

.pickup-card .schedule {
  margin: 12px 0 19px;
}

.payment-method-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.payment-method-list span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 4px;
  font-size: 12px;
}

/* --- Compact information pages --- */
.content-page-head {
  padding: 30px 0 34px;
  background: #f8f2ed;
  border-bottom: 1px solid #e8ddd6;
}

.content-page-head .breadcrumbs {
  margin-bottom: 15px;
}

.content-page-head h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.content-page {
  padding: 60px 0 84px;
  background: #fff;
}

.content-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 880px);
  gap: clamp(46px, 7vw, 112px);
  align-items: start;
}

.content-nav {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 0;
  padding: 20px 0;
  border-top: 2px solid var(--red);
}

.content-nav > span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.content-nav a {
  padding: 10px 0;
  color: #55545a;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  transition: color .2s ease;
}

.content-nav a:hover {
  color: var(--red);
}

.content-main {
  min-width: 0;
}

.content-article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.content-number {
  padding-top: 9px;
  color: var(--red);
  font: 800 12px/1 monospace;
}

.content-article h2,
.content-advantages h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.content-article p {
  max-width: 760px;
  margin: 0 0 14px;
  color: #55545a;
  line-height: 1.7;
}

.content-article ul {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin: 12px 0 20px;
  padding-left: 20px;
  color: #55545a;
}

.content-article li::marker {
  color: var(--red);
}

.content-article a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-note {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 18px 20px;
  background: #f8f2ed;
  border-left: 3px solid var(--red);
}

.content-note p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.content-tariffs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 23px 0 25px;
}

.content-tariffs > div {
  display: grid;
  gap: 5px;
  min-height: 108px;
  align-content: center;
  padding: 18px 20px;
  background: #f8f2ed;
  border-radius: 5px;
}

.content-tariffs > div:last-child {
  grid-column: 1 / -1;
}

.content-tariffs span,
.content-tariffs small {
  color: var(--muted);
  font-size: 12px;
}

.content-tariffs strong {
  font-size: 22px;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.content-warning {
  margin-top: 22px !important;
  padding: 13px 16px;
  color: var(--ink) !important;
  background: #fff1ee;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.content-schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 20px;
}

.content-schedule > div {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  background: #f8f2ed;
  border-radius: 5px;
}

.content-schedule span,
.content-schedule small {
  color: var(--muted);
  font-size: 12px;
}

.content-schedule strong {
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.content-advantages {
  scroll-margin-top: 24px;
}

.content-advantages-head {
  margin-bottom: 25px;
}

.content-advantages-head > span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.content-advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.content-advantages-grid article {
  min-height: 260px;
  padding: 28px;
  background: #fff;
}

.content-advantages-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  object-fit: contain;
}

.content-advantages-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.content-advantages-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.promotion-article {
  padding-bottom: 58px;
  margin-bottom: 58px;
}

.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.review-links a {
  padding: 11px 15px;
  color: var(--ink);
  background: #f8f2ed;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
}

.actions-content .content-article h2 {
  max-width: 720px;
}

.actions-content {
  padding-top: 34px;
}

.promotions-list {
  display: grid;
}

.promotion-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  padding: 48px 0 62px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.promotion-feature:first-child {
  padding-top: 0;
}

.promotion-feature.is-reverse .promotion-media {
  grid-column: 2;
  grid-row: 1;
}

.promotion-feature.is-reverse .promotion-copy {
  grid-column: 1;
  grid-row: 1;
}

.promotion-media {
  position: relative;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: #f3ebe5;
  border-radius: 4px 22px 4px 4px;
}

.promotion-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(77, 45, 37, .08);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.promotion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.promotion-feature:hover .promotion-media img {
  transform: scale(1.025);
}

.promotion-copy {
  max-width: 680px;
}

.promotion-copy .content-number {
  display: block;
  margin-bottom: 15px;
  padding: 0;
}

.promotion-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(27px, 2.7vw, 38px);
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.promotion-copy p {
  max-width: 650px;
  margin: 0 0 15px;
  color: #55545a;
  line-height: 1.7;
}

.promotion-copy ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 20px;
  padding-left: 20px;
  color: #55545a;
}

.promotion-copy li::marker {
  color: var(--red);
}

.promotion-copy a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-body .info-contact h2 {
  font-size: clamp(32px, 3.4vw, 48px);
}

.info-body .info-contact {
  padding-top: 68px;
  padding-bottom: 74px;
}

.info-alert {
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  color: var(--muted);
  font-size: 14px;
}

.info-columns {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: clamp(34px, 6vw, 90px);
}

.info-columns article {
  display: grid;
  align-content: start;
  gap: 17px;
}

.info-columns h2 {
  font-size: clamp(26px, 2.5vw, 38px);
}

.info-columns p {
  margin: 0;
  color: var(--muted);
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.info-list li {
  position: relative;
  padding-left: 19px;
}

.info-list li::before {
  position: absolute;
  top: .68em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.info-list a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.schedule {
  margin: 0;
}

.schedule div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.schedule dt {
  color: var(--muted);
}

.schedule dd {
  margin: 0;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.actions-list {
  display: grid;
}

.action-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 62px);
  align-items: start;
  padding: 52px 0 58px;
  border-top: 1px solid var(--line);
}

.action-item:last-child {
  border-bottom: 1px solid var(--line);
}

.action-item h2 {
  max-width: 750px;
  font-size: clamp(29px, 3.3vw, 50px);
}

.action-item p {
  max-width: 780px;
  margin: 17px 0;
  color: var(--muted);
}

.action-item a,
.text-action {
  padding: 0 0 4px;
  color: var(--red);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.action-value {
  color: var(--red);
  font-family: "Smak Display", Inter, sans-serif;
  font-size: clamp(36px, 4vw, 68px);
  line-height: .9;
  white-space: nowrap;
}

.info-contact {
  padding: 82px 0 92px;
  color: #fff;
  background: #282426;
}

.info-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}

.info-contact h2 {
  font-size: clamp(42px, 5.5vw, 78px);
}

.info-contact-grid > div > p {
  max-width: 560px;
  color: rgba(255, 255, 255, .65);
  font-size: 18px;
}

.info-lead {
  display: grid;
  gap: 14px;
}

.info-lead label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
}

.info-lead input,
.info-lead textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  outline: 0;
  font: inherit;
}

.info-lead textarea {
  min-height: 92px;
  resize: vertical;
}

.info-lead input:focus,
.info-lead textarea:focus {
  border-color: #ff8b61;
}

.info-lead .btn {
  width: 100%;
  margin-top: 4px;
}

.info-lead small {
  min-height: 19px;
  color: #ffc7b3;
}

.info-lead > p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
}

.info-footer {
  padding: 23px 0;
  color: rgba(255, 255, 255, .65);
  background: #1d1a1b;
  font-size: 13px;
}

.info-footer .container {
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

/* --- Catalog controls: count, sort, empty state --- */
.product-count {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.product-count b {
  color: var(--ink);
  font-weight: 800;
}

.shop-sort {
  height: 46px;
  padding: 0 40px 0 16px;
  color: var(--ink);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2327272d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 15px center;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s ease;
}

.shop-sort:hover {
  border-color: #f1c0b2;
}

.shop-sort:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.shop-empty {
  display: none;
  padding: 60px 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
}

.shop-empty.is-visible {
  display: block;
}

.product-category[hidden],
.product-card[hidden] {
  display: none;
}

/* --- Investors page --- */
.investors-page {
  background: var(--site-bg);
}

.investors-hero {
  padding: 24px 0 30px;
  background: var(--site-bg);
  border-bottom: 1px solid var(--line);
}

.investors-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-top: 16px;
}

.investors-hero-copy h1,
.investor-section h2 {
  text-wrap: balance;
}

.investors-hero-copy h1 {
  max-width: 720px;
  margin: 0 0 12px;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.04;
}

.investors-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: #42454d;
  font-size: 17px;
}

.investors-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.investors-summary div {
  min-height: 104px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.investors-summary span,
.investors-summary small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.investors-summary strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  font-variant-numeric: tabular-nums;
}

.investor-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.investor-anchors a {
  padding: 10px 14px;
  color: #3b3e45;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease;
}

.investor-anchors a:hover {
  color: var(--red);
  border-color: rgba(227, 29, 36, .34);
}

.investor-section {
  padding: 68px 0;
  background: var(--site-bg);
  border-top: 1px solid var(--line);
}

.investor-section-muted {
  background: var(--site-bg);
}

.investor-two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.investor-section h2 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
}

.investor-section p {
  max-width: 720px;
  margin: 0 0 16px;
  color: #40434b;
  font-size: 16px;
}

.investor-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.investor-fact-grid article,
.investor-contact-grid article,
.publication-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.investor-fact-grid article {
  min-height: 150px;
  padding: 24px;
}

.investor-fact-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
}

.investor-fact-grid span {
  color: var(--muted);
  font-size: 14px;
}

.appeal-panel {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
}

.appeal-photo {
  margin: 0;
}

.appeal-photo img {
  width: 100%;
  max-width: 255px;
  border-radius: 8px;
}

.appeal-photo figcaption {
  display: grid;
  gap: 4px;
  margin-top: 14px;
}

.appeal-photo strong {
  font-size: 16px;
}

.appeal-photo span {
  color: var(--muted);
  font-size: 14px;
}

.appeal-text {
  position: relative;
  padding-left: 34px;
  border-left: 3px solid var(--red);
}

.appeal-author {
  display: grid;
  gap: 3px;
  margin-top: 24px;
  font-size: 15px;
}

.appeal-author span {
  color: var(--muted);
}

.investor-section-head {
  margin-bottom: 26px;
}

.investor-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.investor-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.investor-table th,
.investor-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.investor-table tr:last-child th,
.investor-table tr:last-child td {
  border-bottom: 0;
}

.investor-table th {
  width: 31%;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.investor-table td {
  color: var(--ink);
  font-weight: 700;
}

.investor-table a {
  color: var(--red);
}

.document-groups {
  display: grid;
  gap: 14px;
}

.document-group {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.document-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.document-group summary::after {
  content: "+";
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.document-group[open] summary::after {
  content: "-";
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 0;
  padding: 0 24px 22px;
  list-style: none;
}

.document-list li {
  border-top: 1px solid var(--line);
}

.document-list a {
  display: block;
  padding: 13px 0;
  color: #3d4149;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}

.document-list a:hover {
  color: var(--red);
}

.investor-bonds-table th {
  width: auto;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.issue-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.issue-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.issue-card h3 {
  margin: 0;
  font-size: 22px;
}

.issue-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.issue-card dl div {
  display: grid;
  grid-template-columns: minmax(140px, .6fr) 1fr;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.issue-card dt,
.issue-card dd {
  margin: 0;
  font-size: 14px;
}

.issue-card dt {
  color: var(--muted);
  font-weight: 800;
}

.issue-card dd {
  color: var(--ink);
  font-weight: 800;
}

.coupon-groups {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.coupon-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.coupon-group summary {
  padding: 18px 22px;
  font-weight: 900;
  cursor: pointer;
}

.coupon-table-wrap {
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 0 8px 8px;
}

.coupon-table {
  min-width: 980px;
}

.coupon-table th,
.coupon-table td {
  width: auto;
  padding: 12px 14px;
  font-size: 13px;
  white-space: nowrap;
}

.bond-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.bond-status.is-active {
  color: var(--red);
  border-color: rgba(227, 29, 36, .34);
}

.bond-status.is-closed {
  color: var(--muted);
}

.investor-contact-grid {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.investor-contact-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 220px;
  padding: 26px;
}

.investor-contact-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.investor-contact-grid p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.investor-contact-grid a {
  color: var(--red);
  font-weight: 800;
}

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

.publication-grid article {
  display: grid;
  align-content: start;
  overflow: hidden;
  min-height: 260px;
}

.publication-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.publication-grid span {
  margin: 16px 18px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.publication-grid a {
  margin: 0 18px 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.publication-grid a:hover {
  color: var(--red);
}

.investor-disclaimer {
  max-width: 900px;
  margin: 28px 0 0 !important;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.article-page {
  padding: 24px 0 72px;
  background: var(--site-bg);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(28px, 3.2vw, 52px);
  align-items: start;
}

.local-article {
  max-width: none;
  min-width: 0;
}

.local-article-head {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.article-back {
  width: fit-content;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.local-article h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
  text-wrap: balance;
}

.local-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.local-article-meta span {
  color: var(--red);
}

.local-article-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.local-article-body {
  max-width: 980px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.72;
}

.local-article-body p,
.local-article-body blockquote,
.local-article-body ul,
.local-article-body ol {
  margin: 0 0 22px;
}

.local-article-body a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.local-article-body blockquote {
  padding: 24px 28px;
  background: #fff;
  border-left: 4px solid var(--red);
  border-radius: 8px;
}

.local-article-body img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.local-article-body figure {
  margin: 0 0 22px;
}

.local-article-body .imper-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 22px;
}

.local-article-body .imper-column {
  min-width: 0;
}

.article-aside {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.article-aside-block {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-aside-cta {
  display: grid;
  gap: 8px;
}

.article-aside-cta span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-aside-cta strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.article-aside-cta a {
  width: fit-content;
  margin-top: 6px;
  color: var(--red);
  font-weight: 900;
}

.article-aside h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

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

.article-side-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--ink);
}

.article-side-card img {
  grid-row: span 2;
  width: 92px;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 8px;
}

.article-side-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.article-side-card strong {
  font-size: 14px;
  line-height: 1.25;
  transition: color .2s ease;
}

.article-side-card:hover strong {
  color: var(--red);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
  }

  .header-info {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 104px;
    left: 20px;
    right: 20px;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    background: rgba(255, 253, 251, .96);
    border: 1px solid var(--line);
    border-radius: 8px;
    }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px;
  }

  .menu-button {
    display: block;
  }

  .hero {
    background-position: 58% bottom;
  }

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

  .home-publication-grid,
  .investors-summary,
  .issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    background: #fff;
  }

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

  .about-copy {
    padding-right: 0;
  }

  .about-image {
    min-height: 330px;
  }

  .about-map {
    height: clamp(300px, 58vw, 420px);
    margin-left: 0;
    width: 100%;
  }

  .about-facts {
    max-width: 680px;
    padding: 0;
  }

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

  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .info-hero-grid,
  .info-contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .info-hero-note {
    max-width: 520px;
  }

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

  .delivery-page-title,
  .delivery-details-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .delivery-page-title > p {
    max-width: 700px;
  }

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

  .delivery-zone-card.is-remote {
    grid-column: 1 / -1;
    min-height: 270px;
  }

  .delivery-facts {
    grid-template-columns: 1fr;
  }

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

  .content-shell {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 42px;
  }

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

  .catalog-aside {
    position: static;
  }

  .investors-hero-grid,
  .investor-two-col,
  .appeal-panel,
  .investor-contact-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    grid-template-columns: 1fr;
  }

  .local-article h1 {
    font-size: clamp(34px, 7vw, 54px);
  }

  .local-article-body .imper-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 28px;
  }

  .footer-contacts-block { grid-column: 1; grid-row: 1; }
  .footer-panel > .footer-lead-form { grid-column: 2; grid-row: 1; }
  .footer-panel > .footer-map {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 360px;
    min-height: 360px;
  }

  .footer-lead-form {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .aside-title,
  .aside-switch {
    display: none;
  }

  .catalog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .cat-link {
    width: auto;
    padding: 9px 15px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
  }

  .cat-link.is-active {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
  }

  .cat-link.is-active span {
    color: rgba(255, 255, 255, .8);
  }

  .partner-row,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .partner-logo {
    flex-basis: 28%;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 14px;
  }

  .container {
    width: 100%;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 80px;
    gap: 10px;
  }

  .brand {
    gap: 12px;
    min-width: 0;
  }

  .brand-logo {
    width: 96px;
  }

  .brand-note,
  .phone {
    display: none;
  }

  .header-cta {
    justify-self: end;
    min-height: 42px;
    padding: 0 13px;
    font-size: 12px;
  }

  .main-nav {
    top: 80px;
    left: 14px;
    right: 14px;
  }

  .home-body main {
    overflow-x: clip;
  }

  .hero {
    background-position: 76% bottom;
    background-size: cover;
  }

  .hero-grid {
    align-items: stretch;
    min-height: calc(100vh / var(--smak-zoom, 1));
    min-height: calc(100svh / var(--smak-zoom, 1));
    padding-top: clamp(104px, 14svh, 132px);
    padding-bottom: 104px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .scroll-down {
    bottom: 28px;
    width: 44px;
    height: 44px;
  }

  .hero-copy h1 {
    max-width: 560px;
    margin-bottom: 24px;
    font-size: clamp(34px, 10vw, 64px);
    line-height: .96;
  }

  .hero-eyebrow {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .catalog-grid,
  .feature-grid,
  .partner-row,
  .footer-grid,
  .home-publication-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 460px;
    margin-top: auto;
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 10px;
    gap: 8px;
    font-size: clamp(12px, 2.8vw, 14px);
    line-height: 1.2;
  }

  .catalog-body .site-header {
    position: relative;
  }

  .catalog-actions {
    display: grid;
  }

  .catalog-page {
    padding: 20px 0 50px;
  }

  .info-hero {
    padding: 36px 0 48px;
  }

  .delivery-page-head {
    padding: 22px 0 34px;
  }

  .delivery-page-title {
    gap: 20px;
  }

  .delivery-page-title h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .delivery-page-title > p {
    font-size: 15px;
  }

  .delivery-pricing,
  .delivery-details {
    padding: 54px 0 62px;
  }

  .delivery-pricing-head {
    align-items: start;
    flex-direction: column;
  }

  .delivery-pricing-head .btn {
    width: 100%;
  }

  .delivery-zone-grid,
  .delivery-option-stack {
    grid-template-columns: 1fr;
  }

  .delivery-zone-card,
  .delivery-zone-card.is-remote {
    grid-column: 1;
    min-height: 265px;
    padding: 26px;
  }

  .delivery-zone-card > strong {
    margin: 32px 0;
    font-size: 72px;
  }

  .delivery-zone-card.is-remote > strong {
    font-size: 39px;
  }

  .delivery-remote-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .delivery-facts div {
    min-height: 100px;
    padding: 19px;
  }

  .delivery-details-grid {
    gap: 42px;
  }

  .delivery-steps-panel h2 {
    font-size: 40px;
  }

  .delivery-option-card {
    padding: 27px 25px 29px;
  }

  .content-page-head {
    padding: 22px 0 27px;
  }

  .content-page-head h1 {
    font-size: 34px;
  }

  .content-page {
    padding: 38px 0 58px;
  }

  .content-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .content-nav {
    position: static;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 12px 0 5px;
    border-top-width: 1px;
    scrollbar-width: none;
  }

  .content-nav::-webkit-scrollbar,
  .content-nav > span {
    display: none;
  }

  .content-nav a {
    flex: 0 0 auto;
    padding: 9px 12px;
    background: #f8f2ed;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
  }

  .content-article {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 36px;
    margin-bottom: 36px;
  }

  .content-number {
    padding-top: 7px;
  }

  .content-article h2,
  .content-advantages h2 {
    margin-bottom: 14px;
    font-size: 25px;
  }

  .content-article p,
  .content-article ul {
    font-size: 14px;
  }

  .content-tariffs,
  .content-schedule,
  .content-advantages-grid {
    grid-template-columns: 1fr;
  }

  .content-tariffs > div:last-child {
    grid-column: 1;
  }

  .content-advantages-grid article {
    min-height: 0;
    padding: 24px;
  }

  .promotion-article {
    padding-bottom: 38px;
    margin-bottom: 38px;
  }

  .actions-content {
    padding-top: 22px;
  }

  .promotion-feature,
  .promotion-feature.is-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0 40px;
  }

  .promotion-feature.is-reverse .promotion-media,
  .promotion-feature.is-reverse .promotion-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .promotion-feature.is-reverse .promotion-media {
    order: 0;
  }

  .promotion-feature.is-reverse .promotion-copy {
    order: 1;
  }

  .promotion-media {
    border-radius: 4px 16px 4px 4px;
  }

  .promotion-copy h2 {
    font-size: 27px;
  }

  .info-hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .info-hero-note {
    padding: 23px;
  }

  .info-section,
  .info-contact {
    padding: 58px 0 66px;
  }

  .info-section-head {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .delivery-grid,
  .info-columns {
    grid-template-columns: 1fr;
  }

  .delivery-card,
  .delivery-card-wide {
    grid-column: 1;
    min-height: 220px;
  }

  .action-item {
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding: 38px 0 42px;
  }

  .action-value {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-bottom: 68px;
    font-size: 35px;
  }

  .action-item > div:nth-child(2) {
    grid-column: 1 / -1;
  }

  .info-contact-grid {
    gap: 34px;
  }

  .info-footer .container {
    display: grid;
    gap: 8px;
  }

  .catalog-head-tools {
    width: 100%;
    justify-content: space-between;
  }

  .shop-sort {
    flex: 1;
  }

  .catalog-cats {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .catalog-cats::-webkit-scrollbar {
    display: none;
  }

  .cat-link {
    white-space: nowrap;
  }

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

  .product-card,
  .product-card-retail {
    grid-template-rows: 220px 1fr;
  }

  .product-info h4 {
    min-height: 0;
  }

  .partner-row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 16px;
  }

  .partner-logo {
    flex-basis: auto;
    height: 44px;
  }

  .partner-logo img {
    height: 34px;
    max-width: 300px;
  }

  .partner-logo-lenta img,
  .partner-logo-x5 img,
  .partner-logo-bahetle img {
    height: 44px;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 34px;
    text-align: center;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .feature-grid {
    gap: 34px;
  }

  .feature-grid p {
    max-width: 260px;
  }

  .catalog-card {
    min-height: 384px;
    aspect-ratio: auto;
    padding: 36px 30px;
  }

  .catalog-photo {
    width: 100%;
  }

  .catalog-card-orange,
  .catalog-card-red {
    background-position: center;
  }

  .about-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-image {
    min-height: 300px;
  }

  .about-map {
    height: 310px;
    margin-left: 0;
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-panel {
    min-height: 0;
    padding: 0;
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 22px;
  }

  .footer-contacts-block,
  .footer-panel > .footer-lead-form,
  .footer-panel > .footer-map {
    grid-column: 1;
    grid-row: auto;
  }

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

  .footer-contact-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    font-size: 16px !important;
  }

  .footer-contact-icon {
    width: 44px;
    height: 44px;
    font-size: 19px !important;
  }

  .footer-map-image {
    height: 100%;
  }

  .footer-map {
    height: 420px;
  }

  .footer-map-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .investors-hero {
    padding-bottom: 38px;
  }

  .investors-summary,
  .investor-fact-grid,
  .document-list,
  .publication-grid,
  .issue-grid {
    grid-template-columns: 1fr;
  }

  .home-publications-head {
    align-items: start;
    flex-direction: column;
  }

  .home-publications-head .btn {
    width: 100%;
  }

  .investor-section {
    padding: 48px 0;
  }

  .appeal-text {
    padding-left: 20px;
  }

  .investors-summary div {
    min-height: 116px;
  }

  .issue-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .article-side-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .article-side-card img {
    width: 82px;
  }
}

/* Review verification and checkout coupon. */
.review-claim { margin-top: 24px; padding: 24px; border: 1px solid #eeddd2; border-radius: 14px; background: #fff8f3; }
.promotion-copy .review-claim .btn-primary { color: #fff; text-decoration: none; }
.review-claim h3 { margin: 0 0 12px; font-size: 22px; }
.review-claim ol { padding-left: 22px; }
.review-claim li { padding-left: 4px; margin-bottom: 12px; }
.review-claim > p { margin-bottom: 0; font-size: 13px; }
.shop-promo { padding: 18px; border: 1px solid #eeddd2; border-radius: 12px; background: #fff8f3; }
.shop-promo-controls { display: flex; gap: 8px; margin-top: 8px; }
.shop-promo-controls input { min-width: 0; flex: 1; }
.shop-promo-controls button { padding: 10px 14px; border: 1px solid #f0b2a3; border-radius: 8px; background: white; color: #b71920; font: inherit; font-weight: 700; cursor: pointer; }
.shop-promo-controls button:disabled { opacity: .6; cursor: wait; }
.shop-promo p { margin: 10px 0 0; font-size: 12px; line-height: 1.5; color: #635b55; }
.shop-promo-summary { display: flex; justify-content: space-between; gap: 12px; margin-top: 12px; font-size: 14px; }
@media (max-width: 480px) {
 .shop-promo-controls { flex-wrap: wrap; }
 .shop-promo-controls input { flex-basis: 100%; }
 .review-claim { padding: 18px; }
}

@media (max-width: 380px) {
  .hero-actions .btn span[aria-hidden] {
    display: none;
  }
}

@media (max-width: 720px) and (max-height: 650px) {
  .hero {
    background-image:
      linear-gradient(to bottom, rgba(255, 247, 235, .15), rgba(255, 247, 235, .78) 40%, transparent 62%),
      url("/assets/smak-hero-header-20260527-154949.png");
  }
}

@media (min-width: 500px) and (max-width: 720px) and (max-height: 500px) {
  .hero-grid {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .hero-copy h1 {
    max-width: 400px;
    margin-bottom: 12px;
    font-size: 32px;
  }

  .hero-eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .scroll-down {
    bottom: 16px;
    width: 36px;
    height: 36px;
  }
}
