@charset "UTF-8";

.button, .choices__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  font-size: 16px;
  -webkit-box-align: center
}

.button, .button.orange {
  color: var(--white);
  background-color: var(--orange-500)
}

.button {
  border-radius: 1000px;
  min-height: 50px;
  padding: 4px 20px;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-weight: 700
}

.button svg {
  font-size: 20px
}

.button.orange-light {
  color: var(--orange-500);
  background-color: var(--orange-100)
}

.button.button-arrow {
  gap: 20px;
  padding-left: 30px;
  padding-right: 4px
}

.button.button-arrow svg {
  font-size: 30px
}

.button.button-arrow .arrow {
  color: var(--orange-500);
  font-size: 50px;
  padding: 9px;
  border-radius: 50%;
  background-color: var(--white)
}

.title-section {
  line-height: 111%;
  font-size: 38px
}

.range-slider {
  height: 4px;
  background-color: var(--gray-150)
}

.range-slider .range-slider__range {
  background: var(--orange-500)
}

.range-slider .range-slider__thumb {
  background: var(--orange-500);
  width: 10px;
  height: 10px
}

input[type=checkbox], input[type=radio].checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border: 1px solid var(--gray-150);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  -webkit-transition: .25s ease;
  transition: .25s ease;
  background-color: var(--white)
}

input[type=checkbox]::after, input[type=radio].checkbox::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 6px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translate(3px, -3px) rotate(45deg) scale(0);
  -ms-transform: translate(3px, -3px) rotate(45deg) scale(0);
  transform: translate(3px, -3px) rotate(45deg) scale(0);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transition: .2s ease;
  transition: .2s ease
}

.header__body, .header__button-icon, .header__languages, .header__search, input[type=radio] {
  position: relative
}

input[type=checkbox]:checked, input[type=radio].checkbox:checked {
  background: var(--orange-500);
  border-color: var(--orange-500)
}

input[type=checkbox]:checked::after, input[type=radio].checkbox:checked::after {
  -webkit-transform: translate(3px, -3px) rotate(45deg) scale(1);
  -ms-transform: translate(3px, -3px) rotate(45deg) scale(1);
  transform: translate(3px, -3px) rotate(45deg) scale(1)
}

input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: .25s ease;
  transition: .25s ease;
  background-color: var(--white)
}

input[type=radio]:checked {
  border-width: 6px;
  border-color: var(--orange-500)
}

.choices {
  width: 100%
}

.choices[data-type*=select-one]:after {
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% + 2.5px);
  right: 8px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17 7L10 14L3 7" stroke="%23282828" stroke-linecap="round" stroke-linejoin="round" /></svg>') center/20px 20px no-repeat;
  background-color: rgba(var(--white-rgb), .04);
  border-radius: 50%;
  border: 2px solid transparent
}

.choices[data-type*=select-one].is-open:after {
  -webkit-transform: translateY(calc(-50% + 5px)) scaleY(-1);
  -ms-transform: translateY(calc(-50% + 5px)) scaleY(-1);
  transform: translateY(calc(-50% + 5px)) scaleY(-1);
  border-color: transparent
}

.choices[data-type*=select-one] .choices__inner.error {
  border-color: var(--red-300);
  background-color: rgba(var(--red-300-rgb), .4)
}

.choices__inner {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  color: var(--black-900);
  -webkit-transition: border-color .3s ease 0s, background-color .3s ease 0s;
  transition: border-color .3s ease 0s, background-color .3s ease 0s;
  background-color: var(--white);
  padding: 0 20px !important;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 48px
}

.choices__inner .choices__list {
  padding: 0 30px 0 0 !important
}

.is-flipped.is-open .choices__inner, .is-open .choices__inner {
  border-radius: 12px
}

.choices__item--selectable[data-value="0"] {
  color: var(--gray-500)
}

.choices__list--dropdown .choices__item--selectable {
  padding-right: 10px
}

.choices__list--single {
  padding: 0
}

.choices__list--dropdown, .is-flipped .choices__list--dropdown {
  width: 100%;
  margin-top: 4px;
  border: none;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px !important;
  overflow: visible
}

