﻿
@font-face {
  font-family: 'Graphik LC Web';
  src: url('/fonts/Graphik LC Web Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

@media (min-width: 768px) and (max-width: 1600px) {
  html {
      font-size: 1vw !important;
  }
}

@media (min-width: 1600.02px) {
  html {
      font-size: 16px !important;
  }
}


@media (max-width: 767.98px) {
  html {
      font-size: 2.8vw !important;
  }
}

body {
  font-family: 'Graphik LC Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.55;
  overflow-x: hidden;
}

a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; }
ul   { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --blue:       #2D3178;
  --blue-hover: #232662;
  --red:        #E2001A;
  --red-hover:  #cc071e;
  --white:      #ffffff;
  --gray-text:  #6b7280;
  --border:     #e5e7eb;
  --bg-light:   #f8f8fb;

  --container:  95rem;
  /* --container: 1440px; */
  --header-h:   8.75rem;
  --gap:        1.25rem;
  --ease:       0.25s ease;
}

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ── Scroll reveal ───────────────────────────────────────── */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 1.5rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes reveal-left {
  from {
    opacity: 0;
    transform: translate3d(-3rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  will-change: opacity, transform;
}

.scroll-reveal.scroll-reveal--left {
  transform: translate3d(-2.5rem, 0, 0);
}

.scroll-reveal.is-revealed {
  animation: reveal-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.scroll-reveal--left.is-revealed {
  animation-name: reveal-left;
}

.home-body .hero__title,
.home-body .hero__subtitle,
.home-body .hero .btn,
main .breadcrumbs,
.page-placeholder__kicker,
.page-placeholder__title,
.page-placeholder__text,
.page-catalog__title,
.catalog-marketplaces,
.catalog-banner__title,
.page-category__title,
.page-product__title,
.news-page__title,
.news-page__subtitle,
.article-detail__date,
.article-detail__title,
.article-detail__lead,
.stores-hero__title-group,
.stores-hero__text,
.contacts-title,
.contacts-company,
.contacts-quick {
  opacity: 0;
  animation: reveal-left 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
}

main .breadcrumbs,
.page-placeholder__kicker,
.page-catalog__title,
.catalog-banner__title,
.page-category__title,
.page-product__title,
.news-page__title,
.article-detail__date,
.stores-hero__title-group,
.contacts-title {
  animation-delay: 0.12s;
}

.home-body .hero__title,
.page-placeholder__title,
.catalog-marketplaces,
.news-page__subtitle,
.article-detail__title,
.stores-hero__text,
.contacts-company {
  animation-delay: 0.24s;
}

.home-body .hero__subtitle,
.page-placeholder__text,
.article-detail__lead,
.contacts-quick {
  animation-delay: 0.38s;
}

.home-body .hero .btn {
  animation-delay: 0.52s;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .home-body .hero__title,
  .home-body .hero__subtitle,
  .home-body .hero .btn,
  main .breadcrumbs,
  .page-placeholder__kicker,
  .page-placeholder__title,
  .page-placeholder__text,
  .page-catalog__title,
  .catalog-marketplaces,
  .catalog-banner__title,
  .page-category__title,
  .page-product__title,
  .news-page__title,
  .news-page__subtitle,
  .article-detail__date,
  .article-detail__title,
  .article-detail__lead,
  .stores-hero__title-group,
  .stores-hero__text,
  .contacts-title,
  .contacts-company,
  .contacts-quick {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5625rem;
  border-radius: 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--red {
  background: #E2001A;
  color: var(--white);
  border-color: #E2001A;
}
.btn--red:hover,
.btn--red:focus-visible {
  background: #c20018;
  border-color: #c20018;
}

.btn--lg {
  padding: 1.5625rem;
  font-size: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}

.header.scrolled,
.header--solid {
  background: var(--blue);
  box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.18);
}

.header--solid {
  border-radius: 0 0 1.875rem 1.875rem;
  box-shadow: none;
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  color: var(--white);
}

.logo__img {
  display: block;
  height: 3.75rem; /* 60px */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer__logo .logo__img {
  height: 3.75rem; /* 60px */
}

.logo__icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo__name {
  font-size: 1.3125rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1;
  color: var(--white);
}

.logo__sub {
  font-size: 0.4375rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 1 auto;
  margin-left: 5.4375rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

.nav__link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  transition: opacity var(--ease);
}

.nav__link:hover { opacity: 0.85; }

.nav__footer { display: none; }

.header__cta {
  flex-shrink: 0;
  margin-left: auto;
  padding: 1.25rem;
  border-radius: 1.25rem;
  font-size: 1.125rem;
}

.header--solid .header__cta {
  border-radius: 0.625rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* gap=5px + height=2px → offset = 5+2 = 7px */
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: url('/images/background-hero.png') center / cover no-repeat;
  overflow: hidden;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 10.9375rem;
}

.hero__content {
  flex: 1;
  max-width: 40rem;
  z-index: 1;
}

.hero__title {
  font-size: 4.6875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.04;
  text-transform: uppercase;
  margin-top: 7.875rem;
  margin-bottom: 1.875rem;
}

.hero__subtitle {
  font-size: 2.1875rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 10.5625rem;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION (info cards + values)
   ═══════════════════════════════════════════════════════════ */
.about-section {
  border-radius: 30px 30px 0 0;
  margin-top: -3.5rem;
  padding: 6.25rem 0 7.5rem;
  background: var(--white);
  position: relative;
  z-index: 3;
}

/* Info cards */
.info-cards {
  display: grid;
  grid-template-columns: auto 26.125rem;
  gap: 1.25rem;
  margin-bottom: 8.75rem;
}

.info-card {
  position: relative;
  background-image: url('/images/noise.png');
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 3.75rem 2.5rem 2.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.info-card--wide {
  overflow: hidden;
}

.info-card--wide > :not(.info-card__cow) {
  position: relative;
  z-index: 1;
}

.info-card__cow {
  position: absolute;
  right: 0;
  bottom: 0rem;
  z-index: 0;
  width: 15rem;
  max-width: none;
  pointer-events: none;
  transform: translate(125%, 85%);
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.info-card--wide.is-cow-visible .info-card__cow {
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .info-card__cow {
    transition: none;
  }
}

.info-card__title {
  font-size: 3.125rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.info-card__text {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.78);
  line-height: 1;
  margin-bottom: 3.75rem;
  flex: 1;
}

.info-card .btn {
  width: fit-content;
}

/* Values grid */
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 5rem;
  padding: 7.5rem 3.75rem;
  border-radius: 60px;
  border: 1px solid #1F2255;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.875rem;
}

.value-item__icon {
  width: 7.75rem;
  height: auto;
  flex-shrink: 0;
}

.value-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.value-item__title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: .625rem;
  color: #1F2255;
}

.value-item__text {
  font-size: 1.5rem;
  color: #1F2255;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════════════════════ */
.products-section { 
  padding: 7.5rem 0; 
  background: var(--white); 
}

.section-title {
  font-size: 3.125rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 3.75rem;
  color: #1F2255;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8125rem;
}

.products-dots {
  display: none;
}

.catalog-brand-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5625rem;
}

.catalog-brand-grid .product-card {
  height: 19.875rem;
  border: 1px solid var(--red);
  border-radius: 1.25rem;
  background: var(--red);
  transition: background-color var(--ease), border-color var(--ease);
}

.catalog-brand-grid .product-card:hover {
  border-color: var(--blue);
  background: var(--blue);
}

.catalog-brand-grid .product-card__img {
  width: 100%;
  height: 13.6875rem;
  object-fit: cover;
  border-radius: 1.25rem 1.25rem 0 0;
  background: var(--white);
}

.catalog-brand-grid .product-card__overlay {
  height: 6.1875rem;
  padding: 1.25rem;
  align-items: flex-end;
  background-color: var(--red);
  background-image: url('/images/noise-red.png');
  transition: background-color var(--ease), background-image var(--ease);
}

.catalog-brand-grid .product-card:hover .product-card__overlay {
  background-color: var(--blue);
  background-image: url('/images/noise.png');
}

.catalog-brand-grid .product-card__name {
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.05;
}

.catalog-brand-grid .product-card__arrow {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
}

.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}

.product-card__img img {
  width: 100%;
  height: 100%;
}

.product-card__media {
  display: block;
  overflow: hidden;
}

.product-card__overlay {
  background-color: var(--blue);
  background-image: url('/images/noise.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3.1875rem 1.875rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  transition: background-color var(--ease), background-image var(--ease);
  height: 11rem;
}

.product-card__name {
  font-size: 2.1875rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
}

.product-card__arrow {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.product-card__arrow svg { width: 100%; height: 100%; }

.product-card--red .product-card__overlay {
  background-color: var(--red);
  background-image: url('/images/noise-red.png');
}

/* ─── Home page Figma alignment ─── */
.home-body .header__cta {
  padding: 1.25rem;
  border-radius: 1.25rem;
  font-size: 1.125rem;
}

.home-body .hero {
  min-height: 62.0625rem;
  background: url('/images/background-hero.png') center top / cover no-repeat;
}

.home-body .hero__inner {
  min-height: 53.75rem;
  align-items: flex-start;
  padding-top: var(--header-h);
  padding-bottom: 0;
}

.home-body .hero__content {
  max-width: 53.75rem;
}

.home-body .hero__title {
  max-width: 53.75rem;
  margin-top: 7.875rem;
  margin-bottom: 1.875rem;
  font-size: 4.6875rem;
  font-weight: 600;
  line-height: 1;
}

.home-body .hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 10.9375rem;
}

.home-body .hero .btn {
  border-radius: 1.25rem;
  padding: 1.5625rem;
  font-size: 1.25rem;
}

.home-body .about-section {
  margin-top: -5.25rem;
  padding: 6.25rem 0 7.8125rem;
}

.home-body .info-cards {
  grid-template-columns: minmax(0, 1fr) 28.75rem;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
}

.home-body .info-card {
  min-height: 26.4375rem;
  border-radius: 3.75rem;
  padding: 3.75rem;
}

.home-body .info-card__title {
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 2.1875rem;
}

.home-body .info-card--narrow .info-card__title {
  font-size: 2.8125rem;
  max-width: 18.75rem;
}

.home-body .info-card__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: auto;
}

.home-body .info-card .btn {
  border-radius: 1.25rem;
  padding: 1.5625rem;
  font-size: 1.25rem;
}

.home-body .values {
  min-height: 36.6875rem;
  padding: 7.5rem 3.75rem;
  border-radius: 3.75rem;
  gap: 6.25rem 5.625rem;
}

.home-body .value-item {
  gap: 2.25rem;
}

.home-body .value-item__icon {
  width: 8.25rem;
}

.home-body .value-item__title {
  font-size: 2.5rem;
  font-weight: 600;
}

.home-body .value-item__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.home-body .products-section {
  padding: 7.8125rem 0 7.5rem;
}

.home-body .section-title {
  font-size: 3.125rem;
  font-weight: 600;
  margin-bottom: 4.0625rem;
}

.home-body .products-grid {
  gap: 2.8125rem;
}

.home-body .product-card {
  border-radius: 3.75rem;
  background-color: var(--blue);
  background-image: url('/images/noise.png');
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-color var(--ease), background-image var(--ease), transform var(--ease), box-shadow var(--ease);
}

.home-body .product-card:hover {
  background-color: var(--red);
  background-image: url('/images/noise-red.png');
}

.home-body .product-card__media {
  width: 100%;
  aspect-ratio: 450 / 378;
  border-radius: 3.75rem 3.75rem 0 0;
}

.home-body .product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-body .product-card__overlay {
  background: transparent;
  height: 10.75rem;
  padding: 2.5rem;
}

.home-body .product-card__name {
  max-width: 20rem;
  font-size: 2.1875rem;
  line-height: 1.12;
}

.home-body .news-section {
  padding: 7.5rem 0 25rem;
}

.home-body .news-filters {
  gap: 1.25rem;
  margin-bottom: 3.75rem;
}

.home-body .news-filter {
  border-radius: 1.25rem;
  padding: 1.5625rem 1.875rem;
}

.home-body .news-grid {
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
}

.home-body .news-grid__right {
  gap: 1.25rem;
}

.home-body .news-card {
  border-radius: 1.25rem;
}

.home-body .news-card--large {
  height: 45.625rem;
  border: 1px solid #1F2255;
  transition: background-color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.home-body .news-card--large:hover {
  border-color: var(--red);
}

.home-body .news-card--large .news-card__image {
  height: 27rem;
  flex: 0 0 27rem;
}

.home-body .news-card--large .news-card__image img {
  object-fit: cover;
}

.home-body .news-card__body {
  min-height: 18.625rem;
  padding: 1.875rem 4.5rem 1.875rem 1.875rem;
}

.home-body .news-card__date {
  margin-bottom: 2.25rem;
}

.home-body .news-card__title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.05;
}

.home-body .news-card--small {
  min-height: 14.375rem;
  border-radius: 1.25rem;
}

.home-body .news-card-small__image {
  width: 13.4375rem;
  min-width: 13.4375rem;
}

.home-body .news-card-small__body {
  padding: 1.5625rem 1.875rem;
}

.home-body .news-card--small .news-card__date {
  margin-bottom: 1.25rem;
}

.home-body .news-card--small .news-card__title {
  font-size: 1.875rem;
  line-height: 1.12;
}

.home-body .pagination--left {
  justify-content: center;
  margin-top: 4.375rem;
}

.home-body .footer {
  margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════
   NEWS SECTION
   ═══════════════════════════════════════════════════════════ */
.news-section { padding: 5rem 0; background: var(--white); }

/* ─── News page ─── */
.news-page { padding-bottom: 5rem; }

.news-page__title {
  font-size: 3.125rem;
  font-weight: 600;
  color: var(--blue);
  margin: 1.5625rem 0 0.75rem;
}

.news-page__subtitle {
  font-size: 1.25rem;
  color: #1F2255;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.news-page__large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: var(--gap);
}

.news-page__small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: 2.5rem;
}

.news-page--loading .news-results {
  opacity: 0.55;
  pointer-events: none;
}

.news-body .news-page__small .news-card--small {
  height: 17.625rem;
}

.news-body .news-page__small .news-card-small__image {
  width: 16.25rem;
  min-width: 16.25rem;
  flex: 0 0 16.25rem;
  height: 100%;
}

.news-body .news-page__small .news-card-small__body {
  padding: 1.875rem;
}

/* Filters */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.news-filter {
  padding: 1.5625rem 1.875rem;
  border-radius: 1.25rem;
  border: 1px solid #1F2255;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1F2255;
  background: var(--white);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  cursor: pointer;
}

.news-filter:hover {
  border-color: var(--red);
  color: var(--red);
}

.news-filter--active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.news-filter--active:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white);
}

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.news-grid__left {
  display: flex;
  flex-direction: column;
}

.news-grid__right {
  display: grid;
  gap: var(--gap);
}

/* Card base */
.news-card {
  border-radius: 20px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: box-shadow var(--ease);
}

.news-card:hover { box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.08); }

/* Large card */
.news-card--large {
  display: flex;
  flex-direction: column;
  border: none;
  flex: 1;
  background-color: var(--blue);
  transition: background-color var(--ease), box-shadow var(--ease);
}

.news-card--large:hover {
  background-color: var(--red);
}

.news-card--large .news-card__image {
  flex: 1;
  height: 27rem;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.news-card--large .news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__body {
  position: relative;
  background: transparent;
  padding: 1.875rem 4.5rem 1.875rem 1.875rem;
  border-radius: 0 0 20px 20px;
}

.news-card__date {
  font-size: 1.25rem;
  font-weight: 400;
  color: #FFFFFF;
  display: block;
  margin-bottom: 2.9375rem;
}

.news-card__title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.1875rem;
}

.news-card__text {
  font-size: 1.25rem;
  color: #FFFFFF;
  line-height: 1.55;
}

.news-card__arrow {
  position: absolute;
  right: 1.875rem;
  bottom: 1.875rem;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--white);
  flex-shrink: 0;
}

.news-card__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Small card — horizontal layout */
.news-card--small {
  display: flex;
  flex-direction: row;
  border: 1px solid #1F2255;
  min-height: 0;
}

.news-card-small__image {
  min-width: 13.4375rem;
  overflow: hidden;
}

.news-card-small__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-small__body {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: center;
}

.news-card--small .news-card__arrow {
  right: 1.25rem;
  bottom: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blue);
}

.news-card--small .news-card__date {
  font-size: .9375rem;
  color: #25221B;
  margin-bottom: 2rem;
}

.news-card--small .news-card__title {
  font-weight: 600;
  font-size: 1.875rem;
  color: #1F2255;
  margin-bottom: .875rem;
}

.news-card--small .news-card__text {
  font-size: 1.125rem;
  color: #1F2255;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.pagination--left {
  justify-content: flex-start;
  margin-top: 2rem;
}

.pagination__arrow,
.pagination__item {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.5625rem;
  color: #1a1a2e;
  transition: background var(--ease), color var(--ease);
  cursor: pointer;
}

.pagination__arrow {
  border: 1px solid var(--border);
  border-radius: 50%;
}

.pagination__arrow svg { width: 1rem; height: 1rem; }

.pagination__item:hover,
.pagination__arrow:hover {
  background: var(--bg-light);
}

.pagination__item--active {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
}

.pagination__item--active:hover { background: var(--red-hover); }

.pagination__dots {
  color: var(--gray-text);
  font-size: 0.9375rem;
  padding: 0 0.25rem;
  line-height: 1;
}

.pagination__arrow--disabled {
  opacity: 0.3;
  pointer-events: none;
}

.pagination a { text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   NEWS DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.news-detail-page {
  background: #fdfdfd;
  padding: 0;
}

.news-detail-page > .container {
  max-width: none;
  padding: 0 80px;
}

.news-detail-body .header--solid {
  border-radius: 0 0 1.875rem 1.875rem;
  box-shadow: none;
}

.news-detail-breadcrumbs {
  margin: 0;
}

.article-detail {
  color: #1f2255;
}

.article-detail__hero {
  width: 946px;
  max-width: 100%;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
}

.article-detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-detail__date {
  display: block;
  margin-top: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.article-detail__title {
  width: 946px;
  max-width: 100%;
  margin-top: 30px;
  color: #1f2255;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.08;
  text-transform: uppercase;
}

.article-detail__lead {
  width: 946px;
  max-width: 100%;
  margin-top: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
}

.article-detail__content {
  width: 946px;
  max-width: 100%;
  margin-top: 75px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.article-detail__content p {
  margin-bottom: 60px;
}

.article-related {
  margin-top: 100px;
  margin-bottom: 320px;
}

.article-related__title {
  margin-bottom: 32px;
  color: #141639;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 705px));
  gap: 30px;
}

.article-related-card {
  position: relative;
  display: flex;
  height: 230px;
  overflow: hidden;
  border: 1px solid #1f2255;
  border-radius: 20px;
  color: #1f2255;
  background: #fff;
}

.article-related-card__image {
  width: 215px;
  flex: 0 0 215px;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.article-related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-related-card__body {
  min-width: 0;
  padding: 25px 30px;
}

.article-related-card__date {
  display: block;
  margin-bottom: 25px;
  color: #25221b;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.article-related-card__title {
  width: 393px;
  max-width: 100%;
  margin-bottom: 18px;
  color: #1f2255;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.article-related-card__text {
  width: 444px;
  max-width: 100%;
  color: #1f2255;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.18;
}

.article-related-card::after {
  content: none;
}

.article-related-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 20px;
  height: 20px;
  color: #1f2255;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.article-related-card__arrow svg {
  width: 100%;
  height: 100%;
}

.article-related__arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.article-related__nav {
  width: 90px;
  height: 60px;
  border: 1px solid rgba(31,34,85,0.35);
  border-radius: 10px;
  color: #1f2255;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.article-related__nav svg {
  width: 1.125rem;
  height: 1.125rem;
}

.btn--outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--bg-light); border-color: var(--blue-hover); color: var(--blue-hover); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn__icon { margin-right: 0.375rem; }
.btn__arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn__arrow-icon svg {
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════════════════ */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: .9375rem;;
  font-weight: 600;
  color: var(--blue);
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 3.75rem;
}
.breadcrumbs a { color: var(--blue); transition: opacity var(--ease); }
.breadcrumbs a:hover { opacity: 0.7; }
.breadcrumbs__sep { color: var(--blue); }
.breadcrumbs__current { color: var(--red); }

/* ═══════════════════════════════════════════════════════════
   PAGE CATALOG
   ═══════════════════════════════════════════════════════════ */
.about-page {
  min-height: 42rem;
  padding-bottom: 7.5rem;
  background: #fdfdfd;
}

.page-placeholder {
  display: flex;
  min-height: 28rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 3.75rem 0 0;
  padding: 4rem;
  border: 1px solid rgba(31, 34, 85, 0.18);
  border-radius: 1.25rem;
  background: #fff;
}

.page-placeholder__kicker {
  margin: 0 0 1rem;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.page-placeholder__title {
  margin: 0 0 1.5rem;
  color: var(--blue);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.page-placeholder__text {
  max-width: 42rem;
  margin: 0;
  color: #222;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  line-height: 1.55;
}

.page-catalog {
  background: #fdfdfd;
  padding-bottom: 21.875rem;
}

.page-catalog__head {
  position: relative;
  min-height: 9.375rem;
  margin: 1.5625rem 0 2.1875rem;
}

.page-catalog__title {
  font-size: 3.125rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
  max-width: 24rem;
  margin: 0;
  text-transform: uppercase;
}

.catalog-marketplaces {
  position: absolute;
  top: -0.3125rem;
  right: 0;
  width: 18rem;
}

.catalog-marketplaces__text {
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}

.catalog-marketplaces__logos {
  display: flex;
  align-items: center;
  gap: 1.375rem;
}

.catalog-marketplaces__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  flex: 0 0 5rem;
}

.catalog-marketplaces__logo--wide {
  width: 6.25rem;
  flex-basis: 6.25rem;
}

.catalog-marketplaces__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-section { margin-bottom: 9.375rem; }

.catalog-section:last-of-type {
  margin-bottom: 0;
}

.catalog-section__heading {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.catalog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}

.catalog-card {
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background-color var(--ease);
  aspect-ratio: 380 / 464;
}

.catalog-cards--blue .catalog-card { background: var(--blue); }
.catalog-cards--red  .catalog-card { background: var(--red); }
.catalog-cards--blue .catalog-card:hover { background: var(--red); }
.catalog-cards--red .catalog-card:hover { background: var(--blue); }

.catalog-card__image {
  flex: 1;
  background: rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.catalog-card__bottom {
  padding: 1.25rem 1.875rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.catalog-card__name {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  max-width: 15rem;
}

.catalog-card__arrow {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.catalog-card__arrow svg { width: 100%; height: 100%; }

/* ─── Category rows (catalog page) ─── */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cat-row {
  display: flex;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--blue);
  text-decoration: none;
  transition: background-color var(--ease);
  height: 15.625rem;
  min-height: 15.625rem;
}

.cat-row:hover {
  background: var(--red);
}

.cat-row__image {
  width: 18.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.cat-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-row__body {
  background-color: var(--blue);
  background-image: url(/images/noise.png);
  background-size: cover;
  background-repeat: no-repeat;
  flex: 1;
  padding: 3.9375rem 7rem 3.75rem 2.5rem;
  position: relative;
  transition: background-color var(--ease), background-image var(--ease);
}

.cat-row:hover .cat-row__body {
  background-color: var(--red);
  background-image: url(/images/noise-red.png);
}

.cat-row__name {
  font-size: 2.8125rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.cat-row__desc {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  max-width: 40.625rem;
}

.cat-row__arrow {
  position: absolute;
  top: 9.6875rem;
  right: 2.5rem;
  bottom: auto;
  width: 2.0625rem;
  height: 2.0625rem;
}

.cat-row__arrow svg { width: 100%; height: 100%; }


/* ═══════════════════════════════════════════════════════════
   PAGE CATEGORY
   ═══════════════════════════════════════════════════════════ */
.page-category { padding-bottom: 5rem; }

.catalog-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 310;
  margin: 1.875rem 0 2.5rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #951524 0%, #951524 30%, #841f41 77%, #59265e 100%);
}

.catalog-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.catalog-banner__title {
  position: absolute;
  left: 2.5rem;
  bottom: 2rem;
  max-width: 46rem;
  margin: 0;
  color: #fff;
  font-family: 'Graphik LC Web', 'Montserrat', sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.page-category__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 5.75rem;
}

.page-category__top--toolbar-only {
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.page-category__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #141639;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

.page-category__title-arrow {
  display: flex;
  align-items: center;
  color: #141639;
}
.page-category__title-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-category__layout {
  display: flex;
  gap: 4.6875rem;
}

.page-category__layout--loading {
  opacity: 0.65;
  pointer-events: none;
}

/* Sidebar */
.category-sidebar {
  width: 23.75rem;
  flex-shrink: 0;
}

.category-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.3125rem 1.5625rem;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--red);
  cursor: pointer;
  font: inherit;
}
.category-sidebar__header--brand { padding: 1.5625rem 0.3125rem; }

.category-sidebar__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  color: var(--red);
}

.category-sidebar__arrow {
  display: flex;
  align-items: center;
  color: var(--red);
  transition: transform var(--ease);
}
.category-sidebar__arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}
.category-sidebar__header--collapsed .category-sidebar__arrow {
  transform: rotate(180deg);
}

.category-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  padding: 1.25rem 0;
}

.category-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  border-radius: 0.9375rem;
  transition: background var(--ease), color var(--ease);
}
.category-sidebar__link:hover {
  background: var(--red);
  color: var(--white);
}
.category-sidebar__link--active {
  background: var(--red);
  color: var(--white);
}
.category-sidebar__link--active::after {
  content: '×';
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}

.category-sidebar__group {
  display: block;
  padding: 1rem 0.9375rem 0.25rem;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Category main content */
.category-main { flex: 1; min-width: 0; }

.category-toolbar {
  display: flex;
  gap: 1.25rem;
}

.btn--cat-outline {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1.5px solid rgba(45,49,120,0.5);
  border-radius: 0.9375rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  transition: border-color var(--ease);
}
.btn--cat-outline:hover { border-color: var(--blue); }

.icon-pdf {
  width: 1.5rem;
  height: 1.8125rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.25rem;
}

.category-product-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #1F2255;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}
.category-product-card:hover {
  /* transform: translateY(-0.1875rem); */
  box-shadow: 0 0.5rem 1.5rem rgba(31,34,85,0.1);
  border: 1px solid var(--red);
}

.category-product-card:hover .category-product-card__image {
  transform: scale(1.03);
}

.category-product-card__image {
  width: 100%;
  aspect-ratio: 315 / 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 1.25rem;
  transition: 0.35s ease;
}

.category-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.75rem;
}

.category-product-card__name {
  padding: 0.625rem 1.25rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

/* Category empty state */
.category-empty {
  font-size: 1.25rem;
  color: var(--gray-text);
  padding: 3rem 0;
}

/* Category pagination */
.pagination--category {
  justify-content: center;
  margin: 3.75rem 0 0;
  gap: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   PAGE PRODUCT
   ═══════════════════════════════════════════════════════════ */
.page-product { padding-bottom: 5rem; }

.page-product__back {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(45,49,120,0.5);
  border-radius: 0.9375rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue);
  transition: border-color var(--ease);
}
.page-product__back:hover { border-color: var(--blue); }

.page-product__layout {
  display: flex;
  gap: 5rem;
  margin-top: 2.5rem;
  align-items: flex-start;
}

.page-product__info { flex: 1; min-width: 0; }

.page-product__title {
  font-size: 3.4375rem;
  font-weight: 600;
  color: #141639;
  line-height: 1.1;
  margin-bottom: 3.125rem;
}

.product-block { margin-bottom: 3.125rem; }

.product-block__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #141639;
  margin-bottom: 1.25rem;
}

.product-block__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #141639;
  line-height: 1.6;
}
.product-block__text--small {
  font-size: 1.125rem;
  color: #141639;
}

/* Nutrition cards */
.product-nutrition {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
}

.product-nutrition__card {
  border: 1.5px solid rgba(45,49,120,0.5);
  border-radius: 0.9375rem;
  padding: 1.25rem 1.875rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.4;

  display: grid;
  justify-items: center;
}

.product-nutrition__value {
  display: block;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1;
}

/* Product gallery */
.page-product__gallery {
  width: 38.1875rem;
  flex-shrink: 0;
}

.product-gallery__main-row {
  display: flex;
  gap: 0.6875rem;
}

.product-gallery__main {
  width: 28.125rem;
  height: 28.125rem;
  border-radius: 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--blue);
}

