/* @import 'fonts.css'; */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  transition: 0.2s;
}

img {
  display: block;
  max-width: 100%;
}

.none {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  padding: 0;
  margin: 0;
}

html,
body {
  font-family: "Manrope", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  margin: 0;
  /* font-family: "WB Currency"; */
  /* , Hauss, Segoe UI, -apple-system, Roboto, Helvetica Neue, Noto Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji */
  background-color: #FFFAFF;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

i[data-icon] {
  display: inline-block;
  font-style: normal;
  line-height: 1;
  vertical-align: middle;
}

/* Переменные цветов */

:root {
  --black: #707070;
  /* #191308 */
  --white: #fffaff;
  --blue: #3C6997;
  --transparent-blue: rgba(0, 63, 116, 0.3);
  --transparent-white: rgba(255, 250, 255, 0.5);
  --light-blue: #02adb4;
  --red: #df2935;
  --btn-bg:
    linear-gradient(155deg,
      rgba(2, 173, 180, 0.3) 0%,
      rgba(0, 63, 116, 0.3) 100%),
    var(--blue);

  --border-color: rgba(25, 19, 8, 0.12);
  --shadow: 0 10px 30px rgba(25, 19, 8, 0.08);
  --radius: 30px;
  --radius-sm: 12px;
  --transition: 0.25s ease;
}

/* Тексты */
/* :root {
  --font-family: "Nunito Sans", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Montserrat", sans-serif;
} */

.h1 {
  font-size: 40px;
  line-height: 1.4;
  font-weight: 700;
  /* font-family: "Nunito Sans", sans-serif; */
}

.h2 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 600;
  /* font-family: "Nunito Sans", sans-serif; */
}

.h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  /* font-family: "Nunito Sans", sans-serif; */
}

.main {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  /* font-family: "Nunito Sans", sans-serif; */
}

.additional {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  /* font-family: "Nunito Sans", sans-serif; */
}

.additional-mini {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  /* font-family: "Nunito Sans", sans-serif; */
  text-decoration: none;
}

.minute {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  /* font-family: "Nunito Sans", sans-serif; */
}

/* Заголовок */

.header {
  padding: 7.5px 0;
  box-shadow: 0 4px 4px 0 rgba(0, 63, 116, 0.1);
  background: var(--white);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: transform .3s;
  will-change: transform;
}

.header.header--active {
  position: fixed;
}

.out {
  transform: translate3d(0, calc(-100% - 1rem), 0);

  @include breakpoint($xl-bp) {
    transform: none;
  }
}

.box-header {
  width: 100%;
  height: 0px;
  display: block;
}

.home_slider {
  width: 100%;
}

.mainbg {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.05;
  max-height: 1600px;
  height: 100%;
  width: 100%;

  pointer-events: none;
  overflow: hidden;

  background-repeat: repeat;
  background-position: top right;
  background-size: 100% 1600px;
}

.mainbg.--notes {
  max-height: 100%;
}

.mobile-nav {
  display: none;
  overflow: hidden;
  overflow-x: auto;
  overscroll-behavior: auto;
  gap: 0;
  scrollbar-width: thin;
  margin-top: 10px;
  padding-bottom: 10px;
}

.mobile-nav li {
  display: table;
  padding-left: 16px;
}

.mobile-nav li:last-child {
  padding-right: 16px;
}

.mobile-nav li a {
  font-size: 16px;
  color: var(--blue);
  text-decoration: none;
  align-items: center;
  display: flex;
  width: max-content;
  padding: 3px 9px;
  border-radius: var(--radius);
  overflow: hidden;
}

.mobile-nav li.active a {
  color: #fff;
  background: linear-gradient(135deg, #5A89B8 0%, #3C6997 50%, #284A6B 100%);
  /* background: linear-gradient(135deg, #4A7CAD 0%, #3C6997 45%, #2F567D 100%); */
}

/* .mobile-nav li:nth-child(2) a {
  color: #fff;
} */

.mainbg img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: right top;
  min-height: 1600px;
}

