@charset "UTF-8";

.button, .choices__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  font-size: 16px
}

.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
}

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;
  position: relative;
  -webkit-transition: .25s ease;
  transition: .25s ease;
  background-color: var(--white)
}

input[type=radio]:checked {
  border-width: 6px;
  border-color: var(--orange-500)
}



input#input-quantity {
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 9px 40px 9px 16px;
    font-size: 14px;
    font-weight: 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
}

.header__body, .header__languages {
  position: relative
}

.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)
}

.categories-menu, .choices__inner, .choices__list--dropdown, .header__languages-button, .header__languages-list, .header__main, .header__menu, .header__search, .is-flipped .choices__list--dropdown, .product__counter-button {
  background-color: var(--white)
}

.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;
  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;
  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
}

.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
}

.choices__item.choices__item--choice.is-highlighted {
  background-color: transparent
}

.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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  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, .header__right {
  display: -webkit-box;
  -webkit-box-align: center
}

.header__nav {
  display: -ms-flexbox;
  display: flex;
  -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: -ms-flexbox;
  display: flex;
  -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;
  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;
  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__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;
  -webkit-box-align: center;
  -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 {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  -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__search input::-webkit-input-placeholder {
  color: var(--gray-500)
}

.header__actions {
  display: flex;
  gap: 6px
}

.header__button-icon {
  position: relative;
  font-size: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: transparent
}

.header__button-icon-text {
  font-size: 16px;
  display: none
}

.header__counter {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -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;
  left: 0;
  -webkit-transition: all .3s ease 0s;
  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%;
  left: 0;
  top: 100%;
  border-radius: 0 0 30px 30px;
  max-height: 0%;
  overflow: hidden;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  z-index: 50
}

.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
}

.categories-menu, .header__cart {
  padding-bottom: 30px;
  -webkit-transition: all .3s ease 0s
}

.header__cart {
  border-radius: 30px;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  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
}

.header__cart-body, .header__cart-products {
  display: -ms-flexbox;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

.header__cart.open {
  opacity: 1;
  pointer-events: all
}

.header__cart-body {
  display: -webkit-box;
  display: flex;
  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: flex;
  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
}

.categories-menu, .categories-menu__link {
  display: -webkit-box;
  display: -ms-flexbox
}

.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;
  width: 100%;
  max-width: 400px;
  height: 100%;
  z-index: 100;
  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: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 60px;
  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: 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
}

.product__info, .product__left {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

.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
}

.product__body, .product__left {
  display: -webkit-box;
  display: -ms-flexbox
}

.product__body {
  display: flex;
  gap: 52px;
  padding-top: 5px
}

.product__left {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 690px;
  gap: 20px
}

.product__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
  max-height: 532px;
  height: 100%
}

.product__warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px
}

.product__warning span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--red-100);
  color: var(--red-500);
  font-size: 36px
}

.product__warning p {
  font-size: 16px
}

.product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column
}

.product__title {
  margin-bottom: 30px
}

.product__stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 212px)) [2];
  grid-template-columns: repeat(2, minmax(200px, 212px));
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  row-gap: 8px;
  margin-bottom: 30px
}

.product__stat {
  font-size: 16px
}

.product__colors {
  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: 35px
}

.product__colors-title {
  font-size: 16px;
  margin-bottom: 15px
}

.product__colors-palette {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 370px;
  margin-bottom: 25px
}

.product__colors-color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.product__colors-color--white {
  background-color: #fff
}

.product__colors-color--silver {
  background-color: #c5c5c5
}

.product__colors-color--charcoal {
  background-color: #4b4d48
}

.product__colors-color--coffee {
  background-color: #493d2e
}

.product__colors-color--caramel {
  background-color: #cb8a34
}

.product__colors-color--peach {
  background-color: #f9e2d3
}

.product__colors-color--dusty-pink {
  background-color: #e89aa8
}