.choices__list--dropdown .choices__list, .is-flipped .choices__list--dropdown .choices__list {
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  max-height: 260px
}

.choices__list--dropdown .choices__list::-webkit-scrollbar, .is-flipped .choices__list--dropdown .choices__list::-webkit-scrollbar {
  width: 10px
}

.choices__list--dropdown .choices__list::-webkit-scrollbar-track, .is-flipped .choices__list--dropdown .choices__list::-webkit-scrollbar-track {
  border-radius: 0 24px 24px 0;
  background: var(--white)
}

.choices__list--dropdown .choices__list::-webkit-scrollbar-thumb, .is-flipped .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 5px
}

.choices__item.choices__item--choice.is-highlighted, .header__button-icon {
  background-color: transparent
}

.is-flipped .choices__list--dropdown {
  margin-top: 0;
  margin-bottom: 4px
}

.choices__item.choices__item--choice[data-value="0"] {
  display: none
}

.choices__item.choices__item--choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 8px 8px 18px;
  min-height: 48px;
  border-radius: 5px;
  font-size: 18px;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s
}

.header__body, .wrapper {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

.choices__item.choices__item--choice.is-selected {
  border-color: var(--orange-300);
  background-color: rgba(var(--white-rgb), .04)
}

.font-thin {
  font-weight: 100
}

.font-extraLight {
  font-weight: 200
}

.font-light {
  font-weight: 300
}

.font-normal {
  font-weight: 400
}

.font-medium {
  font-weight: 500
}

.font-semibold {
  font-weight: 600
}

.font-bold {
  font-weight: 700
}

.font-extraBold {
  font-weight: 800
}

.font-black {
  font-weight: 900
}

body {
  background-color: var(--gray-50);
  font-family: var(--font-Nunito);
  color: var(--black-900);
  font-size: 14px
}

body._lock-scroll {
  overflow: hidden
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  overflow: hidden
}

.content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

._container {
  padding: 0 calc(var(--container-padding)/ 2);
  margin: 0 auto;
  max-width: var(--max-width-container)
}

.header__wrapper {
  padding-top: 20px
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1173px;
  margin: 0 auto
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 30px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px
}

.header__link {
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-600)
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px
}

.header__contact img {
  width: 24px;
  height: 24px
}

.header__languages-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  border-radius: 1000px;
  padding: 6px 10px
}

.header__languages-value-img {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  -o-object-fit: cover;
  object-fit: cover
}

.header__languages-value {
  font-weight: 400;
  font-size: 16px
}

.header__languages-arrow {
  font-size: 28px
}

.header__languages-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  background-color: var(--white);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.header__languages-list.open {
  opacity: 1;
  pointer-events: all
}

.header__languages-list button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 4px 8px;
  font-size: 16px
}

.header__main, .header__search {
  -webkit-box-align: center;
  background-color: var(--white)
}

