
@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 (max-width: 2000px) {
  html {
      font-size: 0.85vw !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;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5625rem 2.5rem;
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  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 2.5rem;
  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__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}

/* 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: center;
  flex: 1;
}

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

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

.nav__link:hover { opacity: 0.85; }

.nav__footer { display: none; }

.header__cta { flex-shrink: 0; }

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

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

.catalog-brand-grid .product-card__overlay {
  padding: 1.25rem;
  height: 7rem;
}

.catalog-brand-grid .product-card__name {
  font-size: 1.5625rem;
}

.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__overlay {
  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 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-image: url('/images/noise-red.png');
}

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

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

.news-filter {
  padding: 1.5625rem 2.5rem;
  border-radius: 15px;
  border: 1px solid #1F2255;
  font-size: 1.25rem;
  font-weight: 600;
  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;
  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;
}

.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 {
  background-image: url('/images/noise.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 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;
}

/* 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 {
  padding: 1.25rem;
  flex-direction: column;
  justify-content: center;
}

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

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

/* ═══════════════════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════════════════ */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 1.25rem;
  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
   ═══════════════════════════════════════════════════════════ */
.page-catalog { padding-bottom: 5rem; }

.page-catalog__title {
  font-size: 3.125rem;
  font-weight: 600;
  color: var(--blue);
  margin: 1.5625rem 0 4.375rem;
}

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

.catalog-section__heading {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1.875rem;
  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: transform var(--ease);
  aspect-ratio: 380 / 464;
}
.catalog-card:hover { transform: translateY(-0.25rem); }

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

.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: 1.25rem;
}

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

.cat-row:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.12);
}

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

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

.cat-row__body {
  background-image: url(/images/noise.png);
  background-size: cover;
  background-repeat: no-repeat;
  flex: 1;
  padding: 4rem 4rem 4rem 2.5rem;
  position: relative;
}

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

.cat-row__desc {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  max-width: 37.5rem;
}

.cat-row__arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

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


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

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

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

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

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

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

/* ═══════════════════════════════════════════════════════════
   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: 5.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: 0 1.5rem;
    gap: 0;
    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;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .nav__link {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: opacity 0.2s ease, padding-left 0.2s ease;
  }
  .nav__link:last-child { border-bottom: none; }
  .nav__link:active { padding-left: 0.5rem; opacity: 0.7; }

  .nav__footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 0 2rem;
  }

  .nav__phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
  }

  .nav__email {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
  }

  .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
  }

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

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

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

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

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

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

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

  /* ══════════════════════════════════════════════════════════
     FOOTER
     ══════════════════════════════════════════════════════════ */
  .footer {
    border-radius: 1.25rem 1.25rem 0 0;
    margin-top: 1rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0 1.5rem;
  }

  .footer__logo .logo__img { height: 2.25rem; }

  .footer__nav {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .footer__nav a { font-size: 1rem; }

  .footer__contacts-label { font-size: 1rem; margin-bottom: 0.75rem; }

  .footer__phone {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .footer__email {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .footer__hours-title { font-size: 1rem; margin-bottom: 0.5rem; }
  .footer__hours-text { font-size: 0.875rem; }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem 0 1.5rem;
    font-size: 0.875rem;
  }

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

  /* ══════════════════════════════════════════════════════════
     PAGE CATALOG
     ══════════════════════════════════════════════════════════ */
  .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; }

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

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

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

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

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

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

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

  .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-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

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

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

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

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

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

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

  .page-product__layout {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.25rem;
  }

  /* Gallery comes first on mobile */
  .page-product__gallery {
    width: 100%;
    order: -1;
  }

  .product-gallery__main-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-gallery__main {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 0.75rem;
  }

  .product-gallery__thumbs {
    flex-direction: row;
    gap: 0.5rem;
  }

  .product-gallery__thumb {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.625rem;
  }

  .product-gallery__more {
    width: 4.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    margin-top: 0;
  }

  .page-product__buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .page-product__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

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

  .product-block__title {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }

  .product-block__text { font-size: 0.875rem; }

  /* Nutrition cards */
  .product-nutrition { gap: 0.5rem; }

  .product-nutrition__card {
    padding: 0.75rem;
    border-radius: 0.625rem;
    font-size: 0.8125rem;
  }

  .product-nutrition__value { font-size: 1.5rem; }

  /* ── Similar products ── */
  .similar-products { margin-top: 2.5rem; }

  .similar-products__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .similar-products__title { font-size: 1.25rem; }

  .similar-products__track {
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.25rem 0;
  }

  .similar-card {
    flex: 0 0 11rem;
    border-radius: 0.75rem;
  }

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

  .similar-products__arrows { margin-top: 1rem; }

  .similar-products__nav {
    width: 3rem;
    height: 2.5rem;
    border-radius: 0.5rem;
  }
  .similar-products__nav svg { width: 0.875rem; height: 0.875rem; }
}
