@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto/Roboto-Thin.woff2");
  font-weight: 100;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto/Roboto-Light.woff2");
  font-weight: 300;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto/Roboto-Regular.woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto/Roboto-Medium.woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto/Roboto-Bold.woff2");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto/Roboto-Black.woff2");
  font-weight: 900;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../assets/fonts/Roboto_Condensed/RobotoCondensed-Thin.woff2");
  font-weight: 100;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../assets/fonts/Roboto_Condensed/RobotoCondensed-ExtraLight.woff2");
  font-weight: 200;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../assets/fonts/Roboto_Condensed/RobotoCondensed-Light.woff2");
  font-weight: 300;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../assets/fonts/Roboto_Condensed/RobotoCondensed-Regular.woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../assets/fonts/Roboto_Condensed/RobotoCondensed-Medium.woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../assets/fonts/Roboto_Condensed/RobotoCondensed-SemiBold.woff2");
  font-weight: 600;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../assets/fonts/Roboto_Condensed/RobotoCondensed-Bold.woff2");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../assets/fonts/Roboto_Condensed/RobotoCondensed-ExtraBold.woff2");
  font-weight: 800;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../assets/fonts/Roboto_Condensed/RobotoCondensed-Black.woff2");
  font-weight: 900;
}

:root {
  --black: #000000;
  --black-main: #0d0d0d;
  --white: #ffffff;
  --text-black: #2d2d2d;
  --text-secondary: #4d4d4d;
  --text-white: #f1f1f1;
  --text-grey2: #717171;
  --Neutral-ghost: #999ead;
  --Neutral-secondary: #555a65;
  --btn-primary: #40404a;
  --red: #ca1216;
  --grey: #b8b8b8;
  --grey-dark: #54585a;
  --grey-light: #f7f7f7;
  --grey-bg: #f0f0f0;
  --grey-dark-stroke: #dcdcdc;
  --blue: #009fcb;
  --green: #7dc142;
  --violet: #4a4b8e;
  --font-family-primary: "Roboto", sans-serif;
  --font-size-primary: 16px;
  --title-fs: 36px;
  --section-title-fs: 30px;
  --title-mb: 72px;
  --section-title-mb: 46px;
  --transition-primary: 0.3s ease-in-out;
  --transition-secondary: 0.5s ease-in-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  height: 100%;
  background-color: var(--white);
  font-family: var(--font-family-primary);
  color: var(--text-black);
  font-size: var(--font-size-primary);
  font-weight: 300;
  line-height: 1.5;
  min-width: 360px;
}

h1 {
  font-weight: 300;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--black-main);
  font-size: var(--font-size-primary);
  line-height: 1.5;
  font-weight: 300;
}

a {
  font-family: var(--font-family-primary);
  color: var(--text-black);
  font-size: var(--font-size-primary);
  text-decoration: none;
}

li {
  line-height: 1;
}

input,
textarea {
  outline: none;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-primary);
  color: var(--text-black);
  background-color: transparent;
}

input::placeholder,
textarea::placeholder {
  font-weight: 300;
  color: var(--Neutral-ghost);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number],
input[type=number]:hover,
input[type=number]:focus {
  appearance: none;
  -moz-appearance: textfield;
}

textarea {
  resize: none;
}

button {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-primary);
  font-weight: 300;
  white-space: nowrap;
  cursor: pointer;
  background-color: transparent;
}

img,
video {
  max-width: 100%;
  max-height: 100%;
  border-style: none;
  vertical-align: middle;
}

main {
  flex: 1 1 auto;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main {
  margin-top: 102px;
}

.container {
  max-width: 1540px;
  margin: 0 auto;
}

.title {
  margin-bottom: var(--title-mb);
  font-family: var(--font-family-primary);
  font-size: var(--title-fs);
  font-style: normal;
  line-height: 110%;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: var(--section-title-mb);
  font-family: var(--font-family-primary);
  font-size: var(--section-title-fs);
  font-style: normal;
  line-height: 105%;
  text-transform: uppercase;
}

a.section-title {
  display: block;
  position: relative;
}

a.section-title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: var(--black-main);
  opacity: 0;
  transition: var(--transition-primary);
}

.main-header {
  margin-bottom: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 12px 0px 32px;
}

.breadcrumbs__item {
  color: var(--text-secondary);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
  transition: var(--transition-primary);
}

.breadcrumbs__item:hover:not(:last-child) {
  color: var(--Neutral-ghost);
}

.page-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  transition: var(--transition-primary);
}

.page-link__arrow-icon {
  width: 6px;
  height: 12px;
  flex-shrink: 0;
}

.paragraph {
  margin-bottom: 14px;
}

.text-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 20px;
  margin-bottom: 14px;
}

.text-item {
  margin-bottom: 16px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 30px;
  list-style: none;
}

.tab {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--grey-dark-stroke);
  font-size: 12px;
  font-family: var(--font-family-primary);
  font-style: normal;
  transition: var(--transition-primary);
  text-transform: uppercase;
  cursor: pointer;
}

.tab.active {
  background-color: var(--black-main);
  color: var(--white);
}

.tab:hover {
  background-color: var(--black-main);
  color: var(--white);
}

.tab__input {
  display: none;
}

.checkbox-box {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-box.active .checkbox {
  border: 1px solid var(--black-main);
}

.checkbox-box.active .checkbox__icon {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.checkbox-box.error .checkbox {
  border: 1px solid var(--red);
}

.checkbox-box__label {
  font-size: 14px;
}

.checkbox {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid var(--grey);
  transition: var(--transition-primary);
}

.checkbox__icon {
  opacity: 0;
  width: 16px;
  height: 16px;
  pointer-events: none;
  visibility: hidden;
  transition: var(--transition-primary);
}

.checkbox__input {
  display: none;
}

.range {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.range__number-wrap {
  display: flex;
  gap: 12px;
}

.range__decrease-btn {
  flex-shrink: 0;
}

.range__incecrease-btn {
  flex-shrink: 0;
}

.range__btn-icon {
  width: 44px;
  height: 44px;
}

.range__range-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.range__range-min {
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}

.range__range-max {
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}

.range input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 1px;
  background: var(--grey-dark-stroke);
  border-radius: 5px;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.range input[type=range]:hover {
  opacity: 1;
}

.range input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--black-main) 0%, var(--black-main) var(--fill-percent), var(--grey-dark-stroke) var(--fill-percent), var(--grey-dark-stroke));
  border-radius: 5px;
}

.range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 1px solid var(--grey-dark-stroke);
  border-radius: 50%;
  cursor: pointer;
}

.range input[type=range]::-moz-range-track {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--black-main) 0%, var(--black-main) var(--fill-percent), var(--grey-dark-stroke) var(--fill-percent), var(--grey-dark-stroke));
  border-radius: 5px;
}

.range input[type=range]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--black-main);
  border-radius: 50%;
  cursor: pointer;
}

.range input[type=number] {
  width: 100%;
  height: 44px;
  padding: 4px 8px;
  border: 1px solid var(--grey-dark-stroke);
  font-size: 16px;
  font-style: normal;
  text-align: center;
}

.range input[type=range]:focus::-webkit-slider-runnable-track {
  background: linear-gradient(to right, var(--black-main) 0%, var(--black-main) var(--fill-percent), var(--grey-dark-stroke) var(--fill-percent), var(--grey-dark-stroke));
}

.double-range {
  position: relative;
  width: 100%;
}

.double-range__slider {
  width: 100%;
  position: relative;
  height: 1px;
  background: var(--grey-dark-stroke);
  border-radius: 5px;
}

.double-range__slider-track {
  position: absolute;
  height: 100%;
  background: var(--black-main);
  z-index: 1;
}

.double-range__slider input[type=range] {
  position: absolute;
  width: 100%;
  height: 1px;
  background: transparent;
  -webkit-appearance: none;
  pointer-events: none;
  z-index: 2;
  top: -1px;
  margin: 0;
}

.double-range input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--black-main) 0%, var(--black-main) var(--fill-percent), var(--grey-dark-stroke) var(--fill-percent), var(--grey-dark-stroke));
  border-radius: 5px;
}

.double-range__slider input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 1px solid var(--grey-dark-stroke);
  border-radius: 50%;
  cursor: pointer;
}

.double-range input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
}

.double-range input[type=range]::-moz-range-track {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--black-main) 0%, var(--black-main) var(--fill-percent), var(--grey-dark-stroke) var(--fill-percent), var(--grey-dark-stroke));
  border-radius: 5px;
}

.double-range__slider input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 1px solid var(--grey-dark-stroke);
  border-radius: 50%;
  cursor: pointer;
}

.double-range input[type=number] {
  font-size: 16px;
}

.double-range__values {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.double-range__value-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
}

.double-range__value-wrap input {
  padding: 10px 8px;
  border: 1px solid var(--grey-dark-stroke);
  font-size: 12px;
  font-style: normal;
}

.setup-value {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 300;
}

.setup-value__value {
  display: flex;
  align-items: center;
  gap: 4px;
}

.setup-value__range {
  display: flex;
  align-items: center;
  gap: 4px;
}

.setup-value input {
  width: 80px;
  padding: 10px 8px;
  border: 1px solid var(--grey-dark-stroke);
  text-align: center;
  font-size: 16px;
}

.setup-value button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  font-size: 24px;
  font-weight: 300;
}

.setup-value__decrease-btn {
  flex-shrink: 0;
}

.setup-value__incecrease-btn {
  flex-shrink: 0;
}

.setup-value__btn-icon {
  width: 44px;
  height: 44px;
}

[data-button] {
  cursor: pointer;
}

[data-select] {
  position: relative;
}

[data-select].active .select__options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

[data-select].active .select__options-list {
  transform: translateY(0%);
}

[data-select] .select__current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

[data-select] .select__btn {
  flex-shrink: 0;
}

[data-select] .select__options {
  position: absolute;
  left: 0;
  z-index: 9;
  transform: translateY(100%);
  width: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.16);
}

[data-select] .select__options-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  background-color: var(--white);
  transform: translateY(-100%);
  transition: var(--transition-primary);
  max-height: 500px;
  overflow-y: auto;
}

[data-select] .select__options-item {
  cursor: pointer;
}

[data-select] .select__options-input {
  display: none;
}

.form__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
}

.form__inputs-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__input-wrap {
  position: relative;
  height: 52px;
  padding: 13px 20px;
  border: 1px solid var(--Neutral-ghost);
  transition: var(--transition-primary);
  background-color: var(--white);
}

.form__input-wrap.error {
  border: 1px solid var(--red);
}

.form__input-wrap.error .form__input {
  top: 35%;
}

.form__input-wrap.error .form__input-error {
  bottom: 5px;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.form__input-error {
  position: absolute;
  bottom: 0;
  color: var(--red);
  font-family: var(--font-family-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.form__input {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 40px);
  background-color: var(--white);
  transition: var(--transition-primary);
}

.form__submit-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__submit-box .checkbox-box {
  width: max-content;
}

.form__link {
  font-size: 14px;
  text-decoration: underline;
}

.form__submit-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 12px;
  text-transform: uppercase;
  border: 1px solid var(--text-grey2);
  background-color: var(--white);
  transition: var(--transition-primary);
}

.form__submit-btn:hover {
  background-color: var(--black-main);
  border: 1px solid var(--black-main);
  color: var(--white);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-primary);
}

.header.scrolled.down {
  transform: translateY(-100%);
}

.header-top {
  position: relative;
  background-color: var(--grey-light);
  transition: var(--transition-primary);
}

.header-top__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
}

.header-top__contacts {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-top__contacts-item {
  color: var(--text-black);
  font-size: 13px;
  font-style: normal;
  line-height: 138%;
}

.header-top__contacts-item#city-select {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.header-top__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.header-top__nav-item {
  position: relative;
}

.header-top__nav-item::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--black-main);
  opacity: 0;
  transition: var(--transition-primary);
}

.header-top__nav-link {
  color: var(--text-black);
  font-size: 13px;
  font-style: normal;
  line-height: 138%;
}

.header-main {
  background-color: var(--white);
  position: relative;
}

.header-main__wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 12px;
}

.header-main .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-shrink: 0;
}

.header-main .search-form__wrap {
  padding: 32px;
  background: var(--white);
}

.header-main .search-form__input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 20px;
  border: 1px solid var(--grey);
}

.header-main .search-form__input {
  flex-grow: 1;
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
}

.header-main .search-form__input::placeholder {
  color: var(--Neutral-ghost);
}

