    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #fff;
	  overflow-x: hidden;

    }
	
	
	@font-face {
	  font-family: 'Montserrat';
	  src: url('../fonts/montserrat_n7.woff2') format('woff2'),
	  font-weight: 600;
	  font-style: normal;
	}

	@font-face {
	  font-family: 'Montserrat';
	  src: url('../fonts/montserrat_n4.woff2') format('woff2')
	  font-weight: 400;,
	  font-style: normal;
	}

    /* HEADER */
    .header {
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      background: #fff;
    }

    /* LEFT */
    .header__left {
      width: 60px;
      display: flex;
      align-items: center;
    }

    /* BURGER */
    .burger {
      width: 20px;
      height: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
    }

    .burger span {
      display: block;
      height: 2px;
      width: 100%;
      background: #2da9ff;
      border-radius: 2px;
    }

    /* CENTER */
    .header__center {
      flex: 1;
      text-align: center;
    }

    .logo {
      height: 44px;
    }

    /* RIGHT */
    .header__right {
      width: 60px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 25px;
    }

    .icon-btn {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .icon-btn svg {
      width: 20px;
      height: 20px;
    }
	
	.icon-menu {
		overflow: hidden;
		width: 100%;
		background: #fff;
		padding: 6px 0;
		cursor: grab;
		touch-action: pan-x;
  overscroll-behavior-x: contain;
	  }

  .icon-track {
		display: flex;
		width: max-content;
		user-select: none;
	  }

  .icon-item {
		flex: 0 0 auto;
		width: 50px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
	  }

  .icon-item img {
		width: 32px;
		height: 32px;
		pointer-events: none;
	  }

  .icon-menu.dragging {
		cursor: grabbing;
	  }
	  
	  
/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 130px;
  left: 0;
  width: 100%;
  height: calc(100vh - 130px);
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 20px;

  display: flex;
  flex-direction: column;
}


/* OPEN STATE */
.side-menu.open {
  transform: translateX(0);
}

/* LINKS */
.menu-links {
  display: flex;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  
  flex-direction: column;
  gap: 18px;
}

.menu-links a {
  text-decoration: none;
  color: #2fa5ed;
  font-size: 18px;
  border-top: 
}

/* LANG */
.lang-switcher {
  position: relative;
  width: 160px;
  font-family: Arial, sans-serif;
  bottom: 50px;
  z-index: 2000;
  isolation: isolate;
}


/* Кнопка */
.lang-current {
  width: 100%;
  background: #fff;
  color: #2fa5ed;
  border: 1px solid #30A5ED;
  padding: 10px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
}

.lang-label {
  margin-right: 12px; /* 👈 отступ текста до стрелки */
}
.why-link {
  display: block;
}

/* сама ссылка */
.why-link__action {
  display: inline-grid;               /* 🔑 НЕ flex */
  grid-auto-flow: column;             /* всегда в строку */
  align-items: center;
  column-gap: 8px;

  font-size: 18px;
  font-weight: 600;
  color: #2fa5ed;
  text-decoration: none;

  white-space: nowrap;                /* на всякий */
}

/* текст */
.why-link__text {
  white-space: nowrap;
}

/* иконка */
.why-link__icon {
  width: 16px;
  height: 16px;

  display: inline-block !important;   /* 🔒 перебивает reset */
  flex: none;
}
.lang-current img {
  width: 18px;
  height: 18px;
}

.lang-current span {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}

/* Стрелка */
.lang-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #2fa5ed;
  border-bottom: 2px solid #2fa5ed;
  transform: translateY(-2px) rotate(45deg); /* 👈 центр по тексту */
  transition: .2s;
}

.lang-switcher.open .lang-arrow {
  transform: translateY(1px) rotate(-135deg);
}