section {
  position: relative;
  z-index: 1;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.header_search {
  width: 100%;
  max-width: 600px;
  background-color: #F3F5F6;
  height: 48px;
  border-radius: var(--radius);
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  position: relative;
}

.header_search input {
  width: 100%;
  background: rgba(0, 0, 0, 0);
  outline: none;
  border: 0;
  font-size: 16px;
  /* font-family: Hauss; */
  padding-left: 10px;
}

/* .header_search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 420px;
  width: 100%;
} */

/* .header_search input[name="search"] {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--transparent-blue);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  outline: none;
  font-size: 15px;
  transition: 0.2s ease;
} */

/* .header_search input[name="search"]:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(2, 173, 180, 0.12);
} */

.search_autocomplete {
  position: relative;
  flex: 1 1 auto;
}

.search_dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--transparent-blue);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(25, 19, 8, 0.12);
  z-index: 100;
  overflow: hidden;
  display: none;
}

.search_dropdown.active {
  display: block;
}

.search_loading {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px;
  color: var(--blue);
  font-size: 14px;
  border-bottom: 1px solid var(--transparent-blue);
}

.search_loading.active {
  display: flex;
}

.search_loading i {
  font-size: 20px;
  animation: searchSpin 1s linear infinite;
}

@keyframes searchSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.search_results_list:empty {
  display: none;
}

.search_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--black);
  border-bottom: 1px solid rgba(0, 63, 116, 0.08);
  transition: background 0.2s ease;
}

.search_item:hover {
  background: var(--transparent-white);
}

.search_item:last-child {
  border-bottom: none;
}

.search_item_image {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f4f4f4;
}

.search_item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search_item_info {
  flex: 1 1 auto;
  min-width: 0;
}

.search_item_title {
  font-size: 14px;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 4px;
  word-break: break-word;
}

.search_item_price {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}

.search_empty {
  padding: 14px;
  font-size: 14px;
  color: var(--blue);
}

.search_all_results {
  display: block;
  padding: 13px 14px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  background: var(--btn-bg);
  font-weight: 600;
  transition: 0.2s ease;
}

.search_all_results:hover {
  opacity: 0.9;
}

@media (max-width: 767px) {
  .header_search {
    max-width: 100%;
  }

  .search_item {
    align-items: flex-start;
  }

  .search_item_image {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .search_item_title,
  .search_item_price,
  .search_empty,
  .search_loading {
    font-size: 13px;
  }
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  color: var(--blue);
  font-size: 16px;
  font-family: Segoe UI;
  width: 100%;
}

.marquee a {
  color: var(--blue);
  font-size: 16px;
  font-family: Segoe UI;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  text-decoration: none;
  transition: 0.8s;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-nav__item--has-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.header-nav__toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--blue);
  line-height: 1;
}

.header-nav__icon {
  line-height: 1;
  font-size: 25px;
  font-variation-settings: "wght" 100;
}

.header-nav__link:hover,
.header-nav__link:focus-visible {
  text-decoration: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-tools__icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-tools__icon {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  transition: 0.8s;
  position: relative;
  text-decoration: none;
}

.header-tools__icon i {
  font-size: 32px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 0, "opsz" 32;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lang-switch.mobile {
  display: none;
}

.lang-switch__btn {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--blue);
  opacity: 0.6;
  transition: 0.8s;
}

.lang-switch__btn.is-active {
  opacity: 1;
}

.lang-switch__sep {
  color: var(--blue);
  opacity: 1;
}

.header-nav__link:hover,
.header-tools__icon:hover,
.lang-switch__btn:hover {
  opacity: 0.7;
  transition: 0.8s;
}

.services-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -45px;
  z-index: 50;
  display: none;
  width: 424px;
  padding: 12px;
  border: 1px solid var(--light-blue);
  border-radius: var(--radius);
  background: var(--white);
}

.services-item {
  display: flex;
  justify-content: space-between;
  gap: 0;
  text-decoration: none;
  color: inherit;

  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--transparent-blue);
}

.services-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.services-item__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-item__icon {
  font-size: 24px;
  line-height: 1;
  color: var(--blue);
}

.services-item__right {
  display: flex;
  align-items: center;
}

.services-item__arrow {
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 40px;
  color: var(--light-blue);
}

.services-item__desc {
  color: #000000;
}

.services-item__title {
  color: var(--blue);
}

/* Голова */

.head {
  background: url("../images/head_bg.webp") center / cover no-repeat;
  height: 710px;
  padding: 60px 0;
}