.product__colors-color--coral {
  background-color: #fd6773
}

.product__colors-color--raspberry {
  background-color: #fb516c
}

.product__colors-color--magenta {
  background-color: #a21b91
}

.product__colors-color--apricot {
  background-color: #fcb188
}

.product__colors-color--orange {
  background-color: #ffa971
}

.product__colors-color--salmon {
  background-color: #f8939d
}

.product__colors-color--crimson {
  background-color: #d73f62
}

.product__colors-color--teal {
  background-color: #3b8172
}

.product__colors-color--sunflower {
  background-color: #fcd23e
}

.product__colors-color--olive {
  background-color: #91a01e
}

.product__colors-color--forest {
  background-color: #3a7026
}

.product__colors-color--midnight {
  background-color: #203b4c
}

.product__colors-color--ocean {
  background-color: #28485b
}

.product__colors-color.active {
  border: 4px solid var(--orange-500)
}

.product__colors-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px
}

.product__colors-checkbox span {
  font-weight: 700;
  font-size: 16px
}

.product__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px
}

.product__counter-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px
}

.product__counter-button {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%
}

.description__body, .description__text {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

.product__counter-button:disabled {
  color: var(--gray-600);
  cursor: not-allowed
}

.product__price {
  display: flex;
  min-width: 170px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  color: var(--black-900)
}

.product__price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px
}

.product__price-label {
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em
}

.product__price-value {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
  white-space: nowrap
}

.product__price-vat {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.3
}

.product__price-vat-label {
  font-size: 12px;
  font-weight: 500
}

.product__price-vat-value {
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap
}

.product__price-vat-old {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
  white-space: nowrap
}

.product__button {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.description__body {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 35px
}

.description__title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px
}

.description__text {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 22px
}

.advantages__body, .advantages__list {
  display: -ms-flexbox;
  display: -webkit-box
}

.description__text ul {
  padding-left: 8px
}

.description__text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px
}

.description__text ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--black-900);
  margin-top: 8px;
  margin-right: 4px
}

.advantages {
  padding-top: 35px;
  padding-bottom: 35px
}

.advantages__body {
  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;
  border-radius: 30px;
  background: var(--white);
  gap: 66px;
  padding: 60px 80px
}

.advantages__text {
  max-width: 485px
}

.advantages__list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px
}

.advantages__item, .footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

.advantages__item {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.advantages__item-img {
  width: 44px;
  height: 44px
}

.advantages__item-desc {
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  font-size: 20px
}

.footer__email, .footer__title {
  font-weight: 700
}

.footer {
  background-color: var(--black-800);
  color: var(--white);
  border-radius: 30px 30px 0 0;
  margin-top: 35px
}

.footer__body {
  display: flex;
  -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-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__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)
  }

  .product__body {
    gap: calc(40px - -12 * (100vw - 768px)/ 514)
  }

  .product__stats {
    margin-bottom: calc(40px - 10 * (100vw - 768px)/ 514)
  }

  .product__colors {
    margin-bottom: calc(25px - -10 * (100vw - 375px)/ 907)
  }

  .description__body {
    padding-top: calc(60px - 20 * (100vw - 768px)/ 514);
    padding-bottom: calc(30px - -5 * (100vw - 768px)/ 514)
  }

  .description__title {
    margin-bottom: calc(10px - -5 * (100vw - 768px)/ 514)
  }

  .advantages {
    padding-top: calc(25px - -10 * (100vw - 375px)/ 907);
    padding-bottom: calc(25px - -10 * (100vw - 375px)/ 907)
  }

  .advantages__body {
    gap: calc(35px - -31 * (100vw - 992px)/ 290)
  }

  .advantages__list {
    gap: calc(20px - -30 * (100vw - 992px)/ 290)
  }

  .advantages__item-desc {
    font-size: calc(16px - -4 * (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) {
  .advantages__body, .footer__main, .product__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
  }

  .advantages__body, .footer__main, .footer__top, .product__body {
    -webkit-box-direction: normal
  }

  .min-lg {
    display: none
  }

  ._container {
    padding: 0 32px
  }

  .header__search-body {
    max-width: 350px
  }

  .product__colors-palette, .product__left {
    max-width: 100%
  }

  .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
  }

  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .product__body {
    -ms-flex-direction: column;
    flex-direction: column
  }

  .product__title {
    margin-bottom: 0 !important
  }

  .product__stats {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -ms-grid-columns: (minmax(200px, 212px)) [3];
    grid-template-columns: repeat(3, minmax(200px, 212px))
  }

  .advantages__body {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 35px
  }

  .advantages__text {
    text-align: center;
    padding-right: 0
  }

  .advantages__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 45px
  }

  .advantages__item {
    max-width: 142px
  }

  .footer__main {
    -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) {
  .advantages__body {
    gap: calc(32px - -3 * (100vw - 375px)/ 617)
  }

  .advantages__list {
    gap: calc(22px - -23 * (100vw - 375px)/ 617)
  }

  .footer__left {
    gap: calc(15px - -15 * (100vw - 375px)/ 617)
  }
}