/* Выпадающий список */
.lang-dropdown {
  position: absolute;
  top: auto;
  bottom: 100%;        /* 👈 вверх */
  margin-top: 0;
  margin-bottom: 6px;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  list-style: none;
  padding: 8px 0;
  display: none;
  z-index: 2000;
  font-size: 12px;
  color: #414141;
  font-family: 'Montserrat', sans-serif;
  font-weight:600;
  
}

.lang-switcher.open .lang-dropdown {
  display: block;
}




/* Пункты */
.lang-dropdown li {
  position: relative;
  padding: 12px 14px 12px 46px; /* одинаковый вертикальный паддинг */
  
}



/* Галочка */
.lang-dropdown .check {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(calc(-50% - 2px)) rotate(45deg); /* 👈 ВОТ ОНО */
  width: 6px;
  height: 10px;
  border-right: 2px solid #414141;
  border-bottom: 2px solid #414141;
}



.lang-dropdown li span {
  display: block;
}



/* BURGER → X */
.burger span {
  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-header {
  display: none;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
}

.menu-header.visible {
  display: flex;
}


.menu-back {
  background: none;
  border: none;
  color: #2fa5ed;
  font-size: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  gap: 10px;
}

.back-arrow {
  transform: rotate(180deg);   /* поворачиваем стрелку влево ← */
  flex-shrink: 0;
  display: block;
}


.menu-title {
  font-size: 18px;
  font-weight: 600;
}

.menu-level {
  position: absolute;
  left: 0;
  width: 100%;
  display: none;
}

.menu-level a {
  text-decoration: none;
  color: #2fa5ed;
  font-size: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 16px 0;
  line-height: 1;
}
.menu-level a {
  border-bottom: 1px solid #eaeaea;
}

.menu-level a:first-child {
  border-top: 1px solid #eaeaea;
}

.menu-level a:last-child {
  border-bottom: 1px solid #eaeaea;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

.menu-level.active {
  display: flex;
  flex-direction: column;
}

.menu-level.prev {
  transform: translateX(-200%);
}

.with-arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.with-arrow .arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}


.with-arrow::after {
  content: none; /* убираем стандартную стрелку */
}

.menu-content {
  position: relative;
  flex: 1;
  overflow: hidden; /* ВАЖНО */
}
.menu-level[data-level="1"],
.menu-level[data-level="2"] {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  padding-bottom: 40px; /* чтобы не упиралось */
}





.subscribe {
  position: relative;
  overflow: hidden;
  padding: 25px 16px 50px;
  color: #fff;
}

/* ФОН */
.subscribe-bg {
  position: absolute;
  inset: 0;
  background: url("../img/BG.webp") center no-repeat;
  background-size: cover;
  transform: scale(1); /* 👈 отдаляем фон */
  z-index: 1;
}

/* СИНЯЯ ФИГУРА */
.subscribe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background: #36a8e5;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 72%,
    75% 72%,
    50% 100%,
    25% 72%,
    0 72%
  );
  z-index: 2;
}

/* КОНТЕНТ */
.subscribe__content {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  text-align: center;
   font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ЗАГОЛОВОК */
.subscribe h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
}

.subscribe h2 span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ТЕКСТ */
.subscribe p {
  margin-top: 14px;
  font-size: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  line-height: 1.4;
}

/* LABEL */
.subscribe__label {
  display: block;
  margin: 120px 0 8px;
  text-align: left;
  font-size: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}

/* INPUT */
.subscribe__input {
  position: relative;
}

.subscribe__input input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: none;
  padding: 0 48px 0 14px;
  font-size: 14px;
}

.subscribe__input input::placeholder {
  color: #999;
}

/* КНОПКА СО СТРЕЛКОЙ */
.subscribe__input button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe__input button svg {
  display: block; /* 👈 убирает baseline-смещение */
}




.footer {
  background: #2e2f2f;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-inner {
  padding: 40px 20px 30px;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 28px;
}

/* COLUMNS */
.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li + li {
  margin-top: 10px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px;
  text-align: center;
}

.payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.payments img {
  height: 26px;
}