.header-main .search-form__close-icon {
  cursor: pointer;
}

.header-main .search-block {
  position: absolute;
  top: 102px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.header-main .search-block.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-main .search-block.active .search-form {
  pointer-events: all;
}

.header-main .search-block .presearch-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  width: 1000px;
  height: 63vh;
  padding: 0 32px 32px;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.header-main .search-block .presearch-block.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-main .search-form {
  width: 1000px;
}

.header-main .search-form__search-icon {
  display: none;
  width: 24px;
  height: 24px;
}

.header-main .search-form__search-icon.active {
  display: block;
}

.header-main .search-form__search-reset {
  display: none;
}

.header-main .search-form__search-reset.active {
  display: block;
}

.header-main .search-result__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 90%;
  overflow-y: auto;
}

.header-main .search-result__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 56px;
}

.header-main .search-result__all-wrap {
  display: flex;
  justify-content: center;
}

.header-main .search-result__all-link {
  display: flex;
  justify-content: center;
  width: 200px;
  padding: 12px;
  border: 1px solid var(--text-grey2);
}

.header-main .search-group__title {
  margin-bottom: 20px;
  color: var(--grey);
  font-size: 14px;
  font-style: normal;
  line-height: 142%;
  text-transform: uppercase;
}

.header-main .search-brands__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.header-main .search-brands__link {
  color: var(--green);
}

.header-main .search-categories {
  grid-column: 2/span 1;
  grid-row: span 2;
}

.header-main .search-categories__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
}

.header-main .search-categories__link {
  display: inline-block;
  margin-bottom: 12px;
}

.header-main .search-categories__link--green {
  color: var(--green);
}

.header-main .search-categories__breadcrumbs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  color: var(--Neutral-ghost);
}

.header-main .search-often__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
}

.header-main .search-often__link {
  display: flex;
  align-items: center;
  gap: 11px;
}

.header-main .search-often__img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
}

.header-main .search-often__product-title {
  margin-bottom: 10px;
}

.header-main .search-often__product-title--green {
  color: var(--green);
}

.header-main .search-often__price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-style: normal;
  line-height: 133%;
}

.header-main .search-often__price-prev {
  color: var(--Neutral-ghost);
  text-decoration: line-through;
}

.user-block {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.user-block__list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.user-block__item {
  position: relative;
  cursor: pointer;
}

.user-block__item#login .user-block__item-info {
  display: none;
}

.user-block__item#login.active .user-block__item-info {
  display: flex;
}

.user-block__item-info {
  position: absolute;
  top: 0px;
  right: -9px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 200px;
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  font-size: 12px;
  font-style: normal;
  line-height: 100%;
  pointer-events: none;
}

.user-block__link {
  display: block;
}

.user-block__account-btn {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 160px;
  border: 2px solid var(--grey);
  color: var(--grey);
  font-size: 9px;
  font-style: normal;
  line-height: 111%;
}

.user-block__account-menu {
  position: absolute;
  top: 36px;
  right: 0;
  z-index: 1;
  width: 206px;
  padding: 20px;
  border: 1px solid var(--grey-dark-stroke);
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.user-block__account-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  list-style: none;
}

.user-block__account-item {
  display: flex;
}

.user-block__account-link {
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 114%;
}

.user-block__account-logout {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 114%;
}

.header-navbar {
  position: relative;
  background-color: var(--black-main);
  transition: var(--transition-primary);
}

.header-navbar:has(.header-navbar__item.active) {
  background-color: var(--white);
}

.header-navbar:has(.header-navbar__item.active) .header-navbar__link {
  color: var(--text-black);
}

.header-navbar:has(.header-navbar__item:hover) {
  background-color: var(--white);
}

.header-navbar:has(.header-navbar__item:hover) .header-navbar__link {
  color: var(--text-black);
}

.header-navbar__list {
  display: flex;
  justify-content: center;
  list-style: none;
}

.header-navbar__item {
  display: flex;
  padding: 11px 12px;
}

.header-navbar__item:first-child {
  padding-left: 100px;
}

.header-navbar__item:last-child {
  padding-right: 100px;
}

.header-navbar__item.active#catalog .header-navbar__link {
  color: var(--green);
}

.header-navbar__item.active#catalog .header-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-navbar__item.active#bicycleShop .header-navbar__link {
  color: var(--green);
}

.header-navbar__item.active#bicycleShop .header-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-navbar__item.active#bicycleShop .header-menu__group-link:hover {
  color: var(--green);
}

.header-navbar__item.active#skiShop .header-navbar__link {
  color: var(--blue);
}

.header-navbar__item.active#skiShop .header-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-navbar__item.active#skiShop .header-menu__group-link:hover {
  color: var(--blue);
}

.header-navbar__item.active#alpineSkiShop .header-navbar__link {
  color: var(--violet);
}

.header-navbar__item.active#alpineSkiShop .header-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-navbar__item.active#alpineSkiShop .header-menu__group-link:hover {
  color: var(--violet);
}

.header-navbar__item.active#brands .header-navbar__link {
  color: var(--green);
}

.header-navbar__item.active#brands .header-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-navbar__item.active .header-navbar__link::before {
  width: 100%;
}

.header-navbar__item#catalog .header-navbar__link::before {
  background-color: var(--green);
}

.header-navbar__item#bicycleShop .header-navbar__link::before {
  background-color: var(--green);
}

.header-navbar__item#bicycleShop .header-menu__link:hover {
  color: var(--green);
}

.header-navbar__item#bicycleShop .header-menu__link::before {
  background-color: var(--green);
}

.header-navbar__item#bicycleShop .header-menu__group-title:hover {
  color: var(--green);
}

.header-navbar__item#bicycleShop .header-menu__group-title::before {
  background-color: var(--green);
}

.header-navbar__item#skiShop .header-navbar__link::before {
  background-color: var(--blue);
}

.header-navbar__item#skiShop .header-menu__link:hover {
  color: var(--blue);
}

.header-navbar__item#skiShop .header-menu__link::before {
  background-color: var(--blue);
}

.header-navbar__item#skiShop .header-menu__group-title:hover {
  color: var(--blue);
}

.header-navbar__item#skiShop .header-menu__group-title::before {
  background-color: var(--blue);
}

.header-navbar__item#alpineSkiShop .header-navbar__link::before {
  background-color: var(--violet);
}

.header-navbar__item#alpineSkiShop .header-menu__link:hover {
  color: var(--violet);
}

.header-navbar__item#alpineSkiShop .header-menu__link::before {
  background-color: var(--violet);
}

.header-navbar__item#alpineSkiShop .header-menu__group-title:hover {
  color: var(--violet);
}

.header-navbar__item#alpineSkiShop .header-menu__group-title::before {
  background-color: var(--violet);
}

.header-navbar__item#brands .header-navbar__link::before {
  background-color: var(--green);
}

.header-navbar__link {
  position: relative;
  color: var(--text-white);
  font-family: var(--font-family-primary);
  font-style: normal;
  line-height: 128%;
  text-transform: uppercase;
  transition: var(--transition-primary);
  cursor: pointer;
}

.header-navbar__link:hover::before {
  width: 100%;
}

.header-navbar__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  transition: var(--transition-primary);
}

.header-menu {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 999;
  width: 100%;
  min-height: 80vh;
  height: 100%;
  padding: 20px 0;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-menu .container {
  height: 100%;
}

.header-menu__wrap {
  position: relative;
  height: 90%;
  padding: 20px 1px 0;
}

.header-menu__menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.header-menu__btn-close {
  margin-left: auto;
  cursor: pointer;
}

.header-menu__link {
  position: relative;
  font-family: var(--font-family-primary);
  font-style: normal;
  line-height: 128%;
  text-transform: uppercase;
  transition: var(--transition-primary);
}

.header-menu__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  transition: var(--transition-primary);
}

.header-menu__link:hover::before {
  width: 100%;
}

.header-navbar__item:not(#brands) .header-menu__wrap {
  overflow-y: auto;
  padding-right: 5px;
}

.header-navbar__item:not(#catalog) .header-menu .header-menu__wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.header-navbar__item:not(#catalog) .header-menu .header-menu__block {
  grid-column: 1/span 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.header-navbar__item:not(#catalog) .header-menu .header-menu__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.header-navbar__item:not(#catalog) .header-menu .header-menu__group-title {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-family-primary);
  font-style: normal;
  line-height: 143%;
  text-transform: uppercase;
  transition: var(--transition-primary);
}

.header-navbar__item:not(#catalog) .header-menu .header-menu__group-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  transition: var(--transition-primary);
}

.header-navbar__item:not(#catalog) .header-menu .header-menu__group-title:hover::before {
  width: 100%;
}

.header-navbar__item:not(#catalog) .header-menu .header-menu__group-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.header-navbar__item:not(#catalog) .header-menu .header-menu__group-item {
  line-height: normal;
}

.header-navbar__item:not(#catalog) .header-menu .header-menu__group-link {
  color: var(--text-secondary);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
  transition: var(--transition-primary);
}

.header-navbar__item:not(#catalog) .header-menu .header-menu__product-select {
  grid-column: 5/span 1;
}

.header-navbar__item#catalog .header-menu .header-menu__list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 273px;
  height: 100%;
  border-right: 1px solid var(--grey-light);
  list-style: none;
}

.header-navbar__item#catalog .header-menu .header-menu__item {
  padding: 6px 10px 6px 0;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__item:not(:has(.header-menu__group)) .header-menu__item-btn {
  display: none;
}

.header-navbar__item#catalog .header-menu .header-menu__item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.header-navbar__item#catalog .header-menu .header-menu__item-link {
  position: relative;
  color: var(--text-black);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
  text-transform: uppercase;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__item-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__item-arrow path {
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__group {
  position: absolute;
  top: 0px;
  left: 100%;
  height: 100%;
  border-right: 1px solid var(--grey-light);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__group-list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 273px;
  height: 100%;
  list-style: none;
}

.header-navbar__item#catalog .header-menu .header-menu__group-item:not(:has(.header-menu__subgroup)) .header-menu__group-btn {
  display: none;
}

.header-navbar__item#catalog .header-menu .header-menu__group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 6px 40px;
  cursor: pointer;
}

.header-navbar__item#catalog .header-menu .header-menu__group-link {
  position: relative;
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__group-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__group-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__group-arrow path {
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__subgroup {
  position: absolute;
  top: 0px;
  left: 100%;
  height: 100%;
  border-right: 1px solid var(--grey-light);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__subgroup-list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 273px;
  height: 100%;
  list-style: none;
}

.header-navbar__item#catalog .header-menu .header-menu__subgroup-item:not(:has(.header-menu__inner-group)) .header-menu__subgroup-btn {
  display: none;
}

.header-navbar__item#catalog .header-menu .header-menu__subgroup-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 6px 40px;
  cursor: pointer;
}

.header-navbar__item#catalog .header-menu .header-menu__subgroup-link {
  position: relative;
  color: var(--text-black);
  font-size: 14px;
  line-height: 143%;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__subgroup-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__subgroup-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__subgroup-arrow path {
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__inner-group {
  position: absolute;
  top: 0px;
  left: 100%;
  height: 100%;
  border-right: 1px solid var(--grey-light);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__inner-list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 273px;
  height: 100%;
  list-style: none;
}

.header-navbar__item#catalog .header-menu .header-menu__inner-item:not(:has(.header-menu__last-group)) .header-menu__inner-btn {
  display: none;
}

.header-navbar__item#catalog .header-menu .header-menu__inner-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 6px 40px;
  cursor: pointer;
}

.header-navbar__item#catalog .header-menu .header-menu__inner-link {
  position: relative;
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__inner-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__inner-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__inner-arrow path {
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__last-group {
  position: absolute;
  top: 0px;
  left: 100%;
  height: 100%;
  border-right: 1px solid var(--grey-light);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__last-list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 273px;
  height: 100%;
  list-style: none;
}

.header-navbar__item#catalog .header-menu .header-menu__last-item {
  padding: 6px 40px;
}

.header-navbar__item#catalog .header-menu .header-menu__last-link {
  position: relative;
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
  transition: var(--transition-primary);
}

.header-navbar__item#catalog .header-menu .header-menu__last-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  transition: var(--transition-primary);
}

.header-navbar__item#brands .header-menu__search-form {
  margin-bottom: 26px;
}

.header-navbar__item#brands .header-menu__search-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--grey-dark-stroke);
}

