/* cyrillic */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  src: url(https://fonts.gstatic.com/s/jost/v18/92zatBhPNqw73oDd4iYl.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  src: url(https://fonts.gstatic.com/s/jost/v18/92zatBhPNqw73ord4iYl.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  src: url(https://fonts.gstatic.com/s/jost/v18/92zatBhPNqw73oTd4g.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --main-red: #AC0B19;
  --color-txt: #3E3E3E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Jost", sans-serif;
  color: #3E3E3E;
  font-weight: 300;
  font-size: 16px;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr auto;
}

a {
  text-decoration: none;
  color: var(--color-txt);
}

a, button, input, select, textarea, label, .custom-select, li{
  font-family: "Jost", sans-serif;
}
/* Убираем обводку для всех интерактивных элементов */
a, button, input, select, textarea, label, 
[role="button"], [tabindex]:not([tabindex="-1"]) {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Если нужно сохранить доступность с клавиатуры, добавьте стили для :focus-visible */
a:focus-visible, button:focus-visible, input:focus-visible, 
select:focus-visible, textarea:focus-visible {
    outline: 2px solid #000; /* или любой другой стиль для клавиатурной навигации */
}


ul {
  list-style: none;
}
input[readonly] {
  background-color: #e6e6e6;
}
h3{
  font-size: 28px;
  font-weight: 300;
}
:active, :hover, :focus {
  outline: 0;
  outline-offset: 0;
}
input {outline: 0 !important;}

.header-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  /* z-index: 1001; */
  z-index: 994;
}

/* custom radio */
 /* для элемента input c type="radio" */
 .custom-radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
/* для элемента label связанного с .custom-radio */
.custom-radio+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}
/* создание в label псевдоэлемента  before со следующими стилями */
.custom-radio+label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  background-color: #fff;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
/* стили при наведении курсора на радио */
.custom-radio:not(:disabled):not(:checked)+label:hover::before {
  border-color: #adb5bd;
}
/* стили для активной радиокнопки (при нажатии на неё) */
.custom-radio:not(:disabled):active+label::before {
  background-color: #adb5bd;
  border-color: #adb5bd;
}
/* стили для радиокнопки, находящейся в фокусе */
.custom-radio:focus+label::before {
  /* box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); */
}
/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
.custom-radio:focus:not(:checked)+label::before {
  border-color: #adb5bd;
}
/* стили для радиокнопки, находящейся в состоянии checked */
.custom-radio:checked+label::before {
  background-image: url("../img/checed.svg");
}
/* стили для радиокнопки, находящейся в состоянии disabled */
.custom-radio:disabled+label::before {
  background-color: #e9ecef;
}
/* custom checkbox  */
/* .custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-checkbox+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
}
.custom-checkbox+label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom-checkbox:checked+label{
  color: #AC0B19;
}
.custom-checkbox:checked+label::before {
  background-image: url("../img/checed.svg");
} */

/* Скрываем стандартный чекбокс */
.custom-checkbox {
  display: none;
}

/* Стиль для кастомного чекбокса */
.checkbox-custom {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

/* Красный квадрат внутри при выборе чекбокса */
.custom-checkbox:checked + .checkbox-custom {
  background-image: url("../img/checed.svg");
  background-size: 10px;
  background-position: center;
  color: var(--main-red);
}

.custom-label {
  cursor: pointer;
}
/* Изменяем цвет текста при checked */
.custom-checkbox:checked + .checkbox-custom + .checkbox-text {
  color: var(--main-red);
}


/* custom select */

.sort-container {
  display: flex;
  width: auto;
  max-width: 300px;
  font-size: 16px;
  font-weight: 300;
  color: var(--main-red);
  cursor: pointer;
}


.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  padding: 5px 16px 5px 8px;
  font-size: 16px;
  color: #AC0B19;
  cursor: pointer;
  width: auto;
  border: none;
}
.custom-select option{
  font-size: 14px;
  font-weight: 300;
}
.sort-container svg{
  margin-top: 8px;
  margin-left: -10px;
  pointer-events: none;
}

.custom-select:focus {
  outline: none;
  border-bottom-color: #AC0B19;
}




.page-title{
  padding-bottom: 10px;
  /* font-size: 60px; */
  font-size: 30px;
  font-weight: 300;
  border-bottom: 1px solid #d4d4d4;
}
.container {
  max-width: 1880px;
  margin: 0 auto;
  padding: 0 30px;
}

.mob-menu__wrapp {
  display: none;
}

header {
  max-width: 1880px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 14px;
  background-color: #fff;
  border-bottom: 1px solid #e1e1e1;
}

/* header .logo a {
  font-size: 22px;
  font-weight: 300;
  color: #3E3E3E;
  text-decoration: none;
} */

/* .logo-red {
  color: var(--main-red);
} */

header nav > ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

header nav > ul > li {
  display: inline-block;
}