.copyright {
	margin-top: 10px;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.85;
}

.why-us {
  padding: 40px 20px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* HEADER */
.why-us__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.why-us__title {
  font-size: 22px;
  font-weight: 600;
  color: #2d2f2f;
}

.why-us__title span {
  color: #2fa5ed;
}

.why-us__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #2fa5ed;
  text-decoration: none;
}

.why-us__more .arrow {
  display: inline-flex;
}
.arrow {
  display: inline-flex;
  text-align:center;
}
/* CARDS */
.why-us__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  background: #eef7fd;
  border-radius: 24px;
  padding: 16px;
  text-align: center;
}

/* ICON */
.why-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #2fa5ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-card__icon img {
  width: 80%;
}

/* TEXT */
.why-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #2d2f2f;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card__text {
  font-size: 16px;
  line-height: 1.5;
  color: #6b6f72;
  font-weight: 300;
}

.popular {
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

/* HEADER */
.popular__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.popular__title {
  font-size: 22px;
  font-weight: 600;
  color: #2d2f2f;
}

.popular__all-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* расстояние между текстом и стрелкой */
}

.popular__all {
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #2fa5ed;
}

.arrow {
  display: flex;
  align-items: center;
  pointer-events: none; /* стрелка НЕ кликабельна */
}


/* LIST */
.popular__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* CARD */
.popular-card {
  position: relative;
  background: #fff4e1;
  border-radius: 24px;
  padding: 20px;
  min-height: 140px;
  overflow: hidden;
}

.popular-card:hover {
  background: #EAF5FC;
}

.popular-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2f2f;
  max-width: 65%;
  line-height: 1.3;
}

/* IMAGE */
.popular-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 45%;
  height: auto;
  pointer-events: none;
}

/* MOBILE FIX — обязательно */
.popular-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popular-right__top,
.popular-right__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}





.products {
  padding: 40px 16px;
  font-family: 'Montserrat', sans-serif;
}

.products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.products__header h2 {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #2d2f2f;
  line-height: 1.2;
}

.products__all {
  color: #2fa5ed;
  font-weight: 600;
  font-size:18px;
  text-decoration: none;
  align-items: center;
}

/* GRID */
/* MOBILE (по умолчанию) */
.products__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* DESKTOP */
@media (min-width: 1024px) {
  .products__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .lang-current {
  border: none;
}
  
}


/* CARD */
.product-card {
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
}

/* TOP ICONS */
/* КОНТЕЙНЕР ИКОНОК */
.product-card__icons {
  position: absolute;
  top: 12px;
  left: 12px;

  display: flex;
  flex-direction: column; /* ← В СТОЛБИК */
  gap: 4px;

  z-index: 3;
}

/* КРУГ */
.product-card__icons img {
  width: 22px;
  height: 22px;
  padding: 2px;

  background: #2FA5ED;
  border-radius: 50%;

  box-sizing: border-box;
  object-fit: contain;
}

/* САМ SVG ВНУТРИ */
.product-card__icons img {
  object-fit: contain;
}


/* LOGO */
.product-card__logo {
  position: absolute;
  top: 12px;
  right: 12px;

  height: 20px;
  width: auto;

  z-index: 3;
  pointer-events: none;
}


/* IMAGE */
.product-card__image {
  position: relative;
  margin-top: 14px;
  text-align: center;
}

.product-card__image img {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
}

/* DISCOUNT */
.product-card__discount {
  position: absolute;
  left: 10px;
  top: 170px;
  background: #ffce2b;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
}

/* INFO */
.product-card__title {
  font-size: 14px;
  font-weight: 600;
  margin: 28px 0 4px;

  line-height: 1.3;
  height: 54px;            /* ← КЛЮЧЕВО */
  overflow: hidden;
}


.product-card__weight {
  font-size: 14px;
  color: #9aa0a6;
  font-family: 'Montserrat', sans-serif;
}