.header-navbar__item#brands .header-menu__search-input {
  flex-grow: 1;
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 142%;
}

.header-navbar__item#brands .header-menu__search-input::placeholder {
  color: #7b7b7b;
}

.header-navbar__item#brands .header-menu__search-icon {
  display: none;
}

.header-navbar__item#brands .header-menu__search-icon.active {
  display: block;
}

.header-navbar__item#brands .header-menu__search-reset {
  display: none;
}

.header-navbar__item#brands .header-menu__search-reset.active {
  display: block;
}

.header-navbar__item#brands .header-menu__search-block {
  display: flex;
  justify-content: space-between;
}

.header-navbar__item#brands .header-menu__search-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header-navbar__item#brands .header-menu__search-letter {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green);
  font-style: normal;
  line-height: normal;
}

.header-navbar__item#brands .header-menu__search-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.header-navbar__item#brands .header-menu__search-link {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  line-height: normal;
}

.header-navbar__item#brands .header-menu__search-alphabet {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.header-navbar__item#brands .header-menu__alphabet-item {
  color: var(--Neutral-ghost);
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  cursor: pointer;
}

.header-navbar__item#brands .header-menu__brand-search {
  grid-column: 1/span 1;
  padding-right: 30px;
  overflow-y: auto;
}

.header-navbar__item#brands .header-menu__brand-block {
  grid-column: 2/span 3;
  overflow-y: auto;
}

.header-navbar__item#brands .header-menu__brand-list {
  display: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  list-style: none;
}

.header-navbar__item#brands .header-menu__brand-list.active {
  display: grid;
}

.header-navbar__item#brands .header-menu__brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(99%);
}

.header-navbar__item#brands .header-menu__selection {
  display: none;
}

.header-navbar__item#brands .header-menu__selection.active {
  display: block;
}

.header-navbar__item#brands .header-menu__selection-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  list-style: none;
}

.header-navbar__item#brands .header-menu__selection-item.hidden {
  display: none;
}

.header-navbar__item#brands .header-menu__selection-link {
  font-style: normal;
}

.header-main__contacts-block .header-main__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-main__contacts-block .header-main__contacts-item {
  position: relative;
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 150%;
}

.header-main__contacts-block .header-main__contacts-item[data-button=citySelect] {
  display: flex;
  gap: 5px;
  align-items: center;
}

.header-main__contacts-block .header-main__contacts-item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--text-black);
  transition: var(--transition-primary);
}

.header-main__contacts-block .header-main__contacts-item:not(:last-child):hover::before {
  width: 100%;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: var(--transition-primary);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-menu.active .mobile-menu__wrap {
  transform: translateX(0%);
}

.mobile-menu__wrap {
  position: relative;
  min-height: 100%;
  height: 100%;
  width: 624px;
  background-color: var(--white);
  transform: translateX(-100%);
  transition: var(--transition-primary);
}

.mobile-menu__wrap::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu__wrap::-webkit-scrollbar-track {
  background: var(--grey-dark-stroke);
  border-radius: 6px;
}

.mobile-menu__wrap::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: var(--grey);
  cursor: pointer;
}

.mobile-menu__wrap:has(.mobile-menu__submenu.active) {
  overflow-y: hidden;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background-color: var(--black-main);
}

.mobile-menu__city-select {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-white);
  font-size: 14px;
  font-style: normal;
  line-height: 115%;
}

.mobile-menu__main {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 0px;
}

.mobile-menu__item {
  padding: 16px 0;
  border-top: 1px solid var(--text-white);
  border-bottom: 1px solid var(--text-white);
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 110%;
  text-transform: uppercase;
}

.mobile-menu__item:not(:has(.mobile-menu__submenu)) .mobile-catalog__btn-wrap {
  display: none;
}

.mobile-menu__item:not(:has(#mobileCatalog)) .mobile-menu__submenu {
  min-height: initial;
  overflow-y: auto;
}

.mobile-menu__item:first-child {
  border-top: none;
}

.mobile-menu__item:last-child {
  border-bottom: none;
}

.mobile-menu__item#mobileBrands .mobile-menu__item-link {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__item--gray {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 115%;
  text-transform: none;
}

.mobile-menu__item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-primary);
}

.mobile-menu__item-schedule {
  font-size: 10px;
  line-height: 130%;
}

.mobile-menu__btn-wrap {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu__entry {
  display: none;
  align-items: center;
  gap: 6px;
}

.mobile-menu__entry.active {
  display: flex;
}

.mobile-menu__profile.active .mobile-menu__profile-arrow {
  transform: rotateX(180deg);
}

.mobile-menu__profile-wrap {
  display: none;
}

.mobile-menu__profile-wrap.active {
  display: block;
}

.mobile-menu__profile-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-menu__profile-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
}

.mobile-menu__profile-initials {
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid var(--text-black);
  color: var(--text-black);
  font-size: 8px;
  font-style: normal;
  line-height: 125%;
}

.mobile-menu__profile-name {
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 115%;
}

.mobile-menu__profile-arrow {
  transition: var(--transition-primary);
}

.mobile-menu__profile-box {
  overflow: hidden;
  max-height: 0;
  transition: var(--transition-primary);
}

.mobile-menu__profile-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
  list-style: none;
  text-transform: none;
}

.mobile-menu__profile-link {
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 115%;
}

.mobile-menu__profile-logout {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 115%;
}

.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 22px 24px;
  background-color: var(--grey-light);
}

.mobile-menu__footer-item {
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 115%;
  list-style: none;
}

.mobile-menu__submenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  min-height: max-content;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transform: translateX(-100%);
  transition: var(--transition-primary);
}

.mobile-menu__submenu::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu__submenu::-webkit-scrollbar-track {
  background: var(--grey-dark-stroke);
  border-radius: 6px;
}

.mobile-menu__submenu::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: var(--grey);
  cursor: pointer;
}

.mobile-menu__submenu.active {
  transform: translateX(0%);
}

.mobile-menu__submenu:has(.mobile-menu__submenu.active) {
  overflow: hidden;
}

.mobile-menu__submenu-wrap {
  position: relative;
  height: 100%;
  overflow: auto;
}

.mobile-menu__submenu .mobile-menu__header-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.mobile-menu__submenu-list {
  display: flex;
  flex-direction: column;
  padding: 24px;
  list-style: none;
}

.mobile-menu__submenu-item {
  padding: 16px 0;
  border-top: 1px solid var(--text-white);
  border-bottom: 1px solid var(--text-white);
}

.mobile-menu__submenu-item:first-child {
  border-top: none;
}

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

.mobile-menu__submenu-item.active .mobile-menu__arrow-icon {
  transform: rotateX(180deg);
}

.mobile-menu__submenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-black);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  line-height: 110%;
  text-transform: uppercase;
}

.mobile-menu__submenu-btn {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu__arrow-icon {
  transition: var(--transition-primary);
}

.mobile-menu__inner-block {
  overflow: hidden;
  max-height: 0;
  transition: var(--transition-primary);
}

.mobile-menu__inner-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  list-style: none;
}

.mobile-menu__inner-link {
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  text-transform: none;
}

.mobile-menu .product-selection-box {
  padding: 0 14px 40px;
}

.mobile-menu .product-select-link {
  max-width: 100%;
  height: 136px;
  padding: 20px 16px;
  cursor: pointer;
}

.mobile-menu .product-select-link__box {
  flex-grow: 1;
}

.mobile-menu .product-select-link__title {
  font-size: 20px;
  max-width: 212px;
  text-transform: none;
}

.navbar-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: none;
  border-top: 1px solid var(--grey-bg);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}

.navbar-mobile__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  background-color: var(--white);
  list-style: none;
}

.mobile-menu .mobile-catalog {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: var(--white);
  transform: translateX(-100%);
  transition: var(--transition-primary);
}

.mobile-menu .mobile-catalog.active {
  transform: translateX(0%);
}

.mobile-menu .mobile-catalog .mobile-menu__header-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.mobile-menu .mobile-catalog__list {
  display: flex;
  flex-direction: column;
  padding: 24px;
  list-style: none;
}

.mobile-menu .mobile-catalog__item {
  position: relative;
  padding: 16px 0;
  border-top: 1px solid var(--text-white);
  border-bottom: 1px solid var(--text-white);
}

.mobile-menu .mobile-catalog__item:first-child {
  border-top: none;
}

.mobile-menu .mobile-catalog__item:last-child {
  border-bottom: none;
}