header nav > ul > li > a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 400;
}
.icons-header img, .icons-header i{
  max-width: 20px;
}
.ic-profile{
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/profile.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.ic-profile:hover{
  background-image: url(../img/profile-red.svg);
}
#bx_basketT0kNhm,
#bx_basketFKauiI {
  color: #AC0B19;
  font-size: 18px;
  font-weight: 400;
}
.ic-cart{
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/cart.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.ic-cart:hover{
  background-image: url(../img/cart-red.svg);
}
.main-menu a:hover {
  color: var(--main-red);
}

header .icons-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

header .icons-header a {
  display: flex;
  align-items: center;
}

header .icons-header.cart {
  position: relative;
}

.cart a {
  /* display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none; */
  font-size: 18px;
  color: var(--main-red);
}

.cart a span {
  margin-right: 10px;
}
/* Выпадающее меню профиль */
.profile {
  position: relative;
}

.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.profile:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-dropdown li {
  border-bottom: 1px solid #E5E5E5;
}

.profile-dropdown li:last-child {
  border-bottom: none;
}

.profile-dropdown a {
  display: block;
  padding: 12px 20px;
  color: #333333;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.profile-dropdown a:hover {
  background-color: #F5F5F5;
  color: var(--main-red);
}

.profile-dropdown .logout {
  border-top: 1px solid #E5E5E5;
}

.profile-dropdown .logout a {
  color: #FF3B30;
}
/* end profile dropdown */


/* Основная часть страницы */
main {
  display: flex;
  justify-content: space-between;
}

.btn-transparent.all-products-link {
  position: relative;
  top: -20px;
}

.slider {
  /* height: calc(100dvh - 100px); */
  height: calc(100dvh - 450px);
  min-height: 450px;
}

@media (max-width: 1300px) {
  .slider {
    min-height: 300px;
  }
  .slider .product-title__slide {
    /* min-height: 60px; */
  }
  .container__new-products .product-item img {
    aspect-ratio: 594 / 300;
  }
}

@media (max-width: 1000px) {
  .container__new-products .product-item img {
    aspect-ratio: 594 / 493;
  }
}

.slider__product-title {
  text-transform: uppercase;
}

/* Левый блок с изображением модели */
.left-block {
  width: 900px;
  max-width: 900px;
}

.left-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Правый блок со слайдером */
.right-block {
  width: 50%;
  max-width: 900px;
  /* padding-left: 20px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.right-block--img {
  flex-grow: 1;
  position: relative;
  width: 100%;
}

.slider .right-block--img img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.slider .left-block {
  position: relative;
}

.slider .left-block img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;  
  position: absolute;
  left: 0;
  top: 0;
}

.slider {
  position: relative;
  margin-bottom: 30px;
}

.slider img {
  width: 100%;
  height: auto;
}

/* Описание товара */
.product-title__slide {
  width: 100%;
  /* min-height: 125px; */
  display: flex;
  justify-content: space-between;
  font-weight: 300;
}

.product-title__slide h3 {
  width: 60%;
  font-weight: 300;
  /* font-size: 38px; */
  /* font-size: clamp(20px, 1.9vw, 38px); */
  font-size: 16px;
  line-height: 1;
  color: #3E3E3E;
  margin-bottom: 20px;
}

.product-title__slide p {
  font-size: 16px;
}

/* new prod */
 /* Общие стили Новинки магазина */
 .container__new-products {
  display: grid;
  /* grid-template-columns: 1fr 2fr; */
  grid-template-columns: 0.5fr 2fr;
  grid-template-areas: 
    "left-column right-column"
    "left-column right-column"
    "all-products right-column";
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #e1e1e1;
}

/* Левый столбец */
.left-column {
  grid-area: left-column;
}

.left-column .section-title {
  position: sticky;
  top: 78px;
}

/* Кнопка "Все товары" */
.all-products-link {
  font-family: 'Jost';
  grid-area: all-products;
  margin-top: auto;
}
/* Правый столбец (Сетка товаров) */
.right-column {
  grid-area: right-column;
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  /* grid-template-columns: 1fr 1fr 1fr; */
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}


.section-title {
  /* font-size: 84px; */
  font-size: 28px;
  font-weight: 300;
  line-height: 0.95;
  color: #333;
}

.product-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.new-products__right .product-item {
  width: 49%;
}
.catalog-products__right .product-item{
  width: 33%;
}
.product-item {
  max-width: 594px;
  position: relative;
  margin-bottom: 15px;
  border: 1px rgba(62, 62, 62, 0.2) solid;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.product-item a {
  display: block;
}

.product-item img {
  width: 100%;
  /* height: auto;
  max-height: 354px;
  object-fit: cover; */
   /* background-color: #EDEBE9;  */
 /* border: 4px #EDEBE9 solid;*/
  aspect-ratio: 594 / 493;
  object-fit: contain;
  display: block;
}

.product-info {
  /* margin-top: 15px; */
  margin-top: 5px;
  position: relative;
  padding: 20px 20px 24px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.product-info::before {
  content: '';
  width: 106px;
  height: 1px;
  border-top: 1px rgba(62, 62, 62, 0.2) solid;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}

.product-item .price-block {
  justify-content: center;
  margin-top: 8px;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.product-name {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: #3E3E3E;
  /* margin-bottom: 10px; */
  margin-bottom: 5px;
  transition: 0.4s;
}

.product-item:hover > .product-info a p{
  color: var(--main-red)!important;
}
.product-price {
  font-size: 16px;
  font-weight: 300;
  color: var(--main-red);
}

.catalog-link {
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.btn-transparent{
  text-decoration: none;
  border: 1px solid #d4d4d4;
  padding: 15px 20px;
  border-radius: 100px;
  color: var(--main-red);
  background-color: transparent;
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  max-width: 500px;
  display: block;
  text-align: center;
  cursor: pointer;
}

.btn-transparent:hover {
  background-color: var(--main-red);
  color: white;
}

/* .catalog-link__mob {
  display: none;
} */

/* footer */
.footer {
  background-color: #e1e1e1;
  padding: 60px 20px 30px 20px;
  color: #3E3E3E;
  margin-top: 18px;
}

.footer .catalog-dd {
  display: none;
}

.footer__container {
  display: flex;
  justify-content: space-between;
}

.footer__section {
  flex: 1;
  margin: 0 20px;
  min-width: 200px;
}

.footer__logo {
  padding-bottom: 18px;
  margin-bottom: 22px;
  /* font-size: 24px;
  color: var(--main-red);
  font-weight: 300; */
  border-bottom: 1px solid #c0c0c0;
}

.footer__ps {
  display: block;
  width: 100%;
  margin-top: 40px;
  max-width: 300px;
}

/* .footer__company-name {
  color: var(--color-txt);
} */

.footer__section h4 {
  font-size: 16px;
  margin-bottom: 40px;
  font-weight: 300;
}

.footer__section ul {
  list-style: none;
}

.footer__section ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer__section ul li a {
  text-decoration: none;
  color: #555;
}

.footer__section ul li a:hover {
  color: var(--main-red);
}

.footer__icon {
  width: 24px;
  /* Ширина иконки */
  height: 24px;
  /* Высота иконки */
  margin-right: 10px;
  /* Отступ между иконкой и текстом */
  display: inline-block;
}
.footer__bottom-logo-tab{
  display: none;
}



/* Окно регистрации */
/* Полупрозрачный фон */
.modal {
  display: none;  /* Скрыто по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Полупрозрачный фон */
  justify-content: center;
  align-items: center;
  z-index: 1300;
}

/* Содержимое модального окна */
.modal-content {
  background-color: white;
  padding: 40px 20px 20px 20px;
  border-radius: 10px;
  position: relative;
  width: 430px; /* Ограниченная ширина окна */
  max-width: 90%; /* Чтобы окно было адаптивным */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Тень для визуального эффекта */
}
.register-form__modal h2{
  font-size: 28px;
  font-weight: 300;
  color: #1C1C1C;
  text-align: center;
  margin-bottom: 20px;
}
.register-form__modal form{
  display: flex;
  flex-direction: column;
  padding-top: 7px;
}
.register-form__modal label{
  margin-top: 20px;
  font-size: 18px;
  color: #1C1C1C;
}
.register-form__modal input{
  padding: 12px 20px;
  border: 1px solid #e1e1e1;
  border-radius: 100px;
  font-size: 18px;
}
/* Стиль крестика закрытия */
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
}
.input-error{
  border-color: #FF1D1D!important;
}
.error {
  color: #FF1D1D;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
  margin-top: 7px;
}
button{
  box-shadow: none;
  border: none;
  transition: all 0.3s;
}
.btn-black{
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  padding: 15px 50px;
  background-color: #3E3E3E;
  cursor: pointer;
  border-radius: 100px;
}
.btn-black:hover{
  background-color: var(--main-red);
}
.modal-btn{
  margin-top: 50px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 280px;
}

.modal-enter__btn{
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  color: #AC0B19;
}
.modal-enter__btn:hover{
  text-decoration: underline;
}
.close img{
  width: 22px;
  height: 22px;
}



/* Каталог */
/* шапка каталога */
.catalog__wrapp{
  display: flex;
  gap: 21px;
}

.catalog__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px 1px;
  padding: 10px 0px 15px 0;
}

.search-container {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 7px 20px;
  /* width: 80%; */
  width: 100%;
  /* max-width: 1140px; */
}
.search-container__mob{
  display: none;
}
.search-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
}

.search-button {
  background: none;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 22px;
}
.search-button img {
  display: block;
}

.catalog__right .product-item {
  /* width: calc(20% - 12px);
  max-width: 440px; */
  width: 100%;
}

.catalog__right .product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0 12px;
}

.catalog-search-wrap .catalog__right .product-item {
  /* width: calc((100% / 6) - 12px); */
  width: 100%;
}

.catalog-search-wrap .catalog__right .product-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.filters-container {
  display: flex;
  gap: 10px;
  margin-top: -5px;
}

.filtr-title{
  /* font-size: 46px; */
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 10px;
  margin-top:10px;
}

.filter-header__arrow{
  display: none;
}
.filter-buttons{
  /* margin-top: 40px; */
  margin-top: 20px;
}
.filter-buttons button{
  margin-bottom: 10px;
}
.filter-tag {
  background-color: #f2f2f2;
  padding: 8px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  min-width: 175px;
}

.remove-filter {
  display: flex;
  background: none;
  border: none;
  font-size: 16px;
  margin-left: 8px;
  cursor: pointer;
}

.remove-filter:hover svg rect {
  fill: var(--main-red);
}

/* Фильтры */
.price-range {
  background-color: #e1e1e1;
  padding: 20px 20px;
}

.price-range__title {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
}

.price-range__inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.price-input {
  width: 100px;
  padding: 5px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  font-size: 14px;
}

.range-slider {
  position: relative;
  height: 5px;
  background: #3E3E3E;
  border-radius: 5px;
}

.progress {
  position: absolute;
  height: 100%;
  left: 0%;
  right: 0%;
  background: var(--main-red);
  border-radius: 5px;
}

.range-min, .range-max {
  position: absolute;
  width: 100%;
  height: 5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
}

.range-min::-webkit-slider-thumb,
.range-max::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #3E3E3E;
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
}



/* .catalog__left{
  width: 33%;
  max-width: 444px;
  min-width: 444px;
} */
.catalog__left {
  max-width: 440px;
  min-width: 440px;
}
.kabinet__sidebar, 
.zakaz-checkout__right-wrapp,
.cart_right{
  position: sticky;
  top: 78px;
  height: fit-content;

  /* Убираем max-height и overflow-y */
}


.filter-item {
  /* margin-bottom: 10px; */
  margin-bottom: 3px;
}

.filter-item label {
  font-size: 16px;
  display: flex;
  gap: 10px;
}
.check__wrapp label{
  padding: 13px 20px;
}
.filter-item.check__wrapp label{
  padding: 5px 20px;
}
.check__wrapp {
  width: 100%;
  background-color: #e1e1e1;

  border: none;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  border-radius: 100px;
  border: 1px solid #c0c0c0;
  color: #3E3E3E;
}
.dropdown-btn{
  width: 100%;
  background-color: #e1e1e1;
  /* padding: 15px 20px; */
  padding: 5px 20px;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  border-radius: 25px;
  border: 1px solid #c0c0c0;
  color: #3E3E3E;
}
.dropdown-btn__active{
  border-radius: 25px 25px 0 0;
  border-bottom: transparent;
}

.dropdown-btn .arrow {
  position: absolute;
  right: 10px;
  font-size: 16px;
}

.dropdown-btn__active .arrow,
.dropdown-btn__active .filter-header__arrow
 {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  background-color: #e1e1e1;
  padding: 5px 20px;
  border: 1px solid #c0c0c0;
  border-radius: 0 0 20px 20px;
  padding-bottom: 30px;
  padding-top: 10px;
}

.dropdown-content.active {
  display: block;
}
/* Стили для двухрядного меню с прокруткой */
.grid-dropdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 200px;
  overflow-y: auto;
  background-color: #e1e1e1;
  gap: 0 10px;
}
.grid-dropdown label{
  /* margin-bottom: 15px;
  margin-top: 13px; */
  margin: 5px 0;
}
/* Стили для красного скроллбара */
.grid-dropdown::-webkit-scrollbar {
  width: 10px;
}