/* PRICE */
.product-card__price {
font-size: 14px;
  margin: 12px 0;
  color:#e50101;
}

.product-card__old {
  color: #9aa0a6;
  text-decoration: line-through;
  margin-right: 8px;
}

.product-card__current {
  color: #e53935;
  font-size: 14px;
  font-weight: 600;
}

/* BUTTON */
.product-card__btn {
  margin-top: auto;
  padding: 12px;
  border-radius: 24px;
  border: 1px solid #2fa5ed;
  background: transparent;
  color: #2fa5ed;
  font-weight: 600;
  cursor: pointer;
}

.product-card__btn:active {
  border-color: #2ecc71; /* зелёный */
  color: #2ecc71;
}

.ticker {
  width: 100%;
  overflow: hidden;
  background: #ffe900;
  padding: 17px 0;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerMove 20s linear infinite;
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  white-space: nowrap;
}

.ticker__item span {
  font-size: 18px;
  font-weight: 600;
  color: #2d2f2f;
  font-family: 'Montserrat', sans-serif;
}

/* СНЕЖИНКА */
.ticker__item img {
  width: 36px;
  height: 36px;
  fill: #2d2f2f;
}

/* АНИМАЦИЯ */
@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.promo {
  padding: 24px 16px;
}

/* КОНТЕЙНЕР */
.promo__slider {
  max-width: 520px;
  margin: 0 auto;
}

/* ОБЛАСТЬ СЛАЙДОВ */
.promo__track {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.promo__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.promo__slide.active {
  opacity: 1;
  position: relative; /* ← активный задаёт высоту */
}

.promo__slide img {
  width: 100%;
  height: auto;
  display: block;
}




/* НАВИГАЦИЯ */
.promo__nav {
  margin-top: 16px;
  display: flex;
  justify-content: center;   /* ← ЦЕНТР */
  align-items: center;
  gap: 16px;                 /* расстояние между элементами */
}


/* СТРЕЛКИ */
.promo__arrow {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid #2fa5ed;
  background: #fff;

  padding: 0;
  cursor: pointer;
}

/* SVG внутри кнопки */
.promo__arrow-icon {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: #2fa5ed;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;

  display: block;
}


/* ТОЧКИ */
.promo__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo__dot {
  width: 6px;
  height: 6px;
  background: #d9d9d9;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* АКТИВНЫЙ СЛАЙД — СИНЯЯ ЛИНИЯ */
.promo__dot.active {
  width: 28px;
  height: 6px;
  background: #2fa5ed;
  border-radius: 6px;
}

.enjoy-banner {
  margin: 20px;
  align-items: center;
  
  margin-bottom: 56px;
  border-radius: 28px;
  overflow: hidden;
  padding: 20px 0;
  background: url("../img/749-1.webp") center / cover no-repeat;

  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
}

/* КОНТЕНТ */
.enjoy-banner__content {
  min-height: 640px;
  padding: 32px 24px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;     /* центр по горизонтали */
  text-align: center;      /* текст по центру */
}

/* ЛОГОТИП */
.enjoy-banner__logo {
  width: 190px;
  margin-top: 66px;
  margin-bottom: 16px;
}

/* ЗАГОЛОВОК */
.enjoy-banner__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ОСНОВНОЙ ТЕКСТ */
.enjoy-banner__text {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 420px;
}

/* ВТОРИЧНЫЙ ТЕКСТ */
.enjoy-banner__text--secondary {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.95;
  max-width: 420px;
  font-weight: 600;
  margin-top: 40px; /* толкает кнопку вниз */
}

/* КНОПКА */
.enjoy-banner__button {
  width: 100%;                 /* как в макете */
  max-width: 420px;

  background: #ffe600;
  color: #1f1f1f;

  border-radius: 16px;
  padding: 18px 20px;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between; /* ← ТЕКСТ СЛЕВА, СТРЕЛКА СПРАВА */

  box-sizing: border-box;
}

/* ТЕКСТ */
.enjoy-banner__button-text {
  white-space: nowrap;
}

/* ИКОНКА */
.enjoy-banner__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}



/* HEADER */
.fx-header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

/* CONTAINER — КАК У SHOPIFY */
.fx-header__inner {
 max-width: none;
  width: 90%;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  height: 72px;
}

/* LOGO */
.fx-header__logo {
  flex-shrink: 0;
}

.fx-header__logo img {
  height: 42px;
  display: block;
}

/* NAV — ЕДИНСТВЕННЫЙ РАСТЯГИВАЕМЫЙ */
.fx-header__nav {
  display: flex;
  gap: 32px;
  margin-left: 36px;

  flex: 1 1 auto;
  min-width: 0;
}

.fx-header__link {
  font-size: 16px;
  font-weight: 600;
  color: #2d2f2f;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.fx-header__link:hover {
  color: #2fa5ed;
}

/* ACTIONS — ПРИЛИПАЮТ СПРАВА */
.fx-header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* LANG */
.fx-header__lang {
  display: flex;
  align-items: center;
}



.lang-current img {
  width: 18px;
  height: 12px;
}

/* ICON BUTTONS */
.fx-header__icon {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  line-height: 1;
}

.fx-header__icon svg {
  display: block;
}

.fx-header__icon {
  position: relative;
}

/* BADGE */
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;

  min-width: 17px;
  height: 17px;
  padding: 0 4px;

  background: #121212;
  color: #fff;
  font-family: 'Montserrat', sans-serif;

  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;

  display: none;
  pointer-events: none;
}