.header__languages-img {
  width: 100%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.header__buttons, .header__main {
  display: -webkit-box;
  display: -ms-flexbox
}

.header__languages-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.header__main {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 40px;
  border-radius: 30px;
  gap: 12px;
  -webkit-transition: all .1s ease .25s;
  transition: all .1s ease .25s;
  z-index: 100
}

.header__logo {
  width: 100%;
  max-width: 80px
}

.header__buttons {
  display: flex;
  gap: 10px
}

.header__actions, .header__search {
  display: -webkit-box;
  display: -ms-flexbox
}

.header__search-body {
  width: 100%;
  max-width: 395px
}

.header__search {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  padding: 13px 20px;
  border: 1px solid var(--gray-200);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all .3s ease 0s, top 0s, -webkit-transform 0s;
  transition: all .3s ease 0s, top 0s, -webkit-transform 0s;
  transition: all .3s ease 0s, transform 0s, top 0s;
  transition: all .3s ease 0s, transform 0s, top 0s, -webkit-transform 0s
}

.header__search:has(input:focus) {
  border-color: var(--orange-500)
}

.header__search svg {
  font-size: 20px;
  color: var(--orange-500)
}

.header__search input {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.header__burger svg, .header__menu {
  -webkit-transition: all .3s ease 0s;
  left: 0
}

.header__search input::-webkit-input-placeholder {
  color: var(--gray-500)
}

.header__actions {
  display: flex;
  gap: 6px
}

.header__button-icon, .header__counter {
  display: -webkit-box;
  -webkit-box-align: center
}

.header__button-icon {
  font-size: 36px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px
}

.header__button-icon-text {
  font-size: 16px;
  display: none
}

.header__counter {
  position: absolute;
  top: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--orange-500);
  font-size: 10px;
  color: var(--white)
}

.header__burger {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 32px;
  color: var(--orange-500);
  display: none;
  width: 32px;
  height: 32px;
  position: relative
}

.header__burger svg {
  position: absolute;
  top: 0;
  transition: all .3s ease 0s
}

.header__burger svg.close, .header__burger.open-menu .open {
  opacity: 0
}

.header__burger.open-menu .close {
  opacity: 1
}

.header__menu {
  display: none;
  position: absolute;
  width: 100%;
  top: 100%;
  background-color: var(--white);
  border-radius: 0 0 30px 30px;
  max-height: 0%;
  overflow: hidden;
  transition: all .3s ease 0s;
  z-index: 50
}

.categories-menu, .header__cart {
  width: 100%;
  -webkit-transition: all .3s ease 0s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

.header__menu.open-menu {
  max-height: 100%
}

.header__menu-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 40px 30px
}

.header__cart {
  border-radius: 30px;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 404px;
  position: absolute;
  z-index: 10;
  right: 0;
  top: calc(100% - 5px);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  pointer-events: none;
  opacity: 0;
  transition: all .3s ease 0s;
  padding-top: 30px;
  padding-bottom: 30px
}

.header__cart.open {
  opacity: 1;
  pointer-events: all
}

.header__cart-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 30px;
  padding-right: 30px
}

.header__cart-min {
  width: 100%;
  padding: 6px 0;
  border-radius: 100px;
  background-color: var(--red-100);
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px
}

.header__cart-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--black-900)
}

.header__cart-product {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 30px
}

.header__cart-product:not(:last-child) {
  border-bottom: 1px solid var(--gray-150)
}

.header__cart-product:not(:first-child) {
  padding-top: 20px
}

.header__cart-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 15px
}

.header__cart-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px
}

.header__cart-price .title {
  font-size: 16px
}

.header__cart-price .line {
  height: 1px;
  background-color: var(--gray-150);
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.header__cart-price .value {
  font-size: 20px
}

.header__cart-total .title {
  font-weight: 700;
  font-size: 20px
}

.header__cart-total .value {
  font-weight: 700;
  font-size: 26px;
  color: var(--orange-500)
}

.header__cart-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px
}

.header__cart-method {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px
}

.header__cart-method span {
  color: var(--gray-600)
}

.header__cart-submit {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center
}

.categories-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 400px;
  height: 100%;
  z-index: 100;
  background-color: var(--white);
  border-radius: 0 30px 30px 0;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 30px;
  overflow: auto;
  transition: all .3s ease 0s;
  pointer-events: none;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%)
}

.categories-menu.open {
  pointer-events: all;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0)
}

.categories-menu__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 25px
}

.categories-menu__link {
  padding: 10px 20px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--black-900);
  border-bottom: 1px solid var(--gray-100)
}

.breadcrumbs {
  overflow-x: auto
}

.breadcrumbs__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 30px 5px 25px
}

.breadcrumbs__link {
  white-space: nowrap;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--gray-600)
}

.breadcrumbs__link.active {
  color: var(--black-900)
}

.breadcrumbs__arrow {
  color: var(--gray-600);
  font-size: 14px
}

.breadcrumbs__arrow:last-child {
  display: none
}

.catalog__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 70px
}

.catalog__title {
  margin-bottom: 25px;
  text-align: center
}

.catalog__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 70px
}

.catalog__feed, .catalog__main {
  display: -webkit-box;
  display: -ms-flexbox
}

.catalog__tag {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: auto;
  padding: 9px 20px
}

.catalog__tag-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden
}

.catalog__tag-flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.catalog__main {
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 100%;
  gap: 20px
}

.catalog__feed {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.catalog__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px
}