.mobile-menu .mobile-catalog__item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu .mobile-catalog__btn-wrap {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-menu__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 93vh;
  padding: 24px 24px 4px;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search {
  height: 89vh;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-form {
  margin-bottom: 26px;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-form__box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--grey-dark-stroke);
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-form__input {
  flex-grow: 1;
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 142%;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-form__input::placeholder {
  color: #7b7b7b;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-form__icon {
  display: none;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-form__icon.active {
  display: block;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-form__reset {
  display: none;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-form__reset.active {
  display: block;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-block {
  display: flex;
  justify-content: space-between;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search__letter {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green);
  font-style: normal;
  line-height: normal;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search__link {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  line-height: normal;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search-alphabet {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-alphabet__item {
  color: var(--Neutral-ghost);
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  cursor: pointer;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search {
  grid-column: 1/span 2;
  padding-right: 30px;
  overflow-y: auto;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-block {
  display: none;
  height: 89vh;
  grid-column: 3/span 2;
  overflow-y: auto;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-list {
  display: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  list-style: none;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-list.active {
  display: grid;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-selection {
  display: none;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-selection.active {
  display: block;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-selection__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  list-style: none;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-selection__item.hidden {
  display: none;
}

.mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-selection__link {
  font-style: normal;
}

.header .product-selection {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header .product-selection.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header .product-selection .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
}

.header .product-selection .section-title {
  margin-bottom: 0;
}

.header .product-selection-item {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  min-height: 80vh;
  padding: 40px 1px 40px 0;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.header .product-selection-item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header .product-selection-item__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 80%;
}

.header .product-selection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .product-selection-header__link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 130%;
  text-transform: uppercase;
}

.header .product-selection-content {
  height: 80%;
}

.header .product-selection-form {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}

.header .product-selection-form.active {
  display: flex;
}

.header .product-selection-form__submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  padding: 12px;
  margin: 0 auto;
  border: 1px solid var(--text-grey2);
  font-size: 16px;
  font-style: normal;
  line-height: 150%;
  transition: var(--transition-primary);
}

.header .product-selection-form__submit-btn:hover {
  color: var(--white);
  background-color: var(--black-main);
}

.header .product-selection-block {
  display: flex;
  gap: 60px;
  height: 75%;
}

.header .product-selection-type {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-right: 12px;
  height: 100%;
  overflow-y: auto;
}

.header .product-selection-type:has(.range) {
  min-width: 272px;
}

.header .product-selection-type:has(.double-range) {
  min-width: 272px;
}

.header .product-selection-type__title {
  margin-bottom: 16px;
  font-size: 14px;
  font-style: normal;
  line-height: 130%;
}

.header .product-selection-type__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.header .product-selection-type__size-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
}

.footer .footer-main {
  background-color: var(--black-main);
  padding: 90px 0 36px;
}

.footer .footer-main__block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.footer .copyright {
  color: var(--text-white);
  font-size: 12px;
  font-style: normal;
  line-height: normal;
}

.footer .footer-navigation {
  grid-column: 2/span 3;
}

.footer .footer-navigation__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.footer .footer-navigation__item-title {
  margin-bottom: 18px;
  color: var(--text-white);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  line-height: 172%;
  text-transform: uppercase;
}

.footer .footer-navigation__item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.footer .footer-navigation__elem {
  max-width: 190px;
  color: var(--text-white);
  font-size: 14px;
  font-style: normal;
  line-height: 128%;
}

.footer .footer-navigation__elem:has(.footer-navigation__socials-list) {
  max-width: unset;
}

.footer .footer-navigation__elem h3 {
  margin-bottom: 7px;
  color: var(--Neutral-ghost);
  font-size: 12px;
  font-style: normal;
  line-height: normal;
}

.footer .footer-navigation__elem a {
  color: inherit;
  font-size: inherit;
}

.footer .footer-navigation__callback-btn {
  width: 166px;
  padding: 10px;
  border: 1px solid var(--grey);
  color: var(--text-white);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  line-height: 170%;
  transition: var(--transition-primary);
}

.footer .footer-navigation__socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  list-style: none;
}

.footer .footer-navigation__payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}

.footer .footer-info {
  background-color: var(--white);
}

.footer .footer-info__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 60px 0;
}

.footer .footer-info__box-title {
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  line-height: 158%;
  text-transform: uppercase;
}

.footer .footer-info__box-elem {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer .footer-info__box-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.footer .footer-info__box-item {
  display: inherit;
}

.footer .footer-info__box-link {
  font-size: 14px;
  font-style: normal;
  line-height: 158%;
}

.footer .footer-stores {
  background-color: var(--grey-bg);
}

.footer .footer-stores__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 60px 0;
}

.footer .footer-stores__store-title {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  line-height: 158%;
  text-transform: uppercase;
}

.footer .footer-stores__store-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer .footer-stores__store-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.footer .footer-stores__store-item {
  display: inherit;
}

.footer .footer-stores__store-link {
  font-size: 14px;
  font-style: normal;
  line-height: 158%;
}

.footer .footer-logo {
  grid-column: 1/span 1;
}

.footer .footer-logo__logo-box {
  margin-bottom: 20px;
}

.footer .footer-logo__logo-link {
  display: block;
  max-width: 212px;
  margin-bottom: 14px;
}

.footer .footer-logo__logo-descr {
  max-width: 212px;
  color: var(--text-white);
  font-size: 12px;
  font-style: normal;
  line-height: 133%;
}

.footer .footer-logo__rating-title {
  margin-bottom: 7px;
  color: var(--Neutral-ghost);
  font-size: 12px;
  font-style: normal;
  line-height: normal;
}

.footer .footer-logo__rating-link {
  display: block;
  max-width: 150px;
}

.modal-window {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.modal-window.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

[data-modal=citySelect] .city-search {
  width: 787px;
  height: 75vh;
  padding: 30px;
  background-color: var(--white);
}

[data-modal=citySelect] .city-search__form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  height: inherit;
}

[data-modal=citySelect] .city-search__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[data-modal=citySelect] .city-search__header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

[data-modal=citySelect] .city-search__header-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 24px;
  font-style: normal;
  line-height: 110%;
}

[data-modal=citySelect] .city-search__city-accept {
  display: flex;
  justify-content: center;
  min-width: 140px;
  display: flex;
  padding: 8px;
  border: 1px solid var(--text-grey2);
  font-size: 16px;
  font-style: normal;
  line-height: 150%;
  transition: var(--transition-primary);
}

[data-modal=citySelect] .city-search__city-accept:hover {
  border: 1px solid var(--black-main);
  background-color: var(--black-main);
  color: var(--white);
}

[data-modal=citySelect] .city-search__search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 20px;
  border: 1px solid var(--grey);
}

[data-modal=citySelect] .city-search__search-input {
  flex-grow: 1;
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
}

[data-modal=citySelect] .city-search__search-icon {
  display: none;
  width: 24px;
  height: 24px;
}

[data-modal=citySelect] .city-search__search-icon.active {
  display: block;
}

[data-modal=citySelect] .city-search__close-icon {
  display: none;
  cursor: pointer;
}

[data-modal=citySelect] .city-search__close-icon.active {
  display: block;
}

[data-modal=citySelect] .city-search__city-select {
  height: 76%;
  overflow-y: auto;
}

[data-modal=citySelect] .city-search__city-list {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 40px;
}

[data-modal=citySelect] .city-search__city-list.active {
  display: grid;
}

[data-modal=citySelect] .city-search__city-title {
  position: relative;
  width: max-content;
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
}

[data-modal=citySelect] .city-search__city-title:hover::before {
  width: 100%;
}

[data-modal=citySelect] .city-search__city-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--text-black);
  transition: var(--transition-primary);
}

[data-modal=citySelect] .city-search__found-list {
  display: none;
  flex-direction: column;
  gap: 8px;
}

[data-modal=citySelect] .city-search__found-list.active {
  display: flex;
}

.consultation-order-success {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 671px;
  padding: 30px 30px 40px;
  background-color: var(--white);
}

.consultation-order-success .modal-window__close-btn {
  align-self: flex-end;
}

.consultation-order-success__descr {
  text-align: center;
}

.consultation-order-success__title {
  margin-bottom: 16px;
  color: var(--black-main);
  font-size: 25px;
  font-style: normal;
  line-height: 113%;
}

.consultation-order-success__notation {
  color: var(--text-black);
  font-size: 14px;
  font-style: normal;
  line-height: 142%;
}

.registration-proposal-success {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 671px;
  padding: 30px 30px 60px;
  background-color: var(--white);
}

.registration-proposal-success .modal-window__close-btn {
  align-self: flex-end;
}

.registration-proposal-success__descr {
  text-align: center;
}

.registration-proposal-success__title {
  margin-bottom: 16px;
  color: var(--black-main);
  font-size: 25px;
  font-style: normal;
  line-height: 113%;
}

.registration-proposal-success__notation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 571px;
  color: var(--text-black);
  font-size: 14px;
  line-height: 142%;
}

.mobile-product-selection {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.mobile-product-selection.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-product-selection .product-selection-item {
  display: none;
  height: 100%;
  position: relative;
  overflow-y: auto;
}

.mobile-product-selection .product-selection-item.active {
  display: block;
}

.mobile-product-selection .product-selection-item:has(.product-selection-form.active) {
  overflow-y: hidden;
}

.mobile-product-selection .product-selection-item__wrap {
  padding: 0 24px 24px;
}

.mobile-product-selection .product-selection-item__title {
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-bottom: 14px;
  background-color: var(--grey-bg);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.mobile-product-selection .product-selection-item__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-product-selection .product-selection-item__link {
  display: flex;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--grey-dark-stroke);
  font-family: var(--font-family-primary);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.mobile-product-selection .product-selection-header__title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  margin-bottom: 16px;
  background-color: var(--black-main);
}

.mobile-product-selection .product-selection-header .section-title {
  margin-bottom: 0;
  color: var(--white);
  font-size: 16px;
}

.mobile-product-selection .product-selection-header__link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 0px 24px;
  color: var(--Neutral-ghost);
  font-size: 10px;
  font-style: normal;
  line-height: 130%;
  text-transform: uppercase;
}

.mobile-product-selection .product-selection-header__link-icon {
  width: 16px;
  height: 16px;
}

.mobile-product-selection .product-selection-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 24px 120px;
}

.mobile-product-selection .product-selection-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mobile-product-selection .product-selection-form {
  transform: translateX(-100%);
  transition: var(--transition-primary);
  width: 100%;
  height: 100%;
  background-color: var(--white);
  overflow-y: auto;
  position: absolute;
  top: 0px;
  left: 0px;
}

.mobile-product-selection .product-selection-form.active {
  transform: translateX(0%);
  pointer-events: all;
}

.mobile-product-selection .product-selection-form.active .product-selection-form__submit-box {
  transform: translateY(0%);
}

.mobile-product-selection .product-selection-form__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  background-color: var(--black-main);
}

.mobile-product-selection .product-selection-form__header-title {
  color: var(--text-white);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  line-height: 110%;
  text-transform: uppercase;
}

.mobile-product-selection .product-selection-form__submit-box {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  padding: 19px 24px;
  background-color: var(--white);
  border-top: 1px solid var(--grey-dark-stroke);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.06), 0px 8px 23px 0px rgba(0, 0, 0, 0.08);
  transition: var(--transition-primary);
  transform: translateY(120%);
}

.mobile-product-selection .product-selection-form__submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  margin: 0 auto;
  border: 1px solid var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 150%;
  transition: var(--transition-primary);
}

.mobile-product-selection .product-selection-form__submit-btn:hover {
  color: var(--white);
  background-color: var(--black-main);
}

.mobile-product-selection .product-selection-block {
  padding: 0 24px;
}

.mobile-product-selection .product-selection-block__wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 14px;
  padding-bottom: 1px;
}

.mobile-product-selection .product-selection-type {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-product-selection .product-selection-type.active .product-selection-type__header-arrow {
  transform: rotateX(180deg);
}

.mobile-product-selection .product-selection-type__wrap {
  border: 1px solid var(--grey-dark-stroke);
  padding: 10px 12px;
}

.mobile-product-selection .product-selection-type__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-product-selection .product-selection-type__header-arrow {
  transition: var(--transition-primary);
}

.mobile-product-selection .product-selection-type__title {
  font-size: 14px;
  font-style: normal;
  line-height: 130%;
}

.mobile-product-selection .product-selection-type__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 16px 0 0 16px;
}

.mobile-product-selection .product-selection-type__list-wrap {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-primary);
}

.mobile-product-selection .product-selection-type__size {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 16px 0 8px;
}

.mobile-product-selection .product-selection-type .double-range,
.mobile-product-selection .product-selection-type .range,
.mobile-product-selection .product-selection-type .setup-value {
  padding: 16px 0 8px;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 21px;
  height: 32px;
  cursor: pointer;
  overflow: hidden;
}

.menu-btn.active .menu-btn__line:nth-child(1) {
  transform: translate(5px, 5px);
  rotate: 45deg;
}

.menu-btn.active .menu-btn__line:nth-child(2) {
  transform: translateX(100%);
  opacity: 0;
}

.menu-btn.active .menu-btn__line:nth-child(3) {
  transform: translate(3px, -3px);
  rotate: -45deg;
}

.menu-btn__line {
  position: relative;
  width: 21px;
  height: 2px;
  border-radius: 30px;
  background: var(--black-main);
  transition: var(--transition-primary);
}

.callback-btn {
  padding: 12px 40px;
  border-radius: 30px;
  border: 1px solid var(--stroke);
  background: var(--white);
  font-size: 14px;
  font-style: normal;
  line-height: 150%;
  transition: var(--transition-primary);
  cursor: pointer;
}

.pagination {
  display: flex;
}

.pagination__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
}

.pagination__item.active .pagination__link {
  background-color: var(--black-main);
  color: var(--white);
}

.pagination__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  transition: var(--transition-primary);
}

.pagination__link:hover {
  background-color: var(--grey-bg);
}

.brands-line {
  padding: 28px 0;
  background-color: var(--black-main);
}

.brands-line__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 65px;
  padding: 6px 5px;
  background-color: var(--white);
  filter: grayscale(99%);
}

.brands-line .splide {
  pointer-events: none;
}

.product-select-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 32px;
  max-width: 276px;
  height: 344px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.product-select-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--black-main);
  opacity: 0.3;
  pointer-events: none;
}

.product-select-link__title {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: var(--text-white);
  font-family: var(--font-family-primary);
  font-size: 30px;
  font-style: normal;
  line-height: 107%;
}

.product-select-link__btn {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 8px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  line-height: 120%;
}

.news {
  background-color: var(--white);
}

.news__wrap {
  padding: 100px 0;
}

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

.news .section-title {
  position: relative;
}

.news .section-title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: var(--black-main);
  opacity: 0;
  transition: var(--transition-primary);
}

.news-swiper__nav {
  display: flex;
  gap: 8px;
}

.news-swiper__btn-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.news-swiper__btn-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.news-card {
  transition: var(--transition-primary);
  display: block;
}

.news-card__img-wrap {
  display: inline-block;
  aspect-ratio: 16/9;
  width: 100%;
  margin-bottom: 16px;
}

.news-card__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.news-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  height: 44px;
  margin-bottom: 10px;
  color: var(--black-main);
  font-size: 16px;
  font-style: normal;
  line-height: 138%;
}

.news-card__date {
  color: var(--Neutral-ghost);
  font-size: 13px;
  font-style: normal;
  line-height: 138%;
}

.news .splide__pagination__page.is-active {
  background: var(--grey-dark);
}

.blog {
  background-color: var(--white);
}

.blog__wrap {
  padding: 100px 0;
}

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

.blog .section-title {
  position: relative;
}

.blog .section-title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: var(--black-main);
  opacity: 0;
  transition: var(--transition-primary);
}

.blog-swiper__nav {
  display: flex;
  gap: 8px;
}

.blog-swiper__btn-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.blog-swiper__btn-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.blog-card {
  transition: var(--transition-primary);
}

.blog-card__img-wrap {
  display: inline-block;
  aspect-ratio: 16/9;
  width: 100%;
  margin-bottom: 16px;
  cursor: pointer;
}

.blog-card__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  height: 44px;
  margin-bottom: 10px;
  color: var(--black-main);
  font-size: 16px;
  font-style: normal;
  line-height: 138%;
}

.blog-card__date {
  color: var(--Neutral-ghost);
  font-size: 13px;
  font-style: normal;
  line-height: 138%;
}