.fx-catbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  max-width: none;
  width: 95%;
   margin: 0 auto;
  border-bottom: 1px solid #eee;
  background: #fff;
}

/* СТРЕЛКИ — ФИКСИРОВАНЫ */
.fx-catbar__arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;              /* ❗ НЕ СЖИМАТЬ */
  border-radius: 50%;
  border: 1px solid #2fa5ed;
  background: #fff;
  color: #2fa5ed;
  font-size: 20px;
  cursor: pointer;
}

/* VIEWPORT — ОБРЕЗАЕТ */
.fx-catbar__viewport {
  flex: 1;
  overflow: hidden;            /* ❗ ОБРЕЗКА */
}
.fx-catbar__portal {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.fx-catbar__portal .fx-catbar__dropdown {
  pointer-events: auto;
}


/* TRACK — ЕДЕТ */
.fx-catbar__track {
  display: flex;
  gap: 28px;
  width: max-content;          /* ❗ ВАЖНО */
  overflow: visible;           /* dropdown работает */
  scroll-behavior: smooth;
}




.fx-catbar__item {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #2d2f2f;
  cursor: pointer;
  white-space: nowrap;
}

.fx-catbar__main {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fx-catbar__main img {
  width: 44px;
  height: 44px;
}

/* стрелка */
.fx-catbar__chevron {
  width: 6px;
  height: 6px;
  border-right: 2px solid #2fa5ed;
  border-bottom: 2px solid #2fa5ed;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-left: 6px;
}

.fx-catbar__arrow-icon {
  width: 16px;
  height: 16px;

  stroke: #2d2f2f;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;

  margin-left: 6px;
transform: rotate(-90deg);
margin-top: 1px;
  transition: transform 0.25s ease;
}

/* открыто — стрелка вверх */
.fx-catbar__item.open .fx-catbar__arrow-icon {
  transform: rotate(90deg);
  margin-top: 0;
}


/* при открытом дропдауне */
.fx-catbar__item.open .fx-catbar__chevron {
  transform: rotate(-135deg); /* вверх */
}


/* DROPDOWN */
.fx-catbar__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 12px;
  display: none;
  min-width: 220px;
  z-index: 100;
}
.fx-catbar__item {
  position: relative;
}

.fx-catbar__track {
  overflow: visible; /* ❗ КРИТИЧНО */
}

.fx-catbar__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.fx-catbar__item.open .fx-catbar__dropdown {
  display: block;
}

.fx-catbar__sub {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  text-decoration: none;
  color: #2d2f2f;
  border-radius: 8px;
}

.fx-catbar__sub:hover {
  background: #f5f7f9;
}

.fx-catbar__sub img {
  width: 40px;
  height: 40px;
}


.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
}