.catalog__filters {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 14px;
  border-radius: 100px;
  background-color: var(--gray-100);
  gap: 10px;
  display: none
}

.catalog__filters svg {
  font-size: 18px;
  color: var(--orange-500)
}

.catalog__filters span, .catalog__sort-dropdown button span, .catalog__sort-text {
  font-size: 16px
}

.catalog__filters span {
  color: var(--black-900);
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.catalog__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px
}

.catalog__sort-dropdown button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--black-900)
}

.catalog__card, .catalog__sidebar-item {
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

.catalog__sort-dropdown button svg {
  font-size: 12px
}

.catalog__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px
}

.catalog__card, .catalog__card-colors {
  display: -webkit-box;
  display: -ms-flexbox
}

.catalog__card {
  background-color: var(--white);
  border-radius: 30px;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column
}

.catalog__card-img {
  width: 100%;
  margin-bottom: 30px
}

.catalog__card-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.catalog__card-title {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 15px
}

.catalog__card-title span {
  font-size: 20px
}

.catalog__card-colors-text, .catalog__card-note {
  font-size: 14px;
  color: var(--gray-500)
}

.catalog__card-colors {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 6.5px
}

.catalog__card-palette {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px
}

.catalog__card-color {
  width: 18px;
  height: 18px;
  border-radius: 50%
}

.catalog__card-color:nth-child(1) {
  background-color: #f5f2e9
}

.catalog__card-color:nth-child(2) {
  background-color: #dec8b0
}

.catalog__card-color:nth-child(3) {
  background-color: #d2a666
}

.catalog__card-color:nth-child(4) {
  background-color: #6989ca
}

.catalog__card-color:nth-child(5) {
  background-color: #a169ca
}

.catalog__card-note {
  display: block;
  margin-bottom: 15px
}

.catalog__card-price {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px
}

.catalog__nav, .catalog__pagination {
  display: -webkit-box;
  display: -ms-flexbox
}

.catalog__card-button {
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.catalog__pagination {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px
}

.catalog__nav {
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
  font-size: 22px
}

.catalog__pages, .catalog__sidebar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  gap: 15px
}

.catalog__pages {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.catalog__page {
  font-size: 16px;
  color: var(--black-900)
}

.catalog__fraction {
  font-size: 12px;
  text-align: center;
  color: var(--gray-500)
}

.catalog__sidebar {
  border-radius: 30px;
  background-color: var(--gray-100);
  width: 100%;
  max-width: 298px;
  overflow: auto;
  position: relative
}

.catalog__sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.catalog__sidebar-item {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column
}

.catalog__sidebar-item:not(:last-child) {
  border-bottom: 1px solid var(--gray-150)
}

.catalog__sidebar-title {
  font-size: 18px
}

.catalog__sidebar-title[data-spoller] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.catalog__sidebar-title[data-spoller] svg {
  font-size: 16px;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.catalog__sidebar-title._active svg {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1)
}

.catalog__sidebar-range-value, .catalog__sidebar-range-value label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
  width: 100%
}

.catalog__sidebar-range-value span {
  font-size: 14px;
  color: var(--gray-600)
}

.catalog__sidebar-range-value input {
  padding: 8px 14px;
  border-radius: 1000px;
  border: 1px solid var(--gray-150);
  background-color: var(--white);
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.catalog__sidebar-range-value input:focus {
  border-color: var(--orange-500)
}

.catalog__sidebar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  max-height: 170px;
  overflow-y: auto
}

.catalog__sidebar-list::-webkit-scrollbar {
  width: 2px;
  height: 2px
}

.catalog__sidebar-list::-webkit-scrollbar-thumb {
  background: var(--gray-500);
  border-radius: 100px
}

.catalog__sidebar-list::-webkit-scrollbar-track {
  background: var(--gray-150)
}

.catalog__sidebar-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px
}

.catalog__sidebar-reset, .footer__body {
  display: -webkit-box;
  display: -ms-flexbox
}

.catalog__sidebar-checkbox-value {
  font-size: 16px
}

.catalog__sidebar-checkbox-count {
  font-size: 12px;
  color: var(--gray-500)
}

.catalog__sidebar-reset {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  margin: 0 30px 30px
}