.grid-dropdown::-webkit-scrollbar-thumb {
  background-color: #d39398;
}

.grid-dropdown::-webkit-scrollbar-track {
  background-color: #ededed;
}

/* pagination */
.pagination__catalog {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 20px;
  list-style-type: none;
  padding: 0;
}
.pagination__catalog li {
  margin: 0 5px;
}
.pagination__catalog a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #3E3E3E;
  text-decoration: none;
  color: #3E3E3E;
  font-size: 16px;
}
.pagination__catalog a.active {
  border-color: var(--main-red);
  color: var(--main-red);
}
.pagination__catalog a:hover {
  border-color: var(--main-red);
  color: var(--main-red);
}
.pagination__catalog a:hover svg path {
  stroke: var(--main-red);
}
.pagination__arr-right{
  margin-right: 10px;
}
.pagination__arr-left{
  margin-left: 10px;
}




.product-card__wrapp {
  display: grid;
  gap: 20px;
  grid-template-columns: 50% 50%; /* Две колонки: левая и правая */
  grid-template-rows: auto 1fr;   /* Две строки */
  align-items: start;
  grid-template-areas:
    "left-block__prod right-top"
    "left-block__prod right-bottom";
}
.prod-card__back {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 76px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}
.prod-card__back:hover svg path {
  stroke: var(--main-red);
}
.prod-card__back:hover{
  border-color: var(--main-red);
}

.block {
  background-color: #ddd;
}
.slick-slide.slick-current{
  width: 100%;
}
.left-block__prod{
  grid-area: left-block__prod;
}

.right-top-block {
  grid-area: right-top;
}

.right-bottom-block {
  grid-area: right-bottom;
  /* margin-top: 50px; */
  margin-top: 10px;
  align-self: start;
}


        /* Контейнер карточки */
      /* Левый слайдерный блок */
      .slider-container {
          width: 100%;
      }

      /* Правый блок описания товара */
      .product-card__info {
          width: 100%;
          /* padding-left: 20px; */
      }

      /* Стили текста */
      .product__article{
          font-size: 16px;
          color: #3E3E3E;
          margin-bottom: 20px;
          display: flex;
          justify-content: flex-start;
          align-items: flex-start;
          min-height: 50px;
      }
      .product__article .prod-card__back {
        flex-shrink: 0;
        margin: 0 20px 0 0;
      }
      .product__article span{
        display: block;
      }
      .product-card__info h1 {
          font-size: 35px;
          font-weight: 300;
          margin: 0;
          width: 50%;
          line-height: 30px;
      }

      .product__price {
          color: var(--main-red);
          font-size: 24px;
          font-weight: 300;
          margin-top: 10px;
          margin-bottom: 20px;
      }

      .product-card__descr {
          font-size: 16px;
          color: #3E3E3E;
          padding-top: 16px;
          margin-bottom: 30px;
          border-top: 1px solid #d4d4d4;
      }

      .product-card__descr:empty {
        display: none;
      }




      /* Вкладки */
      .btn-black__buy{
        max-width: 240px;
        background-color: #1c1b1b;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
      }
      .btn-black__buy:hover{
        background-color: var(--main-red);
      }
      /* .product-tabs {
        margin-top: 70px;
      } */
      
      .product-tabs__list {
        display: flex;
        gap: 32px;
        margin-bottom: 24px;
        border-bottom: 1px solid #E5E5E5;
      }
      
      .product-tabs__btn {
        padding: 0;
        padding-bottom: 16px;
        border: none;
        background: none;
        font-size: 16px;
        color: #999;
        cursor: pointer;
        position: relative;
        transition: color 0.2s;
      }
      
      .product-tabs__btn:hover {
        color: #666;
      }
      
      .product-tabs__btn--active {
        color: #000;
      }
      
      .product-tabs__btn--active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #000;
      }
      
      .product-tabs__pane {
        display: none;
        /* min-height: 260px; */
      }
      
      .product-tabs__pane--active {
        display: block;
      }
      /* карточка товаров Доставка и оплата */
      .product-tabs__pane .deliv__wrapp{
        display: flex;
        gap: 10px;
        margin-top: 10px;
      }
      .deliv__left-prod{
        width: 49%;
        background-color: #f0f0f0;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .product-tabs__pane .deliv-block{
        padding: 10px;
      }
      .product-tabs__pane .payment-methods {
        display: flex;
        gap: 10px;
        align-items: center;
      }
      .product-tabs__pane h4{
        font-size: 24px;
        font-weight: 300;
        margin-bottom: 10px;
      }
      .product-tabs__pane .payment-logo {
        height: 20px;
        width: auto;
        object-fit: contain;
      }
      .product-tabs__pane .delivery-info__note{
        color: var(--main-red);
      }
      .prod-deliv-info{
        margin-bottom: 20px;
      }

      /* Характеристики */
      .characteristics {
        display: grid;
        gap: 8px;
      }
      
      .characteristics__row {
        display: grid;
        grid-template-columns: 120px 150px 200px 1fr;
        gap: 20px;
        align-items: baseline;
      }
      
      .characteristics__cell {
        font-size: 15px;
      }

      .characteristics__cell:nth-child(3) {
        margin-left: 50px;
      }
      
      .characteristics__cell:nth-child(odd) {
        color: #666;
      }
      
      .characteristics__link {
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s;
      }
      
      .characteristics__link:hover {
        border-color: #000;
      }