.pagination__page,
.pagination__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #2FA5ED;
  background: #fff;
  color: #2FA5ED;
  cursor: pointer;
  font-size: 16px;
}

.pagination__page.active {
  background: #2FA5ED;
  color: #fff;
}

.pagination__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}



@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    margin-bottom: 32px;
  }
}


@media (min-width: 1024px) {
.product-card__icons img {
  width: 28px;
  height: 28px;
}
.product-card__current {
font-size: 20px;
}

  /* убираем фиксированную ширину */
  .fx-header__lang .lang-switcher {
    width: auto;
	margin-left: 32px;
	position: sticky;
  }
  

  /* убираем лишний отступ текста */
  .fx-header__lang .lang-label {
    margin-right: 6px;
  }

  /* делаем кнопку компактной */
  .fx-header__lang .lang-current {
    padding: 0;
    background: transparent;
  }
}

@media (min-width: 1024px) {
  .lang-current {
    background: transparent;
    color: #2d2f2f;
    padding: 0;
  }

  .lang-arrow {
    border-color: #2d2f2f;
  }

  .lang-dropdown {
    top: 100%;
	min-width:140px;
    bottom: auto;
    margin-top: 8px;
  }
}

@media (max-width: 1023px) {
  .lang-switcher {
    position: fixed;     /* вместо sticky */
    bottom: 100px;
    left: 16px;         /* по желанию */
    z-index: 9999;
    isolation: auto;     /* или просто убрать */
  }
  .lang-current img {
  width: 20px;
  height: 20px;
}
}