.blog .splide__pagination__page.is-active {
  background: var(--grey-dark);
}

.reviews-swiper {
  background-color: var(--white);
}

.reviews-swiper__wrap {
  padding: 100px 0;
}

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

.reviews-swiper__nav {
  display: flex;
  gap: 8px;
}

.reviews-swiper__btn-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.reviews-swiper__btn-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  height: 100%;
  min-height: 372px;
  padding: 30px;
  border: 1px solid var(--grey-dark-stroke);
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.review-card__rating-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__rating-author {
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
}

.review-card__descr {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-card__descr-item {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--Neutral-secondary, #555a65);
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}

.review-card__descr-item#advantages {
  -webkit-line-clamp: 4;
}

.review-card__descr-item#disadvantages {
  -webkit-line-clamp: 4;
}

.review-card__descr-item#comment {
  -webkit-line-clamp: 5;
}

.review-card__descr-title {
  margin-right: 4px;
  font-weight: 500;
}

.review-card__date {
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
}

.registration-proposal {
  display: flex;
  align-items: center;
  gap: 86px;
  height: 672px;
  background-color: var(--black-main);
}

.registration-proposal__img-wrap {
  width: 50%;
  height: 100%;
}

.registration-proposal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.registration-proposal .registration-form {
  max-width: 653px;
  padding: 46px;
  border: 1px solid var(--grey);
}

.registration-proposal .registration-form .section-title {
  margin-bottom: 32px;
  color: var(--text-white);
  text-transform: initial;
}

.registration-proposal .registration-form .form__input-wrap {
  background-color: var(--black-main);
  border: 1px solid var(--text-white);
}

.registration-proposal .registration-form .form__input {
  background-color: transparent;
  color: var(--text-white);
}

.registration-proposal .registration-form .form__input::placeholder {
  color: var(--grey);
}

.registration-proposal .registration-form .form__submit-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--text-white);
  background-color: var(--black-main);
  color: var(--text-white);
  font-style: normal;
  line-height: normal;
  transition: var(--transition-primary);
}

.registration-proposal .registration-form .form__privacy-policy {
  color: var(--text-white);
  font-size: 12px;
  font-style: normal;
  line-height: 150%;
}

.consultation-order {
  background: var(--grey-bg);
  padding: 56px 0px;
}

.consultation-order .splide__arrow {
  pointer-events: all;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.consultation-order .splide__arrow svg {
  height: 12px;
  width: 12px;
}

.consultation-order__consultant {
  display: flex;
  align-items: center;
  grid-column: 1/span 1;
  grid-row: 1/span 2;
}

.consultation-order .consultation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 108px;
}

.consultation-order .consultation-form__radios-box {
  grid-column: 2/span 1;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 26px;
}

.consultation-order .consultation-form__radio {
  display: flex;
  justify-content: center;
  min-width: 150px;
  padding: 11px 24px;
  border: 1px solid var(--text-grey2);
  color: var(--text-black);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  line-height: 128%;
  transition: var(--transition-primary);
  cursor: pointer;
}

.consultation-order .consultation-form__radio.active {
  border: 1px solid var(--black-main);
  background: var(--black-main);
  color: var(--white);
}

.consultation-order .consultation-form__radio-input {
  display: none;
}

.consultation-order .consultation-form .splide {
  display: none;
  align-items: center;
}

.consultation-order .consultation-form .splide.active {
  display: flex;
}

.consultation-order .consultation-form .form__wrap {
  grid-column: 2/span 1;
}

.consultation-order .consultation-form__inputs-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 26px;
}

.consultation-order .consultation-form__input-wrap {
  padding: 13px 20px;
  background: var(--white);
}

.consultation-order .consultation-form__input {
  width: 100%;
  color: var(--text-black);
  font-style: normal;
  line-height: normal;
}

.consultation-order .consultation-form__input::placeholder {
  color: var(--Neutral-ghost);
}

.consultation-order .consultation-form__submit-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  width: 200px;
  padding: 12px;
  border: 1px solid var(--text-grey2);
  background-color: var(--white);
  transition: var(--transition-primary);
}

.consultation-order .consultation-form__privacy-policy {
  display: inline-block;
  max-width: 300px;
  color: var(--text-black);
  font-size: 12px;
  font-style: normal;
  line-height: 150%;
}

.consultant-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.consultant-card__img-wrap {
  overflow: hidden;
  border-radius: 50%;
  width: 240px;
  height: 240px;
}

.consultant-card__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.consultant-card__info {
  max-width: 275px;
  text-align: center;
}

.consultant-card__descr {
  margin-bottom: 8px;
  color: var(--text-black);
  font-family: var(--font-family-primary);
  font-style: normal;
  line-height: 138%;
  text-transform: uppercase;
}

.consultant-card__name {
  color: var(--text-black);
  font-family: var(--font-family-primary);
  font-style: normal;
  line-height: 138%;
}

.product-card {
  position: relative;
  height: 528px;
  background-color: var(--white);
}

.product-card:hover .product-card__wrap {
  z-index: 2;
}

.product-card:hover .product-card__descr-footer {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.product-card:hover .product-card__footer-wrap {
  transform: translateY(0%);
}

.product-card:hover .product-card__slidebar {
  opacity: 1;
}

.product-card:hover .splide__pagination {
  opacity: 1;
}

.product-card:hover .product-card__controls {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.product-card.disabled .product-card__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 3;
  opacity: 0.3;
  pointer-events: none;
}

.product-card.disabled .product-card__descr-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 3;
  opacity: 0.3;
  pointer-events: none;
}

.product-card.disabled .product-card__available {
  color: var(--red);
}

.product-card:has(.product-card__controls-btn.active) .product-card__controls {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.product-card__wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 40px 20px 20px 20px;
  border: 1px solid var(--black-main);
  background-color: var(--white);
  transition: var(--transition-primary);
}

.product-card__controls {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  visibility: visible;
  transition: var(--transition-primary);
}

.product-card__controls-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.product-card__controls-btn svg {
  padding-top: 3px;
  width: 24px;
  height: 24px;
}

.product-card__controls-btn.active {
  border: 1px solid var(--black-main);
  border-radius: 50px;
}

.product-card__controls-btn.active svg {
  padding-top: 3px;
}

.product-card .splide {
  margin-bottom: 20px;
  height: 361px;
}

.product-card .splide__pagination {
  bottom: 0;
  padding: 0;
  flex-wrap: nowrap;
  gap: 4px;
  opacity: 0;
  transition: var(--transition-primary);
}

.product-card .splide__pagination li {
  width: 100%;
}

.product-card .splide__pagination__page {
  height: 2px;
  width: 100%;
  margin: 0;
  opacity: 1;
  background-color: var(--grey-dark-stroke);
}

.product-card .splide__pagination__page.is-active {
  transform: none;
  background-color: var(--green);
}

.product-card__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 335px;
}

.product-card__slidebar {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  opacity: 0;
  transition: var(--transition-primary);
}

.product-card__slidebar-item {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--grey-dark-stroke);
  transition: var(--transition-primary);
  list-style: none;
}

.product-card__slidebar-item.active {
  background-color: var(--green);
}

.product-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
  margin-bottom: 8px;
  font-size: 16px;
  font-style: normal;
}

.product-card__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card__price-prev {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Neutral-ghost);
  font-size: 16px;
}

.product-card__price-prev-item {
  display: flex;
  align-items: center;
  text-decoration: line-through;
}

.product-card__price-discount {
  color: var(--green);
}

.product-card__price-current {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  margin-left: auto;
}

.product-card__descr-footer {
  position: absolute;
  bottom: 0px;
  left: -1px;
  width: calc(100% + 2px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(100%);
  transition: var(--transition-primary);
}

.product-card__footer-wrap {
  padding: 1px 20px 20px;
  border: 1px solid var(--black-main);
  border-top: none;
  background-color: var(--white);
  transform: translateY(-100%);
  transition: var(--transition-primary);
}

.product-card__add-btn {
  width: 100%;
  padding: 11px 16px;
  margin-bottom: 16px;
  background-color: var(--btn-primary);
  color: var(--white);
  transition: var(--transition-primary);
}

.product-card__add-btn:hover {
  background-color: var(--black-main);
}

.product-card__available {
  display: flex;
  gap: 4px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--grey-dark-stroke);
  color: var(--Neutral-ghost);
}

.product-card__available-box {
  color: var(--text-black);
}

.product-card__discount {
  display: flex;
  gap: 4px;
  color: var(--Neutral-ghost);
}

.product-card__discount-box {
  color: var(--text-black);
}

.product-card__manufacturer {
  display: flex;
  gap: 4px;
  color: var(--Neutral-ghost);
}

.product-card__manufacturer-box {
  color: var(--text-black);
}