/* prod slider */

.product-card__slider {
  display: flex;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.product-slider {
  position: relative;
  /* width: 80%; */
  flex-grow: 1;
  margin-left: 20px;
}

.product-slider .slick-slide {
  margin-bottom: 2px;
}

.product-slider .slick-slide a {
  display: block;
}

.product-slider img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
}

.product-slider  .slick-list{
  overflow: hidden;
}

/* Устанавливаем фиксированную высоту для основного слайдера */
.product-slider, .product-slider .slick-list, .product-slider .slick-track {
  height: 100%; /* Задаем полную высоту */
}

/* Скрываем переполнение по вертикали */
.product-slider .slick-list {
  overflow: hidden; /* Скрываем лишние элементы */
  border-radius: 5px;
}
.thumbnail-slider .slick-list{
  padding-top: 0;
  min-height: 637px;
}

.thumbnail-slider {
  width: 110px;
  overflow-y: hidden;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.thumbnail-slider .slick-arrow {
  display: none!important;
}
/* Стили для выделения текущей миниатюры */
.thumbnail-slider .slick-slide.highlighted img{
  opacity: 1;
}



.thumbnail-slider img {
  width: 100px;
  height: 90px;
  object-fit: contain;
  object-position: center;
  height: auto;
  cursor: pointer;
  margin-bottom: 20px;
  margin-left: 5px;
  border-radius: 5px;
  opacity: 0.5;
}

/* .thumbnail-slider .slick-current img {
  opacity: 1;
} */

.product-similar{
  /* margin-top:80px; */
  margin-top:0;
} 
.product-similar h2{
  font-size: 44px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
}
.product-similar__wrapp{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-similar__wrapp .product-item {
	justify-content: space-between;
}

.product-similar__wrapp .product-info {
	flex-grow: 0;
}


/* similar slider */


  /* .slider-container2 {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  .product-slider2 {
    display: flex;
    min-width: 100%;
  }
  .product-slider2 .product-card img{
    width: 100%!;
    max-width: 100%;
  }
  .product-slider2 .slick-slide{
    min-width: 100%;

  }
  .product-slider2 .slick-track{
    display: flex;
    gap: 20px;
    width: 300px!important;
  }

  .product-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
  } */
  .slider-container2 {
    position: relative;
  }
  
  .product-slider2 {
    width: 100%;
    margin: 0 auto;
  }
  .product-slider2 .slick-list{
    overflow: hidden;
  }
  
  .product-slider2 .product-item {
    padding: 0 10px; /* отступы между слайдами */
  }
  
  /* Стили для стрелок */
  .product-slider2 .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .product-slider2 .slick-prev {
    left: -25px;
  }
  
  .product-slider2 .slick-next {
    right: -25px;
  }
  
  /* Выравнивание слайдов по высоте */
  .product-slider2 .slick-track {
    display: flex;
    align-items: stretch;
  }
  
  .product-slider2 .slick-slide {
    height: auto;
  }






/* Корзина */
/* .cart {
  width: 80%;
  max-width: 800px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
} */

.empty-cart-message,.success-message{
  max-width: 692px;
}
.empty-cart-message h2,.success-message h2{
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 26px;
}
.empty-cart-message p,.success-message p{
  font-size: 16px;
  margin-bottom: 20px;
}
.empty-cart-message button,.success-message button{
  max-width: 300px;
}
.cart__wrapp{
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 20px;
}
.cart__left{
  margin-top: 40px;
}
/* .cart-header,
.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  align-items: center;
  padding: 18px;
} */

.cart-header {
  margin-bottom: 20px;
  display: flex;
  /* font-size: 28px; */
  font-size: 18px;
  font-weight: 300;
  color: #555;
  justify-content: space-between;
}

.cart-item {
  align-items: center;
  border: 1px solid #d2d2d2;
  margin-bottom: 20px;
  padding: 15px;
  display: flex;
}
.cart-info-wrapp{
  display: flex;
  flex-grow: 2;
  align-items: center;
  justify-content: space-between;
}

.item-details {
  display: flex;
  flex-grow: 1;

}

.item-image {
  width: 130px;
  height: 130px;
  object-fit: contain;
  object-position: center;
  margin-right: 20px;
}

.cart-header {
  padding-left: 164px;
}

.cart-header-price  {
  width: 224px;
  flex-grow: 0;
  flex-shrink: 0;
}
.cart-header-quantity {
  width: 222px;
  flex-shrink: 0;
}
.cart-header-item{
  /* width: 54%; */
  /* max-width: 600px; */
  /* width: calc(50% + 85px); */
  flex-grow: 1;
  flex-shrink: 1;
  position: relative;
  left: -164px;
}
.item-info {
  flex-grow: 1;
  /* width: 50%; */
  /* max-width: 440px; */
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.item-title {
  font-size: 26px;
  font-weight: 300;
}

.item-subtitle {
  font-size: 16px;
  color: #82858D;
}

.item-price {
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 26px;
  color: var(--main-red);
  font-weight: 300;
  width: 224px;
  /* padding-left: 20px;
  padding-right: 20px; */
}

.item-quantity {
  /* flex-grow: 1; */
  display: flex;
  align-items: center;
  /* margin-right: 20px; */
  width: 190px;
  flex-shrink: 0;
}

.quantity-button {
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 1;
  padding-bottom: 3px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s;
}

.quantity-button:hover {
  background-color: #e0e0e0;
  color:var(--main-red);
}


.quantity-number {
  width: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin: 0 33px;
}

.item-delete {
  justify-self: end;
  align-self: start;
  cursor: pointer;
  background: transparent;
  border: none;


}
.item-delete:hover path {
  fill: var(--main-red);
}



.cart_right{
  max-width: 440px;
  background-color: #edebe9;
  padding:20px 25px;
  margin-top: 20px;
}

.checkout h2 {
  font-size: 28px;
  font-weight: 300;
  margin-top: 25;
  margin-bottom: 37px;
}

.checkout-summary {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px rgba(18, 52, 83, 0.1) solid;
}
.checkout-items-count{
  font-size: 16px;
  font-weight: 400;
  color: #3E3E3E;
}

.bx-soa-cart-total > *:first-child {
  padding-top: 0;
  border-top: none;
}

.bx-soa-cart-total-line-total {
  min-height: auto;
  padding-bottom: 0;
}

.bx-soa-cart-total-line-total .checkout-items-count {
  font-size: 28px;
}

.bx-soa-cart-total-line-total .checkout-total-price-wrapp {
  font-size: 28px;
  font-weight: 400;
  color: #3E3E3E;
}

.checkout-option {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d7d9da;
}

.checkout-option h5 {
  font-size: 16px;
  font-weight: 400;
}
.checkout-total h3{
  font-size: 28px;
  font-weight: 400;
}
.checkout-option label {
  display: block;
  margin-bottom: 17px;
  font-size: 16px;
  color: #82858D;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 15px;
}

.checkout-option input[type="radio"] {
  margin-right: 5px;
  margin-left: 15px;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  font-size: 28px;
  font-weight: 400;
  padding-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #d7d9da;
}
.btn-black-cart{
  background-color: #1C1B1B;
}
.btn-black-cart:hover{
  background-color: var(--main-red);
}
.checkout-button:hover {
  background-color: #333;
}

/* Zakaz */
.zakaz-checkout__contact h3, 
/* .zakaz-checkout__left-wrapp h3, */
.details-section h3{
  margin-top: 37px;
}
.zakaz-checkout__wrapp{
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 20px;
  margin-top: 10px;
}
.zakaz-checkout__left-wrapp .checkout-option{
  border-top: none;
  padding-top: 0;
  padding-bottom: 0;
}

.zakaz-checkout__right{
  background-color: #edebe9;
  padding: 20px;
}
.zakaz-checkout__right h2{
  display: flex;
  justify-content: space-between;
}
.zakaz-checkout__right span  a{
  font-size: 16px;
  color:var(--main-red);
  font-weight: 400;
}
.zakaz-checkout__wrapp .checkout-form{
  margin-top: 0;
  max-width: 920px;
  width: 100%;
}


.zakaz-checkout__left-wrapp{
  display: flex!important;
  justify-content: space-between;
  flex-wrap: wrap;
}
.zakaz-checkout__contact .form-group{
  margin-bottom: 20px;
}
.strikethrough {
  text-decoration: line-through;
  color: #868584;
}
.checkout-summary__delivery{
  border-top: 1px solid #d7d9da;
  padding-top: 20px;
}
.checkout-total__zakaz{

  padding-top: 20px;
  margin-top: 92px;
  margin-bottom: 24px;
  border-top: 1px solid #d7d9da;
}
.checkout-total__zakaz h3{
  margin-bottom: 0;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
}

.polisity-link{
  margin-top: 24px;
}
.polisity-link .custom-checkbox+label{
  margin-bottom: 15px;
}

.polisity-link .custom-checkbox+label::before{
  margin-right: 15px;
}
.polisity-link a{
  text-decoration: underline;
}
.polisity-link a:hover{
  color: var(--main-red);
}


.polisity-link label a {
  color: inherit; /* Наследует цвет от родителя */
  text-decoration: underline;
}

.polisity-link label a:active,
.polisity-link label a:visited {
  color: inherit; /* Сохраняет тот же цвет при клике и после посещения */
}

/* Если хотите добавить эффект при наведении */
.polisity-link label a:hover {
  opacity: 0.8;
}
  

/* cart checkout */
.checkout-form{
  margin-top: 45px;
}
.checkout-form h3{
  font-size: 16px;
  font-weight: 400;
  /* margin-bottom: 37px; */
  margin-top: 10px;
  margin-bottom: 0;
}
.form-grid {
  margin-top: 37px;
  background: #fff;
}
.checkout-form .form-group input {
  padding: 8px 22px;
}
.checkout-form .form-group {
  gap: 2px;
}

.checkout-form .bx-sls .bx-ui-sls-pane {
  top: 25px;
}

.checkout-form .bx-sls .dropdown-block {
  padding: 7px 22px;
}

.checkout-form .form-group label {
  font-size: 14px;
}

.form-grid .custom-radio+label {
  display: flex;
  margin-bottom: 10px;
}

.checkout-form h2 {
  font-size: 24px;
  font-weight: 300;
}
.form-grid__zakaz1{
  gap: 20px;
  /* margin-bottom: 30px; */
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 20px;
  margin-bottom: 30px; */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 18px;
  font-weight: 400;
}

.form-group label span {
  color: #3E3E3E;
  opacity: 0.36;
  font-size: 16px;
  font-weight: 300;
}

.form-group input{
  padding: 13px 22px;
  border: 1px solid #9b9b9b;
  border-radius: 100px;
  font-size: 16px;
}
/* 
.form-group input[data-mask="phone"] {
  color: rgba(62, 62, 62, 0.3);
}
.form-group input[data-mask="phone"]:focus-visible {
  color: rgba(62, 62, 62, 1);
}
*/

.form-group input:not(.bx-ui-sls-fake):invalid,
.form-group input:not(.bx-ui-sls-fake):user-invalid {
  outline: 1px var(--main-red) solid!important;
}
.form-group textarea {
  padding: 13px 22px;
  border: 1px solid #9b9b9b;
  border-radius: 20px;
  font-size: 16px;
  resize: none;
}

.bx-sls .dropdown-block:has(input:invalid),
.bx-sls .dropdown-block:has(input:user-invalid) {
  outline: 1px var(--main-red) solid!important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group_wide {
  grid-column: span 2;
}

.details-section {
  margin-bottom: 30px;
}

.details-section h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 37px;
}

.details-section textarea {
  width: 100%;
  resize: none;
  height: 116px;
}

.checkout-total {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.total-price {
  font-size: 28px;
  font-weight: 300;
}

/* Обязательные поля */
input:required {
  border-color: #9b9b9b;
}

/* Стили для фокуса */
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--main-red)
}
.zakaz-page sup{
  font-size: 18px;
  color: var(--main-red);
}
.zakaz-page .page-title {
  font-size: 24px;
  padding-bottom: 10px;
}
.zakaz-page .btn-black{
  padding: 12px 20px;
  max-width: 400px;
  background-color: #1C1B1B;
}
.zakaz-page .btn-black:hover{
  background-color: var(--main-red);
}
#bx-soa-orderSave .btn-black {
  margin-left: auto;
  margin-right: auto;
}
.form-grid__zakaz{
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
  "form-group__left"
  "form-group__right"
  "form-group__center";
  margin-top: 0;
}
.zakaz-page .checkout-wrapp{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: -10px;
}
.zakaz-page .checkout-wrapp .checkout-option{
  display: flex;
  justify-content: flex-start;
  border-top: none;
  flex-direction: column;
  gap: 4px;
}
.zakaz-page .checkout-wrapp .checkout-option label{
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  margin-bottom: 5px;
}
.zakaz-page .checkout-total{
  border-top: none;
  padding-top: 15px;
}
.zakaz-page .total-price{
  font-weight: 400;
}
.form-group__left{
  grid-area: form-group__left;
}
.form-group__right{
  grid-area: form-group__right;
}   
.form-group__center{
  grid-area: form-group__center;
}   

/* kabinet */

.kabinet__wrapp{
  margin-top: 35px;
  display: flex;
  gap: 130px;
  margin-bottom: 200px;
}

.kabinet__sidebar{
  width: 330px;
  min-width: 330px;
}
.kabinet__sidebar-item{
  margin-bottom: 10px;
}
.kabinet__sidebar-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}
.kabinet__sidebar-btn.active{
  background-color: #3e3e3e;
  color: #fff;
}
.kabinet__sidebar-btn svg path {
  stroke: var(--color-txt);
}
.kabinet__sidebar-btn.active svg path, 
.kabinet__sidebar-btn:hover svg path {
  stroke: #fff;
}
.kabinet__sidebar-out{
  margin-top: 20px;
}