@media (min-width: 1024px) {
.main{
padding: 10px 60px;
}
  /* ОСНОВНАЯ СЕТКА */
  .popular__list {
    display: grid;
    grid-template-columns: 1.7fr 2fr;
    gap: 20px;
    align-items: stretch;
  }
  
  .popular__title {
  font-size: 32px;
  font-weight: 600;
  color: #2d2f2f;
}
  

  /* БОЛЬШАЯ ЛЕВАЯ КАРТОЧКА */
  .popular-card--big {
    height: 100%;
    padding: 32px;
  }

  .popular-card--big h3 {
    max-width: 60%;
  }

  .popular-card--big img {
	  width: 460px;     /* ← контролируемый размер */
	  max-width: none;
	  bottom: 0;
	  right: 0;
	}


  /* ПРАВАЯ ЧАСТЬ */
  .popular-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* ВЕРХНИЙ РЯД — 2 КАРТОЧКИ */
  .popular-right__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* НИЖНИЙ РЯД — 3 КАРТОЧКИ (ЦЕНТР ШИРЕ) */
  .popular-right__bottom {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 20px;
  }

  /* ОБЩИЙ СТИЛЬ КАРТОЧЕК СПРАВА */
  .popular-right .popular-card {
    min-height: 220px;
    padding: 24px;
  }

  .popular-right .popular-card h3 {
    font-size: 18px;
    max-width: 65%;
  }

  /* КАРТИНКИ — УВЕЛИЧЕНЫ И НЕ ЗАВИСЯТ ОТ ШИРИНЫ КАРТОЧКИ */
  .popular-right .popular-card img {
    width: 220px;      /* ← один размер для всех */
  max-width: none;
  height: auto;
    bottom: -10px;
    right: -10px;
  }

  /* ЦЕНТРАЛЬНАЯ НИЖНЯЯ КАРТОЧКА — КРУПНЕЕ КАРТИНКА */
  .popular-right__bottom .popular-card:nth-child(2) img {
  }
  
  


  .why-us {
    padding-bottom: 60px;
  }
.why-us__title {
  font-size: 32px;
}
  .why-us__header {
    margin-bottom: 40px;
  }

  /* СЕТКА 3×2 */
  .why-us__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .why-card {
    padding: 32px;
    text-align: left;
    min-height: 260px;
  }

  /* ИКОНКА СЛЕВА */
  .why-card__icon {
    margin: 0 0 24px 0;
  }

  .why-card__icon img {
    width: 80%;
  }

  .why-card__title {
    font-size: 20px;
  }

  .why-card__text {
    font-size: 16px;
    max-width: 90%;
  }
  .subscribe {
    min-height: 420px;
    padding: 0;
    display: flex;
    align-items: stretch;
  }

  /* ФОН */
  .subscribe-bg {
    width: 50%;
    left: auto;
    right: 0;
    transform: scale(1.05);
  }

  /* СИНЯЯ ФИГУРА — ДЕСКТОП */
  .subscribe::before {
    width: 55%;
    height: 100%;
    clip-path: polygon(
      0 0,
      100% 0,
      90% 50%,
      100% 100%,
      0 100%
    );
  }

  /* КОНТЕНТ */
  .subscribe__content {
    max-width: 520px;
    margin: 0;
    padding: 60px 40px 60px 80px;
    text-align: left;
  }

  /* ТИПОГРАФИКА */
  .subscribe h2 {
    font-size: 36px;
    line-height: 1.15;
  }

  .subscribe p {
    font-size: 18px;
    max-width: 420px;
  }

  /* ФОРМА */
  .subscribe__label {
    margin-top: 48px;
    color: #fff;
  }

  .subscribe__input {
    max-width: 420px;
  }

  .subscribe__input input {
    height: 52px;
    font-size: 16px;
    border-radius: 14px;
    padding-right: 56px;
  }

  .subscribe__input button {
    right: 16px;
  }
  .products__header h2 {
  font-size: 32px;
  margin-bottom:20px;
}
.promo {
    padding: 40px 0;
  }

  /* контейнер шире */
  .promo__slider {
    max-width: 1700px;
	width: 90%;
  }

  /* баннер визуально «плоский», как в макете */
  .promo__track {
    border-radius: 32px;
  }

  /* изображения не растягиваются, а занимают своё место */
  .promo__slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* навигация чуть ниже и просторнее */
  .promo__nav {
    margin-top: 24px;
    gap: 20px;
  }

  /* стрелки крупнее */
  .promo__arrow {
    width: 44px;
    height: 44px;
  }

  .promo__arrow-icon {
    width: 20px;
    height: 20px;
  }

  /* точки крупнее */
  .promo__dot {
    width: 8px;
    height: 8px;
  }

  .promo__dot.active {
    width: 32px;
    height: 6px;
  }
  .enjoy-banner {
    border-radius: 32px;

    /* разворачиваем фон горизонтально */
    background: url("../img/749-1.webp") center / cover no-repeat;
  }

  .enjoy-banner__content {
    padding: 0;
    justify-content: center; /* вертикальное центрирование */
  }

  /* ЛОГОТИП */
  .enjoy-banner__logo {
    width: 200px;
    margin-bottom: 40px;
  }

  /* ЗАГОЛОВОК */
  .enjoy-banner__title {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  /* ТЕКСТЫ */
  .enjoy-banner__text,
  .enjoy-banner__text--secondary {
    max-width: 900px;
    font-size: 17px;
  }

  .enjoy-banner__text--secondary {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  /* КНОПКА */
  .enjoy-banner__button {
    max-width: 320px;
    padding: 18px 24px;
    font-size: 16px;
  }
}

/* MOBILE — по умолчанию */
.fx-header,
.fx-catbar {
  display: none;
}





@media (min-width: 1024px) {
  .header,
  .icon-menu {
    display: none;
  }

  .fx-header,
  .fx-catbar {
    display: flex;
  }
}