.product-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.product-gallery__thumb {
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0;
  background: none;
  transition: border-color var(--ease);
}
.product-gallery__thumb--active {
  border-color: var(--blue);
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__more {
  width: 9.375rem;
  margin-top: auto;
  height: 3rem;
  border: 1.5px solid rgba(45,49,120,0.5);
  border-radius: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color var(--ease);
}
.product-gallery__more:hover { border-color: var(--blue); }

.page-product__buttons {
  display: flex;
  gap: 1.25rem;
  margin-top: 4.125rem;
  justify-content: space-between;
}

.page-product__buttons--mobile {
  display: none;
}

.page-product__buttons .btn--cat-outline {
  width: 100%;
}

/* Similar products */
.similar-products {
  margin-top: 5rem;
  padding: 0;
}

.similar-products__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.similar-products__title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #141639;
}

.similar-products__arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 1.875rem;
}

.similar-products__nav {
  width: 5rem;
  height: 3.75rem;
  flex-shrink: 0;
  border: 1px solid var(--blue);
  border-radius: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--ease);
}
.similar-products__nav svg {
  width: 1.25rem;
  height: 1.25rem;
}
.similar-products__nav:hover { background: var(--bg-light); }

.similar-products__track {
  display: flex;
  gap: 1.25rem;
  overflow: visible;
  scroll-snap-type: x mandatory;
  flex: 1;
  scrollbar-width: none;
  padding: 0.25rem 0;
}
.similar-products__track::-webkit-scrollbar { display: none; }