.head__card {
  width: 580px;
  height: 590px;
  padding: 24px;
  border: 1px solid var(--light-blue);
  border-radius: var(--radius);
  background: var(--transparent-blue);

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.head__meta,
.head__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.head__icon {
  font-size: 24px;
  line-height: 1;
  color: var(--white);
}

.head__meta-text,
.head__row-text {
  line-height: 25px;
  min-height: 25px;
  color: var(--white);
}

.head__title {
  color: var(--white);
}

.head__btn {
  width: 157px;
  padding: 8px 24px;
  border-radius: var(--radius);
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  transition: 0.8s;
}

.head__btn:hover {
  opacity: 0.7;
  transition: 0.8s;
}

.head__btn-arrow {
  width: 25px;
  height: 25px;
  display: block;
}

/* Преимущества */

.advantages {
  padding: 60px 0;
  background-color: var(--white);
  background-image: url("../images/advantages_bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.advantages__title {
  color: var(--black);
  text-align: center;
  margin-bottom: 32px;
  font-weight: 500;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  column-gap: 20px;
  row-gap: 16px;
  justify-content: center;
}

.adv-card {
  width: 380px;
  height: 104px;
  padding: 12px;
  border: 1px solid var(--light-blue);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  text-decoration: none;
}

.adv-card__icon {
  width: 80px;
  height: 80px;
  font-size: 80px;
  line-height: 80px;
  color: var(--blue);
}

.adv-card i {
  font-variation-settings:
    'FILL' 0,
    /* 0 — контур, 1 — заливка */
    'wght' 100,
    /* жирность: 100–700 */
    'GRAD' 0,
    /* толщина штриха */
    'opsz' 24;
  /* оптический размер */
}

.adv-card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.adv-card__head {
  color: var(--blue);
  line-height: 34px;
  height: 34px;
  font-size: 24px;
}

.adv-card__desc {
  color: var(--blue);
  line-height: 20px;
  min-height: 20px;
}

.adv-card:hover {
  opacity: 0.8;
}

/* Пептиды */

.popular {
  background: var(--white);
}

.popular__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 50px 0;
}

.popular__title {
  text-align: center;
  color: var(--black);
  font-weight: 500;
}

.popular__shell {
  position: relative;
  /* left: -10px; */
}

.popular__viewport {
  width: 1197px;
  overflow: hidden;
  padding-left: 10px;
  padding-top: 12px;
  padding-bottom: 1px;
  box-sizing: border-box;
}

.popular__track {
  display: flex;
}

.popular__track .swiper-slide {
  margin-right: 20px;
  box-sizing: border-box;
  width: 280px;
}

.popular__track .swiper-slide:last-child {
  margin-right: 0;
}

.popular__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--light-blue);
}

.popular__arrow--left {
  left: -72px;
}

.popular__arrow--right {
  right: -90px;
}


.popular__arrow i {
  font-size: 80px;
  line-height: 80px;
}

.product-card {
  height: 445px;
  /* padding: 16px; */
  /* border: 1px solid var(--light-blue); */
  border-radius: var(--radius);
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
  align-items: flex-start;
}

.product-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 60px;
  height: 29px;
  padding: 2px 8px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  line-height: 1;
}

.product-card__badge--2 {
  background: var(--light-blue);
  width: 60px;
  z-index: 100;
}

.product-card__badge--1 {
  background: var(--blue);
  width: 61px;
  z-index: 100;
}

.product-card .data_info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
}

.product-card__media {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Контейнер с плашками */
.product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;

  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  align-items: flex-start;

  pointer-events: none;
  /* чтобы клик по картинке не ломался */
}

/* Базовая плашка */
.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 28px;
  padding: 6px 10px;

  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);

  border-radius: var(--radius);
  white-space: normal;
  max-width: 100%;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 4px 14px rgba(25, 19, 8, 0.18);
  border: 1px solid rgba(255, 250, 255, 0.18);
}