.catalog__sidebar-reset svg {
  font-size: 18px
}

.catalog__sidebar-reset span {
  font-weight: 700;
  font-size: 16px
}

.footer {
  background-color: var(--black-800);
  color: var(--white);
  border-radius: 30px 30px 0 0;
  margin-top: 35px
}

.footer__body {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
  padding-top: 50px;
  padding-bottom: 50px
}

.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px
}

.footer__left, .footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px
}

.footer__logo-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px
}

.footer__logo {
  width: 153px
}

.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px
}

.footer__info, .footer__info-col {
  display: -webkit-box;
  display: -ms-flexbox
}

.footer__contact {
  width: 32px;
  height: 32px;
  border-radius: 50%
}

.footer__contact img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.footer__email {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: var(--white)
}

.footer__company, .footer__info-value {
  color: var(--gray-400)
}

.footer__info {
  display: flex;
  gap: 40px
}

.footer__info-col {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px
}

.footer__info-item, .footer__right {
  display: -webkit-box;
  display: -ms-flexbox
}

.footer__info-item {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  gap: 2px
}

.footer__link, .footer__title {
  font-size: 16px
}

.footer__right {
  display: flex;
  gap: 60px
}

.footer__bottom, .footer__col {
  display: -webkit-box;
  display: -ms-flexbox
}

.footer__col {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px
}

.footer__title {
  font-weight: 700
}