.product-card-select {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.product-card-select.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.product-card-select__wrap {
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  background-color: var(--white);
}

.product-card-select__header {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-card-select__title {
  font-size: 24px;
}

.product-card-select__btn-close {
  cursor: pointer;
}

.product-card-select__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.product-card-select__item[data-availble=true] .product-card-select__item-btn {
  color: var(--white);
  background-color: var(--btn-primary);
}

.product-card-select__item[data-availble=true] .product-card-select__item-btn:hover {
  background-color: var(--black-main);
  border: 1px solid var(--black-main);
}

.product-card-select__item[data-availble=false] .product-card-select__item-desc {
  color: var(--Neutral-ghost);
}

.product-card-select__item[data-availble=false] .product-card-select__item-available {
  color: var(--Neutral-ghost);
}

.product-card-select__item[data-availble=false] .product-card-select__item-btn {
  color: var(--Neutral-ghost);
  border: 1px solid var(--Neutral-ghost);
}

.product-card-select__item[data-availble=false] .product-card-select__item-btn:hover {
  color: var(--white);
}

.product-card-select__item[data-availble=expected] .product-card-select__item-btn {
  background-color: var(--grey-bg);
}

.product-card-select__item[data-availble=expected] .product-card-select__item-btn:hover {
  background-color: var(--black-main);
  border: 1px solid var(--black-main);
  color: var(--white);
}

.product-card-select__item:last-child .product-card-select__item-info {
  border-bottom: none;
}

.product-card-select__item-info {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey);
}

.product-card-select__item-desc {
  max-width: 300px;
  font-size: 18px;
}

.product-card-select__item-available {
  font-size: 12px;
}

.product-card-select__item-btn {
  flex-shrink: 0;
  padding: 12px;
  width: 240px;
  text-align: center;
  font-size: 16px;
  border: 1px solid var(--btn-primary);
  transition: var(--transition-primary);
}

.product-card-select__item-btn:hover {
  background-color: var(--black-main);
  border: 1px solid var(--black-main);
  color: var(--white);
}

.product-card-added {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.product-card-added.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.product-card-added__wrap {
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  background-color: var(--white);
  width: 740px;
}

.product-card-added__header {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-card-added__title {
  font-size: 24px;
}

.product-card-added__btn-close {
  cursor: pointer;
}

.product-card-added__control-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 12px;
}

.product-card-added__control-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.product-card-added__control-btn {
  display: flex;
  justify-content: center;
  padding: 12px;
  width: 240px;
  border: 1px solid var(--btn-primary);
  color: var(--text-black);
  transition: var(--transition-primary);
}

.product-card-added__control-btn[data-button=buyNow] {
  background-color: var(--grey-bg);
}

.product-card-added__control-btn:hover {
  background-color: var(--black-main);
  color: var(--white);
}

.product-card-added__control a {
  background-color: var(--btn-primary);
  color: var(--white);
}

.product-card-waiting {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.product-card-waiting.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.product-card-waiting__wrap {
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  background-color: var(--white);
  width: 740px;
}

.product-card-waiting__header {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-card-waiting__title {
  font-size: 24px;
  text-transform: uppercase;
}

.product-card-waiting__btn-close {
  cursor: pointer;
}

.product-card-waiting__control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.product-card-waiting__control-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  text-align: center;
  margin-bottom: 12px;
}

.product-card-waiting__control-btn {
  display: flex;
  justify-content: center;
  padding: 12px;
  width: 240px;
  border: 1px solid var(--btn-primary);
  background-color: var(--btn-primary);
  color: var(--white);
  transition: var(--transition-primary);
}

.product-card-waiting__control-btn:hover {
  background-color: var(--black-main);
}

.product-card-buy {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.product-card-buy.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.product-card-buy__wrap {
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  background-color: var(--white);
  width: 600px;
}

.product-card-buy__header {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-card-buy__title {
  font-size: 24px;
  text-transform: uppercase;
}

.product-card-buy__btn-close {
  cursor: pointer;
}

.product-card-buy__input-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.product-card-buy__input {
  border: 1px solid var(--black-main);
  width: 100%;
  padding: 12px 24px;
  transition: var(--transition-primary);
}

.product-card-buy__input.error {
  border: 1px solid var(--red);
}

.product-card-buy__textarea {
  height: 84px;
  width: 100%;
  padding: 12px 24px;
  border: 1px solid var(--black-main);
}

.product-card-buy__submit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.product-card-buy__agreement {
  font-size: 12px;
  text-align: center;
}

.product-card-buy__agreement-link {
  font-size: 12px;
  color: var(--Neutral-ghost);
}

.product-card-buy__submit-btn {
  display: flex;
  justify-content: center;
  padding: 12px;
  width: 240px;
  border: 1px solid var(--btn-primary);
  background-color: var(--btn-primary);
  color: var(--white);
  transition: var(--transition-primary);
}

.product-card-buy__submit-btn:hover {
  background-color: var(--black-main);
}

.product-card-inform {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.product-card-inform.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.product-card-inform__wrap {
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  background-color: var(--white);
  width: 600px;
}

.product-card-inform__header {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-card-inform__title {
  font-size: 24px;
  text-transform: uppercase;
}

.product-card-inform__btn-close {
  cursor: pointer;
}

.product-card-inform__form-desc {
  padding-bottom: 12px;
  font-size: 18px;
}

.product-card-inform__input-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.product-card-inform__input {
  border: 1px solid var(--black-main);
  width: 100%;
  padding: 12px 24px;
  transition: var(--transition-primary);
}

.product-card-inform__input.error {
  border: 1px solid var(--red);
}

.product-card-inform__textarea {
  height: 84px;
  width: 100%;
  padding: 12px 24px;
  border: 1px solid var(--black-main);
}

.product-card-inform__submit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.product-card-inform__agreement {
  font-size: 12px;
  text-align: center;
}

.product-card-inform__agreement-link {
  font-size: 12px;
  color: var(--Neutral-ghost);
}

.product-card-inform__submit-btn {
  display: flex;
  justify-content: center;
  padding: 12px;
  width: 240px;
  border: 1px solid var(--btn-primary);
  background-color: var(--btn-primary);
  color: var(--white);
  transition: var(--transition-primary);
}

.product-card-inform__submit-btn:hover {
  background-color: var(--black-main);
}

.filterbar {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.filterbar.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.filterbar.active .filterbar-form {
  transform: translateX(0%);
}

.filterbar-form {
  position: relative;
  width: 385px;
  height: 100%;
  transform: translateX(-100%);
  transition: var(--transition-primary);
}

.filterbar-form__wrap {
  padding: 24px 24px 100px;
  height: 100%;
  background-color: var(--white);
  overflow-y: auto;
}

.filterbar__btn-close {
  position: absolute;
  top: 9px;
  right: 12px;
  cursor: pointer;
}

.filterbar__title {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.filterbar__current-filters {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--grey-dark-stroke);
}

.filterbar__current-filters.active {
  display: flex;
}

.filterbar__current-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filterbar__current-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filterbar__current-item {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.filterbar__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filterbar__item.active .filterbar__header-arrow {
  transform: rotateX(180deg);
}

.filterbar__item-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.filterbar__item-box {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-primary);
}

.filterbar__item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 0 16px;
}

.filterbar__item-list--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 12px;
}

.filterbar__item-list--grid-color {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.filterbar__item-list--grid-color .checkbox-box__label {
  width: 24px;
  height: 24px;
  border-radius: 50px;
  border: 1px solid var(--black-main);
}

.filterbar__item-list--grid .checkbox-box {
  gap: 6px;
}

.filterbar__header-arrow {
  transition: var(--transition-primary);
}

.filterbar__controls {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.16);
  background-color: var(--white);
  transform: translateY(100%);
  transition: var(--transition-primary);
}

.filterbar__controls.active {
  transform: translateY(0%);
}

.filterbar__reset-btn {
  padding: 12px;
  background-color: var(--grey-bg);
}

.filterbar__submit-btn {
  padding: 12px;
  background-color: var(--black-main);
  color: var(--white);
}

.filterbar .double-range,
.filterbar .range {
  padding-bottom: 8px;
}

.product-reviews-swiper {
  background-color: var(--white);
}

.product-reviews-swiper__wrap {
  padding: 100px 0;
}

.product-reviews-swiper__header {
  display: flex;
  justify-content: space-between;
}

.product-reviews-swiper__nav {
  display: flex;
  gap: 8px;
}

.product-reviews-swiper__btn-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.product-reviews-swiper__btn-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.product-reviews-swiper .section-title {
  display: block;
  position: relative;
}

.product-reviews-swiper .section-title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: var(--black-main);
  opacity: 0;
  transition: var(--transition-primary);
}

.product-review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  height: 100%;
  min-height: 487px;
  padding: 30px;
  border: 1px solid var(--grey-dark-stroke);
}

.product-review-card__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-review-card__img-wrap {
  height: 97px;
}

.product-review-card__title {
  font-size: 18px;
}

.product-review-card__rating {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-review-card__rating-value {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-review-card__rating-author {
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
}

.product-review-card__descr {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-review-card__descr-item {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--Neutral-secondary);
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}

.product-review-card__descr-item#advantages {
  -webkit-line-clamp: 4;
}

.product-review-card__descr-item#disadvantages {
  -webkit-line-clamp: 4;
}

.product-review-card__descr-item#comment {
  -webkit-line-clamp: 5;
}

.product-review-card__descr-title {
  margin-right: 4px;
  font-weight: 500;
}

.product-review-card__date {
  color: var(--Neutral-ghost);
  font-size: 14px;
  font-style: normal;
  line-height: 143%;
}

.video-review {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-primary);
}

.video-review.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.video-review__wrap {
  position: relative;
  width: 1140px;
  padding: 30px;
  background-color: var(--white);
}

.video-review__btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.video-review__title {
  font-size: 25px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.video-review__list {
  margin-bottom: 24px;
}

.video-review__item {
  display: none;
}

.video-review__item.active {
  display: block;
}

.video-review__item iframe {
  width: 1080px;
  height: 590px;
}

.video-review__platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.video-review__platforms-list {
  display: flex;
  gap: 12px;
  list-style: none;
}

.video-review__platforms-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid var(--grey-dark-stroke);
  cursor: pointer;
}

.video-review__platforms-item.active {
  border: 1px solid var(--black-main);
}

.product-list-swiper {
  margin: 40px 0;
}

.product-list-swiper__header {
  display: flex;
  justify-content: space-between;
}

.product-list-swiper__nav {
  display: flex;
  gap: 8px;
}

.product-list-swiper__btn-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.product-list-swiper__btn-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--black-main);
  transition: var(--transition-primary);
}

.product-list-swiper__wrap {
  position: relative;
  z-index: 2;
  height: 453px;
}

.product-list-swiper__wrap:hover .product-list-swiper__swiper {
  pointer-events: all;
}

.product-list-swiper__wrap:has(.product-card:hover) {
  z-index: 3;
}

.product-list-swiper__swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.product-list-swiper__swiper:hover {
  z-index: 1;
}

.product-list-swiper__track {
  height: 1000px;
}

.product-list-swiper .splide__slide:first-child .product-card__wrap {
  border-left: 1px solid var(--black-main);
}

.product-list-swiper .product-card {
  height: 435px;
}

.product-list-swiper .product-card .splide {
  height: 267px;
  pointer-events: all;
}

.product-list-swiper .product-card__wrap {
  border-left: none;
}

.product-list-swiper .product-card__img-wrap {
  height: 226px;
}

.advantages {
  background-color: var(--black-main);
}

.advantages__wrap {
  padding: 114px 0;
}

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

.advantages-swiper__nav {
  display: flex;
  gap: 8px;
}

.advantages-swiper__btn-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--text-white);
  transition: var(--transition-primary);
}

.advantages-swiper__btn-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 4px 10px;
  border: 1px solid var(--text-white);
  transition: var(--transition-primary);
}

.advantages .section-title {
  color: var(--text-white);
}

.advantages-card {
  padding: 20px;
  height: 100%;
  min-height: 223px;
  border: 1px solid var(--text-white);
}

.advantages-card__num {
  margin-bottom: 50px;
  color: var(--grey);
  font-family: var(--font-family-primary);
  font-style: normal;
  line-height: 145%;
  text-transform: uppercase;
}

.advantages-card__title {
  margin-bottom: 8px;
  min-height: 40px;
  color: var(--text-white);
  font-family: var(--font-family-primary);
  font-style: normal;
  line-height: 145%;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.advantages-card__text {
  color: var(--grey);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  line-height: 128%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-gallery__img {
  object-fit: cover;
  object-position: center;
  width: 620px;
  height: 322px;
}

.store-categories-mountain__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 100px 0;
}

.store-categories-mountain .store-card:nth-child(10n+1) {
  grid-column: span 2;
  justify-content: flex-end;
}

.store-categories-mountain .store-card:nth-child(10n+10) {
  grid-column: span 2;
  justify-content: flex-end;
}

.store-categories-ski__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 100px 0;
}

.store-categories-ski .store-card:nth-child(9n+1) {
  grid-column: span 2;
  justify-content: flex-end;
}

.store-categories-ski .store-card:nth-child(9n+6) {
  grid-column: span 2;
  justify-content: flex-end;
}

.store-categories-ski .store-card:nth-child(9n+7) {
  grid-column: span 2;
  justify-content: flex-end;
}

.store-categories-bicycles__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 100px 0;
}

.store-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 410px;
  padding: 40px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.store-card.active .store-card__block {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.store-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black-main);
  opacity: 0.3;
  transition: var(--transition-primary);
}

.store-card__title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--white);
  background: rgba(255, 255, 255, 0.17);
  color: var(--white);
  font-family: var(--font-family-primary);
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transition: var(--transition-secondary);
}

.store-card__block {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  width: calc(100% - 25px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: var(--transition-secondary);
}

.store-card__block-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: none;
  cursor: pointer;
}

.store-card__block-title {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  transition: var(--transition-secondary);
}

.store-card__block-title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0%;
  height: 1px;
  background: var(--white);
  opacity: 0;
  transition: var(--transition-primary);
}

.store-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  height: 324px;
  overflow-y: auto;
}

.store-card__link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  line-height: 24px;
  font-weight: 300;
  transition: var(--transition-primary);
}

@media screen and (min-width: 1200px) {
  .header.scrolled.up {
    transform: translateY(0%);
  }
}

@media screen and (max-width: 1920px) {
  [data-modal=citySelect] .city-search__city-select {
    height: 64%;
  }
}