.similar-card {
  flex: 1 1 0;
  min-width: 0;
  scroll-snap-align: start;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--blue);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.similar-card:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.5rem 1.5rem rgba(31,34,85,0.1);
}

.similar-card__img {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.similar-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.similar-card__name {
  padding: 0.625rem 1.25rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   STORES PAGE
   ═══════════════════════════════════════════════════════════ */
.stores-body .header--solid {
  border-radius: 0 0 1.875rem 1.875rem;
  box-shadow: none;
}

.stores-page {
  background: #fdfdfd;
  padding-bottom: 5rem;
}

.stores-hero {
  display: grid;
  grid-template-columns: 24.375rem 1fr;
  gap: 7.25rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.stores-hero__title {
  color: #1F2255;
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 4.25rem;
  text-transform: uppercase;
}

.stores-hero__kicker {
  color: #1F2255;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.stores-hero__text {
  color: #1F2255;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.16;
  max-width: 57.3125rem;
}

.stores-map-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24.9375rem;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 6.25rem;
}

.stores-map,
.stores-list {
  height: 39.75rem;
  border-radius: 2.5rem;
  overflow: hidden;
}

.stores-map {
  background: url('/images/stores-map.png') center / cover no-repeat;
}

.stores-map__frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.stores-list {
  background: var(--blue);
  border: 1px solid #1F2255;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.stores-list__head {
  padding: 1.8125rem 1.8125rem 1.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.9);
}

.stores-list__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.stores-search {
  position: relative;
  display: block;
}

.stores-search input {
  width: 100%;
  height: 3.125rem;
  border: 1px solid var(--white);
  border-radius: 0.625rem;
  background: rgba(255,255,255,0.9);
  color: #1F2255;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0 1rem 0 2.8125rem;
  outline: none;
}

.stores-search input::placeholder {
  color: rgba(31,34,85,0.8);
}

.stores-search__icon {
  position: absolute;
  left: 0.8125rem;
  top: 50%;
  width: 1.5rem;
  height: 1.5rem;
  background: url('/images/search-icon-figma.svg') center / contain no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
}

.stores-list__items {
  flex: 1;
  overflow-y: auto;
  background: var(--white);
  scrollbar-width: thin;
  scrollbar-color: var(--blue) #eef0ff;
}

.stores-list__items::-webkit-scrollbar {
  width: 0.375rem;
}

.stores-list__items::-webkit-scrollbar-track {
  background: #eef0ff;
}

.stores-list__items::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 999px;
}

.store-item {
  position: relative;
  display: grid;
  grid-template-columns: 1.875rem 1fr 1.25rem;
  gap: 0.9375rem;
  min-height: 7.5rem;
  padding: 1rem 1.75rem 1rem 1.875rem;
  color: #1F2255;
  border-bottom: 1px solid var(--blue);
  border-radius: 0;
  background: var(--white);
  text-align: left;
  width: 100%;
  transition: background var(--ease);
}

.store-item:hover,
.store-item--active {
  background: #f5f6ff;
}

.store-item--active::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.25rem;
  background: var(--red);
}

.store-item[hidden] {
  display: none;
}

.store-item__number {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 0.25rem;
}

.store-item__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.store-item__address {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.store-item__landmark {
  color: rgba(31,34,85,0.8);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0.1875rem;
}

.store-item__city {
  align-self: flex-start;
  background: var(--blue);
  border-radius: 0.3125rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 1rem;
  padding: 0.3125rem 0.625rem;
}

.store-item__arrow {
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.store-item__arrow svg {
  width: 100%;
  height: 100%;
}

.stores-list__empty {
  color: #1F2255;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.stores-list__empty[hidden] {
  display: none;
}

.delivery-panel {
  background-image: url('/images/noise.png');
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3.75rem;
  color: var(--white);
  padding: 3.75rem;
  margin-bottom: 6.25rem;
}

.delivery-panel__top {
  display: grid;
  grid-template-columns: 23.75rem 1fr;
  gap: 7.125rem;
  align-items: start;
  margin-bottom: 3.75rem;
}

.delivery-panel__title {
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.delivery-panel__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.16;
  max-width: 54.1875rem;
}

.marketplaces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}

.marketplace-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 6.25rem;
  padding: 0.5625rem;
  border: 1px solid var(--white);
  border-radius: 0.625rem;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  overflow: hidden;
  transition: background var(--ease), transform var(--ease);
}

.marketplace-card:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-0.125rem);
}

