@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 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 textarea:focus {
  border-color: var(--red);
}

.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 {
  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;
  }
}

.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;
}

.catalog-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -12px 0 30px;
}

.catalog-quick-actions .btn {
  min-height: 48px;
}

.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);
}

/* --- 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;
  }

  .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;
  }

  .hero {
    min-height: 0;
    background:
      url("/assets/smak-hero-header-20260527-154949.png") 67% bottom / auto 58% no-repeat,
      var(--site-bg);
  }

  .hero-grid {
    min-height: calc(100vh / var(--smak-zoom, 1));
    min-height: calc(100svh / var(--smak-zoom, 1));
    padding-top: 112px;
    padding-bottom: 320px;
  }

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

  .hero-copy h1 {
    font-size: clamp(42px, 11vw, 64px);
    line-height: .94;
  }

  .hero-eyebrow {
    font-size: 15px;
  }

  .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;
  }

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

  .catalog-actions {
    display: grid;
  }

  .catalog-quick-actions {
    display: grid;
  }

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

  .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;
  }
}