/* kabinet content */
.kabinet__content {
  flex-grow: 1;

}

.kabinet__content .profile-title {
  margin-bottom: 15px;
}

.kabinet__content .profile-form__row {
  margin-bottom: 10px;
}
.kabinet__content .profile-form__section {
  margin-bottom: 0;
}
.kabinet__content .profile-form__section h3 {
  margin-top: 20px;
  margin-bottom: 15px;
}

/* Стили для таблицы заказов */
.orders-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

/* Заголовок таблицы */
.orders-table-header {
  display: contents;
}

.orders-table-header div {
  font-weight: 300;
  /* font-size: 28px; */
  font-size: 18px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-bottom: 1px solid #d4d4d4;

}
.orders-table-header div:first-child{
  padding-left: 0;
}
.orders-table-header div:last-child {
  padding-right: 20px;  
  border-right: none;
  display: flex;
 padding-left: 20px;
}
/* Ряд данных таблицы */
.order-row {
  display: contents;
}
.order-row div span{
  display: none;
}

.order-row div {
  font-size: 18px;
  font-weight: 400;
  padding: 30px 20px;
  border: 1px solid #f0f0f0;
  border-top: none;
}
.order-row div:nth-child(odd) {
  border-left: none;
  border-right: none;
}
.order-row div:nth-child(1){
  border-right: none;
  padding-left: 0;
}
.order-row div:last-child {
  border-right: none;
  display: flex;
  justify-content: flex-end;
  padding-right: 0;
}
/* Стили для цветов статусов */
.status-paid {
  color: #03AB00; /* Зеленый для "Оплачен" */
}