.marketplace-card__logo {
  width: 5rem;
  height: 5rem;
  flex: 0 0 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketplace-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.marketplace-card__name {
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.marketplace-card__arrow {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.marketplace-card__arrow svg {
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════
   CONTACTS PAGE
   ═══════════════════════════════════════════════════════════ */
.contacts-body .header--solid {
  border-radius: 0 0 1.875rem 1.875rem;
  box-shadow: none;
}

.contacts-page {
  background: #fdfdfd;
  padding: 0 0 18.75rem;
}

.contacts-page > .container {
  max-width: var(--container);
  padding: 0 2.5rem;
}

.contacts-breadcrumbs {
  margin: 0;
}

.contacts-title {
  margin-bottom: 5rem;
  color: #1f2255;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contacts-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 23.125rem;
  gap: 11.875rem;
  margin-bottom: 8.125rem;
  color: #1f2255;
}

.contacts-company {
  margin-bottom: 4.125rem;
  color: #1f2255;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
}

.contacts-quick {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contacts-quick__item {
  display: inline-flex;
  align-items: flex-start;
  gap: 1.5rem;
  color: #1f2255;
  font-family: 'Montserrat', sans-serif;
}

.contacts-quick__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.625rem;
  background: #2d3178;
  color: #fff;
}

.contacts-quick__icon svg {
  width: 1.625rem;
  height: 1.625rem;
}

.contacts-quick__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  padding-top: 0.1875rem;
}

.contacts-quick__label {
  color: rgba(31, 34, 85, 0.62);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.contacts-quick__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.contacts-quick__link {
  color: #1f2255;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.1;
  transition: color var(--ease);
}

.contacts-quick__link:hover,
.contacts-quick__link:focus-visible {
  color: var(--red);
}

.contacts-details {
  display: grid;
  gap: 1.375rem;
}

.contacts-detail dt {
  margin-bottom: 0.375rem;
  color: rgba(31,34,85,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
}

.contacts-detail dd {
  color: #1f2255;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.18;
}

.contacts-actions {
  display: grid;
  grid-template-columns: 47.5rem 40.6875rem;
  gap: 1.8125rem;
}

.contact-form,
.contacts-store-card {
  min-height: 39.3125rem;
  border: 1px solid #1f2255;
  border-radius: 1.25rem;
  color: #1f2255;
  background: #fdfdfd;
}

.contact-form {
  padding: 2.8125rem 3.125rem;
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.contact-form__title,
.contacts-store-card__title {
  margin-bottom: 0.625rem;
  color: #1f2255;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
}

.contact-form__text,
.contacts-store-card__text {
  color: #2d3178;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.15;
}

.contact-form__text {
  margin-bottom: 2.1875rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
}

.contact-field {
  display: block;
  margin-bottom: 1.25rem;
}

.contact-field span {
  display: block;
  margin-bottom: 0.625rem;
  color: #6b6b65;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  height: 2.875rem;
  border: 1px solid #1f2255;
  border-radius: 0.3125rem;
  background: #fdfdfd;
  color: #1a1a18;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  padding: 0 1.125rem;
  outline: none;
}

.contact-field textarea {
  height: 7.5rem;
  padding-top: 1rem;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9e9e97;
}

.contact-form__status {
  margin-top: 1.25rem;
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
}

.contact-form__status--success {
  border: 1px solid rgba(45, 49, 120, 0.2);
  background: rgba(45, 49, 120, 0.08);
  color: #1f2255;
}

.contact-form__status--error {
  border: 1px solid rgba(226, 0, 26, 0.25);
  background: rgba(226, 0, 26, 0.08);
  color: #b00016;
}

.contact-form__bottom {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2.0625rem;
}

.contact-form__submit {
  gap: 0.625rem;
  min-width: 9.875rem;
  min-height: 4.0625rem;
  padding: 1.25rem 1.875rem;
  font-size: 1.25rem;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form__submit svg {
  width: 1rem;
  height: 1rem;
}

.contact-form__bottom p {
  max-width: 23.125rem;
  color: #9e9e97;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  line-height: 1.25;
}

.contacts-store-card {
  padding: 2.8125rem 3.125rem;
}

.contacts-store-card__text {
  max-width: 20.625rem;
  margin-bottom: 2.375rem;
}

.contacts-store-card__map {
  position: relative;
  height: 20.4375rem;
  margin-bottom: 2.1875rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background:
    linear-gradient(45deg, rgba(238,238,238,0.92) 25%, transparent 25%) 0 0 / 2.5rem 2.5rem,
    linear-gradient(45deg, transparent 75%, rgba(238,238,238,0.92) 75%) 0 0 / 2.5rem 2.5rem,
    linear-gradient(45deg, transparent 75%, rgba(238,238,238,0.92) 75%) 1.25rem 1.25rem / 2.5rem 2.5rem,
    linear-gradient(45deg, rgba(238,238,238,0.92) 25%, transparent 25%) 1.25rem 1.25rem / 2.5rem 2.5rem,
    #f7f7f7;
}

.contacts-store-card__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: translate(-50%, -70%) rotate(-45deg);
}

.contacts-store-card__pin::after {
  content: "";
  position: absolute;
  inset: 0.6875rem;
  border-radius: 50%;
  background: #fff;
}

.contacts-store-card__btn {
  min-height: 4.0625rem;
  padding: 1.25rem 1.875rem;
  font-size: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  color: var(--white);
  border-radius: 30px 30px 0 0;
  margin-top: 2rem;
  background-image: url(/images/noise-footer.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.footer__inner {
  display: flex;
  padding: 4rem 0 3rem;
  justify-content: space-between;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 0;
}

.footer__desc {
  max-width: 18.5625rem;
  margin-top: 4.375rem;
  font-size: 1.25rem;
  line-height: 1.18;
  color: var(--white);
}

.footer__nav-title {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 0.3125rem;
}

.footer__nav a {
  font-size: 1.375rem;
  color: var(--white);
  transition: opacity var(--ease);
}

.footer__nav a:hover { opacity: 0.65; }

.footer__contacts-label {
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer__phone {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--white);
  transition: opacity var(--ease);
  display: block;
  margin-bottom: 1.5625rem;
}

.footer__email {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--white);
  transition: opacity var(--ease);
  display: block;
  margin-bottom: 7.8125rem;
}

.footer__phone:hover,
.footer__email:hover { opacity: 0.65; }

.footer__hours { margin-top: 1.25rem; }

.footer__hours-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: .9375rem;
  color: var(--white);
}

.footer__hours-text {
  font-size: 1.375rem;
  color: #c9c9c9;
  line-height: 1.55;
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid #fff;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 4.0625rem;
  font-size: 1.5625rem;
  color: rgba(255,255,255,0.85);
}

.footer__bottom-inner a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  transition: opacity var(--ease);
}

.footer__bottom-inner a:hover { opacity: 0.75; }

/* ═══════════════════════════════════════════════════════════
   MOBILE  ≤ 768px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  :root {
    --header-h: 4rem;
  }

  /* ── Container ── */
  .container { padding: 0 1rem; }

  /* ── Buttons ── */
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    border-radius: 8px;
  }
  .btn--lg {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  /* ══════════════════════════════════════════════════════════
     HEADER
     ══════════════════════════════════════════════════════════ */
  .header { height: var(--header-h); }
  .header.menu-open { background: var(--blue); }

  .logo__img { height: 2.25rem; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.5rem 1rem max(1.5rem, env(safe-area-inset-bottom));
    gap: 1.75rem;
    overflow-y: auto;
    z-index: 99;
    margin-left: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  .nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0;
    border-bottom: 0;
  }

  .nav__link {
    position: relative;
    min-height: 4.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.25rem;
    background: rgba(255,255,255,0.035);
    font-size: 1.375rem;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  }

  .nav__link::after {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    border-top: 0.125rem solid currentColor;
    border-right: 0.125rem solid currentColor;
    opacity: 0.75;
    transform: rotate(45deg);
  }

  .nav__link:active {
    transform: scale(0.985);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
  }

  .nav__footer {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 1.5rem;
    background: rgba(255,255,255,0.045);
  }

  .nav__footer::before {
    content: "Связаться с нами";
    margin-bottom: 0.125rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.62);
  }

  .nav__phone {
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
  }

  .nav__email {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    font-size: 1.3125rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.15;
  }

  .nav__cta {
    justify-content: center;
    min-height: 4.25rem;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
  }

  .header__cta { display: none; }
  .burger { display: flex; }

  .burger.open {
    position: relative;
    gap: 0;
  }

  .burger.open span {
    position: absolute;
    left: 0;
    top: 50%;
    height: 0.1875rem;
    transform-origin: center;
  }

  .burger.open span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
  }

  /* ══════════════════════════════════════════════════════════
     HERO
     ══════════════════════════════════════════════════════════ */
  .hero { border-radius: 0 0 1rem 1rem; }

  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 2.5rem;
    min-height: 0;
  }

  .hero__content {
    flex: none;
    max-width: 100%;
  }

  .hero__title {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
  }

  .hero__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .home-body .hero {
    min-height: 42rem;
    background-position: 52% top;
  }

  .home-body .hero__inner {
    min-height: 36rem;
    padding-top: var(--header-h);
  }

  .home-body .hero__title {
    max-width: 18.5rem;
    font-size: 2.45rem;
    line-height: 1.04;
    margin-top: 4.25rem;
    margin-bottom: 1.25rem;
  }

  .home-body .hero__subtitle {
    max-width: 19rem;
    font-size: 1rem;
    margin-bottom: 5.75rem;
  }

  .home-body .hero .btn {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 1rem;
  }

  /* ══════════════════════════════════════════════════════════
     ABOUT SECTION
     ══════════════════════════════════════════════════════════ */
  .about-section {
    /* border-radius: 1.25rem 1.25rem 0 0; */
    margin-top: -1.5rem;
    padding: 2rem 0 2.5rem;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .info-card {
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 12px;
  }

  .info-card__title {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
  }

  .info-card__text {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .home-body .about-section {
    /* border-radius: 50% 50% 0 0 / 2.5rem 2.5rem 0 0; */
    margin-top: -3.25rem;
    padding: 4rem 0 2.5rem;
  }

  .home-body .info-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .home-body .info-card {
    min-height: 0;
    border-radius: 1.25rem;
    padding: 1.5rem;
  }

  .home-body .info-card__title,
  .home-body .info-card--narrow .info-card__title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .home-body .info-card__text {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    white-space: normal;
  }

  .home-body .info-card .btn {
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }

  .values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-item { gap: 1rem; }

  .value-item__icon { width: 3.5rem; }

  .value-item__title { font-size: 1.125rem; margin-bottom: 0.25rem; }
  .value-item__text { font-size: 0.875rem; }

  .home-body .values {
    min-height: 0;
    padding: 1.5rem;
    border-radius: 1.25rem;
    gap: 1.5rem;
  }

  .home-body .value-item {
    gap: 1rem;
  }

  .home-body .value-item__icon {
    width: 3.5rem;
  }

  .home-body .value-item__title {
    font-size: 1.125rem;
  }

  .home-body .value-item__text {
    font-size: 0.875rem;
  }

  /* ══════════════════════════════════════════════════════════
     PRODUCTS SECTION
     ══════════════════════════════════════════════════════════ */
  .products-section { padding: 0 0 2.5rem; }

  .section-title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .product-card {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }

  .product-card__overlay { padding: 1.25rem; }

  .product-card__name { font-size: 1.25rem; }

  .product-card__arrow { width: 1.25rem; height: 1.25rem; }

  .home-body .products-section {
    padding: 2.5rem 0;
  }

  .home-body .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .home-body .product-card {
    border-radius: 1.25rem;
  }

  .home-body .product-card__media {
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .home-body .product-card__overlay {
    height: auto;
    min-height: 5.5rem;
    padding: 1rem 1.25rem;
  }

  .home-body .product-card__name {
    font-size: 1.25rem;
  }

  /* ══════════════════════════════════════════════════════════
     NEWS SECTION
     ══════════════════════════════════════════════════════════ */
  .news-section { padding: 2rem 0; }

  .news-page { padding-bottom: 2.5rem; }
  .news-page__title { font-size: 1.5rem; margin: 0 0 0.5rem; }
  .news-page__subtitle { font-size: 0.9375rem; margin-bottom: 1.5rem; }
  .news-page__large { grid-template-columns: 1fr; }
  .news-page__small { grid-template-columns: 1fr; }

  .news-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.25rem;
  }
  .news-filters::-webkit-scrollbar { display: none; }

  .news-filter {
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    flex-shrink: 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-card {
    border-radius: 12px;
  }

  .news-card--large .news-card__image {
    min-height: 12rem;
  }

  .news-card__body {
    padding: 1rem 3.25rem 1.25rem 1.25rem;
  }

  .news-card--small {
    flex-direction: row;
  }

  .news-card-small__image {
    width: 6rem;
    min-width: 6rem;
  }

  .news-card-small__body {
    padding: 0.75rem 1rem;
  }

  .news-card__title { font-size: 1.125rem; margin-bottom: 0.375rem; }
  .news-card--small .news-card__title { font-size: 1rem; }

  .news-card__text {
    font-size: 0.8125rem;
  }

  .home-body .news-section {
    padding: 2.5rem 0 4rem;
  }

  .home-body .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-body .news-card--large {
    height: auto;
  }

  .home-body .news-card--large .news-card__image {
    height: 13rem;
    flex-basis: 13rem;
  }

  .home-body .news-card__body {
    min-height: 0;
    padding: 1rem 1.25rem;
  }

  .home-body .news-card__title {
    font-size: 1.25rem;
  }

  .home-body .news-card--small {
    min-height: 0;
  }

  .home-body .news-card-small__image {
    width: 6rem;
    min-width: 6rem;
  }

  .home-body .news-card-small__body {
    padding: 0.75rem 1rem;
  }

  .pagination--left {
    margin-top: 1.25rem;
  }

  /* Pagination */
  .pagination { gap: 0.125rem; }

  .pagination__arrow,
  .pagination__item {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
  }

  .pagination__arrow svg { width: 0.75rem; height: 0.75rem; }

  /* News page, mobile Figma layout */
  .news-body .header {
    position: absolute;
    height: 11.375rem;
    border-radius: 0 0 4.875rem 4.875rem;
    background: var(--blue);
    box-shadow: none;
  }

  .news-body .header.menu-open {
    border-radius: 0;
  }

  .news-body .header__inner {
    align-items: flex-start;
    padding-top: 3.75rem;
  }

  .news-body .header .logo__img {
    height: 3.8125rem;
  }

  .news-body .burger {
    width: 3.25rem;
    height: 2.4375rem;
    margin-top: 0.25rem;
  }

  .news-body .burger span {
    height: 0.25rem;
  }

  .news-body .burger.open span {
    height: 0.1875rem;
  }

  .news-body .nav {
    top: 11.375rem;
    padding-top: 1.5rem;
    border-radius: 0;
  }

  .news-body .news-page {
    padding: 17.875rem 0 0;
    background: #fff;
    overflow: hidden;
  }

  .news-body .news-page > .container {
    padding: 0 1.625rem;
  }

  .news-body .breadcrumbs {
    display: none;
  }

  .news-body .news-page__title {
    margin: 0 0 1.625rem;
    color: #1f2255;
    font-size: 4.0625rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }

  .news-body .news-page__subtitle {
    width: 100%;
    margin: 0 0 4.55rem;
    color: #1f2255;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4625rem;
    font-weight: 500;
    line-height: 1.12;
  }

  .news-body .news-filters {
    position: relative;
    display: block;
    width: 100%;
    height: 5.6875rem;
    margin: 0 0 3.25rem;
    overflow: visible;
    padding: 0;
  }

  .news-body .news-filter {
    display: none;
  }

  .news-body .news-filter--active,
  .news-body .news-filter:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 5.6875rem;
    padding: 1.625rem 2.03125rem;
    border: 0;
    border-radius: 1.625rem;
    background: var(--red);
    color: #fff;
    font-family: 'Graphik LC Web', sans-serif;
    font-size: 1.4625rem;
    font-weight: 500;
    line-height: 1;
  }

  .news-body .news-filter--active::after,
  .news-body .news-filter:first-child::after {
    content: "";
    width: 0.8125rem;
    height: 0.8125rem;
    border-right: 0.1875rem solid currentColor;
    border-bottom: 0.1875rem solid currentColor;
    transform: rotate(45deg);
    margin-top: -0.325rem;
  }

  .news-body .news-filters:not(.news-filters--open) .news-filter:first-child:not(.news-filter--active) {
    display: none;
  }

  .news-body .news-filters.news-filters--open {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    height: auto;
  }

  .news-body .news-filters.news-filters--open .news-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 5.6875rem;
    padding: 1.625rem 2.03125rem;
    border: 1px solid #1f2255;
    border-radius: 1.625rem;
    background: #fff;
    color: #1f2255;
    font-family: 'Graphik LC Web', sans-serif;
    font-size: 1.4625rem;
    font-weight: 500;
    line-height: 1;
  }

  .news-body .news-filters.news-filters--open .news-filter--active {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
  }

  .news-body .news-filters.news-filters--open .news-filter::after {
    display: none;
  }

  .news-body .news-page__large {
    display: block;
    margin-bottom: 3.25rem;
  }

  .news-body .news-page__large .news-card--large:nth-child(n+2) {
    display: none;
  }

  .news-body .news-card {
    border-radius: 1.625rem;
    box-shadow: none;
  }

  .news-body .news-card--large {
    height: 47.69375rem;
    overflow: hidden;
    border: 1px solid #1f2255;
    transition: background-color var(--ease), border-color var(--ease), box-shadow var(--ease);
  }

  .news-body .news-card--large:hover {
    border-color: var(--red);
  }

  .news-body .news-card--large .news-card__image {
    height: 24.8625rem;
    min-height: 0;
    flex: 0 0 24.8625rem;
    border-radius: 1.625rem 1.625rem 0 0;
  }

  .news-body .news-card--large .news-card__image img {
    object-fit: cover;
  }

  .news-body .news-card--large .news-card__body {
    min-height: 22.83125rem;
    padding: 2.84375rem 5.25rem 2.4375rem 2.4375rem;
    border-radius: 0 0 1.625rem 1.625rem;
  }

  .news-body .news-card--large .news-card__date {
    margin-bottom: 2.1125rem;
    font-size: 1.3rem;
    line-height: 1;
  }

  .news-body .news-card--large .news-card__title {
    width: 24.29375rem;
    margin-bottom: 0.8125rem;
    font-size: 2.4375rem;
    font-weight: 500;
    line-height: 1;
  }

  .news-body .news-card--large .news-card__text {
    width: 25.10625rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.15;
  }

  .news-body .news-card--large .news-card__arrow {
    right: 2.4375rem;
    bottom: 2.84375rem;
    width: 1.75rem;
    height: 1.75rem;
  }

  .news-body .news-page__small {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.25rem;
    margin-bottom: 27.625rem;
  }

  .news-body .news-page--paged .news-page__small {
    margin-bottom: 3.25rem;
  }

  .news-body .news-page__small .news-card--small:nth-child(n+3) {
    display: none;
  }

  .news-body .news-page__small .news-card--small {
    position: relative;
    display: flex;
    height: auto;
    min-height: 17.125rem;
    overflow: hidden;
    border: 1px solid #1f2255;
    border-radius: 1.875rem;
    background: #fff;
  }

  .news-body .news-page__small .news-card-small__image {
    flex: 0 0 13.5625rem;
    width: 13.5625rem;
    min-width: 13.5625rem;
    height: 100%;
  }

  .news-body .news-page__small .news-card-small__image img {
    object-fit: cover;
  }

  .news-body .news-page__small .news-card-small__body {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  }

  .news-body .news-card--small .news-card__date {
    margin-bottom: 1.125rem;
    color: #25221b;
    font-size: 0.975rem;
    line-height: 1;
  }

  .news-body .news-card--small .news-card__title {
    width: auto;
    max-width: 100%;
    margin-bottom: 0.8125rem;
    color: #1f2255;
    font-size: 2.03125rem;
    font-weight: 500;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .news-body .news-card--small .news-card__text {
    width: auto;
    max-width: 100%;
    color: #1f2255;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1375rem;
    font-weight: 500;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .news-body .news-card--small .news-card__arrow {
    right: 1.25rem;
    bottom: 1.25rem;
    width: 1.75rem;
    height: 1.75rem;
  }

  .news-body .pagination--left {
    justify-content: center;
    gap: 1.625rem;
    margin: 0 0 20.3125rem;
  }

  .news-body .pagination__arrow,
  .news-body .pagination__item {
    width: 4.0625rem;
    height: 4.0625rem;
    border-radius: 0.8125rem;
    color: #1f2255;
    font-size: 2.03125rem;
  }

  .news-body .pagination__arrow {
    border: 0;
    background: transparent;
  }

  .news-body .pagination__item--active {
    color: #fff;
  }

  /* News detail page, mobile Figma layout */
  .news-detail-body .header {
    position: absolute;
    height: 11.375rem;
    border-radius: 0 0 4.875rem 4.875rem;
    background: var(--blue);
    box-shadow: none;
  }

  .news-detail-body .header.menu-open {
    border-radius: 0;
  }

  .news-detail-body .header__inner {
    align-items: flex-start;
    padding-top: 3.75rem;
  }

  .news-detail-body .header .logo__img {
    height: 3.8125rem;
  }

  .news-detail-body .burger {
    width: 3.25rem;
    height: 2.4375rem;
    margin-top: 0.25rem;
  }

  .news-detail-body .burger span {
    height: 0.25rem;
  }

  .news-detail-body .burger.open span {
    height: 0.1875rem;
  }

  .news-detail-body .nav {
    top: 11.375rem;
    padding-top: 1.5rem;
    border-radius: 0;
  }

  .news-detail-body .news-detail-page {
    padding: 16.25rem 0 0;
    background: #fff;
    overflow: hidden;
  }

  .news-detail-body .news-detail-page > .container {
    padding: 0 1.625rem;
  }

  .news-detail-body .news-detail-breadcrumbs {
    display: none;
  }

  .news-detail-body .article-detail__hero {
    width: 100%;
    height: 24.05rem;
    border-radius: 1.625rem;
  }

  .news-detail-body .article-detail__date {
    margin-top: 2.4375rem;
    font-size: 1.3rem;
  }

  .news-detail-body .article-detail__title {
    width: 100%;
    margin-top: 2.1125rem;
    font-size: 3.25rem;
    font-weight: 500;
    line-height: 0.98;
  }

  .news-detail-body .article-detail__lead {
    width: 100%;
    margin-top: 1.625rem;
    font-size: 1.4625rem;
    line-height: 1.12;
  }

  .news-detail-body .article-detail__content {
    width: 100%;
    margin-top: 5.11875rem;
    font-size: 1.4625rem;
    line-height: 1.18;
  }

  .news-detail-body .article-detail__content p {
    margin-bottom: 0;
  }

  .news-detail-body .article-detail__content p:nth-child(n+2) {
    display: none;
  }

  .news-detail-body .article-related {
    margin-top: 5.6875rem;
    margin-bottom: 20.3125rem;
  }

  .news-detail-body .article-related__title {
    margin-bottom: 2.4375rem;
    font-size: 0;
  }

  .news-detail-body .article-related__title::after {
    content: "Похожие товары";
    color: #141639;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.03125rem;
    font-weight: 600;
    line-height: 1;
  }

  .news-detail-body .article-related__grid {
    grid-template-columns: 1fr;
    gap: 3.25rem;
  }

  .news-detail-body .article-related-card {
    height: 17.14375rem;
    border-radius: 1.625rem;
  }

  .news-detail-body .article-related-card__image {
    width: 10.48125rem;
    flex-basis: 10.48125rem;
    border-radius: 1.625rem 0 0 1.625rem;
  }

  .news-detail-body .article-related-card__body {
    padding: 1.38125rem 1.7875rem 1.3rem 1.625rem;
  }

  .news-detail-body .article-related-card__date {
    margin-bottom: 1.1375rem;
    font-size: 0.975rem;
  }

  .news-detail-body .article-related-card__title {
    width: 18.60625rem;
    margin-bottom: 0.8125rem;
    font-size: 2.03125rem;
    line-height: 1;
  }

  .news-detail-body .article-related-card__text {
    width: 15.68125rem;
    font-size: 1.1375rem;
    line-height: 1.12;
  }

  .news-detail-body .article-related-card__arrow {
    right: 1.625rem;
    bottom: 3.33125rem;
    width: 1.21875rem;
    height: 1.21875rem;
  }

  .news-detail-body .article-related__arrows {
    margin-top: 1.625rem;
  }

  .news-detail-body .article-related__nav {
    width: 6.09375rem;
    height: 4.0625rem;
    border-radius: 0.8125rem;
  }

  /* ══════════════════════════════════════════════════════════
     FOOTER
     ══════════════════════════════════════════════════════════ */
  .footer {
    width: 100%;
    min-height: 73.625rem;
    margin: 0;
    border-radius: 4.875rem 4.875rem 0 0;
  }

  .footer .container {
    max-width: none;
    padding: 0 2.4375rem;
  }

  .footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 2.75rem;
    row-gap: 0;
    padding: 6.75rem 0 0;
    text-align: center;
  }

  .footer__col {
    display: contents;
  }

  .footer__logo {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .footer__logo .logo__img { height: 4.875rem; }

  .footer__desc {
    grid-column: 1 / -1;
    max-width: 29.25rem;
    margin: 0.625rem auto 6.625rem;
    font-size: 1.3125rem;
    line-height: 1.16;
  }

  .footer__nav {
    grid-column: 1 / 2;
    grid-row: 6;
    align-items: flex-start;
    gap: 2.4375rem;
    margin-top: 5.75rem;
    text-align: left;
  }

  .footer__nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
  }

  .footer__nav-title {
    font-size: 0;
  }

  .footer__nav-title::before {
    content: "Продукция";
    font-size: 1.7875rem;
  }

  .footer__nav a {
    font-size: 1.7875rem;
    line-height: 1.15;
  }

  .footer__nav a[href="/catalog"] {
    display: none;
  }

  .footer__contacts {
    display: contents;
  }

  .footer__contacts-label {
    display: none;
  }

  .footer__phone {
    grid-column: 1 / -1;
    justify-self: center;
    font-size: 2.4375rem;
    line-height: 1.1;
    margin-bottom: 1.875rem;
  }

  .footer__email {
    grid-column: 1 / -1;
    justify-self: center;
    font-size: 2.4375rem;
    line-height: 1.1;
    margin: 0.1875rem 0 0;
  }

  .footer__hours {
    grid-column: 2 / 3;
    grid-row: 6;
    margin-top: 5.75rem;
    text-align: left;
  }

  .footer__hours-title {
    font-size: 1.7875rem;
    font-weight: 700;
    margin-bottom: 2.4375rem;
  }

  .footer__hours-text {
    font-size: 1.7875rem;
    line-height: 1.36;
    color: rgba(255,255,255,0.82);
  }

  .footer__bottom {
    border-top: 0;
  }

  .footer__bottom-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.5rem;
    text-align: left;
    padding: 3.75rem 0 2.125rem;
    font-size: 1.1375rem;
  }

  .footer__bottom-inner a {
    display: block;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.75);
    font-size: 1.625rem;
    text-decoration: none;
  }

  /* ══════════════════════════════════════════════════════════
     BREADCRUMBS
     ══════════════════════════════════════════════════════════ */
  .breadcrumbs {
    gap: 0.5rem;
    font-size: 0.8125rem;
    padding-top: calc(var(--header-h) + 1.25rem);
    padding-bottom: 1.5rem;
  }

  /* ══════════════════════════════════════════════════════════
     PAGE CATALOG
     ══════════════════════════════════════════════════════════ */
  .about-page {
    min-height: 0;
    padding: 17.875rem 0 4rem;
  }

  .about-body .breadcrumbs {
    display: none;
  }

  .page-placeholder {
    min-height: 24rem;
    margin: 0;
    padding: 2.25rem 1.75rem;
    border-radius: 1rem;
  }

  .page-placeholder__title {
    font-size: 2.75rem;
  }

  .page-placeholder__text {
    font-size: 1.125rem;
  }

  .page-catalog { padding-bottom: 2.5rem; }

  .page-catalog__title {
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
  }

  .catalog-section { margin-bottom: 2.5rem; }

  .catalog-section__heading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .cat-list { gap: 0.75rem; }

  .cat-row {
    min-height: 0;
    border-radius: 12px;
  }

  .cat-row__image {
    width: 7rem;
    min-width: 7rem;
  }

  .cat-row__body { padding: 1rem 1.25rem; }

  .cat-row__name { font-size: 1.125rem; margin-bottom: 0.25rem; }

  .cat-row__desc { font-size: 0.8125rem; }

.cat-row__arrow { bottom: 0.75rem; right: 0.75rem; width: 1rem; height: 1rem; }

  .stores-body .header {
    position: absolute;
    height: 11.375rem;
    border-radius: 0 0 4.875rem 4.875rem;
    background: var(--blue);
    box-shadow: none;
  }

  .stores-body .header.menu-open {
    border-radius: 0;
  }

  .stores-body .header__inner {
    align-items: flex-start;
    padding-top: 3.75rem;
  }

  .stores-body .header .logo__img {
    height: 3.8125rem;
  }

  .stores-body .burger {
    width: 3.25rem;
    height: 2.4375rem;
    margin-top: 0.25rem;
  }

  .stores-body .burger span {
    height: 0.25rem;
  }

  .stores-body .burger.open span {
    height: 0.1875rem;
  }

  .stores-body .nav {
    top: 11.375rem;
    padding-top: 1.5rem;
    border-radius: 0;
  }

  .stores-page {
    padding: 17.875rem 0 0;
    background: #fff;
    overflow: hidden;
  }

  .stores-page > .container {
    padding: 0 1.625rem;
  }

  .stores-body .breadcrumbs {
    display: none;
  }

  .stores-hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0.8125rem;
  }

  .stores-hero__title-group {
    display: contents;
  }

  .stores-hero__title {
    order: 1;
    margin: 0 0 1.625rem;
    color: #1f2255;
    font-size: 4.0625rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }

  .stores-hero__text {
    order: 2;
    max-width: none;
    margin-bottom: 5.44375rem;
    color: #1f2255;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4625rem;
    font-weight: 500;
    line-height: 1.12;
  }

  .stores-hero__kicker {
    order: 3;
    color: #1f2255;
    font-size: 1.625rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }

  .stores-map-section {
    display: flex;
    flex-direction: column;
    gap: 1.625rem;
    margin-bottom: 4.875rem;
  }

  .stores-map {
    width: 100%;
    height: 24.8625rem;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 1.625rem;
  }

  .stores-map__frame {
    position: relative;
    z-index: 1;
  }

  .stores-list {
    width: 100%;
    height: 51.675rem;
    max-height: none;
    border-radius: 2.4375rem;
    border-color: #1f2255;
    background: var(--blue);
  }

  .stores-list__head {
    flex: 0 0 11.78125rem;
    padding: 2.35625rem 2.35625rem 2.4375rem;
    border-bottom-color: rgba(255,255,255,0.9);
    border-radius: 2.4375rem 2.4375rem 0 0;
  }

  .stores-list__title {
    margin-bottom: 1.3rem;
    font-size: 1.625rem;
    font-weight: 500;
  }

  .stores-search input {
    height: 4.0625rem;
    border-radius: 0.8125rem;
    font-size: 1.21875rem;
    padding-left: 3.65625rem;
  }

  .stores-search__icon {
    left: 1.05625rem;
    width: 1.95rem;
    height: 1.95rem;
  }

  .stores-list__items {
    flex: 1;
    overflow-y: auto;
    scrollbar-color: #1f2255 transparent;
    scrollbar-width: thin;
  }

  .stores-list__items::-webkit-scrollbar {
    width: 0.24375rem;
  }

  .stores-list__items::-webkit-scrollbar-track {
    background: transparent;
  }

  .stores-list__items::-webkit-scrollbar-thumb {
    background: #1f2255;
    border-radius: 999px;
  }

  .store-item {
    grid-template-columns: 2.4375rem minmax(0, 1fr) 1.35rem;
    gap: 1.21875rem;
    min-height: 9.75rem;
    padding: 1.3rem 2.4375rem;
    align-items: start;
  }

  .store-item--active::before {
    content: none;
  }

  .store-item__number {
    width: 2.4375rem;
    height: 2.4375rem;
    margin-top: 0.325rem;
    font-size: 1.625rem;
  }

  .store-item__address {
    font-size: 1.625rem;
    line-height: 1.18;
    white-space: normal;
  }

  .store-item__landmark {
    margin-top: 0.40625rem;
    font-size: 1.21875rem;
    line-height: 1.15;
  }

  .store-item__city {
    margin-top: 1.3rem;
    padding: 0.40625rem 0.8125rem;
    border-radius: 0.40625rem;
    font-size: 1.21875rem;
  }

  .store-item__arrow {
    width: 1.21875rem;
    height: 1.21875rem;
    margin-top: 0.325rem;
  }

  .stores-list__empty {
    font-size: 1.21875rem;
    padding: 1.625rem;
  }

  .delivery-panel {
    border-radius: 2.4375rem;
    padding: 3.25rem 1.625rem;
    margin-bottom: 20.3125rem;
  }

  .delivery-panel__top {
    display: block;
    margin-bottom: 5.5rem;
  }

  .delivery-panel__title {
    margin-bottom: 1.625rem;
    font-size: 3.25rem;
    font-weight: 500;
    line-height: 1;
  }

  .delivery-panel__text {
    max-width: none;
    font-size: 1.4625rem;
    line-height: 1.12;
  }

  .marketplaces {
    grid-template-columns: 1fr;
    gap: 2.4375rem;
  }

  .marketplace-card {
    height: 8.125rem;
    padding: 0.73125rem;
    border-radius: 0.8125rem;
  }

  .marketplace-card__logo {
    width: 6.5rem;
    height: 6.5rem;
    flex-basis: 6.5rem;
  }

  .marketplace-card__name {
    font-size: 2.03125rem;
    font-weight: 500;
  }

  /* Contacts page, mobile Figma layout */
  .contacts-body .header {
    position: absolute;
    height: 11.375rem;
    border-radius: 0 0 4.875rem 4.875rem;
    background: var(--blue);
    box-shadow: none;
  }

  .contacts-body .header.menu-open {
    border-radius: 0;
  }

  .contacts-body .header__inner {
    align-items: flex-start;
    padding-top: 3.75rem;
  }

  .contacts-body .header .logo__img {
    height: 3.8125rem;
  }

  .contacts-body .burger {
    width: 3.25rem;
    height: 2.4375rem;
    margin-top: 0.25rem;
  }

  .contacts-body .burger span {
    height: 0.25rem;
  }

  .contacts-body .burger.open span {
    height: 0.1875rem;
  }

  .contacts-body .nav {
    top: 11.375rem;
    padding-top: 1.5rem;
    border-radius: 0;
  }

  .contacts-body .contacts-page {
    padding: 17.875rem 0 20.3125rem;
    background: #fff;
    overflow: hidden;
  }

  .contacts-body .contacts-page > .container {
    display: flex;
    flex-direction: column;
    padding: 0 1.625rem;
  }

  .contacts-body .contacts-breadcrumbs {
    display: none;
  }

  .contacts-body .contacts-title {
    order: 1;
    margin: 0 0 5.28125rem;
    color: #1f2255;
    font-size: 4.0625rem;
    font-weight: 500;
    line-height: 1;
  }

  .contacts-body .contacts-intro {
    display: contents;
  }

  .contacts-body .contacts-main {
    display: contents;
  }

  .contacts-body .contacts-company {
    order: 4;
    margin: 2.84375rem 0 2.4375rem;
    font-size: 1.625rem;
    line-height: 1.17;
  }

  .contacts-body .contacts-quick {
    order: 2;
    gap: 1.625rem;
    margin-bottom: 5.6875rem;
  }

  .contacts-body .contacts-quick__item {
    align-items: flex-start;
    gap: 1.21875rem;
  }

  .contacts-body .contacts-quick__icon {
    width: 4.225rem;
    height: 4.225rem;
    border-radius: 0.8125rem;
  }

  .contacts-body .contacts-quick__icon svg {
    width: 2.1125rem;
    height: 2.1125rem;
  }

  .contacts-body .contacts-quick__content {
    gap: 0.65rem;
    padding-top: 0.1625rem;
  }

  .contacts-body .contacts-quick__label {
    font-size: 1.3rem;
    line-height: 1.15;
  }

  .contacts-body .contacts-quick__links {
    flex-direction: column;
    gap: 0.65rem;
  }

  .contacts-body .contacts-quick__link {
    font-size: 2.03125rem;
    line-height: 1;
  }

  .contacts-body .contacts-details {
    order: 5;
    gap: 1.625rem;
    margin-bottom: 0;
  }

  .contacts-body .contacts-detail dt {
    margin-bottom: 0.40625rem;
    font-size: 1.3rem;
  }

  .contacts-body .contacts-detail dd {
    font-size: 1.4625rem;
    line-height: 1.18;
  }

  .contacts-body .contacts-actions {
    display: contents;
  }

  .contacts-body .contact-form {
    order: 3;
    min-height: 60.9375rem;
    padding: 4.0625rem 2.4375rem 2.84375rem;
    border-radius: 1.625rem;
    margin-bottom: 3.25rem;
  }

  .contacts-body .contact-form__title,
  .contacts-body .contacts-store-card__title {
    margin-bottom: 0.8125rem;
    font-size: 2.4375rem;
  }

  .contacts-body .contact-form__text,
  .contacts-body .contacts-store-card__text {
    font-size: 1.3rem;
    line-height: 1.12;
  }

  .contacts-body .contact-form__text {
    margin-bottom: 2.84375rem;
  }

  .contacts-body .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contacts-body .contact-field {
    margin-bottom: 1.625rem;
  }

  .contacts-body .contact-field span {
    margin-bottom: 0.8125rem;
    font-size: 0.975rem;
  }

  .contacts-body .contact-field input,
  .contacts-body .contact-field select,
  .contacts-body .contact-field textarea {
    height: 4.0625rem;
    border-radius: 0.40625rem;
    font-size: 1.21875rem;
    padding: 0 1.4625rem;
  }

  .contacts-body .contact-field textarea {
    height: 11.375rem;
    padding-top: 1.3rem;
  }

  .contacts-body .contact-form__bottom {
    display: block;
    margin-top: 2.4375rem;
  }

  .contacts-body .contact-form__submit {
    min-height: 4.875rem;
    padding: 1.625rem 2.4375rem;
    font-size: 1.625rem;
  }

  .contacts-body .contact-form__bottom p {
    max-width: 21.9375rem;
    margin-top: 1.21875rem;
    color: #2c2c2c;
    font-size: 0.975rem;
  }

  .contacts-body .contacts-store-card {
    order: 3;
    min-height: 37.7rem;
    padding: 3.25rem 2.4375rem 2.4375rem;
    border-radius: 1.625rem;
    margin-bottom: 3.25rem;
  }

  .contacts-body .contacts-store-card__text {
    max-width: none;
    margin-bottom: 3.25rem;
  }

  .contacts-body .contacts-store-card__map {
    height: 16.4125rem;
    margin-bottom: 2.4375rem;
    border-radius: 1.625rem;
  }

  .contacts-body .contacts-store-card__btn {
    width: 100%;
    min-height: 4.875rem;
    padding: 1.625rem 2.4375rem;
    font-size: 1.625rem;
  }

  /* Catalog landing page, mobile Figma layout */
  .catalog-body .header {
    position: absolute;
    height: 11.375rem;
    border-radius: 0 0 4.875rem 4.875rem;
    background: var(--blue);
    box-shadow: none;
  }

  .catalog-body .header.menu-open::after {
    content: none;
  }

  .catalog-body .header.menu-open {
    border-radius: 0;
  }

  .catalog-body .header__inner {
    align-items: flex-start;
    padding-top: 3.75rem;
  }

  .catalog-body .header .logo__img {
    height: 3.8125rem;
  }

  .catalog-body .burger {
    width: 3.25rem;
    height: 2.4375rem;
    margin-top: 0.25rem;
  }

  .catalog-body .burger span {
    height: 0.25rem;
  }

  .catalog-body .burger.open span {
    height: 0.1875rem;
  }

  .catalog-body .nav {
    top: 11.375rem;
    padding-top: 1.5rem;
    border-radius: 0;
  }

  .catalog-body .page-catalog {
    padding: 17.875rem 0 0;
  }

  .catalog-body .page-catalog > .container {
    padding: 0 1.625rem;
  }

  .catalog-body .breadcrumbs,
  .catalog-body .category-toolbar {
    display: none;
  }

  .catalog-body .page-catalog__title {
    max-width: 30.5rem;
    margin: 0 0 5.25rem;
    color: #1f2255;
    font-size: 4.0625rem;
    font-weight: 500;
    line-height: 0.96;
    text-transform: uppercase;
  }

  .catalog-body .catalog-section {
    margin-bottom: 6.5rem;
  }

  .catalog-body .catalog-section:first-of-type {
    margin-bottom: 6.25rem;
  }

  .catalog-body .catalog-section:last-of-type {
    margin-bottom: 20.3125rem;
  }

  .catalog-body .catalog-section__heading {
    margin-bottom: 2.75rem;
    color: #1f2255;
    font-size: 2.03125rem;
    font-weight: 500;
    line-height: 1;
  }

  .catalog-body .cat-list {
    gap: 1.625rem;
  }

  .catalog-body .cat-row {
    display: block;
    min-height: 0;
    height: 32.375rem;
    border-radius: 1.625rem;
  }

  .catalog-body .cat-row:hover {
    transform: none;
    box-shadow: none;
  }

  .catalog-body .cat-row__image {
    width: 100%;
    height: 17.25rem;
    border-radius: 1.625rem 1.625rem 0 0;
  }

  .catalog-body .cat-row__image img {
    object-fit: cover;
  }

  .catalog-body .cat-row__body {
    min-height: 15.125rem;
    padding: 1.875rem 5.25rem 2rem 1.625rem;
  }

  .catalog-body .cat-row__name {
    margin-bottom: 1.125rem;
    font-size: 2.4375rem;
    font-weight: 500;
    line-height: 1;
  }

  .catalog-body .cat-row__desc {
    max-width: 29.75rem;
    font-size: 1.3125rem;
    line-height: 1.17;
  }

  .catalog-body .cat-row__arrow {
    right: 1.625rem;
    bottom: 1.875rem;
    width: 2.6875rem;
    height: 2.6875rem;
  }

  .catalog-body .catalog-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.625rem 0.8125rem;
  }

  .catalog-body .catalog-brand-grid .product-card {
    width: 100%;
    min-width: 0;
    height: 19.4375rem;
    border: 1px solid var(--red);
    border-radius: 1.625rem;
    background: var(--red);
  }

  .catalog-body .catalog-brand-grid .product-card__img {
    width: 100%;
    height: 13.3125rem;
    object-fit: cover;
    border-radius: 1.625rem 1.625rem 0 0;
  }

  .catalog-body .catalog-brand-grid .product-card__overlay {
    height: 6.125rem;
    padding: 1rem 1rem 1.25rem;
    align-items: flex-end;
    gap: 0.75rem;
  }

  .catalog-body .catalog-brand-grid .product-card__name {
    max-width: 10.25rem;
    font-size: 1.625rem;
    font-weight: 500;
    line-height: 1;
  }

  .catalog-body .catalog-brand-grid .product-card__arrow {
    width: 2rem;
    height: 2rem;
  }

  /* ══════════════════════════════════════════════════════════
     PAGE CATEGORY
     ══════════════════════════════════════════════════════════ */
  .page-category { padding-bottom: 2.5rem; }

  .category-body .header {
    position: absolute;
    height: 11.375rem;
    border-radius: 0 0 4.875rem 4.875rem;
    background: var(--blue);
    box-shadow: none;
  }

  .category-body .header.menu-open {
    border-radius: 0;
  }

  .category-body .header__inner {
    align-items: flex-start;
    padding-top: 3.75rem;
  }

  .category-body .header .logo__img {
    height: 3.8125rem;
  }

  .category-body .burger {
    width: 3.25rem;
    height: 2.4375rem;
    margin-top: 0.25rem;
  }

  .category-body .burger span {
    height: 0.25rem;
  }

  .category-body .burger.open span {
    height: 0.1875rem;
  }

  .category-body .nav {
    top: 11.375rem;
    padding-top: 1.5rem;
    border-radius: 0;
  }

  .category-body .page-category {
    padding: 14rem 0 0;
  }

  .category-body .page-category > .container {
    padding: 0 1.625rem;
  }

  .category-body .catalog-banner {
    aspect-ratio: auto;
    height: auto;
    margin: 0 0 2.75rem;
    overflow: visible;
    border-radius: 0;
    background: transparent;
  }

  .category-body .catalog-banner picture {
    height: 24.59375rem;
    overflow: hidden;
    border-radius: 1.625rem;
    background: linear-gradient(180deg, #951524 0%, #951524 30%, #841f41 77%, #59265e 100%);
  }

  .category-body .catalog-banner__img {
    height: 100%;
    border-radius: 1.625rem;
    object-fit: cover;
  }

  .category-body .catalog-banner__title {
    position: static;
    max-width: 32.5rem;
    margin: 1.625rem 0 0;
    color: #1f2255;
    font-size: 3.25rem;
    line-height: 0.96;
    white-space: normal;
  }

  .category-body .catalog-banner--brand picture {
    position: relative;
    height: 30.875rem;
    padding: 0;
    background: transparent;
  }

  .category-body .catalog-banner--brand .catalog-banner__img {
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 1.625rem;
    background: transparent;
    object-fit: cover;
  }

  .category-body .breadcrumbs,
  .category-body .category-sidebar {
    display: none;
  }

  .page-category__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .category-body .page-category__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 5.125rem 1rem;
    margin-bottom: 2rem;
  }

  .category-body .page-category__top--toolbar-only {
    gap: 1rem;
  }

  .page-category__title { font-size: 1.375rem; }

  .category-body .page-category__title {
    grid-column: 1 / -1;
    width: 32.5rem;
    max-width: calc(100vw - 2.5rem);
    color: #141639;
    font-size: 2.84375rem;
    font-weight: 500;
    line-height: 1.04;
    white-space: nowrap;
  }

  .category-body .page-category__title-arrow {
    display: none;
  }

  .page-category__title-arrow svg { width: 1rem; height: 1rem; }

  .category-toolbar {
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
  }

  .category-body .category-toolbar {
    display: contents;
  }

  .btn--cat-outline {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
    gap: 0.5rem;
    border-radius: 8px;
  }

  .icon-pdf { width: 1rem; height: 1.25rem; }

  .category-body .btn--cat-outline {
    width: auto;
    min-height: 2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #1f2255;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4625rem;
    font-weight: 600;
    line-height: 1;
  }

  .category-body .btn--cat-outline:first-child {
    justify-self: start;
    font-size: 0;
    gap: 0.5625rem;
  }

  .category-body .btn--cat-outline:first-child::before {
    content: "";
    width: 1.95rem;
    height: 1.95rem;
    background:
      linear-gradient(#1f2255, #1f2255) 50% 28% / 75% 0.125rem no-repeat,
      linear-gradient(#1f2255, #1f2255) 50% 50% / 75% 0.125rem no-repeat,
      linear-gradient(#1f2255, #1f2255) 50% 72% / 75% 0.125rem no-repeat;
    opacity: 0.95;
  }

  .category-body .btn--cat-outline:first-child::after {
    content: "Фильтры";
    font-size: 1.4625rem;
  }

  .category-body .btn--cat-outline:first-child .icon-pdf {
    display: none;
  }

  .category-body .btn--cat-outline:last-child {
    justify-self: end;
    gap: 0.40625rem;
    white-space: nowrap;
  }

  .category-body .btn--cat-outline svg {
    width: 1.21875rem;
    height: 0.65rem;
  }

  .page-category__layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .category-body .page-category__layout {
    display: block;
  }

  .category-sidebar { width: 100%; }

  .category-sidebar__header {
    padding: 0 0.125rem 0.75rem;
  }
  .category-sidebar__header--brand {
    padding: 0.75rem 0.125rem;
  }

  .category-sidebar__title { font-size: 1rem; }

  .category-sidebar__list {
    gap: 0.125rem;
    padding: 0.75rem 0;
  }

  .category-sidebar__link {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
  }

  .category-sidebar__group {
    padding: 0.75rem 1rem 0.125rem;
    font-size: 0.6875rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .category-body .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.625rem 0.8125rem;
  }

  .category-product-card { border-radius: 12px; }

  .category-body .category-product-card {
    height: 20.55rem;
    border-color: #1f2255;
    border-radius: 1.625rem;
    background: #fff;
  }

  .category-body .category-product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .category-body .category-product-card__image {
    height: 15rem;
    aspect-ratio: auto;
    padding: 0.40625rem 1.05625rem 0;
    border-radius: 1.625rem 1.625rem 0 0;
    background: #fff;
  }

  .category-body .category-product-card__img {
    width: 13.73125rem;
    height: 13.73125rem;
    object-fit: contain;
    mix-blend-mode: darken;
  }

  .category-product-card__name {
    padding: 0.5rem 0.75rem 0.75rem;
    font-size: 0.8125rem;
  }

  .category-body .category-product-card__name {
    min-height: 4.0625rem;
    padding: 0.25rem 1.21875rem 1rem;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1375rem;
    font-weight: 600;
    line-height: 1.18;
  }

  .category-empty { font-size: 0.9375rem; padding: 2rem 0; }

  .pagination--category { margin-top: 2rem; gap: 0.5rem; }

  .category-body .pagination--category {
    margin: 4.875rem 0 20.3125rem;
    gap: 1.625rem;
  }

  .category-body .pagination__arrow,
  .category-body .pagination__item {
    width: 4.0625rem;
    height: 4.0625rem;
    border-radius: 0.8125rem;
    font-size: 2.03125rem;
  }

  .category-body .pagination__arrow {
    background: transparent;
    border-color: transparent;
  }

  /* ══════════════════════════════════════════════════════════
     PAGE PRODUCT
     ══════════════════════════════════════════════════════════ */
  .page-product { padding-bottom: 2.5rem; }

  .product-body .header {
    position: absolute;
    height: 11.375rem;
    border-radius: 0 0 4.875rem 4.875rem;
    background: var(--blue);
    box-shadow: none;
  }

  .product-body .header.menu-open {
    border-radius: 0;
  }

  .product-body .header__inner {
    align-items: flex-start;
    padding-top: 3.75rem;
  }

  .product-body .header .logo__img {
    height: 3.8125rem;
  }

  .product-body .burger {
    width: 3.25rem;
    height: 2.4375rem;
    margin-top: 0.25rem;
  }

  .product-body .burger span {
    height: 0.25rem;
  }

  .product-body .burger.open span {
    height: 0.1875rem;
  }

  .product-body .nav {
    top: 11.375rem;
    padding-top: 1.5rem;
    border-radius: 0;
  }

  .product-body .page-product {
    padding: 13.8125rem 0 0;
    overflow: hidden;
  }

  .product-body .page-product > .container {
    display: flex;
    flex-direction: column;
    padding: 0 1.625rem;
  }

  .product-body .breadcrumbs {
    display: none;
  }

  .page-product__back {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    gap: 0.5rem;
    border-radius: 8px;
  }
  .page-product__back svg { width: 12px; height: 12px; }

  .product-body .page-product__back {
    align-self: flex-start;
    min-height: 4.0625rem;
    padding: 1.21875rem;
    border-radius: 0.8125rem;
    color: #1f2255;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
  }

  .product-body .page-product__back svg {
    width: 0.65rem;
    height: 1.21875rem;
    transform: none;
  }

  .page-product__layout {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.25rem;
  }

  .product-body .page-product__layout {
    display: contents;
  }

  .product-body .page-product__info {
    display: contents;
  }

  /* Gallery comes first on mobile */
  .page-product__gallery {
    width: 100%;
    order: -1;
  }

  .product-body .page-product__gallery {
    display: contents;
  }

  .product-body .product-gallery {
    order: 1;
    width: 100%;
    margin-top: 2.4375rem;
  }

  .product-gallery__main-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-body .product-gallery__main-row {
    display: grid;
    grid-template-columns: minmax(0, calc(100% - 5.44375rem)) 4.63125rem;
    gap: 0.8125rem;
  }

  .product-gallery__main {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 0.75rem;
  }

  .product-body .product-gallery__main {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 1.625rem;
    border-color: rgba(31,34,85,0.5);
  }

  .product-gallery__thumbs {
    flex-direction: row;
    gap: 0.5rem;
  }

  .product-body .product-gallery__thumbs {
    flex-direction: column;
    gap: 0.65rem;
  }

  .product-gallery__thumb {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.625rem;
  }

  .product-body .product-gallery__thumb {
    width: 4.63125rem;
    height: 4.63125rem;
    border-color: rgba(31,34,85,0.5);
    border-radius: 0.8125rem;
  }

  .product-gallery__more {
    width: 4.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    margin-top: 0;
  }

  .product-body .product-gallery__more {
    width: 4.63125rem;
    height: 4.63125rem;
    margin-top: auto;
    border-radius: 0.8125rem;
  }

  .product-body .product-gallery__more svg {
    display: none;
  }

  .product-body .product-gallery__more::before {
    content: "";
    width: 0.8125rem;
    height: 0.8125rem;
    border-right: 0.1875rem solid currentColor;
    border-bottom: 0.1875rem solid currentColor;
    transform: rotate(45deg);
    margin-top: -0.25rem;
  }

  .page-product__buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .product-body .page-product__buttons {
    order: 3;
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    justify-content: flex-start;
    margin: 2.4375rem 0 7.3125rem;
  }

  .product-body .page-product__buttons--desktop {
    display: none;
  }

  .product-body .page-product__buttons--mobile {
    display: flex;
  }

  .product-body .page-product__buttons .btn {
    width: auto;
    min-height: 4.7125rem;
    padding: 1.625rem 2.03125rem;
    border-radius: 0.8125rem;
    font-size: 1.4625rem;
    white-space: nowrap;
  }

  .product-body .page-product__buttons .btn--red {
    flex: 0 0 auto;
  }

  .product-body .page-product__buttons .btn--cat-outline {
    flex: 0 1 auto;
    min-width: 0;
    gap: 0.8125rem;
    overflow: hidden;
  }

  .product-body .page-product__buttons .btn--cat-outline span {
    overflow: hidden;
    text-overflow: clip;
  }

  .product-body .page-product__buttons .icon-pdf {
    width: 1.4625rem;
    height: 1.4625rem;
    flex: 0 0 auto;
  }

  .page-product__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .product-body .page-product__title {
    order: 2;
    margin: 4.875rem 0 0;
    color: #141639;
    font-size: 2.84375rem;
    font-weight: 500;
    line-height: 1.04;
  }

  .product-block { margin-bottom: 1.5rem; }

  .product-body .product-block {
    margin-bottom: 4.0625rem;
  }

  .product-block__title {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }

  .product-body .product-block__title {
    margin-bottom: 1.3rem;
    color: #141639;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.625rem;
    font-weight: 600;
  }

  .product-block__text { font-size: 0.875rem; }

  .product-body .product-block__text {
    color: #141639;
    font-size: 1.4625rem;
    line-height: 1.22;
    text-align: justify;
  }

  .product-body .product-block:nth-of-type(1) {
    order: 4;
    min-height: 27.625rem;
  }

  .product-body .product-block:nth-of-type(2) {
    order: 5;
    margin-bottom: 6.5rem;
  }

  .product-body .product-block:nth-of-type(3) {
    order: 6;
    min-height: 24.375rem;
  }

  /* Nutrition cards */
  .product-nutrition { gap: 0.5rem; }

  .product-body .product-nutrition {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 1.1375rem 0.8125rem;
  }

  .product-nutrition__card {
    padding: 0.75rem;
    border-radius: 0.625rem;
    font-size: 0.8125rem;
  }

  .product-body .product-nutrition__card {
    min-width: 11.375rem;
    min-height: 6.5rem;
    padding: 1.21875rem 0.8125rem;
    border-radius: 1.21875rem;
    font-size: 1.625rem;
    line-height: 1.22;
  }

  .product-nutrition__value { font-size: 1.5rem; }

  .product-body .product-nutrition__value {
    font-family: 'Graphik LC Web', sans-serif;
    font-size: 2.03125rem;
    font-weight: 500;
    line-height: 1.2;
  }

  .product-body .product-nutrition__card:nth-child(1) {
    grid-column: 2;
    grid-row: 3;
    order: 5;
  }

  .product-body .product-nutrition__card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    order: 2;
  }

  .product-body .product-nutrition__card:nth-child(3) {
    display: none;
  }

  .product-body .product-nutrition__card:nth-child(4) {
    grid-column: 1;
    grid-row: 1;
    order: 1;
  }

  .product-body .product-nutrition__card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
    order: 3;
  }

  .product-body .product-nutrition__card:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
    order: 4;
  }

  /* ── Similar products ── */
  .similar-products { margin-top: 2.5rem; }

  .product-body .similar-products {
    order: 7;
    margin-top: 4.875rem;
    margin-bottom: 20.15rem;
  }

  .similar-products__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .product-body .similar-products__head {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.4375rem;
  }

  .similar-products__title { font-size: 1.25rem; }

  .product-body .similar-products__title {
    color: #141639;
    font-size: 2.03125rem;
    font-weight: 600;
  }

  .product-body .similar-products__head .btn {
    margin-left: auto;
    min-height: 4.0625rem;
    padding: 1.21875rem;
    border-radius: 0.8125rem;
    font-size: 1.21875rem;
    white-space: nowrap;
  }

  .similar-products__track {
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.25rem 0;
  }

  .product-body .similar-products__track {
    gap: 0.8125rem;
    margin-right: -1.625rem;
    padding: 0;
    overflow-x: auto;
  }

  .similar-card {
    flex: 0 0 11rem;
    border-radius: 0.75rem;
  }

  .product-body .similar-card {
    flex: 0 0 17.79375rem;
    height: 23.2375rem;
    border-radius: 1.625rem;
  }

  .product-body .similar-card__img {
    height: 15.7625rem;
    aspect-ratio: auto;
    padding: 0.40625rem 0.975rem 0;
  }

  .product-body .similar-card__img img {
    object-fit: contain;
    mix-blend-mode: darken;
  }

  .similar-card__name {
    padding: 0.5rem 0.75rem 0.75rem;
    font-size: 0.8125rem;
  }

  .product-body .similar-card__name {
    min-height: 4.3875rem;
    padding: 0.75rem 1.21875rem 1rem;
    font-size: 1.21875rem;
    line-height: 1.15;
  }

  .similar-products__arrows { margin-top: 1rem; }

  .product-body .similar-products__arrows {
    margin-top: 0.8125rem;
  }

  .similar-products__nav {
    width: 3rem;
    height: 2.5rem;
    border-radius: 0.5rem;
  }

  .product-body .similar-products__nav {
    width: 6.09375rem;
    height: 4.0625rem;
    border-radius: 0.8125rem;
  }
  .similar-products__nav svg { width: 0.875rem; height: 0.875rem; }

  /* Home page, mobile Figma layout */
  .home-body {
    overflow-x: hidden;
  }

  .home-body .header {
    height: 6.75rem;
    padding-top: 0.75rem;
  }

  .home-body .header .container {
    align-items: flex-start;
  }

  .home-body .logo__img {
    height: 3.8125rem;
  }

  .home-body .burger {
    width: 2.625rem;
    height: 2.625rem;
    margin-top: 0.125rem;
  }

  .home-body .nav {
    top: 6.75rem;
  }

  .home-body .hero {
    min-height: 77.5rem;
    border-radius: 0;
    background-image: url('/images/background-hero-mobile.png');
    background-position: center top;
    background-size: cover;
  }

  .home-body .hero__inner {
    min-height: 77.5rem;
    padding-top: 6.75rem;
    padding-bottom: 7rem;
  }

  .home-body .hero__content {
    max-width: 100%;
  }

  .home-body .hero__title {
    max-width: 31.5rem;
    margin-top: 7.625rem;
    margin-bottom: 1.5rem;
    font-size: 3.75rem;
    line-height: 0.98;
  }

  .home-body .hero__subtitle {
    max-width: 28rem;
    margin-bottom: 2.625rem;
    font-size: 1.625rem;
    line-height: 1.2;
  }

  .home-body .hero .btn {
    padding: 1.625rem 2.125rem;
    border-radius: 0.9375rem;
    font-size: 1.5rem;
  }

  .home-body .about-section {
    margin-top: -3.75rem;
    padding: 8.75rem 0 0;
    /* border-radius: 50% 50% 0 0 / 4.625rem 4.625rem 0 0; */
  }

  .home-body .about-section .container {
    display: flex;
    flex-direction: column;
    padding: 0 1.625rem;
  }

  .home-body .info-cards {
    display: contents;
  }

  .home-body .info-card {
    min-height: 0;
  }

  .home-body .info-card--wide {
    order: 1;
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    color: var(--blue);
  }

  .home-body .info-card--wide .info-card__cow {
    display: none;
  }

  .home-body .info-card--wide .info-card__title {
    max-width: 31.25rem;
    margin-bottom: 1.75rem;
    color: var(--blue);
    font-size: 2.875rem;
    line-height: 1.03;
  }

  .home-body .info-card--wide .info-card__text {
    max-width: 30.5rem;
    margin-bottom: 0;
    color: var(--blue);
    font-size: 1.625rem;
    line-height: 1.2;
  }

  .home-body .info-card--wide .btn {
    margin-top: 2.5rem;
  }

  .home-body .values {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
    margin: 8.75rem 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .home-body .value-item {
    align-items: flex-start;
    gap: 1.75rem;
  }

  .home-body .value-item__icon {
    width: 6.625rem;
    min-width: 6.625rem;
  }

  .home-body .value-item:nth-child(2) .value-item__icon {
    width: 6.625rem;
    min-width: 6.625rem;
  }

  .home-body .value-item:nth-child(3) .value-item__icon {
    width: 6.8125rem;
    min-width: 6.8125rem;
  }

  .home-body .value-item:nth-child(4) .value-item__icon {
    width: 7.0625rem;
    min-width: 7.0625rem;
  }

  .home-body .value-item__title {
    margin-bottom: 1rem;
    font-size: 2.03125rem;
    line-height: 1;
  }

  .home-body .value-item__text {
    max-width: 23rem;
    font-size: 1.3rem;
    line-height: 1.15;
  }

  .home-body .info-card--narrow {
    order: 3;
    min-height: 22.875rem;
    margin-top: 7.75rem;
    padding: 2.3125rem 1.875rem;
    border-radius: 2.5rem;
    background-image: url('/images/noise.png');
    background-color: var(--blue);
    color: var(--white);
  }

  .home-body .info-card--narrow .info-card__title {
    max-width: 20rem;
    margin-bottom: 1.5rem;
    font-size: 2.875rem;
    line-height: 1;
  }

  .home-body .info-card--narrow .info-card__text {
    max-width: 23.75rem;
    margin-bottom: 2.75rem;
    font-size: 1.625rem;
    line-height: 1.16;
  }

  .home-body .info-card .btn {
    padding: 1.625rem 2.125rem;
    border-radius: 0.9375rem;
    font-size: 1.5rem;
  }

  .home-body .products-section {
    padding: 12.125rem 0 4.25rem;
  }

  .home-body .products-section .section-title {
    max-width: 30rem;
    margin: 0 auto 2.625rem;
    text-align: center;
    font-size: 4.0625rem;
    line-height: 0.98;
  }

  .home-body .products-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.75rem;
    margin: 0 -1rem;
    padding: 0 calc((100vw - 28.4375rem) / 2);
    overflow-x: auto;
    scroll-padding-inline: calc((100vw - 28.4375rem) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-body .products-grid::-webkit-scrollbar {
    display: none;
  }

  .home-body .product-card {
    flex: 0 0 28.4375rem;
    width: 28.4375rem;
    max-width: calc(100vw - 4rem);
    height: 42rem;
    aspect-ratio: auto;
    border-radius: 3.75rem;
    scroll-snap-align: center;
  }

  .home-body .product-card__media {
    height: 31.5rem;
    border-radius: 3.75rem 3.75rem 0 0;
  }

  .home-body .product-card__overlay {
    min-height: 10.5rem;
    padding: 1.75rem 2rem 2rem;
  }

  .home-body .product-card__name {
    font-size: 2.375rem;
    line-height: 1;
  }

  .home-body .product-card__arrow {
    width: 2rem;
    height: 2rem;
  }

  .home-body .products-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 2.25rem;
  }

  .home-body .products-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: #d9d9d9;
    transition: background var(--ease), transform var(--ease);
  }

  .home-body .products-dot--active {
    background: var(--blue);
    transform: scale(1.08);
  }

  .home-body .news-section {
    padding: 8.25rem 0 5.25rem;
  }

  .home-body .news-section .section-title {
    max-width: 21.5rem;
    margin: 0 0 2.125rem;
    text-align: left;
    font-size: 4.0625rem;
    line-height: 0.98;
  }

  .home-body .news-filters {
    display: block;
    margin-bottom: 2.25rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .home-body .news-filter {
    display: none;
  }

  .home-body .news-filter:first-child,
  .home-body .news-filter--active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 5.375rem;
    padding: 0 1.875rem;
    border-radius: 1.5625rem;
    font-size: 1.5rem;
    color: var(--white);
    background: var(--red);
  }

  .home-body .news-filter:first-child::after,
  .home-body .news-filter--active::after {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    border-right: 0.1875rem solid currentColor;
    border-bottom: 0.1875rem solid currentColor;
    transform: rotate(45deg) translateY(-0.25rem);
  }

  .home-body .news-grid {
    gap: 1.75rem;
  }

  .home-body .news-card {
    border-radius: 1.875rem;
  }

  .home-body .news-card--large {
    min-height: 47.625rem;
  }

  .home-body .news-card--large .news-card__image {
    height: 26.375rem;
    flex-basis: 26.375rem;
  }

  .home-body .news-card__body {
    padding: 1.75rem 5rem 2.25rem 1.875rem;
  }

  .home-body .news-card__arrow {
    right: 1.875rem;
    bottom: 2.25rem;
    width: 1.875rem;
    height: 1.875rem;
  }

  .home-body .news-card__date {
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    line-height: 1;
  }

  .home-body .news-card__title {
    font-size: 2.4375rem;
    line-height: 1;
  }

  .home-body .news-card__text {
    font-size: 1.3rem;
    line-height: 1.15;
  }

  .home-body .news-card--small {
    min-height: 17.125rem;
    border-radius: 1.875rem;
  }

  .home-body .news-card-small__image {
    width: 13.5625rem;
    min-width: 13.5625rem;
  }

  .home-body .news-card-small__body {
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  }

  .home-body .news-card--small .news-card__arrow {
    right: 1.25rem;
    bottom: 1.25rem;
    width: 1.75rem;
    height: 1.75rem;
  }

  .home-body .news-card--small .news-card__date {
    margin-bottom: 1.125rem;
    font-size: 0.975rem;
    line-height: 1;
  }

  .home-body .news-card--small .news-card__title {
    font-size: 2.03125rem;
    line-height: 1;
  }

  .home-body .news-card--small .news-card__text {
    font-size: 1.1375rem;
    line-height: 1.12;
  }

  .home-body .pagination--left {
    margin-top: 2.5rem;
    justify-content: center;
  }

  .home-body .pagination__arrow,
  .home-body .pagination__item {
    width: 3.875rem;
    height: 3.875rem;
    border-radius: 0.9375rem;
    font-size: 1.25rem;
  }

}