@media screen and (max-width: 1539px) {
  :root {
    --title-fs: 30px;
    --section-title-fs: 24px;
    --section-title-mb: 36px;
  }

  .container {
    padding: 0 30px;
  }

  .header-main .search-form__wrap {
    padding: 20px;
  }

  .header-main .search-block .presearch-block {
    padding: 0 20px 20px;
  }

  .header-main .search-result__box {
    gap: 20px;
  }

  .header-navbar__item:not(#catalog) .header-menu .header-menu__wrap {
    gap: 20px;
  }

  .header-navbar__item#brands .header-menu .header-menu__wrap {
    grid-template-columns: repeat(4, 1fr);
  }

  .header-navbar__item#brands .header-menu__brand-list {
    gap: 20px;
  }

  .header-navbar__item#brands .header-menu__selection-list {
    gap: 20px;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-list {
    gap: 20px;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-selection__list {
    gap: 20px;
  }

  .header .product-selection-item {
    padding: 20px 1px 20px 0;
  }

  .header .product-selection-content {
    height: 75%;
  }

  .header .product-selection-form {
    gap: 20px;
  }

  .header .product-selection-block {
    gap: 20px;
  }

  .footer .footer-main {
    padding: 50px 0 36px;
  }

  .footer .footer-info__wrap {
    padding: 36px 0;
    gap: 20px;
  }

  .footer .footer-stores__wrap {
    padding: 36px 0;
    gap: 20px;
  }

  .brands-line__item {
    width: 96px;
    height: 52px;
    padding: 2px;
  }

  .news__wrap {
    padding: 75px 0;
  }

  .blog__wrap {
    padding: 75px 0;
  }

  .reviews-swiper__wrap {
    padding: 75px 0;
  }

  .registration-proposal {
    height: 653px;
    gap: 22px;
  }

  .registration-proposal .registration-form {
    max-width: 516px;
    padding: 38px;
  }

  .registration-proposal .registration-form .form__input-wrap {
    padding: 12px 20px;
  }

  .registration-proposal .registration-form .form__submit-btn {
    padding: 18px;
  }

  .consultant-card {
    gap: 18px;
  }

  .consultant-card__img-wrap {
    width: 180px;
    height: 180px;
  }

  .product-card {
    height: 458px;
  }

  .product-card .splide {
    height: 291px;
  }

  .product-card__img-wrap {
    height: 245px;
  }

  .product-reviews-swiper__wrap {
    padding: 75px 0;
  }

  .video-review__wrap {
    height: 100%;
    width: 100%;
    padding: 30px 20px 20px;
  }

  .video-review__item.active {
    display: flex;
    justify-content: center;
  }

  .video-review__item iframe {
    width: 100%;
    height: 70vh;
  }

  .advantages__wrap {
    padding: 75px 0;
  }

  .advantages-card {
    min-height: 217px;
  }

  .advantages-card__num {
    margin-bottom: 46px;
  }

  .store-gallery__img {
    width: 481px;
    height: 250px;
  }

  .store-categories-mountain__wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 75px 0;
  }

  .store-categories-ski__wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 75px 0;
  }

  .store-categories-ski .store-card:nth-child(9n+1) {
    grid-column: span 1;
    justify-content: center;
  }

  .store-categories-ski .store-card:nth-child(9n+6) {
    grid-column: span 1;
    justify-content: center;
  }

  .store-categories-ski .store-card:nth-child(9n+7) {
    grid-column: span 1;
    justify-content: center;
  }

  .store-categories-bicycles__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 75px 0;
  }
}

@media screen and (max-width: 1439px) {
  .header-navbar__item#catalog .header-menu .header-menu__last-group {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  :root {
    --font-size-primary: 14px;
    --section-title-fs: 24px;
    --section-title-mb: 28px;
    --title-mb: 24px;
  }

  .main {
    margin-top: 60px;
  }

  .container {
    padding: 0 24px;
  }

  .header-top {
    display: none;
  }

  .header-main .search-form__input-wrap {
    padding: 8px 12px;
  }

  .header-main .search-block {
    top: 52px;
  }

  .header-main .search-block .presearch-block {
    width: 700px;
  }

  .header-main .search-form {
    width: 100%;
  }

  .header-main .search-result__box {
    display: flex;
    flex-direction: column;
  }

  .header-navbar {
    display: none;
  }

  .header-main__contacts-block .header-main__contacts {
    display: none;
  }

  .header-main__contacts-block .header-main__contacts-item:nth-child(2) {
    display: none;
  }

  .header-main__contacts-block .header-main__contacts-item:last-child {
    display: none;
  }

  .navbar-mobile {
    display: block;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-menu__wrap {
    grid-template-columns: repeat(4, 1fr);
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer {
    padding-bottom: 76px;
  }

  .footer .footer-main__block {
    gap: 26px;
  }

  .footer .footer-navigation__list {
    gap: 26px;
  }

  .footer .footer-navigation__callback-btn {
    width: 136px;
  }

  .footer .footer-navigation__payment-list {
    gap: 12px;
  }

  .footer .footer-info__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
  }

  .footer .footer-stores__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
  }

  .menu-btn {
    display: flex;
  }

  .brands-line {
    padding: 18px 0;
  }

  .brands-line__item {
    width: 80px;
    height: 44px;
  }

  .news__wrap {
    padding: 56px 0;
  }

  .blog__wrap {
    padding: 56px 0;
  }

  .reviews-swiper__wrap {
    padding: 56px 0;
  }

  .registration-proposal {
    height: 536px;
    justify-content: center;
  }

  .registration-proposal__img-wrap {
    display: none;
  }

  .registration-proposal .registration-form {
    max-width: 512px;
    padding: 36px;
  }

  .registration-proposal .registration-form .section-title {
    margin-bottom: 24px;
  }

  .consultation-order__consultant {
    grid-column: 1/span 2;
    grid-row: span 1;
  }

  .consultation-order .consultation-form {
    grid-template-columns: repeat(5, 1fr);
    gap: 26px 20px;
  }

  .consultation-order .consultation-form__radios-box {
    grid-column: 1/span 5;
  }

  .consultation-order .consultation-form .form__wrap {
    grid-column: 4/span 2;
  }

  .consultation-order .consultation-form__inputs-box {
    gap: 12px;
    margin-bottom: 20px;
  }

  .consultation-order .consultation-form__input-wrap {
    padding: 13px;
  }

  .consultant-card {
    gap: 11px;
  }

  .consultant-card__img-wrap {
    width: 153px;
    height: 153px;
  }

  .product-card {
    height: 408px;
  }

  .product-card .splide {
    height: 223px;
  }

  .product-card .splide__pagination {
    opacity: 1;
  }

  .product-card__img-wrap {
    height: 200px;
  }

  .product-card__price {
    align-items: flex-end;
    height: 48px;
  }

  .product-card__price-prev {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0px;
  }

  .product-reviews-swiper__wrap {
    padding: 56px 0;
  }

  .advantages__wrap {
    padding: 56px 0;
  }

  .advantages-card {
    min-height: 173px;
    padding: 18px;
  }

  .advantages-card__num {
    margin-bottom: 18px;
  }

  .advantages-card__text {
    font-size: 12px;
  }

  .store-gallery__img {
    width: 317px;
    height: 165px;
  }

  .store-categories-mountain__wrap {
    padding: 20px 0;
  }

  .store-categories-mountain .store-card:nth-child(10n+1) {
    grid-column: span 3;
    aspect-ratio: 16/9;
    justify-content: flex-start;
  }

  .store-categories-mountain .store-card:nth-child(10n+10) {
    grid-column: span 1;
    justify-content: flex-start;
  }

  .store-categories-ski__wrap {
    padding: 20px 0;
  }

  .store-categories-ski .store-card:nth-child(9n+1) {
    justify-content: flex-start;
  }

  .store-categories-ski .store-card:nth-child(9n+6) {
    justify-content: flex-start;
  }

  .store-categories-ski .store-card:nth-child(9n+7) {
    justify-content: flex-start;
  }

  .store-categories-bicycles__wrap {
    padding: 20px 0;
  }

  .store-card {
    aspect-ratio: 1/1;
    height: auto;
    padding: 16px 20px;
    justify-content: flex-start;
  }

  .store-card__title {
    justify-content: flex-start;
    background: none;
    border: none;
    padding: 0;
    font-size: var(--font-size-primary);
    white-space: normal;
  }

  .store-card__block {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-primary);
  }

  .store-card__block-wrap {
    position: relative;
    width: 340px;
    padding: 20px;
    background-color: var(--white);
  }

  .store-card__block-close {
    display: block;
  }

  .store-card__block-title {
    color: var(--text-black);
  }

  .store-card__link {
    color: var(--text-black);
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .product-card__price {
    height: auto;
  }
}