.footer__bottom {
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.footer__button {
  width: 100%;
  max-width: 163px
}

.footer__company {
  width: 100%;
  padding: 0 40px;
  min-height: 50px;
  background-color: var(--gray-800);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end
}

.page {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

@media (min-width:375px) {
  .max-mb {
    display: none
  }
}

@media (min-width:680px) {
  .max-sm {
    display: none
  }
}

@media (min-width:768px) {
  .max-md {
    display: none
  }
}

@media (min-width:992px) {
  .max-lg {
    display: none
  }
}

@media (min-width:1282px) {
  .max-xl {
    display: none
  }
}

@media (min-width:1366px) {
  .max-xl2 {
    display: none
  }
}

@media (max-width:1366px) {
  .min-xl2 {
    display: none
  }

  .header__nav {
    -webkit-column-gap: calc(15px - -15 * (100vw - 375px)/ 991);
    -moz-column-gap: calc(15px - -15 * (100vw - 375px)/ 991);
    column-gap: calc(15px - -15 * (100vw - 375px)/ 991)
  }

  .header__buttons {
    gap: calc(8px - -2 * (100vw - 375px)/ 991)
  }

  .header__search-body {
    max-width: calc(350px - -45 * (100vw - 992px)/ 374)
  }
}

@media (max-width:1282px) {
  .title-section {
    font-size: calc(28px - -10 * (100vw - 375px)/ 907)
  }

  .min-xl {
    display: none
  }

  .breadcrumbs__body {
    padding-bottom: calc(12px - -13 * (100vw - 375px)/ 907)
  }

  .catalog__body {
    padding-top: calc(12px - -13 * (100vw - 375px)/ 907);
    padding-bottom: calc(50px - -20 * (100vw - 375px)/ 907)
  }

  .catalog__tags {
    gap: calc(8px - -2 * (100vw - 768px)/ 514);
    margin-bottom: calc(28px - -42 * (100vw - 375px)/ 907)
  }

  .catalog__actions {
    margin-bottom: calc(12px - -8 * (100vw - 375px)/ 907)
  }

  .catalog__grid {
    gap: calc(12px - -8 * (100vw - 375px)/ 907)
  }

  .catalog__pagination {
    margin-bottom: calc(8px - -7 * (100vw - 375px)/ 907)
  }

  .footer {
    margin-top: calc(25px - -10 * (100vw - 375px)/ 907)
  }

  .footer__body {
    gap: calc(30px - -20 * (100vw - 768px)/ 514);
    padding-top: calc(40px - -10 * (100vw - 768px)/ 514);
    padding-bottom: calc(40px - -10 * (100vw - 768px)/ 514)
  }

  .footer__right {
    gap: calc(30px - -30 * (100vw - 768px)/ 514)
  }

  .footer__link {
    font-size: calc(14px - -2 * (100vw - 768px)/ 514)
  }
}

@media (max-width:992px) {
  .footer__main, .footer__top {
    -webkit-box-direction: normal
  }

  .min-lg {
    display: none
  }

  ._container {
    padding: 0 32px
  }

  .header__search-body {
    max-width: 350px
  }

  .header__main.open-menu {
    border-radius: 30px 30px 0 0;
    -webkit-transition: all .1s ease 0s;
    transition: all .1s ease 0s
  }

  .header__menu {
    display: block
  }

  .header__top {
    margin: 0;
    width: auto;
    -webkit-column-gap: 47px;
    -moz-column-gap: 47px;
    column-gap: 47px
  }

  .catalog__filters, .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .catalog__sidebar {
    position: fixed;
    width: 100%;
    max-width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    padding-top: 30px;
    z-index: 1000;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }

  .catalog__sidebar.open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }

  .catalog__sidebar-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .footer__main {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .footer__left {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--black-700);
    gap: 30px
  }

  .footer__top {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .footer__right {
    padding-top: 30px
  }
}

@media (max-width:992px) and (max-width:768px) {
  .header__top {
    -webkit-column-gap: calc(25px - -22 * (100vw - 680px)/ 88);
    -moz-column-gap: calc(25px - -22 * (100vw - 680px)/ 88);
    column-gap: calc(25px - -22 * (100vw - 680px)/ 88)
  }
}

@media (max-width:992px) and (max-width:680px) {
  .header__top {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px
  }
}

@media (max-width:992px) and (max-width:992px) {
  .footer__left {
    gap: calc(15px - -15 * (100vw - 375px)/ 617)
  }
}

@media (max-width:992px) and (max-width:375px) {
  .footer__left {
    gap: 15px
  }
}

@media (max-width:768px) {
  .header__main, .header__menu-body {
    padding-left: calc(24px - -16 * (100vw - 375px)/ 393);
    padding-right: calc(24px - -16 * (100vw - 375px)/ 393)
  }

  .catalog__tags, .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
  }

  .min-md {
    display: none
  }

  .header__cart-body, .header__cart-product {
    padding-left: calc(25px - -5 * (100vw - 375px)/ 393);
    padding-right: calc(25px - -5 * (100vw - 375px)/ 393)
  }

  .header__cart {
    padding-top: calc(25px - -5 * (100vw - 375px)/ 393);
    padding-bottom: calc(25px - -5 * (100vw - 375px)/ 393)
  }

  .header__cart-min {
    font-size: calc(12px - -2 * (100vw - 375px)/ 393)
  }

  .header__cart-price, .header__cart-prices {
    gap: calc(10px - -5 * (100vw - 375px)/ 393)
  }

  .header__cart-price .title {
    font-size: calc(14px - -2 * (100vw - 375px)/ 393)
  }

  .header__cart-price .value {
    font-size: calc(16px - -4 * (100vw - 375px)/ 393)
  }

  .breadcrumbs__body {
    padding-top: calc(24px - -6 * (100vw - 375px)/ 393)
  }

  .catalog__tags {
    gap: 8px;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .catalog__grid {
    margin-bottom: calc(28px - -12 * (100vw - 375px)/ 393)
  }

  .footer__body {
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px
  }

  .footer__info {
    gap: calc(16px - -24 * (100vw - 375px)/ 393)
  }

  .footer__info-col {
    gap: calc(16px - -4 * (100vw - 375px)/ 393)
  }

  .footer__link {
    font-size: 14px
  }

  .footer__top {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
  }

  .footer__info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .footer__main {
    gap: 30px
  }

  .footer__left, .footer__right {
    padding: 0;
    border: 0
  }

  .footer__right {
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

@media (max-width:680px) {
  .header__right, .min-sm {
    display: none
  }

  .header__buttons, .header__menu-body, .header__nav, .header__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
  }

  ._container {
    padding: 0 24px
  }

  .header__top {
    -ms-flex-direction: column;
    flex-direction: column
  }

  .header__buttons {
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%
  }

  .header__buttons button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .header__nav {
    -ms-flex-direction: column;
    flex-direction: column
  }

  .header__link {
    font-size: 16px;
    color: var(--black-900)
  }

  .header__contact img {
    width: 42px;
    height: 42px
  }

  .header__main {
    border-radius: 20px
  }

  .header__main.open-menu {
    border-radius: 20px;
    -webkit-transition: all .1s ease 0s;
    transition: all .1s ease 0s
  }

  .header__search-body {
    max-width: 100%
  }

  .header__button-icon-text {
    display: block
  }

  .header__menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--gray-50);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: auto
  }

  .header__menu-body {
    padding-top: 120px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px
  }
}

@media (max-width:568px) {
  .categories-menu {
    max-width: 100%;
    border-radius: 0
  }

  .catalog__sort-text {
    display: none
  }

  .footer__button {
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
  }

  .footer__company {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media (max-width:375px) {
  .header__main, .header__menu-body {
    padding-left: 24px;
    padding-right: 24px
  }

  .title-section {
    font-size: 28px
  }

  .min-mb {
    display: none
  }

  .header__nav {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px
  }

  .header__buttons {
    gap: 8px
  }

  .header__cart-body, .header__cart-product {
    padding-left: 25px;
    padding-right: 25px
  }

  .header__cart {
    padding-top: 25px;
    padding-bottom: 25px
  }

  .header__cart-min {
    font-size: 12px
  }

  .header__cart-price, .header__cart-prices {
    gap: 10px
  }

  .header__cart-price .title {
    font-size: 14px
  }

  .header__cart-price .value {
    font-size: 16px
  }

  .breadcrumbs__body {
    padding-top: 24px;
    padding-bottom: 12px
  }

  .catalog__body {
    padding-top: 12px;
    padding-bottom: 50px
  }

  .catalog__tags {
    margin-bottom: 28px
  }

  .catalog__actions {
    margin-bottom: 12px
  }

  .catalog__grid {
    gap: 12px;
    margin-bottom: 28px
  }

  .catalog__pagination {
    margin-bottom: 8px
  }

  .footer {
    margin-top: 25px
  }

  .footer__info, .footer__info-col {
    gap: 16px
  }
}

@media (max-width:992px) and (min-width:681px) {
  .header__search-body {
    width: 48px;
    height: 48px
  }

  .header__search {
    width: 100%;
    max-width: 48px;
    height: 48px
  }

  .header__search input {
    max-width: 0%
  }

  .header__search svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
  }

  .header__search.open {
    position: absolute;
    max-width: 75%;
    right: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    height: 50px
  }

  .header__search.open input {
    max-width: 100%;
    padding-right: 40px
  }

  .header__search.open svg {
    left: auto;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: 20px
  }
}

@media (any-hover:hover) {
  .button, .button.orange {
    -webkit-transition: all .3s ease 0s;
    cursor: pointer
  }

  .button.orange:hover, .button:hover {
    color: var(--orange-500);
    background-color: var(--orange-100)
  }

  input[type=checkbox]:hover, input[type=radio].checkbox:hover, input[type=radio]:hover {
    border-color: var(--orange-500)
  }

  .button {
    transition: all .3s ease 0s
  }

  .button.orange {
    transition: all .3s ease 0s
  }

  .button.orange-light {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }

  .button.orange-light:hover {
    color: var(--white);
    background-color: var(--orange-500)
  }

  input[type=checkbox], input[type=radio].checkbox {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }

  .header__link, input[type=radio] {
    -webkit-transition: all .3s ease 0s;
    cursor: pointer
  }

  input[type=radio] {
    transition: all .3s ease 0s
  }

  .choices__item.choices__item--choice:active, .choices__item.choices__item--choice:hover {
    background-color: rgba(var(--white-rgb), .04)
  }

  .header__link {
    transition: all .3s ease 0s
  }

  .header__link:hover {
    color: var(--black-900)
  }

  .categories-menu__close:hover, .categories-menu__link:hover, .header__button-icon:hover {
    color: var(--orange-500)
  }

  .header__languages-list button {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }

  .header__languages-list button:hover {
    background-color: var(--gray-100)
  }

  .header__button-icon {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }

  .categories-menu__close, .categories-menu__link {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s
  }

  .categories-menu__close {
    transition: all .3s ease 0s
  }

  .categories-menu__link {
    transition: all .3s ease 0s
  }

  .breadcrumbs__link, .catalog__sort-dropdown button {
    -webkit-transition: all .3s ease 0s;
    cursor: pointer
  }

  .breadcrumbs__link {
    transition: all .3s ease 0s
  }

  .breadcrumbs__link:hover {
    color: var(--black-900)
  }

  .breadcrumbs__link.active:hover, .catalog__filters:hover span, .catalog__sidebar-close:hover, .catalog__sidebar-reset:hover, .catalog__sort-dropdown button:hover, .footer__link:hover, a.catalog__page:hover {
    color: var(--orange-500)
  }

  .catalog__filters {
    cursor: pointer
  }

  .catalog__sort-dropdown button {
    transition: all .3s ease 0s
  }

  .catalog__nav {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }

  .catalog__nav:hover {
    background-color: var(--orange-100)
  }

  a.catalog__page {
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
  }

  .catalog__sidebar-close, .catalog__sidebar-reset {
    -webkit-transition: all .3s ease 0s;
    cursor: pointer;
  }

  .catalog__sidebar-close {
    transition: all .3s ease 0s
  }

  .catalog__sidebar-range-value input:hover {
    background-color: var(--gray-50)
  }

  .catalog__sidebar-reset {
    transition: all .3s ease 0s
  }

  .footer__link {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }
}
/* Контейнер OpenCart внутри твоего блока */
.catalog__pagination .pagination {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Убираем стандартные отступы Bootstrap */
.catalog__pagination .pagination > li {
    margin: 0;
}

/* Стрелки (первая и последняя кнопка) */
.catalog__pagination .pagination > li:first-child a,
.catalog__pagination .pagination > li:last-child a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 18px;
    transition: 0.2s ease;
}

/* Hover стрелок */
.catalog__pagination .pagination > li:first-child a:hover,
.catalog__pagination .pagination > li:last-child a:hover {
    background: #e5e5e5;
}

/* Цифры */
.catalog__pagination .pagination li a,
.catalog__pagination .pagination li span {
    background: transparent;
    padding: 6px 4px;
    font-size: 16px;
    color: #222;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s ease;
}

/* Hover цифр */
.catalog__pagination .pagination li a:hover {
    color: #000;
}

/* Активная страница */
.catalog__pagination .pagination li.active span {
    font-weight: 700;
    color: #000;
}

/* Троеточие */
.catalog__pagination .pagination li.disabled span {
    opacity: 0.5;
}

.catalog__subcategories {
    margin: 30px 0 40px;
}

.catalog__subcategories-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.catalog__subcategory-chip {
    padding: 14px 22px;
    background: #f3f3f3;
    border-radius: 16px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: .2s ease;
}

.catalog__subcategory-chip:hover {
    background: #e6e6e6;
}

.catalog__subcategory-chip.active {
    background: #e0e0e0;
    font-weight: 600;
}


.catalog__sort {
    position: relative;
}

.catalog__sort-dropdown {
    position: relative;
}

.catalog__sort-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 20px;
    background: #f3f3f3;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.catalog__sort-toggle svg {
    transition: .3s;
}

.catalog__sort-menu {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    z-index: 10;
}

.catalog__sort-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.catalog__sort-option {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: #222;
    transition: .2s;
}

.catalog__sort-option:hover {
    background: #f7f7f7;
}

.catalog__sort-option.active {
    font-weight: 600;
}

/* OCFilter mobile panel must not inherit the off-canvas transform of the theme sidebar. */
@media (max-width: 767px) {
  .catalog__sidebar,
  .catalog__sidebar--modules {
    width: 0;
    height: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    pointer-events: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
    z-index: 2147483647;
  }

  .catalog__sidebar .ocf-container,
  .catalog__sidebar .ocf-container *,
  .catalog__sidebar--modules .ocf-container,
  .catalog__sidebar--modules .ocf-container * {
    pointer-events: auto;
  }

  .catalog__sidebar .ocf-container.ocf-mobile-active,
  .catalog__sidebar--modules .ocf-container.ocf-mobile-active {
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }
}