@media (max-width: 768px) {
  .news-body .header,
  .news-detail-body .header,
  .stores-body .header,
  .contacts-body .header,
  .about-body .header,
  .catalog-body .header,
  .category-body .header,
  .product-body .header {
    position: absolute;
    height: 11.375rem;
    border-radius: 0 0 4.875rem 4.875rem;
    background: var(--blue);
    box-shadow: none;
  }

  .news-body .header.menu-open,
  .news-detail-body .header.menu-open,
  .stores-body .header.menu-open,
  .contacts-body .header.menu-open,
  .about-body .header.menu-open,
  .catalog-body .header.menu-open,
  .category-body .header.menu-open,
  .product-body .header.menu-open {
    border-radius: 0;
  }

  .news-body .header__inner,
  .news-detail-body .header__inner,
  .stores-body .header__inner,
  .contacts-body .header__inner,
  .about-body .header__inner,
  .catalog-body .header__inner,
  .category-body .header__inner,
  .product-body .header__inner {
    align-items: flex-start;
    padding-top: 3.75rem;
  }

  .news-body .header .logo__img,
  .news-detail-body .header .logo__img,
  .stores-body .header .logo__img,
  .contacts-body .header .logo__img,
  .about-body .header .logo__img,
  .catalog-body .header .logo__img,
  .category-body .header .logo__img,
  .product-body .header .logo__img {
    height: 3.8125rem;
  }

  .news-body .burger,
  .news-detail-body .burger,
  .stores-body .burger,
  .contacts-body .burger,
  .about-body .burger,
  .catalog-body .burger,
  .category-body .burger,
  .product-body .burger {
    width: 3.25rem;
    height: 2.4375rem;
    margin-top: 0.25rem;
  }

  .news-body .burger span,
  .news-detail-body .burger span,
  .stores-body .burger span,
  .contacts-body .burger span,
  .about-body .burger span,
  .catalog-body .burger span,
  .category-body .burger span,
  .product-body .burger span {
    height: 0.25rem;
  }

  .news-body .burger.open span,
  .news-detail-body .burger.open span,
  .stores-body .burger.open span,
  .contacts-body .burger.open span,
  .about-body .burger.open span,
  .catalog-body .burger.open span,
  .category-body .burger.open span,
  .product-body .burger.open span {
    height: 0.1875rem;
  }

  .news-body .nav,
  .news-detail-body .nav,
  .stores-body .nav,
  .contacts-body .nav,
  .about-body .nav,
  .catalog-body .nav,
  .category-body .nav,
  .product-body .nav {
    top: 11.375rem;
    padding-top: 1.5rem;
    border-radius: 0;
  }

  .catalog-body .page-catalog__head {
    min-height: 0;
    margin: 0 0 5.25rem;
  }

  .catalog-body .page-catalog__title {
    margin: 0;
  }

  .catalog-marketplaces {
    display: none;
  }
}