@media screen and (max-width: 1023px) {
  .user-block__item:not(#search) {
    display: none;
  }

  .navbar-mobile#navbarMobile .user-block__item {
    display: block;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search {
    grid-column: 1/span 2;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-list {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-modal=citySelect] .city-search {
    width: 720px;
  }

  [data-modal=citySelect] .city-search__city-select {
    height: 74%;
  }

  .consultation-order .consultation-form__radios-box {
    grid-column: 1/span 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .consultation-order .consultation-form .form__wrap {
    grid-column: 3/span 3;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --section-title-fs: 18px;
    --section-title-mb: 18px;
  }

  .container {
    padding: 0 14px;
  }

  [data-select] .select__options-list {
    max-height: 400px;
  }

  .header-main__wrap {
    padding: 10px 0;
    gap: 20px;
  }

  .header-main .search-form__wrap {
    padding: 18px;
  }

  .header-main .search-block .presearch-block {
    padding: 0 18px 18px;
    width: 333px;
    gap: 12px;
    height: 65vh;
  }

  .header-main .search-result__all-link {
    width: 100%;
    padding: 10px;
  }

  .user-block__list {
    gap: 12px;
  }

  .header-main__contacts-block .header-main__contacts-item[data-button=citySelect] {
    display: none;
  }

  .mobile-menu__wrap {
    width: 100%;
  }

  .mobile-menu__header {
    padding: 14px;
  }

  .mobile-menu__main {
    padding: 8px 14px 0px;
  }

  .mobile-menu__item {
    padding: 14px 0;
  }

  .mobile-menu__footer {
    gap: 16px;
    padding: 22px 14px;
  }

  .navbar-mobile__list {
    padding: 12px 14px;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-menu__wrap {
    height: 91vh;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search {
    height: 100%;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search {
    grid-column: span 4;
    padding: 0 0 24px;
    overflow: initial;
  }

  .footer {
    padding-bottom: 56px;
  }

  .footer .footer-main {
    padding: 45px 0 36px;
  }

  .footer .footer-main__block {
    grid-template-columns: 1fr;
  }

  .footer .footer-navigation {
    grid-column: span 1;
  }

  .footer .footer-navigation__list {
    grid-template-columns: 1fr;
  }

  .footer .footer-info__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer .footer-stores__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer .footer-logo {
    grid-column: span 1;
  }

  [data-modal=citySelect] .city-search {
    width: 100%;
    height: 100%;
    padding: 18px 14px;
  }

  [data-modal=citySelect] .city-search__header {
    align-items: start;
  }

  [data-modal=citySelect] .city-search__header-left {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }

  [data-modal=citySelect] .city-search__city-list {
    grid-template-columns: 1fr;
  }

  .consultation-order-success {
    width: 100%;
    height: 100%;
  }

  .registration-proposal-success {
    width: 100%;
    height: 100%;
  }

  .pagination__item {
    width: 32px;
    height: 32px;
  }

  .pagination__link {
    padding: 0;
  }

  .brands-line__item {
    width: 67px;
    height: 37px;
  }

  .news__wrap {
    padding: 36px 0 61px;
  }

  .news-swiper__nav {
    display: none;
  }

  .news .splide__pagination {
    bottom: -35px;
  }

  .blog__wrap {
    padding: 36px 0 61px;
  }

  .blog-swiper__nav {
    display: none;
  }

  .blog .splide__pagination {
    bottom: -35px;
  }

  .reviews-swiper__wrap {
    padding: 36px 0 72px;
  }

  .reviews-swiper__nav {
    display: none;
  }

  .reviews-swiper .splide__pagination {
    bottom: -35px;
  }

  .reviews-swiper .splide__pagination__page.is-active {
    background: var(--grey-dark);
  }

  .registration-proposal .registration-form {
    max-width: 100%;
    width: 100%;
    margin: 0 14px;
    padding: 20px;
  }

  .registration-proposal .registration-form .form__input-wrap {
    padding: 12px 14px;
  }

  .registration-proposal .registration-form .form__submit-btn {
    padding: 14px;
    font-size: 14px;
  }

  .consultation-order__consultant {
    grid-column: 1/span 2;
  }

  .consultation-order .consultation-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 15px;
  }

  .consultation-order .consultation-form__radios-box {
    grid-column: 1/span 2;
    display: flex;
    flex-direction: column;
  }

  .consultation-order .consultation-form__radio {
    padding: 9px;
  }

  .consultation-order .consultation-form .form__wrap {
    grid-column: 1/span 2;
  }

  .consultation-order .consultation-form__input {
    font-size: 14px;
  }

  .consultation-order .consultation-form__submit-btn {
    width: 100%;
  }

  .consultant-card {
    gap: 5px;
  }

  .product-card {
    height: 434px;
  }

  .product-card .splide {
    height: 267px;
  }

  .product-card__img-wrap {
    height: 226px;
  }

  .product-card__price-prev {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .product-card-select__wrap {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    max-height: 100vh;
  }

  .product-card-select__header {
    align-items: flex-start;
  }

  .product-card-select__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .product-card-select__item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--grey);
    flex-direction: column;
    gap: 12px;
  }

  .product-card-select__item-info {
    flex-direction: column;
    gap: 4px;
    border-bottom: none;
    padding: 0;
  }

  .product-card-select__item-desc {
    font-size: 14px;
  }

  .product-card-added__wrap {
    width: 100%;
    height: 100%;
    max-height: 100vh;
  }

  .product-card-added__header {
    align-items: flex-start;
  }

  .product-card-waiting__wrap {
    width: 100%;
    height: 100%;
    max-height: 100vh;
  }

  .product-card-buy__wrap {
    width: 100%;
    height: 100%;
    max-height: 100vh;
  }

  .product-card-inform__wrap {
    width: 100%;
    height: 100%;
    max-height: 100vh;
  }

  .filterbar-form {
    width: 100%;
  }

  .product-reviews-swiper__wrap {
    padding: 36px 0 72px;
  }

  .product-reviews-swiper__nav {
    display: none;
  }

  .product-reviews-swiper .splide__pagination {
    bottom: -35px;
  }

  .product-reviews-swiper .splide__pagination__page.is-active {
    background: var(--grey-dark);
  }

  .video-review__item iframe {
    height: 50vh;
  }

  .product-list-swiper .product-card__wrap {
    border-left: 1px solid var(--black-main);
  }

  .advantages__wrap {
    padding: 36px 0 61px;
  }

  .advantages-swiper__nav {
    display: none;
  }

  .advantages-card {
    min-height: 149px;
    padding: 16px;
  }

  .advantages-card__num {
    margin-bottom: 26px;
    font-size: 14px;
  }

  .advantages-card__title {
    min-height: 34px;
    font-size: 12px;
  }

  .advantages-card__text {
    font-size: 11px;
  }

  .advantages .splide__pagination {
    bottom: -35px;
  }

  .store-gallery__img {
    width: 100%;
    height: 240px;
  }

  .store-gallery .splide {
    visibility: visible;
  }

  .store-gallery .splide__list {
    flex-direction: column;
  }

  .store-gallery .splide__slide:nth-child(n+4) {
    display: none;
  }

  .store-categories-mountain__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .store-categories-mountain .store-card:nth-child(10n+1) {
    grid-column: span 2;
  }

  .store-categories-mountain .store-card:nth-child(10n+10) {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .store-categories-ski__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .store-categories-ski .store-card:nth-child(9n+1) {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .store-categories-bicycles__wrap {
    gap: 12px;
  }
}

@media (hover: hover) and (pointer: fine) {
  html::-webkit-scrollbar {
    width: 6px;
  }

  html::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  html::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  a.section-title:hover::before {
    width: 100%;
    opacity: 1;
  }

  .page-link:hover {
    color: var(--btn-hover);
  }

  [data-select] .select__options-list::-webkit-scrollbar {
    width: 6px;
  }

  [data-select] .select__options-list::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  [data-select] .select__options-list::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .header-top__nav-item:hover::before {
    width: 100%;
    opacity: 1;
  }

  .header-main .search-result__content::-webkit-scrollbar {
    width: 6px;
  }

  .header-main .search-result__content::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .header-main .search-result__content::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .header-navbar__item:hover#catalog .header-navbar__link {
    color: var(--green);
  }

  .header-navbar__item:hover#bicycleShop .header-navbar__link {
    color: var(--green);
  }

  .header-navbar__item:hover#bicycleShop .header-menu__group-link:hover {
    color: var(--green);
  }

  .header-navbar__item:hover#skiShop .header-navbar__link {
    color: var(--blue);
  }

  .header-navbar__item:hover#skiShop .header-menu__group-link:hover {
    color: var(--blue);
  }

  .header-navbar__item:hover#alpineSkiShop .header-navbar__link {
    color: var(--violet);
  }

  .header-navbar__item:hover#alpineSkiShop .header-menu__group-link:hover {
    color: var(--violet);
  }

  .header-navbar__item:hover#brands .header-navbar__link {
    color: var(--green);
  }

  .header-navbar__item:not(#brands) .header-menu__wrap::-webkit-scrollbar {
    width: 6px;
  }

  .header-navbar__item:not(#brands) .header-menu__wrap::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .header-navbar__item:not(#brands) .header-menu__wrap::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle]:hover .header-menu__group {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle]:hover .header-menu__item-link {
    color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle]:hover .header-menu__item-btn svg path {
    fill: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__item-link:hover::before {
    width: 100%;
    background-color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__item-btn:hover {
    border: 1px solid var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__group-item:hover .header-menu__subgroup {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__group-item:hover .header-menu__group-link {
    color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__group-item:hover .header-menu__group-arrow path {
    fill: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__group-link:hover::before {
    width: 100%;
    background-color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__group-btn:hover {
    border: 1px solid var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__subgroup-item:hover .header-menu__inner-group {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__subgroup-item:hover .header-menu__subgroup-link {
    color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__subgroup-item:hover .header-menu__subgroup-arrow path {
    fill: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__subgroup-link:hover::before {
    width: 100%;
    background-color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__subgroup-btn:hover {
    border: 1px solid var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__inner-item:hover .header-menu__last-group {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__inner-item:hover .header-menu__inner-link {
    color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__inner-item:hover .header-menu__inner-arrow path {
    fill: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__inner-link:hover {
    color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__inner-link:hover::before {
    width: 100%;
    background-color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__inner-btn:hover {
    border: 1px solid var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__last-item:hover .header-menu__last-link {
    color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__last-link:hover {
    color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=bicycle] .header-menu__last-link:hover::before {
    width: 100%;
    background-color: var(--green);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski]:hover .header-menu__group {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski]:hover .header-menu__item-link {
    color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski]:hover .header-menu__item-btn svg path {
    fill: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__item-link:hover::before {
    width: 100%;
    background-color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__item-btn:hover {
    border: 1px solid var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__group-item:hover .header-menu__subgroup {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__group-item:hover .header-menu__group-link {
    color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__group-item:hover .header-menu__group-arrow path {
    fill: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__group-link:hover::before {
    width: 100%;
    background-color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__group-btn:hover {
    border: 1px solid var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__subgroup-item:hover .header-menu__inner-group {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__subgroup-item:hover .header-menu__subgroup-link {
    color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__subgroup-item:hover .header-menu__subgroup-arrow path {
    fill: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__subgroup-link:hover::before {
    width: 100%;
    background-color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__subgroup-btn:hover {
    border: 1px solid var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__inner-item:hover .header-menu__last-group {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__inner-item:hover .header-menu__inner-link {
    color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__inner-item:hover .header-menu__inner-arrow path {
    fill: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__inner-link:hover {
    color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__inner-link:hover::before {
    width: 100%;
    background-color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__last-item:hover .header-menu__inner-link {
    color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__last-link:hover {
    color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=ski] .header-menu__last-link:hover::before {
    width: 100%;
    background-color: var(--blue);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki]:hover .header-menu__group {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki]:hover .header-menu__item-link {
    color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki]:hover .header-menu__item-btn svg path {
    fill: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__item-link:hover::before {
    width: 100%;
    background-color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__item-btn:hover {
    border: 1px solid var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__group-item:hover .header-menu__subgroup {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__group-item:hover .header-menu__group-link {
    color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__group-item:hover .header-menu__group-arrow path {
    fill: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__group-link:hover::before {
    width: 100%;
    background-color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__group-btn:hover {
    border: 1px solid var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__subgroup-item:hover .header-menu__inner-group {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__subgroup-item:hover .header-menu__subgroup-link {
    color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__subgroup-item:hover .header-menu__subgroup-arrow path {
    fill: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__subgroup-link:hover::before {
    width: 100%;
    background-color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__subgroup-btn:hover {
    border: 1px solid var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__inner-item:hover .header-menu__last-group {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__inner-item:hover .header-menu__inner-link {
    color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__inner-item:hover .header-menu__inner-arrow path {
    fill: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__inner-link:hover {
    color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__inner-link:hover::before {
    width: 100%;
    background-color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__last-item:hover .header-menu__inner-link {
    color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__last-link:hover {
    color: var(--violet);
  }

  .header-navbar__item#catalog .header-menu .header-menu__item[data-store=mountainSki] .header-menu__last-link:hover::before {
    width: 100%;
    background-color: var(--violet);
  }

  .header-navbar__item#brands .header-menu__brand-search::-webkit-scrollbar {
    width: 6px;
  }

  .header-navbar__item#brands .header-menu__brand-search::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .header-navbar__item#brands .header-menu__brand-search::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .header-navbar__item#brands .header-menu__brand-block::-webkit-scrollbar {
    width: 6px;
  }

  .header-navbar__item#brands .header-menu__brand-block::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .header-navbar__item#brands .header-menu__brand-block::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search::-webkit-scrollbar {
    width: 6px;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-search::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-block::-webkit-scrollbar {
    width: 6px;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-block::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .mobile-menu__item#mobileBrands .mobile-menu__submenu .brand-block::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .header .product-selection-type::-webkit-scrollbar {
    width: 6px;
  }

  .header .product-selection-type::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .header .product-selection-type::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .footer .footer-navigation__callback-btn:hover {
    border: 1px solid var(--text-grey2);
    color: var(--Neutral-ghost);
  }

  [data-modal=citySelect] .city-search__city-select::-webkit-scrollbar {
    width: 6px;
  }

  [data-modal=citySelect] .city-search__city-select::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  [data-modal=citySelect] .city-search__city-select::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .callback-btn:hover {
    border: 1px solid var(--stroke-hover);
    color: var(--text-secondary);
  }

  .news .section-title:hover::before {
    width: 100%;
    opacity: 1;
  }

  .news-swiper__btn-prev:hover {
    opacity: 0.5;
  }

  .news-swiper__btn-next:hover {
    opacity: 0.5;
  }

  .news-card:hover {
    opacity: 0.7;
  }

  .blog .section-title:hover::before {
    width: 100%;
    opacity: 1;
  }

  .blog-swiper__btn-prev:hover {
    opacity: 0.5;
  }

  .blog-swiper__btn-next:hover {
    opacity: 0.5;
  }

  .blog-card:hover {
    opacity: 0.7;
  }

  .reviews-swiper__btn-prev:hover {
    opacity: 0.5;
  }

  .reviews-swiper__btn-next:hover {
    opacity: 0.5;
  }

  .registration-proposal .registration-form .form__submit-btn:hover {
    border: 1px solid var(--text-grey2);
    color: var(--Neutral-ghost);
  }

  .consultation-order .splide__arrow:hover {
    opacity: 0.5;
  }

  .consultation-order .consultation-form__radio:not(.active):hover {
    border: 1px solid var(--text-grey2);
    color: var(--Neutral-ghost);
  }

  .consultation-order .consultation-form__submit-btn:hover {
    border: 1px solid var(--black);
    background-color: var(--black);
    color: var(--white);
  }

  .product-card-select__wrap::-webkit-scrollbar {
    width: 6px;
  }

  .product-card-select__wrap::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .product-card-select__wrap::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .product-card-added__wrap::-webkit-scrollbar {
    width: 6px;
  }

  .product-card-added__wrap::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .product-card-added__wrap::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .product-card-waiting__wrap::-webkit-scrollbar {
    width: 6px;
  }

  .product-card-waiting__wrap::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .product-card-waiting__wrap::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .product-card-buy__wrap::-webkit-scrollbar {
    width: 6px;
  }

  .product-card-buy__wrap::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .product-card-buy__wrap::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .product-card-inform__wrap::-webkit-scrollbar {
    width: 6px;
  }

  .product-card-inform__wrap::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .product-card-inform__wrap::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .filterbar-form__wrap::-webkit-scrollbar {
    width: 6px;
  }

  .filterbar-form__wrap::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .filterbar-form__wrap::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .product-reviews-swiper__btn-prev:hover {
    opacity: 0.5;
  }

  .product-reviews-swiper__btn-next:hover {
    opacity: 0.5;
  }

  .product-reviews-swiper .section-title:hover::before {
    width: 100%;
    opacity: 1;
  }

  .advantages-swiper__btn-prev:hover {
    opacity: 0.5;
  }

  .advantages-swiper__btn-next:hover {
    opacity: 0.5;
  }

  .store-card:hover .store-card__title {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .store-card:hover .store-card__block {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  .store-card__block-title:hover::before {
    width: 100%;
    opacity: 1;
  }

  .store-card__list::-webkit-scrollbar {
    width: 6px;
  }

  .store-card__list::-webkit-scrollbar-track {
    background: var(--grey-dark-stroke);
    border-radius: 6px;
  }

  .store-card__list::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: var(--grey);
    cursor: pointer;
  }

  .store-card__link:hover {
    color: var(--white);
    width: 100%;
    opacity: 1;
  }
}