@media (max-width:992px) and (max-width:375px) {
  .advantages__body {
    gap: 32px
  }

  .advantages__list {
    gap: 22px
  }

  .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)
  }

  .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)
  }

  .product__body {
    padding-top: calc(12px - 7 * (100vw - 375px)/ 393);
    gap: 40px
  }

  .product__left {
    gap: calc(16px - -4 * (100vw - 375px)/ 393)
  }

  .product__warning p {
    font-size: calc(12px - -4 * (100vw - 375px)/ 393)
  }

  .product__title {
    margin-bottom: calc(24px - -6 * (100vw - 375px)/ 393)
  }

  .product__stats {
    margin-bottom: 28px
  }

  .product__counter {
    margin-bottom: calc(24px - -6 * (100vw - 375px)/ 393)
  }

  .product__price {
    min-width: 145px
  }

  .product__price-value {
    font-size: calc(30px - -4 * (100vw - 375px)/ 393)
  }

  .description__body {
    padding-top: 60px;
    padding-bottom: 35px
  }

  .description__title {
    margin-bottom: 10px
  }

  .advantages__body {
    padding-top: calc(36px - -24 * (100vw - 375px)/ 393);
    padding-bottom: calc(42px - -18 * (100vw - 375px)/ 393);
    padding-left: calc(50px - -30 * (100vw - 375px)/ 393);
    padding-right: calc(50px - -30 * (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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -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:768px) and (max-width:768px) {
  .product__body {
    gap: calc(24px - -16 * (100vw - 375px)/ 393)
  }

  .product__stats {
    margin-bottom: calc(40px - 12 * (100vw - 375px)/ 393)
  }

  .description__body {
    padding-top: calc(50px - -10 * (100vw - 375px)/ 393);
    padding-bottom: calc(18px - -17 * (100vw - 375px)/ 393)
  }

  .description__title {
    margin-bottom: calc(8px - -2 * (100vw - 375px)/ 393)
  }
}

@media (max-width:768px) and (max-width:375px) {
  .product__body {
    gap: 24px
  }

  .product__stats {
    margin-bottom: 40px
  }

  .description__body {
    padding-top: 50px;
    padding-bottom: 18px
  }

  .description__title {
    margin-bottom: 8px
  }
}

@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
  }

  .advantages__item, .header__search-body {
    max-width: 100%
  }

  ._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__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
  }

  .product__stats {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }

  .advantages__body {
    padding: 45px 50px
  }

  .advantages__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}