.status-cancelled {
  color: #C30606; /* Красный для "Отменен" */
}

.status-awaiting {
  color: #F99C2E; /* Оранжевый для "Ожидает оплаты" */
}

/* Кнопка "Подробнее" */
.details-button {
  padding: 8px 15px;
  color: #ff4d4f;
  border: 1px solid #ff4d4f;
  border-radius: 20px;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

/* кабинет профиль */
.profile-title {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 30px;
}
.profile-form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.profile-form__row_1 label {
  min-height: 53px;
  display: block;
}
.profile-form__section {
  margin-bottom: 30px;
}
.profile-form__section .form-group{
 margin-bottom: 22px;
}

.profile-form__section h3 {
  font-size: 28px;
  font-weight: 300;
  margin-top: 40px;
  margin-bottom: 36px;
}
.kabinet__content--profil .form-group{
  gap: 10px;
}
.kabinet__content--profil .btn-transparent{
  width: 230px;
}

/* о заказе */


.order-header {
  margin-bottom: 40px;
}

.order-info {
  display: flex;
  gap: 5px;
  flex-direction: column;
  font-size: 28px;
}

.order-info__item {
  display: flex;
  gap: 10px;
}

.order-info__label {
  color: #666;
}

.order-status--cancelled {
  color: #C30606;
}

.order-section__title {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 40px;
}

.order-product {
  margin-bottom: 40px;
}

.order-product__row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 18px;
  border-bottom: 1px solid #f0f0f0;
}
.order-product__row:first-child{
  border-top: 1px solid #f0f0f0;
}



.order-product__value {
  text-align: right;
  max-width: 60%;
}

.order-address {
  margin-bottom: 40px;
}

.order-address__content {
  line-height: 1.6;
  font-size: 16px;
}
.order-address__content p{
  margin-bottom: 20px;
}

.order-address__street,
.order-address__phone {
  color: #666;
  margin-bottom: 5px;
}

.order-actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.order-actions .btn-transparent{
  width: 245px;
}
.order-actions .btn-transparent:last-child{
  width: 160px;
}

/* contacts */

.contacts__wrapp {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.contacts__left {
  flex: 1;
}

.contacts__info {
  margin-bottom: 40px;
  /* margin-top: 40px; */
}
.contacts__left h2{
  font-size: 28px;
  font-weight: 300;
}

.contacts__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contacts__list li {
  margin-bottom: 11px;
}

.contacts__list a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.contacts__list a:hover{
  text-decoration: underline;
  color: var(--main-red);
}

.contacts__salon {
  margin-bottom: 40px;
}

.contacts__salon h2 {
  margin-bottom: 20px;
}

.contacts__address,
.contacts__metro,
.contacts__hours {
  margin-bottom: 10px;
}

.contacts__metro {
  color: #666;
}
/* карта */
.contacts__right {
  flex: 1;
  position: relative;
  /* max-width: 50%; */
}

.contacts__map {
  position: sticky;
  top: 20px;
  width: 100%;
  height: 100%;
  min-height: 600px;
}



/* Deliv */
.deliv__wrapp{
  margin-top: 25px;
  display: flex;
  gap: 30px 20px;
  flex-wrap: wrap;
}
.deliv__left{
  padding: 20px;
   background-color: #edebe9;
}
.deliv h2 {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 300;
}
.delivery-info__mob {
  display: none;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 211px 223px 169px auto;
  /* gap: 1px; */
  margin-bottom: 20px;
}

/* Убираем лишние стили */
.cell{
  border-right: 1px solid #e4e2e0;
}
.cell:last-child{
  border-right: none;
}
.row-header{
  color: var(--main-red);
  border-right: 1px solid #e4e2e0;
}
.border-bottom_none{
  border-bottom: none;
}
.border-right_none{
  border-right: none;
}
.cell:last-child{
  border-right: none;
}
.row-header:last-child{
  border-right: none;
}

.border-bottom_none .cell{
  border-bottom: none;
 }

.header-cell, .row-header, .cell {
  padding: 15px;
  border-bottom: 1px solid #e4e2e0;
}

.header-cell {
  font-size: 15px;
  color: var(--main-red);
  border-bottom: 1px solid #cac8c7;
}
.note {
  color: var(--main-red);
  font-style: italic;
  margin-top: 50px;
}

/* deliv right */
.payment-section {
  padding: 20px;
  background-color: #edebe9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.payment-description {
  color: #666;
  margin-bottom: 23px;
  line-height: 1.5;
}

.payment-methods {
  display: flex;
  gap: 20px;
  align-items: center;
}

.payment-logo {
  height: auto;
  max-height: 58px;
  width: 75px;
  object-fit: contain;
}
.payment-logo {
  filter: brightness(0) saturate(100%) invert(32%) sepia(6%) saturate(346%) hue-rotate(12deg) brightness(94%) contrast(87%);
}
.deliv__txt{
  display: flex;
  gap: 20px;
}
.deliv-descr__wrapp{
  display: flex;
  gap: 20px;
  padding-bottom: 26px;
  margin-top: 54px;
  border-bottom: 1px solid #d4d4d4;
}
.deliv-descr__wrapp h3{
  margin-bottom: 26px;
}
.deliv__txt-left,
.deliv__right{
  width: 49%;
  padding-left: 20px;
}
.deliv-block{
  width: 49%;
  padding: 20px;
  
}
.deliv-block
.deliv__wrapp h3{
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 26px;
}
.error-page {
  /* Убираем height: 100vh чтобы не занимать весь экран */
  /*min-height: calc(100vh - 400px);*/ /* Увеличиваем отступ для гарантированной видимости футера */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin: 40px 0; /* Добавляем отступы сверху и снизу */
}

.error-page h1 {
  font-size: clamp(120px, 20vw, 200px);
  color: var(--main-red);
  margin: 0;
  line-height: 1;
  font-weight: 300;
  animation: float 4s ease-in-out infinite;
}

.error-page p {
  font-size: clamp(24px, 4vw, 32px);
  color: var(--color-txt);
  margin-top: 20px;
  font-weight: 300;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Салоны */
.salon-page__wrapp{
  display: flex;
  gap: 90px;
  margin-top: 20px;
}
.salon-page__wrapp-first{
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 20px;
}
.salon-page__left{
  max-width: 520px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.salon-page__right{
  flex: 1;
  display: flex;
  gap: 15px;
}
.salon-page__right img{
  width: 100%;
  display: block;
}
.salon-card {
  background: #fff;
}

.salon-card__contacts h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 26px;
}

.salon-card__contacts {
  margin-bottom: 30px;
}

.salon-card__contacts p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.4;
}
.salon-card__contacts ul{
  margin-top: 20px;
}
.salon-card__contacts ul li{
  margin-bottom: 15px;
  align-items: center;
   display: flex;
}

.salon-card__contacts a {
  color: var(--color-txt);
  text-decoration: none;
}

.salon-card__contacts a:hover {
  color: var(--main-red);
  text-decoration: underline;
}


/* brends */
.brends__header-wrapp {
  position: sticky;
  top: 0;
  height: fit-content;
  background-color: #fff;
  border-bottom: 1px solid transparent; /* Изначально прозрачный бордер */
  transition: border-color 0.3s ease; /* Плавный переход */
}

.brends__header-wrapp.is-sticky {
  border-bottom: 1px solid #d4d4d4; /* Бордер появляется при прилипании */
}
.brends__header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 2.5rem 0;
}
.brends__header .search-container{
  width: 50%;
}
.brands-container{
  margin-top: 20px;
}
.alphabet-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.alphabet-item {
  text-decoration: none;
  color: var(--color-txt);
  font-size: 14px;
  padding: 4px;
}