/* Цвета под конкретные типы */
.product-badge--hit {
  background: linear-gradient(135deg, #008A07 0%, #008A07 100%);
  color: var(--white);
}

.product-badge--popular {
  background: linear-gradient(135deg, var(--blue) 0%, #274d73 100%);
  color: var(--white);
}

.product-badge--choice {
  background: linear-gradient(135deg, var(--light-blue) 0%, #02848a 100%);
  color: var(--white);
}

.product-badge--guarantee {
  background: linear-gradient(135deg, rgba(25, 19, 8, 0.88) 0%, rgba(60, 105, 151, 0.9) 100%);
  color: var(--white);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: rgba(0, 0, 0, 0.03);
}

/* .product-card__price {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-top: 2px;
  padding-left: 8px;
  padding-right: 6px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue);
} */

.product-card__price {
  font-size: 18px;
  text-align: left;
  color: var(--black);
}

.product-card__name {
  color: var(--black);
  /* font-family: Hauss; */
  line-height: 20px;
  font-size: 16px;
  /* min-height: 60px; */
  text-align: left;
}

.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  width: 250px;
}

.product-card__btn {
  padding: 12px 32px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: 0.8s;
  text-decoration: none;
  cursor: pointer;
  width: max-content;
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(135deg, #5A89B8 0%, #3C6997 50%, #284A6B 100%) !important;
}

.product-card__btn .main {
  display: flex;
  align-items: center;
  gap: 5px;
  width: max-content;
}

.product-card .shop_one_click {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--blue);
  text-decoration: none;
  width: max-content;
  height: auto;
}

.product-card__btn:hover {
  transition: 0.8s;
  opacity: 0.6;
}

.product-card__btn--ghost {
  border: 1px solid var(--blue);
  background: var(--white);
  color: var(--blue);
}

.product-card__btn--primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
}

/* .product-card:nth-child(2n) .product-card__btn--primary {
  background: var(--light-blue) !important;
  border: 1px solid var(--light-blue) !important;
} */

/* .product-card:nth-child(2n) .product-card__price {
  color: var(--light-blue) !important;
} */

/* .product-card:nth-child(2n) .product-card__name {
  opacity: 0.8;
} */

.product-card__btn img {
  width: 25px;
  height: 25px;
  display: block;
}

/* База данных */

.database {
  background-color: var(--white);
  background-image: url("../images/database_bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 0;
}

.database__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.database__img {
  width: 480px;
  height: 328px;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
}

.database__content {
  width: 480px;
  height: 328px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--black);
}

.database__title {
  color: var(--black);
  line-height: 34px;
}

.database__stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.database__qa {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.database__text {
  color: var(--black);
  line-height: 20px;
  min-height: 20px;
}

.database__lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.database__line {
  color: var(--black);
  line-height: 25px;
  min-height: 25px;
}

.database__btn {
  width: 135px;
  padding: 8px 24px;
  border-radius: var(--radius);
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  transition: 0.8s;
}

.database__btn:hover {
  opacity: 0.7;
  transition: 0.8s;
}

.database__btn-arrow {
  display: block;
  width: 25px;
  height: 25px;
}

/* PeptAge */

.catalog-top.catalog-top--error {
  padding-bottom: 0;
}

.peptage {
  background-color: var(--white);
  background-image: url("../images/peptage_bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 0;
}

.peptage__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.peptage__innercontent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.peptage__content>*:not(.peptage__img) {
  margin-bottom: 12px;
}

.peptage__content>*:not(.peptage__img):last-child {
  margin-bottom: 0;
}

.peptage__img {
  width: 580px;
  height: 563px;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--light-blue);
  overflow: hidden;
  position: relative;
}

.peptage__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.peptage__img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3185FC;
  opacity: 0.1;
}

.peptage__img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(61, 174, 204, 0) 0%,
      rgba(61, 174, 204, 0) 50%,
      rgba(61, 174, 204, 1) 100%);
  ;
  opacity: 0.5;
}

.peptage__text {
  width: 580px;
  height: 563px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--black);
}

.peptage__title {
  color: var(--blue);
  line-height: 45px;
}

.peptage__lead {
  color: var(--black);
  line-height: 20px;
}

.peptage__subtitle {
  color: var(--blue);
  line-height: 34px;
}