@media (max-width:680px) and (max-width:680px) {
  .advantages__body {
    padding-top: calc(30px - -15 * (100vw - 375px)/ 305);
    padding-bottom: calc(40px - -5 * (100vw - 375px)/ 305);
    padding-left: calc(35px - -15 * (100vw - 375px)/ 305);
    padding-right: calc(35px - -15 * (100vw - 375px)/ 305)
  }
}

@media (max-width:680px) and (max-width:375px) {
  .advantages__body {
    padding: 30px 35px 40px
  }
}

@media (max-width:568px) {
  .categories-menu {
    max-width: 100%;
    border-radius: 0
  }

  .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
  }

  .footer__info, .footer__info-col, .product__left {
    gap: 16px
  }

  .header__cart-price .title {
    font-size: 14px
  }

  .header__cart-price .value {
    font-size: 16px
  }

  .breadcrumbs__body {
    padding-top: 24px;
    padding-bottom: 12px
  }

  .product__body {
    padding-top: 12px
  }

  .product__warning p {
    font-size: 12px
  }

  .product__title {
    margin-bottom: 24px
  }

  .product__colors {
    margin-bottom: 25px
  }

  .product__counter {
    margin-bottom: 24px
  }

  .product__price {
    min-width: 135px
  }

  .product__price-value {
    font-size: 30px
  }

  .advantages {
    padding-top: 25px;
    padding-bottom: 25px
  }

  .advantages__body {
    padding: 36px 50px 42px
  }

  .advantages__item-desc {
    font-size: 16px
  }

  .footer {
    margin-top: 25px
  }
}

@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, .product__counter-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, .footer__link:hover, .product__counter-button:not(:disabled):hover {
    color: var(--orange-500)
  }

  .product__colors-color {
    cursor: pointer
  }

  .product__colors-color:hover {
    border: 4px solid var(--orange-500)
  }

  .product__counter-button {
    transition: all .3s ease 0s
  }

  .footer__link {
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
  }
}




.lfbra-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.lfbra-option {
 
  align-items: center;
  gap: 12px;
}



.lfbra-option-image-wrap {
    margin-bottom: 8px;
    display: flex;
    /* align-content: space-around; */
    align-items: baseline;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
}
.lfbra-option-image {
display:flex;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #f6861f;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 300px;
}
.lfbra-option-image:hover {
  opacity: 0.8;
}

/* Лайтбокс */
#lfbra-lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 9998;
}
#lfbra-lightbox-content {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  max-width: 90vw;
  max-height: 90vh;
}
#lfbra-lightbox-img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
#lfbra-lightbox-close {
  position: absolute;
  top: 8px; right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  line-height: 1;
}
.lfbra-option-label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
  min-width: 160px;
  margin: 0;
}

.lfbra-select-wrapper {
  position: relative;
  flex: 1;
}

.lfbra-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 9px 40px 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lfbra-select:hover {
  border-color: #f47a20;
}

.lfbra-select:focus {
  border-color: #f47a20;
  box-shadow: 0 0 0 3px rgba(244, 122, 32, 0.15);
}

.lfbra-select-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  transition: transform 0.2s;
}

.lfbra-select:focus + .lfbra-select-arrow {
  transform: translateY(-50%) rotate(180deg);
}




.lfbra-downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}

.lfbra-downloads-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f47a20;
  margin-bottom: 4px;
}

.lfbra-header-icon {
  font-size: 22px;
  color: #f47a20;
}

.lfbra-downloads-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.2px;
}

.lfbra-download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 16px 20px;
  transition: box-shadow 0.2s;
}

.lfbra-download-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.lfbra-download-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lfbra-file-icon {
  font-size: 24px;
  color: #f47a20;
}

.lfbra-download-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #222;
}

.lfbra-download-size {
  display: block;
  font-size: 13px;
  color: #999;
  margin-top: 2px;
}

.lfbra-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f47a20;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.lfbra-download-btn:hover {
  background: #d9650f;
  transform: translateY(-1px);
}

.lfbra-download-btn i {
  font-size: 14px;
}