.alphabet-item:hover {
  color:var(--main-red);
  text-decoration: underline;
}

.brands-section {
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}

.letter-heading {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #333;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.brands-column {
  min-width: 0;
}

.brand-item {
  font-size: 16px;
  color: #333;
  padding: 10px 0;
  /* transition: color 0.3s ease; */
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.brand-item:hover {
  color: var(--main-red);
}

/* privacy-policy */
.privacy-policy h1{
  margin-bottom: 40px;
}

.privacy-policy h5{
  font-size: 20px;
  font-weight: 400;
  margin-top: 24px;
  margin-bottom: 10px;
}

.purpose-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.purpose-table th {
  width: 30%;
  text-align: left;
  padding: 15px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  font-weight: 500;
  vertical-align: top;
}

.purpose-table td {
  width: 70%;
  padding: 15px;
  border: 1px solid #ddd;
}


.purpose-table li {
  margin-bottom: 5px;
}

/* Адаптив */
@media (max-width: 768px) {
  .purpose-table {
    display: block;
  }
  
  .purpose-table tbody {
    display: block;
  }
  
  .purpose-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ddd;
  }
  
  .purpose-table th,
  .purpose-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  .purpose-table th {
    border-bottom: none;
  }
  
  .purpose-table td {
    border-top: none;
  }
}

/* Опционально: стили для подсветки ссылок */
.mark.link {
  color: var(--main-red);
  text-decoration: none;
}

.cart-empty-wrapper {
  width: 100%;
  min-height: 600px;
  background-image: url("data:image/svg+xml,%3Csvg width='537' height='497' viewBox='0 0 537 497' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.02'%3E%3Cpath d='M62.4377 458.535L23.3604 224.071H513.642L474.565 458.535C472.704 469.697 463.047 477.878 451.731 477.878H85.271C73.9552 477.878 64.298 469.697 62.4377 458.535Z' stroke='%233E3E3E' stroke-width='38.2449'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M243.76 0C176.554 0 122.072 54.4817 122.072 121.688V170.363H155.363V107.827C155.363 76.6995 180.597 51.4659 211.724 51.4659H324.446C355.573 51.4659 380.807 76.6995 380.807 107.827V170.363H414.124V121.688C414.124 54.4817 359.642 0 292.436 0H243.76Z' fill='%233E3E3E'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
  padding: 40px 0 40px 0;
}

.catalog-dd {
  padding-top: 40px;
  padding-bottom: 40px;
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
  box-shadow: 0 10px 10px rgba(0,0,0,0.05);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-20px);
  transition-duration: 200ms;
  transition-property: transform, opacity;
  transition-timing-function: ease;

  /*DISPLAY: BLOCK!important;
  OPACITY: 1!important;
  visibility: visible!important;
  pointer-events: all!important;
  transform: translate(-50%, 0)!important;
  left: 50%!important;*/
}

.catalog-dd__title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #3E3E3E;
  opacity: 0.7;
  margin-bottom: 30px;
}

.catalog-dd__nav {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #3E3E3E;
}

.catalog-dd__nav li:not(:last-child) {
  margin-bottom: 11px;
}

.catalog-dd__nav a {
  color: inherit;
}

.catalog-dd__inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 34px;
}

.catalog-dd .product-item {
  margin-bottom: 0;
}

.catalog-dd .product-item a {
  display: block;
}

.catalog-dd .product-item a img {
  display: block;
  width: 100%;
  /* aspect-ratio: 1; */
  aspect-ratio: 2 / 1.5;
  object-fit: contain;
  object-position: center;
}

.catalog-dd .product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 17px;
}

.catalog-dd .product-name {
  transition: none;
}

header nav > ul > li:hover .catalog-dd {
  pointer-events: all;
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

#bx-soa-properties .bx-soa-section-content.container-fluid .row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 0.7fr 0.5fr;
  width: 100%;
}

#bx-soa-properties .bx-soa-section-content.container-fluid .row .form-group {
  margin-bottom: 0;
}

#bx-soa-properties .bx-soa-section-content.container-fluid .row .form-group input {
  width: 100%;
}

#bx-soa-properties .bx-soa-section-content.container-fluid .row .form-group:nth-child(1) {
  order: 1;
}

#bx-soa-properties .bx-soa-section-content.container-fluid .row .form-group:nth-child(2) {
  order: 3;
}

#bx-soa-properties .bx-soa-section-content.container-fluid .row .form-group:nth-child(3) {
  order: 2;
}

#bx-soa-properties .bx-soa-section-content.container-fluid .row .form-group:nth-child(4) {
  order: 4;
  grid-column: span 3;
  margin-bottom: 10px;
}

.full-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.page-body {
  flex-grow: 1;
}