.peptage__point {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.peptage__point-title {
  color: var(--black);
  line-height: 25px;
  min-height: 25px;
}

.peptage__point-text {
  color: var(--black);
  line-height: 140%;
  min-height: 20px;
}

.peptage__assort {
  color: var(--black);
  line-height: 20px;
}

.peptage__description {
  /* border: 1px solid var(--light-blue); */
  /* border-radius: var(--radius); */
  padding: 0; /* 12px; */
  background: var(--white);
  color: var(--black);
  line-height: 140%;
  text-align: left;
  font-size: 14px;
}

.peptage__accent {
  color: var(--blue);
}

/* Подвал */

.footer {
  background: var(--blue);
  color: var(--white);
  padding: 32px 0px 16px;
  background-image: url(../images/footer_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__title-logo {
  margin: 16px 0;
  min-height: 34px;
  line-height: 34px;
}

.footer__col-logo {
  min-width: 312px;
}

.footer__top {
  display: flex;
  gap: 108px;
}

.footer__logo {
  width: 126px;
  height: auto;
  padding: 8px 21px;
  background-color: var(--white);
  border-radius: calc(var(--radius) / 2);

  display: block;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__title {
  margin-bottom: 16px;
  min-height: 34px;
  line-height: 34px;
}

.footer__title-contacts {
  margin-bottom: 10px;
}

.footer__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__text a {
  color: var(--white);
  text-decoration: none;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__list a {
  min-height: 25px;
  line-height: 25px;
}

.footer__list a,
.footer__link,
.footer__policy {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.8s;
}

.footer__list a:hover,
.footer__link:hover,
.footer__policy:hover {
  opacity: 0.7;
}

.footer__policy {
  text-decoration: underline;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  height: 40px;
}

.footer__socials img {
  display: block;
  width: 32px;
  height: 32px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__pay {
  display: flex;
  align-items: center;
  gap: 10px;
}

.head__btn,
.database__btn,
.product-card__btn--primary,
.btn-primary,
.login-button,
.register-button {
  background: var(--btn-bg);
  background-repeat: no-repeat;
}

.catalog-top__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalog-top__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
}

.catalog-top__crumb {
  color: var(--blue);
  text-decoration: none;
  transition: opacity .5s;
}

@media (hover: hover) and (pointer: fine) {
  .catalog-top__crumb:hover {
    opacity: 0.8;
  }
}

.catalog-top__sep {
  color: var(--blue);
}

.catalog-search {
  width: 100%;
  max-width: 880px;
  height: 41px;
  padding: 8px 24px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  box-sizing: border-box;

  display: flex;
  align-items: center;
}

.catalog-search__icon {
  width: 25px;
  height: 25px;
  font-size: 25px;
  line-height: 16px;
  color: var(--blue);
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 25;
  border: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.catalog-search__placeholder {
  color: var(--transparent-blue);
}

.xl-block {
  display: none;
}

.burger-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

.burger-btn i {
  font-size: 40px;
  line-height: 40px;
  color: var(--blue);
  font-weight: 100;
}

.img-cover {
  display: block;
  overflow: hidden;
}

.img-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-contain {
  display: block;
}

.img-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.breadcrumbs {
  padding-top: 60px;
}

.wysiwyg {
  /* font-family: var(--font-family); */
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}

.wysiwyg>*:last-child {
  margin-bottom: 0;
}

.wysiwyg h2 {
  /* font-family: var(--font-family); */
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);

  margin-bottom: 4px;
}

.wysiwyg p {
  margin-bottom: 24px;
}

.wysiwyg a {
  color: var(--blue);
  transition: opacity .5s;
  text-transform: none;
  text-decoration: none;
}

.wysiwyg a:hover {
  opacity: 0.8;
}


.wysiwyg ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 24px;
}

.wysiwyg ul li::before {
  content: '- ';
}

.wysiwyg ol {
  padding: 0;
  margin: 0;
  list-style: inside decimal;
}

.is-popup-open {
  overflow: hidden;
}

html,
body {
  scrollbar-gutter: stable;
}

main {
  position: relative;
}

.popular__tablet {
  display: none;
}

.cart-number {
  /* font-family: var(--font-family); */
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: var(--black);

  border: 0.50px solid var(--light-blue);
  border-radius: 100px;
  min-width: 16px;
  height: 16px;

  background-color: var(--white);

  position: absolute;
  right: -2px;
  top: -3.5px;

  text-align: center;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.header_logo {
  width: 105px;
  height: 60px;
}

.header_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-white {
  border: 0.1rem solid var(--btn-bg);
  border-radius: 0.3rem;
  color: var(--btn-bg);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  padding: 12px 26px;
  appearance: button;
  transition: color 0.3s, border-color 0.3s;
}

.btn-white:hover {
  border-color: var(--Black);
  color: var(--Black);
}

.input {
  border-radius: 3px;
  border: 1 solid var(--btn-bg);
  background: var(--white);
  width: 100%;
  color: var(--blue);
  /* font-family: "Gilroy"; */
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1.1rem 1.3rem;
  transition: border-color 0.3s;
}

.input::placeholder {
  color: var(--Grey-2, #757575);
}

.input:focus {
  border-color: var(--btn-bg);
  outline: none;
}

.mcatalog-plusminus {
  display: flex;
  gap: 0;
  height: min-content;
  position: relative;
}

.mcatalog-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.plusminus-btn {
  width: 30px;
  height: 30px;
  padding: 6px 10px;
  color: var(--Black, #303030);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  cursor: pointer;
  transition: opacity var(--time);
  /* font-family: "Nunito Sans", sans-serif; */
}

.plusminus-btn:hover {
  opacity: 0.8;
}

.plusminus-input {
  width: 40px;
  height: 30px;
  text-align: center;
  padding: 0;
  /* font-family: "Nunito Sans", sans-serif; */
  appearance: none;
  -moz-appearance: textfield;
}

.plusminus-input::-webkit-inner-spin-button,
.plusminus-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.plusminus-input {
  font-size: .7em;
}

button:disabled {
  cursor: default !important;
  opacity: .5;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sf-select {
  appearance: none;
  /* Disable the default arrow */
  -webkit-appearance: none;
  /* For WebKit-based browsers */
  -moz-appearance: none;
  /* For Firefox */
  width: 100%;
  padding: 5px 35px 5px 10px;
  font-size: 16px;
  border: 1px solid var(--blue);
  border-radius: calc(var(--radius) / 2);
  background-color: var(--white);
  color: var(--blue);
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="%233C6997"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer;
}

.sf-select:focus {
  outline: none;
}

.mcatalog-flex {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

/* Поле сортировки */
.catalog-sort {
  width: 100%;
  max-width: 320px;
  position: relative;
  /* font-family: inherit; */
}

.catalog-sort__label {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
}

.catalog-sort__select {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.catalog-sort__trigger {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--transparent-blue);
  border-radius: 14px;
  background: var(--btn-bg);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(25, 19, 8, 0.08);
  backdrop-filter: blur(6px);
}

.catalog-sort__trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(25, 19, 8, 0.12);
}

.catalog-sort__trigger:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(2, 173, 180, 0.2);
}

.catalog-sort__trigger-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: -4px;
}

.catalog-sort__select.is-open .catalog-sort__trigger-arrow {
  transform: rotate(225deg);
  margin-top: 4px;
}

.catalog-sort__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(60, 105, 151, 0.15);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(25, 19, 8, 0.12);
  overflow: hidden;
  z-index: 100;
  display: none;
}

.catalog-sort__option {
  padding: 13px 16px;
  font-size: 15px;
  color: var(--black);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.catalog-sort__option:hover {
  background: var(--transparent-blue);
  color: var(--black);
}

.catalog-sort__option.is-selected {
  background: rgba(2, 173, 180, 0.12);
  color: var(--blue);
  font-weight: 600;
}

.catalog__track {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  gap: 32px 20px;
}

.filter {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav_children_sections {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.nav_children_sections .item {
  padding: 5px 15px;
  background: var(--transparent-blue);
  color: var(--blue);
  /* font-size: 18px; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  border-radius: 12px;
  text-decoration: none;
  width: max-content;
}

.nav_children_sections .item:hover {
  opacity: 0.8;
}

/* Мобильная адаптация */
@media (max-width: 767px) {
  .catalog-sort {
    max-width: 100%;
  }

  .catalog-sort__trigger {
    min-height: auto;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: var(--radius);
  }

  .catalog-sort__dropdown {
    border-radius: var(--radius);
  }

  .catalog-sort__option {
    padding: 14px;
    font-size: 14px;
  }
}

.notice-text {
  /* font-size: 16px;
  line-height: 1.6;
  color: #333; */
  max-width: 700px;
}

.notice-more {
  display: none;
}

.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: var(--light-blue);
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.read-more-btn:hover {
  /* background: #1f57b8; */
  transform: translateY(-1px);
}

.read-more-btn:active {
  transform: translateY(0);
}

.read-more-btn.open {
  background: var(--blue);
}

.read-more-btn.open:hover {
  background: #5a6268;
}

.btn-premium {
  color: #fffaff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 22%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(135deg, #12c7cd 0%, #02939a 35%, #027e85 65%, #0b5f75 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  box-shadow:
    0 10px 24px rgba(2, 109, 115, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.btn-premium:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 22%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #1cd3d8 0%, #02a1a8 35%, #028189 65%, #0a677f 100%);
  box-shadow:
    0 14px 30px rgba(2, 109, 115, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.btn-premium:active {
  transform: translateY(1px);
  box-shadow:
    0 8px 18px rgba(2, 109, 115, 0.24),
    inset 0 2px 4px rgba(0, 0, 0, 0.18);
}