@media (min-width: 1540px) {
  .mp .page-body {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
  .mp .page-body .container {
    max-width: 80%;
  }
}

.catalog .product-item img {
  aspect-ratio: unset;
  min-height: 160px;
  height: calc((100dvh - 490px) / 2);
}

@media (max-width: 1300px) {
  .catalog .product-item img {

    height: calc((100dvh - 450px) / 2);
  }
}

@media (max-width: 1000px) {
  .catalog .product-item img {
    min-height: 0;
    height: auto;
    aspect-ratio: 594 / 493;
  }
}

.price-block {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.textblock1 {
	padding: 30px 0;
	line-height: 1.5;
}

.textblock1 h2,
.textblock1 strong,
.textblock1 b {
	font-weight: 500;
}

.textblock1 h2 {
	margin-top: 20px;
	font-size: 20px;
}

.textblock1 a {
	color: #AC0B19;
}

.textblock1 > *:not(:last-child) {
	margin-bottom: 15px;
}

.textblock1 table {
	margin-bottom: 15px;
}

.textblock1 table td {
	padding: 0;
	vertical-align: top;
}

.textblock1 table tr:not(:last-child) td {
	padding-bottom: 20px;
}

.textblock1 table td:first-child {
	padding-right: 10px;
}

.textblock1 table td:last-child {
	padding-left: 10px;
}

.textblock1 ul {
	list-style-type: disc;
	margin-left: 15px;
}

.btn.btn-link.product-item-detail-buy-button {
  color:  var(--main-red);
}

.popup-window + .popup-window-overlay[id^="popup-window-overlay-"]:not(.hidden) {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  z-index: 1002!important;
}

.popup-window.popup-window-with-titlebar {
  padding: 40px 20px 20px 20px;
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  width: 100%;
  max-width: 430px;
}

.popup-window .popup-window-titlebar-text {
  font-size: 28px;
  font-weight: 300;
  color: #1C1C1C;
  text-align: center;
  margin-bottom: 20px;
  padding: 0;
  display: block;
}

.popup-window-titlebar {
  height: auto;
}

.popup-window-with-titlebar .popup-window-content {
  padding: 0;
}

.popup-window-buttons {
  margin-top: 50px;
}

.popup-window-buttons .btn:not(.btn-primary) {
  display: none;
}
.popup-window-buttons .btn {
  margin-top: 50px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 280px;
  padding: 12px 20px;
  border: 1px solid #e1e1e1;
  border-radius: 100px;
  font-size: 18px;
  background-color: #3E3E3E;

  width: 100%;
  color: #fff;
  font-weight: 300;
  cursor: pointer;
}

.popup-window-buttons .btn:hover {
  background-color: var(--main-red);
}

.bx-catalog-subscribe-form-container-input input[type="text"] {
  padding: 12px 20px;
  border: 1px solid #e1e1e1;
  border-radius: 100px;
  font-size: 18px;
  height: auto;
  background: none;
}

.bx-catalog-subscribe-form-container-label {
  color: #3E3E3E;
  font-weight: 300;
  font-size: 16px;
}

.popup-window-close-icon.popup-window-titlebar-close-icon.--large, .popup-window-titlebar-close-icon {
  top: 20px;
  right: 20px;

}

.popup-window-close-icon {
  width: 22px;
  height: 22px;
  background: url(../img/Group402@3x.svg) no-repeat;
  background-size: cover;
  opacity: 1;
}

.popup-window-close-icon::after {
  display: none;
}

.bx-catalog-subscribe-button {
  white-space: nowrap;
}

.bx-catalog-subscribe-button + input[type="hidden"] {
  display: none;
}

.product-item-detail-buy-button {
  padding-top: 20px;
  font-weight: 800;
  color: #AC0B19;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
}

.bx-catalog-popup-content {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.ribbon {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #AC0B19;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding: 2.5px 10px;
  transform: rotate(45deg);
  width: 200px;
  z-index: 1;
}

.ribbon.new {
  transform: rotate(45deg) translate(32.5%, -185%);
}

.ribbon.sales {
  transform: rotate(45deg) translate(32.5%, -185%);
}

.captcha-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.captcha-wrapper img {
  margin-right: 20px;
  flex-shrink: 0;
  display: block;
}

.captcha-wrapper__col {
  flex-grow: 1;
}

.captcha-wrapper__col label {
  display: block;
  font-size: 14px;
  margin-top: 0;
}

.captcha-wrapper__col input {
  padding: 5px 10px;
  font-size: 14px;
  width: 100%;
  display: block;
}



    .dropdown-container {
        position: relative;
        display: inline-block;
    }

    .dropdown-menu {
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        min-width: 600px;
        overflow: hidden;
    }

    .menu-section {
        flex: 1;
        padding: 0;
    }

    .menu-section:first-child {
        border-right: 1px solid #e0e0e0;
    }

    .menu-header {
        background-color: #f8f8f8;
        padding: 15px 20px;
        border-bottom: 1px solid #e0e0e0;
        font-weight: 600;
        color: #333;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .main-menu__mob .menu-list {
        list-style: none;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .main-menu__mob>ul.menu-list>li {
        font-size: 18px;
        padding: 12px 20px;
        text-align: left;
    }

    .main-menu__mob>ul.menu-list>li>div {
        justify-content: space-between;
        display: flex;
        gap: 20px;
    }

    .main-menu__mob>ul>li>ul.submenu {
        background: #F5F5F5;
        margin: 10px 0 0 0;
    }

    .dropdown-arrow {
        float: right;
        font-size: 12px;
        color: #999;
        margin-top: 2px;
    }

    .brand-item {
        color: #666;
        font-size: 14px;
    }

    .brand-item:hover {
        color: #333;
    }

    .submenu {
        display: none;
        padding: 0;
        margin: 0;
        background: white;
    }

    .submenu.active {
        display: block;
    }

    .main-menu__mob>ul>li>ul {
        padding-top: 0;
        padding-bottom: 14px;
    }

    .submenu-item {
        padding: 10px 40px;
        color: #666;
        font-size: 14px;
        cursor: pointer;
    }

    .submenu-item:hover {
        background-color: #f8f8f8;
        color: #333;
    }

    .submenu-item:last-child {
        border-bottom: none;
    }

    .dropdown-arrow.rotated {
        transform: rotate(180deg);
        transition: transform 0.2s ease;
    }

    .dropdown-arrow {
        transition: transform 0.2s ease;
    }

    .mob-menu__open-inner .main-menu__mob>ul>li>ul>li {
        padding: 10px 40px 10px 20px;
        padding-bottom: 0;
        text-align: left;
    }

    .main-menu__mob-bottom {
        padding: 10px 0 0 20px;
        margin-bottom: 30px;
        width: 100%;
    }

    .main-menu__mob>ul.main-menu__mob-bottom>li {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        text-align: left;
        border-top: 1px solid #D4D4D4;
    }

    .main-menu__mob-bottom li a {
        font-family: 'Jost';
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
    }

    .main-menu__mob-top a {
        font-family: 'Jost';
        font-weight: 400;
        width: 100%;
        font-size: 20px;
        color: #3E3E3E;
        padding: 10px 0 0 20px;
    }

    .main-menu__mob-top {
        width: 100%;
    }

    .mob-menu__open-inner {
        overflow-y: auto;
    }

    .icons-header__mob {
        padding: 20px 20px 40px 20px;
    }

.catalog-teasers {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.card-catalog-teaser {
  border: 1px rgba(62, 62, 62, 0.2) solid;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
}

.card-catalog-teaser__name {
  padding: 28px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

.card-catalog-teaser__pic {
  display: block;
  width: 100%;
}

.card-catalog-teaser:hover .card-catalog-teaser__name {
  color: var(--main-red);
}

@media (max-width: 1280px) {
  .catalog-teasers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .catalog-teasers {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card-catalog-teaser__name {
    padding: 25px 25px 0 25px;
  }
}

.new-items .section-title {
  margin-bottom: 22px;
}

.new-items__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.new-items__grid .product-item {
  max-width: 100%;
}

.catalog .new-items__grid .product-item img {
  height: auto;
  aspect-ratio: 1.06;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1380px) {
  .catalog .new-items__grid .product-item img {
    height: auto;
    aspect-ratio: 1.4;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 1280px) {
  .new-items__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .new-items__grid {
    grid-template-columns: 1fr;
  }
}

.menu-subsection.link {
    display: block;
    padding: 13px 20px;
    font-family: 'Jost';
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #BF372A;
}

.menu-subsection:last-child {
    padding: 13px 20px 26px 20px;
}

.catalog__right.categories .card-catalog-teaser__pic {
    padding: 10px 20px;
    text-align: center;
	margin-top: -28px;
}

.catalog__right.categories .card-catalog-teaser__pic img {
    max-width: 100%;
    max-height: 50px;
}

.sidebar.filter-content.white .dropdown-btn,
.sidebar.filter-content.white .dropdown-content,
.sidebar.filter-content.white .grid-dropdown {
    background-color: #ffffff;
}

.btn-showmore {
    gap: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 18px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.btn-showmore span {
    font-weight: 300;
    font-style: Light;
    font-size: 20px;
}

.categories .product-grid {
    margin-top: 50px;
}

.catalog-teasers:not(.show-all) .card-catalog-teaser:nth-child(n+5) {
    display: none;
}