@charset "UTF-8";

@font-face {
  font-family: LibreBaskerville;
  font-display: swap;
  src: url("../fonts/LibreBaskerville-Bold.woff2") format("woff2"), url("../fonts/LibreBaskerville-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: LibreBaskerville;
  font-display: swap;
  src: url("../fonts/LibreBaskerville-Regular.woff2") format("woff2"), url("../fonts/LibreBaskerville-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "GalanoGrotesque";
  font-display: swap;
  src: url("../fonts/GalanoGrotesque-Bold.woff2") format("woff2"), url("../fonts/GalanoGrotesque-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "GalanoGrotesque";
  font-display: swap;
  src: url("../fonts/GalanoGrotesque-SemiBold.woff2") format("woff2"), url("../fonts/GalanoGrotesque-SemiBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #0D0D0D;
  line-height: 1;
  font-family: "Montserrat";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.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;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 83.125rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.checkbox {
  position: relative;
}

.checkbox:not(:last-child) {
  margin-bottom: 0.3125em;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__input:focus-visible + .checkbox__label:before {
  -webkit-box-shadow: 0 0 5px #000;
          box-shadow: 0 0 5px #000;
}

.checkbox__input:checked + .checkbox__label:before {
  background: #1F4037;
}

.checkbox__input:checked + .checkbox__label::after {
  opacity: 1;
}

.checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  gap: 10px;
}

.checkbox__label:before {
  content: "";
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #1F4037;
}

.checkbox__label::after {
  position: absolute;
  content: "";
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.error .checkbox__label:before {
  background: red;
}

.checkbox__text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 0.875rem;
  color: #777;
  line-height: 1.3;
}

.checkbox__text a {
  text-decoration: underline;
  color: #1F4037;
}

.options-finalization {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

.options-finalization__item {
  width: 100%;
  position: relative;
  cursor: pointer;
}

.options-finalization__item:not(:last-child) {
  margin-bottom: 0.3125em;
}

.options-finalization__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.options-finalization__input:checked + .options-finalization__label {
  color: #fff;
  text-shadow: 0 0 0.65px #fff, 0 0 0.65px #fff;
  background-color: #1F4037;
}

.options-finalization__input:checked + .options-finalization__label svg {
  opacity: 1;
  pointer-events: all;
}

.options-finalization__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  width: 100%;
  background-color: #D7D7D7;
  color: #777;
  padding: 0.8125rem 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.options-finalization__label svg {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}

.options-sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.5rem;
}

.options-sizes.page-product__sizes {
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}

.options-sizes.page-product__sizes .options-sizes__radio {
  padding: 0.125rem 0.75rem;
}

.options-sizes__item {
  position: relative;
  cursor: pointer;
}

.options-sizes__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.options-sizes__input:focus-visible + .options-sizes__radio {
  outline: auto;
}

.options-sizes__input:checked + .options-sizes__radio {
  background-color: #1F4037;
  color: #fff;
  font-weight: 500;
}

.options-sizes__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}

.options-sizes__radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 2.9375rem;
  min-height: 1.75rem;
  background-color: #EFEFEF;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: normal;
  color: #777;
  padding: 0.125rem 0.3125rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.options-sizes__text {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.select {
  min-width: 0;
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: #777;
  text-align: left;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3rem;
  padding: 0 1.25rem;
  gap: 0.625rem;
}

.select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../img/select-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #777;
  position: absolute;
  top: calc(100% - 0.0625rem);
  min-width: 100%;
  left: 0;
  background-color: #fff;
  padding: 10px 0px 5px 0px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}

.select__option._select-selected {
  background-color: #eee;
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select--show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  padding: 5px 0px 10px 0px;
}

.select.select_sort {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  min-width: 0;
}

.select.select_sort._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select.select_sort .select__body {
  position: relative;
  width: 100%;
}

.select.select_sort .select__title {
  color: inherit;
  text-align: left;
  font-weight: 600;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
}

.select.select_sort .select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.25rem;
  padding: 0;
  gap: 0.3125rem;
}

.select.select_sort .select__value > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.select.select_sort .select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../img/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.select.select_sort .select__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select.select_sort .select__text {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select.select_sort .select__options {
  color: #000;
  position: absolute;
  top: calc(100% - 0.1875rem);
  min-width: 0;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  left: 0;
  background-color: #fff;
  padding: 10px 0px 5px 0px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.select.select_sort .select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.select.select_sort .select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  white-space: nowrap;
  color: inherit;
}

.select.select_sort .select__option._select-selected {
  background-color: #eee;
}

.select.select_sort.select--show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.1875rem);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

.select.select_sort ._select-tag {
  cursor: pointer;
}

._select-tag {
  cursor: pointer;
}

.quantity {
  width: 126px;
  height: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -9px;
  background-color: #1F4037;
  width: 18px;
  height: 1px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  height: 100%;
  width: 100%;
  text-align: center;
  background-color: transparent;
  font-weight: 600;
}

.spollers {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}

.spollers__item {
  font-size: 1rem;
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  position: relative;
  list-style: none;
  text-transform: uppercase;
  font-weight: 600;
  color: #1F4037;
}

.spollers__title::-webkit-details-marker {
  display: none;
}

.spollers__title::marker {
  display: none;
}

._spoller-init .spollers__title {
  cursor: pointer;
  /*
  ._spoller-init & {
  	position: relative;
  	width: 100%;
  	text-align: left;
  	&::before,
  	&::after {
  		content: "";
  		position: absolute;
  		right: 0;
  		top: rem(12);
  		height: rem(1);
  		transition: all 0.3s ease 0s;
  		width: rem(10);
  		background-color: #000;
  	}
  	&::before {
  		transform: rotate(40deg);
  		right: rem(7);
  	}
  	&::after {
  		transform: rotate(-40deg);
  	}
  }
  &._spoller-active {
  	&::before {
  		transform: rotate(-40deg);
  	}
  	&::after {
  		transform: rotate(40deg);
  	}
  }
  */
}

._spoller-init .spollers__title::before,
._spoller-init .spollers__title::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 25%;
  background-color: #1F4037;
  height: 2px;
  width: 8px;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

._spoller-init .spollers__title::before {
  -webkit-transform: translate(-75%, -50%) rotate(40deg);
      -ms-transform: translate(-75%, -50%) rotate(40deg);
          transform: translate(-75%, -50%) rotate(40deg);
}

._spoller-init .spollers__title::after {
  -webkit-transform: translate(0, -50%) rotate(-40deg);
      -ms-transform: translate(0, -50%) rotate(-40deg);
          transform: translate(0, -50%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active::before {
  -webkit-transform: translateX(-75%) rotate(-40deg);
      -ms-transform: translateX(-75%) rotate(-40deg);
          transform: translateX(-75%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active::after {
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

.tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs__title {
  border: 1px solid #eee;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.3125rem;
}

.tabs__title._tab-active {
  border: 1px solid #000;
}

.tabs__content {
  border: 1px solid #eee;
  padding: 0.625rem 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease 0s;
}

[class*=-ibg--contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2.1875rem;
     -moz-column-gap: 2.1875rem;
          column-gap: 2.1875rem;
  row-gap: 0.9375rem;
  margin: 1.875rem 0;
}

.products-head .breadcrumbs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.products-head .breadcrumbs span {
  opacity: 1;
}

.breadcrumbs__item {
  font-weight: 500;
}

.breadcrumbs__item:not(:last-child) {
  position: relative;
}

.breadcrumbs__item:not(:last-child)::before {
  content: "";
  background-image: url("../img/breadcrumbs-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 0.725rem;
  height: 0.725rem;
  position: absolute;
  top: 1px;
  right: -24px;
}

.products-head .breadcrumbs__item:not(:last-child)::before {
  background-image: url("../img/breadcrumbs-arrow-white.svg");
}

.breadcrumbs__item span {
  opacity: 0.3;
}

.breadcrumbs__link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.title {
  font-family: LibreBaskerville;
  font-weight: 700;
  color: #1F4037;
}
h1.page-product__title.title {
  font-family: 'Vollkorn', serif;
  font-variant-numeric: lining-nums proportional-nums;
}

.swiper-pagination {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 1.25rem;
  height: 0.25rem;
  border-radius: 1.25rem;
  background-color: #1F4037;
  opacity: 0.2;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 2.625rem;
  height: 2.625rem;
  pointer-events: all;
}

.swiper-button-prev path,
.swiper-button-next path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.services__title {
  text-align: center;
  line-height: 1.3;
}

.services__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.item-services {
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}

.item-services__img {
  height: 4.875rem;
}

.item-services__title {
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.item-services__text {
  text-align: center;
  line-height: 1.5;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(16.99%, #1f4037), to(rgba(31, 64, 55, 0)));
  background: linear-gradient(180deg, #1f4037 16.99%, rgba(31, 64, 55, 0) 100%);
  color: #fff;
  padding: 0.625rem 0 1.25rem 0;
  z-index: 10;
}

.header.header-green {
  position: relative;
  background-color: #1F4037;
}

.header.header-fixed {
  position: fixed;
}

.header__inner {
  display: -ms-grid;
  display: grid;
  gap: 1.4375rem;
}

.header__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 140px 1fr;
  grid-template-columns: 1fr 140px 1fr;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 1rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.header__top-right {
  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: flex-end;
}

.header__languges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.header__lang {
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__lang.active {
  color: white;
}

.header__logo {
  width: 8.3125rem;
  height: 3.75rem;
  overflow: hidden;
}

.header__logo img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__phone path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.375rem;
     -moz-column-gap: 1.375rem;
          column-gap: 1.375rem;
}

.header__search {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 1.875rem;
  height: 1.875rem;
}

.header__search path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

.header__link {
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 1.875rem;
  height: 1.875rem;
}

.header__link path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__link-quantity {
  position: absolute;
  right: -12px;
  top: -10px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-width: 1.3125rem;
  height: 1.3125rem;
  padding: 0.1875rem;
  border-radius: 0.625rem;
  background-color: #F2D5A0;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #1f4037;
  font-size: 0.875rem;
  font-weight: 600;
}

.menu__head {
  display: none;
}

.menu__list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  row-gap: 0.625rem;
}

.menu__link {
  color: #fff;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.menu__socials {
  display: none;
}

.menu__socials-link {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.icon-menu {
  display: none;
}

.footer__top {
  border-top: 1px solid #ddd;
  background-color: #fff;
  padding: 4.375rem 0;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
}

.footer__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: 0.9375rem;
}

.footer__socials {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (44px)[2];
  grid-template-columns: repeat(2, 44px);
  gap: 0.8125rem;
  -ms-grid-row-align: start;
      align-self: start;
}

.footer__soc {
  width: 2.75rem;
  height: 2.75rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 64, 55, 0.5);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__bottom {
  padding: 1.4375rem 0;
  background-color: #F3F3F3;
}

.footer__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem;
}

.footer__copy-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  opacity: 0.7;
}

.footer-spollers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  max-width: 58.125rem;
  width: 100%;
}

.footer-spollers .spollers__title {
  padding-bottom: 1.25rem;
}

.footer-spollers .spollers__title::-webkit-details-marker {
  display: none;
}

.promo__wrapper:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.promo__slide {
  position: relative;
}

.promo__slide::before {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__slide-ibg {
  padding-bottom: 53.75%;
}

.discounted__body {
  position: relative;
}

.discounted__title {
  text-align: center;
}

.discounted__wrapper:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.discounted__navigation {
  position: absolute;
  top: 50%;
  left: -42px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: calc(100% + 84px);
  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;
  pointer-events: none;
}

.discounted .swiper-pagination {
  display: none;
}

.discounted__more {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0.9375rem auto 0;
  padding: 1rem 2rem;
  color: #1F4037;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid #335240;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex: 0 0 calc((100% - 90px)/ 4);
}

.product-item__img {
  height: 31.25rem;
  overflow: hidden;
}
@media (any-hover:hover){
  .product-item__img:hover img{
    transform: scale(1.1);
  }
}
.product-item__img:not(:last-child) {
  margin-bottom: 1rem;
}

.product-item__img_1 {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.product-item__img_2 {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.product-item__img-ibg {
  padding-bottom: 100%;
}

.product-item__reduction {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  color: #1F4037;
  padding: 0.3125rem 0.8125rem;
  background-color: #F2D5A0;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-item__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #0D0D0D;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  /*text-transform: uppercase;*/
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.product-item__name:not(:last-child) {
  margin-bottom: 0.3125rem;
}

.product-item__sizes:not(:last-child) {
  margin-bottom: 0.5rem;
}

.product-item__bottom {
  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: 0.625rem;
  margin-top: auto;
}

.product-item__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3125rem;
  font-family: "GalanoGrotesque";
}

.product-item__price {
  font-weight: 500;
  font-size: 1.15625rem;
}

.product-item__oldprice {
  font-weight: 500;
  font-size: 0.9875rem;
  color: #777;
  position: relative;
}

.product-item__oldprice::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 0.0625rem;
  background-color: #777;
}

.product-item__buy {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-width: 3.625rem;
  padding: 0.5rem 0.75rem;
  background-color: #335240;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.product-item__buy path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product-item_ {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-width: 3.625rem;
  padding: 0.5rem 0.75rem;
  background-color: #335240;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.product-item_ path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.category {
  background-color: #F3F3F3;
}

.category__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 31.25rem;
}

.category__item-img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.category__item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.875rem 3.125rem;
  padding-right: max(20px, (100% - 1290px) / 2);
}

.category__item-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.category__item-reverse .category__item-body {
  padding-right: 3.125rem;
  padding-left: max(20px, (100% - 1290px) / 2);
}

.category__item-text {
  line-height: 1.5;
}

.category__item-text:not(:last-child) {
  margin-bottom: 1.875rem;
}

.category__item-link {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #335240;
  padding: 1rem 2rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.about {
  background: #0D0D0D;
  position: relative;
}

.about__bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__body {
  position: relative;
  z-index: 2;
}

.about__info {
  max-width: 40.75rem;
  background-color: #fff;
  padding: 2.5rem;
}

.about__title {
  color: #1F4037;
  font-family: LibreBaskerville;
  font-weight: 700;
  line-height: 1.3;
}

.about__title:not(:last-child) {
  margin-bottom: 1.875rem;
}

.about__text {
  line-height: 1.5;
}

.about__text:not(:last-child) {
  margin-bottom: 1.875rem;
}

.about__link {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  color: #1F4037;
  font-family: Montserrat;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1rem 2rem;
  background-color: #F2D5A0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.page-order {
  padding-bottom: 3.125rem;
}

.page-order__inner {
  max-width: 29.6875rem;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  margin: 0 auto;
  background-color: #F3F3F3;
  text-align: center;
}

.page-order__img {
  margin: 0 auto;
  overflow: hidden;
}

.page-order__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.page-order__title {
  font-weight: 600;
  line-height: 1.3;
}

.page-order__text {
  line-height: 1.5;
  color: #777;
}

.page-order__link {
  font-weight: 500;
  color: #1F4037;
  white-space: nowrap;
}

.page-order__btn {
  font-weight: 600;
  padding: 1.1875rem 1.875rem;
  background-color: #335240;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.page-contacts__title {
  text-align: left;
}

.page-contacts__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}

.item-contacts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
}

.item-contacts__info {
  background-color: #F7F7F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.item-contacts__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  color: #1F4037;
  font-weight: 500;
  line-height: 1.2;
}

.item-contacts__title svg {
  width: 2rem;
  height: 2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2rem;
          flex: 0 0 2rem;
}

.item-contacts__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
}

.item-contacts__text {
  font-weight: 500;
}

.item-contacts__text a {
  display: block;
  white-space: nowrap;
}

.item-contacts__text span {
  display: block;
  color: #777777;
  font-size: 1rem;
  margin-bottom: 0.625rem;
  font-family: Montserrat;
  font-weight: 400;
  white-space: nowrap;
}

.item-contacts__img {
  max-width: 39.375rem;
}

.page-delivery__title {
  text-align: center;
}

.item-delivery {
  text-align: center;
  max-width: 53.125rem;
  margin: 0 auto;
}

.item-delivery:not(:first-child) {
  padding-top: 1.875rem;
}

.item-delivery:not(:last-child) {
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #DCDCDC;
}

.item-delivery__title {
  margin-bottom: 0.6875rem;
  font-weight: 600;
  color: #1F4037;
}

.item-delivery__text {
  line-height: 1.5;
}

.item-delivery__text p:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.page-cart__title {
  text-align: left;
}

.page-cart__inner {
  padding: 1.875rem 2.5rem;
  background-color: #F3F3F3;
  margin-bottom: 1.875rem;
}

.page-cart__head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 350px 100px 124px 120px 28px;
  grid-template-columns: 350px 100px 124px 120px 28px;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.head-cart__item {
  font-weight: 500;
  color: #777;
  font-size: 0.875rem;
}

.head-cart__item.tac {
  text-align: center;
}

.body-cart {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 350px 100px 124px 120px 28px;
  grid-template-columns: 350px 100px 124px 120px 28px;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.body-cart__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.body-cart__item:last-child {
  -ms-grid-column-align: end;
      justify-self: end;
}

.body-cart__span {
  display: none;
}

.body-cart__span.tac {
  padding-left: 0.9375rem;
}

.body-cart__img {
  max-width: 3.75rem;
}

.body-cart__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.body-cart__title {
  font-weight: 600;
  color: #1F4037;
  margin-bottom: 0.3125rem;
}

.body-cart__art {
  margin-bottom: 0.625rem;
  color: #777;
  font-weight: 500;
}

.body-cart__text {
  color: #1F4037;
  font-weight: 500;
}

.body-cart__price {
  font-weight: 600;
  color: #1F4037;
}

.body-cart__total {
  font-weight: 600;
  color: #1F4037;
}

.bottom-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 4.375rem;
     -moz-column-gap: 4.375rem;
          column-gap: 4.375rem;
  row-gap: 1.25rem;
}

.bottom-cart__total {
  font-weight: 600;
  color: #1F4037;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-cart__total span {
  color: #777;
  font-weight: 300;
  font-size: 1rem;
  margin-top: 0.1875rem;
}

.bottom-cart__btn {
  background-color: #335240;
  padding: 1.1875rem 1.875rem;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.page-finalization__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.body-finalization {
  background-color: #F3F3F3;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.body-finalization__top {
  border-bottom: 1px solid #DCDCDC;
}

.body-finalization__title {
  color: #1F4037;
  font-weight: 600;
}

.body-finalization__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.body-finalization__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}

.body-finalization__input {
  -webkit-appearance: none;
  height: 3rem;
  padding: 0 1.25rem;
  background-color: #fff;
  border-radius: 0 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* outline: 2px solid transparent !important; */
  border: 2px solid transparent;
}

.body-finalization__input::-webkit-input-placeholder {
  color: #777;
}

.body-finalization__input::-moz-placeholder {
  color: #777;
}

.body-finalization__input:-ms-input-placeholder {
  color: #777;
}

.body-finalization__input::-ms-input-placeholder {
  color: #777;
}

.body-finalization__input::placeholder {
  color: #777;
}

.body-finalization__input:focus-visible,
.body-finalization__input:focus {
  border-color: #1F4037;
}

.body-finalization__delivery {
  border-bottom: 1px solid #DCDCDC;
}

.body-finalization__payment {
  border-bottom: 1px solid #DCDCDC;
}

.body-finalization__textarea {
  resize: vertical;
  min-height: 5.75rem;
  padding: 0.8125rem 1.25rem;
  outline: none;
  border: 2px solid transparent;
  border-radius: 0 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.body-finalization__textarea::-webkit-input-placeholder {
  color: #777;
}

.body-finalization__textarea::-moz-placeholder {
  color: #777;
}

.body-finalization__textarea:-ms-input-placeholder {
  color: #777;
}

.body-finalization__textarea::-ms-input-placeholder {
  color: #777;
}

.body-finalization__textarea::placeholder {
  color: #777;
}

.body-finalization__textarea:focus-visible {
  border: 2px solid #1F4037;
}

.tabs-delivery__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tabs-delivery__title {
  width: 100%;
  background-color: #D7D7D7;
  color: #777;
  padding: 0.8125rem 1.25rem;
  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: 0.9375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.tabs-delivery__title .tabs-delivery__svg {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}

.tabs-delivery__title._tab-active {
  color: #fff;
  text-shadow: 0 0 0.65px #fff, 0 0 0.65px #fff;
  background-color: #1F4037;
}

.tabs-delivery__title._tab-active .tabs-delivery__svg {
  opacity: 1;
  pointer-events: all;
}

.address-delivery__title {
  margin-bottom: 0.625rem;
}

.address-delivery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.address-delivery__info {
  max-width: 19.375rem;
  width: 100%;
}

.address-delivery__text {
  display: block;
  color: #777;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

.address-delivery__work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  color: #777;
  line-height: 1.4;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.625rem;
}

.address-delivery__img {
  padding-bottom: 26.25%;
  width: 100%;
}

.aside-finalization {
  max-width: 25.625rem;
  background-color: #F3F3F3;
}

.aside-finalization__title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.aside-finalization__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: 0.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: 0.5rem;
}

.aside-finalization__name {
  color: #1F4037;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 600;
  row-gap: 0.3125rem;
}

.aside-finalization__name span {
  font-weight: 600;
}

.aside-finalization__art {
  font-size: 0.875rem;
  color: #777;
  font-weight: 300;
}

.aside-finalization__decsr {
  font-size: 0.875rem;
  color: #1F4037;
  font-weight: 300;
}

.aside-finalization__body {
  padding: 1.25rem 0;
  border-bottom: 1px solid #DCDCDC;
}

.aside-finalization__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777;
}

.aside-finalization__item span {
  font-weight: 600;
  color: #1F4037;
  /*font-family: "GalanoGrotesque";*/
}

.aside-finalization__item:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.aside-finalization__total {
  padding: 1.25rem 0;
  border-bottom: 1px solid #DCDCDC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777;
}

.aside-finalization__total span {
  font-weight: 700;
  color: #1F4037;
  font-size: 1.25rem;
  font-family: "GalanoGrotesque";
}

.aside-finalization__bottom {
  padding-top: 1.25rem;
}

.aside-finalization__bottom .checkbox {
  margin-bottom: 1.25rem;
}

.aside-finalization__btn {
  font-weight: 600;
  padding: 1.1875rem 1.875rem;
  background-color: #335240;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}

.page-about__title {
  text-align: left;
}

.page-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.page-about__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  line-height: 1.5;
}

.page-about__text p:not(:last-child) {
  margin-bottom: 1.25rem;
}

.page-about__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.page-about__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-product__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  gap: 1.875rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.page-product__sliders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  min-width: 0;
  width: 100%;
  max-width: 27.5rem;
}

.page-product__slider {
  min-width: 0;
  max-width: 22.5rem;
}

.page-product__wrapper {
  min-width: 0;
}

.page-product__slide {
  max-width: 22.5rem;
  position: relative;
}

.page-product__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-product__reduction {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.3125rem 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8125rem;
  background-color: #F2D5A0;
}

.page-product__info {
  max-width: 46.875rem;
  width: 100%;
}

.page-product__title {
  margin-bottom: 1.5625rem;
}

.page-product__aval {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}

.page-product__sizes {
  margin-bottom: 1.25rem;
}

.page-product__block {
  margin-bottom: 1.5625rem;
  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: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-product__price {
  color: #1F4037;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0.8;
}

.page-product__price span {
  color: #777;
  text-decoration: line-through;
  font-weight: 500;
}

.page-product__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.875rem 1.5rem;
  background-color: #1F4037;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 600;
  color: #fff;
}

.thumbs-product__slider {
  min-width: 0;
}

.thumbs-product__slide {
  opacity: 0.5;
  cursor: pointer;
  overflow: hidden;
}

.thumbs-product__slide.swiper-slide-thumb-active {
  opacity: 1;
}

.thumbs-product__slide img {
  width: 3.75rem;
  height: 6.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-tabs__title {
  font-size: 1.125rem;
  color: #b9b9b9;
  padding: 0.75rem 1.5rem;
}

.product-tabs__title._tab-active {
  background-color: #F3F3F3;
  color: #1F4037;
  text-shadow: 0 0 0.65px #1F4037, 0 0 0.65px #1F4037;
}

.product-tabs__body {
  background-color: #F3F3F3;
  padding: 1.25rem 1.875rem;
  /*min-height: 20rem;*/
}

.product-tabs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.6;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product-tabs__item:not(:last-child) {
  margin-bottom: 0.625rem;
}

.product-tabs__name {
  color: #777;
  font-weight: 300;
}

.product-tabs__value {
  font-weight: 500;
  text-align: right;
}

.product-tabs__text {
  line-height: 1.5;
}

.product-tabs__text p:not(:last-child) {
  margin-bottom: 1.25rem;
}

.discounted-product {
  margin: 0;
  background-color: #F3F3F3;
}

.no-webp .products-head{
  background: url("../img/promo-img.jpg") center/cover no-repeat; }

.products-head {
  padding: 11.875rem 0 3.125rem;
  position: relative;
}

.products-head::before {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.products-head__body {
  position: relative;
  z-index: 2;
}

.products-head__title {
  color: #fff;
  text-align: center;
}

.catalog {
  padding-top: 2.5rem;
}

.catalog__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}

.catalog__head:not(:last-child) {
  margin-bottom: 1.25rem;
}

.catalog__head-text {
  color: #777;
  font-weight: 500;
}

.catalog__products {
  display: -ms-flex;
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  row-gap: 2.5rem;
  flex-direction: row;
  flex-wrap: wrap;
}

.catalog__products:not(:last-child) {
  margin-bottom: 2.1875rem;
}

.pagging {
  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;
  gap: 1.25rem;
}

.pagging__arrow {
  width: 4rem;
  height: 4rem;
  padding: 0.3125rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #BCBCBC;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}

.pagging__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.pagging__item {
  width: 4rem;
  height: 4rem;
  padding: 0.3125rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #777;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.pagging__item._active {
  font-weight: 600;
  color: #1F4037;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.search {
  position: fixed;
  width: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  height: 70px;
  background: #FFF;
  box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  z-index: 17;
  transform: translateY(-100%);
  transition: all 0.3s ease 0s;
  display: flex;
  align-items: center;
}
.search._active{
  transform: translateY(0px);
}
.search__container {
  width: 100%;
  margin: 0px auto;
  display: flex;
  align-items: center;
  column-gap: 20px;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.search__input {
  color: #0D0D0D;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  flex: 1 1 auto;
  min-width: 0px;
  max-width: 100%;
}
.search__input:focus{
  outline: none;
}
.search__input::placeholder{
  color: #0D0D0D;
}
.search__btn {
  flex: 0 0 30px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.search__close {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}
.search__close img{
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}


.product-add {
  position: fixed;
  z-index: 3;
  top: 130px;
  right: calc((100% - 1330px) / 2 + 20px);
  background: var(--white, #FFF);
  box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.10), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
  padding: 20px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease 0s;
}
.product-add._active{
  opacity: 1;
  transform: translateX(0px);
  pointer-events: all;
}
.product-add__wrapper {
}
.product-add__text {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #1F4037;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product-add__text::before{
  content: "";
  flex: 0 0 26px;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  display: inline-block;
  background: url(../img/check-add.svg) center / 22px no-repeat ,#1F4037;
}
.product-add__actions {
  margin-top: 13px;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.product-add__cart {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding: 12px 20px;
  background: #335240;
  transition: all 0.3s ease 0s;
}
.product-add__cart:hover{
  background: #1F4037;
}
.product-add__continue {
  color: #1F4037;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  column-gap: 5px;
}
.product-add__continue:hover{
  text-decoration: underline;
}
.product-add__continue img{
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.gm-fullscreen-control, .gm-svpc{
  display: none !important;
}

.body-finalization__input:focus-visible,.body-finalization__input:focus-within,.body-finalization__input:target, .body-finalization__input:focus {
  border-color: #1F4037!important;
}

.body-finalization__input {
  outline: none;
}

li.menu__item.active a {
  color: #f2d5a0;
}

.product__like {
  position: absolute;
  left: 5px;
  top: 5px;
  padding: 5px;
  background: #d7d7d799;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.product__like._liked {
  background: #335240;
}
.address-delivery__inner {
  margin-bottom: 15px;
}
div.address-delivery__text {
  font-weight: 600;
}

.error h2.body-finalization__title {
  border-bottom: 1px solid red;
}

.address-delivery__inner.store_ch.active {
  background: #335240;
  color: white;
  padding: 5px;
}
.store_ch.active .address-delivery__text, .store_ch.active .address-delivery__text, .store_ch.active .address-delivery__work {
  color: white;
}
.store_ch .address-delivery__info{
  cursor: pointer;
}
.footer__item a.footer__link {
  line-height: 20px;
}
.page-cart__body.body-cart {
  padding-bottom: 15px;
}

a.header__phone.mobile-phone {
  display: none;
}

.header__phone span {
  font-family: "GalanoGrotesque";
  font-size: 1.425rem;
}
.phone_footer {
  font-family: "GalanoGrotesque";
  font-size: 1.125rem;
}
.font-Galano{
  font-family: "GalanoGrotesque"!important;
}
.page-product__price {
  font-family: "GalanoGrotesque";
}
.body-cart__price, .body-cart__total, .bottom-cart__total p {
  font-family: "GalanoGrotesque";
}
header.header:hover {
  background: #1F4037;
}

.hytPlayerWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
.hytPlayerWrap iframe{
  width: 100%;
  height: 275%;
  position: relative;
  overflow: hidden;
  top: -80%;
}

.viza-mscard img{
  width: 100px;
  margin-top: 30px;
}

.catalog__head.page-contacts__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 75px;
}
a.page-product__slide.swiper-slide.zoom_image {
  height: 100%;
  display: block;
  cursor: zoom-in;
}

.product-item__reduction.more_active {
  top: 25px;
}
.page-product__slide .more_active {
  top: 25px;
}

.mdl_font_ru {
  font-family: 'Montserrat', sans-serif;
}
.product-item__price.mdl_font_ru span, .product-item__oldprice.mdl_font_ru span{
  font-family: "GalanoGrotesque";
}

button.page-product__btn.off_stock {
  background: #b8b7b7;
}
button.product-item_.off_stock {
  background: #b8b7b7;
}
.page-product_stock_off {
  position: absolute;
  background: #cbcbcb75;
  width: 100%;
  height: 100%;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  display: none;
}
.page-product_stock_off.active {
  display: flex;
}
button.tabs-delivery__title.disable {
  pointer-events: none;
}
.page-product_stock_off span {
  padding: 10px;
  border: 2px solid red;
  color: red;
  background: #ffffffc9;
  font-size: 18px;
}

a:focus-visible {
  outline: none;
  text-decoration: none;
}

@media (min-width: 29.99875em) {
  .page-product__slider .swiper-pagination {
    display: none;
  }
}

@media (min-width: 47.99875em) {
  .spollers__title {
    pointer-events: none;
  }


}

@media (min-width: 61.99875em) {
  .quantity {
    margin: 0 auto;
  }
  .phone_footer_on {
    display: none;
  }
}

@media (min-width: 83.125em) {
  .options-finalization {
    gap: 2.0625rem;
  }

  .quantity__input input {
    font-size: 1.25rem;
  }

  .breadcrumbs__item {
    font-size: 1rem;
  }

  .title {
    font-size: 2.5rem;
  }

  .title {
    margin-bottom: 1.875rem;
  }

  .services {
    margin-bottom: 5rem;
  }

  .services__title {
    font-size: 2.5rem;
  }

  .services__items {
    gap: 1.875rem;
  }

  .item-services {
    padding: 1.875rem;
  }

  .header__phone {
    margin-right: 4.125rem;
  }

  .promo {
    margin-bottom: 3.75rem;
  }

  .discounted {
    margin-bottom: 5rem;
  }

  .category {
    margin-bottom: 5rem;
  }

  .about {
    padding-top: 5.75rem;
  }

  .about {
    padding-bottom: 5.75rem;
  }

  .about__title {
    font-size: 2.5rem;
  }

  .page-order {
    padding-top: 5rem;
  }

  .page-order__inner {
    padding: 2.5rem;
  }

  .page-order__img {
    width: 5.75rem;
  }

  .page-order__img {
    height: 5.75rem;
  }

  .page-order__title {
    font-size: 1.625rem;
  }

  .page-contacts {
    margin-bottom: 5rem;
  }

  .item-contacts__info {
    padding: 2.5rem;
  }

  .item-contacts__info {
    gap: 1.875rem;
  }

  .item-contacts__title {
    font-size: 1.13rem;
  }

  .item-contacts__text {
    font-size: 1.25rem;
  }

  .page-delivery {
    margin-bottom: 4.375rem;
  }

  .item-delivery__title {
    font-size: 1.625rem;
  }

  .page-cart {
    margin-bottom: 5rem;
  }

  .body-cart__title {
    font-size: 1.25rem;
  }

  .body-cart__price {
    font-size: 1.25rem;
  }

  .body-cart__total {
    font-size: 1.25rem;
  }

  .bottom-cart__total {
    font-size: 1.5rem;
  }

  .page-finalization {
    margin-bottom: 5rem;
  }

  .page-finalization__inner {
    gap: 1.875rem;
  }

  .body-finalization {
    padding: 2.5rem;
  }

  .body-finalization__top {
    padding-bottom: 2.5rem;
  }

  .body-finalization__title {
    font-size: 1.625rem;
  }

  .body-finalization__title {
    margin-bottom: 1.875rem;
  }

  .body-finalization__blocks {
    gap: 2.0625rem;
  }

  .body-finalization__blocks:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .body-finalization__delivery {
    padding-bottom: 2.5rem;
  }

  .body-finalization__delivery {
    padding-top: 2.5rem;
  }

  .body-finalization__payment {
    padding-bottom: 2.5rem;
  }

  .body-finalization__payment {
    padding-top: 2.5rem;
  }

  .body-finalization__message {
    padding-top: 2.5rem;
  }

  .tabs-delivery__navigation {
    gap: 2.0625rem;
  }

  .tabs-delivery__navigation {
    margin-bottom: 1.875rem;
  }

  .address-delivery__inner {
    gap: 1.875rem;
  }

  .aside-finalization {
    padding: 1.875rem;
  }

  .page-about {
    margin-bottom: 5rem;
  }

  .page-product {
    margin-bottom: 5rem;
  }

  .page-product__title {
    font-size: 2.875rem;
  }

  .page-product__price {
    font-size: 2rem;
  }

  .page-product__price span {
    font-size: 1.5625rem;
  }

  .discounted-product {
    padding-top: 5rem;
  }

  .discounted-product {
    padding-bottom: 5rem;
  }

  .catalog {
    margin-bottom: 5rem;
  }
}

@media (max-width: 75em) {
  .about__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .search__close{
    transform: translateY(0px);
    position: static;
  }
}

@media (max-width: 64em) {
  .category__item-body {
    padding: 1.875rem;
  }

  .category__item-reverse .category__item-body {
    padding: 1.875rem;
  }

  .about__bg {
    height: 60%;
  }
}

@media (max-width: 62em) {
  .header__phone {
    margin-right: 1.875rem;
  }
}

@media (max-width: 20em) {
  .options-finalization {
    gap: 0.9375rem;
  }

  .quantity__input input {
    font-size: 0.875rem;
  }

  .breadcrumbs__item {
    font-size: 0.875rem;
  }

  .title {
    font-size: 1.625rem;
  }

  .title {
    margin-bottom: 1.25rem;
  }

  .services {
    margin-bottom: 3.125rem;
  }

  .services__title {
    font-size: 1.25rem;
  }

  .services__items {
    gap: 0.625rem;
  }

  .item-services {
    padding: 1.25rem;
  }

  .promo {
    margin-bottom: 1.5625rem;
  }

  .discounted {
    margin-bottom: 2.5rem;
  }

  .category {
    margin-bottom: 2.5rem;
  }

  .about {
    padding-bottom: 1.875rem;
  }

  .about__title {
    font-size: 1.3125rem;
  }

  .page-order {
    padding-top: 3.125rem;
  }

  .page-order__inner {
    padding: 1.25rem;
  }

  .page-order__img {
    width: 4.5rem;
  }

  .page-order__img {
    height: 4.5rem;
  }

  .page-order__title {
    font-size: 1.25rem;
  }

  .page-contacts {
    margin-bottom: 3.125rem;
  }

  .item-contacts__info {
    padding: 1.25rem;
  }

  .item-contacts__info {
    gap: 1.25rem;
  }

  .item-contacts__title {
    font-size: 1.125rem;
  }

  .item-contacts__text {
    font-size: 0.9375rem;
  }

  .page-delivery {
    margin-bottom: 3.125rem;
  }

  .item-delivery__title {
    font-size: 1.125rem;
  }

  .page-cart {
    margin-bottom: 3.125rem;
  }

  .body-cart__title {
    font-size: 0.9375rem;
  }

  .body-cart__price {
    font-size: 0.875rem;
  }

  .body-cart__total {
    font-size: 0.875rem;
  }

  .bottom-cart__total {
    font-size: 1.375rem;
  }

  .page-finalization {
    margin-bottom: 2.5rem;
  }

  .page-finalization__inner {
    gap: 0.9375rem;
  }

  .body-finalization {
    padding: 0.9375rem;
  }

  .body-finalization__top {
    padding-bottom: 0.9375rem;
  }

  .body-finalization__title {
    font-size: 1.375rem;
  }

  .body-finalization__title {
    margin-bottom: 1.25rem;
  }

  .body-finalization__blocks {
    gap: 0.9375rem;
  }

  .body-finalization__blocks:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .body-finalization__delivery {
    padding-bottom: 0.9375rem;
  }

  .body-finalization__delivery {
    padding-top: 0.9375rem;
  }

  .body-finalization__payment {
    padding-bottom: 0.9375rem;
  }

  .body-finalization__payment {
    padding-top: 0.9375rem;
  }

  .body-finalization__message {
    padding-top: 0.9375rem;
  }

  .tabs-delivery__navigation {
    gap: 0.9375rem;
  }

  .tabs-delivery__navigation {
    margin-bottom: 1.25rem;
  }

  .address-delivery__inner {
    gap: 0.9375rem;
  }

  .aside-finalization {
    padding: 0.9375rem;
  }

  .page-about {
    margin-bottom: 3.125rem;
  }

  .page-product {
    margin-bottom: 2.5rem;
  }

  .page-product__title {
    font-size: 1.375rem;
  }

  .page-product__price {
    font-size: 1.625rem;
  }

  .page-product__price span {
    font-size: 1.125rem;
  }

  .discounted-product {
    padding-top: 3.125rem;
  }

  .discounted-product {
    padding-bottom: 3.125rem;
  }

  .catalog {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 87.5em) {
  .discounted__navigation {
    display: none;
  }

  .discounted .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .discounted__more {
    margin: 1.875rem auto 0;
  }
}

@media (max-width: 83.125em) {
  .aside-finalization {
    max-width: 21.25rem;
  }
}

@media (max-width: 74.9375em) {
  .footer-spollers {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media (max-width: 74.9375em) and (max-width: 40.62375em) {
  .footer-spollers {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}

@media (max-width: 61.99875em) {
  .item-services__img {
    height: 5.125rem;
  }

  .item-services__img svg {
    width: 100%;
    height: 100%;
  }

  .header__phone {
    display: none;
  }

  .menu__list {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

  .item-contacts__block {
    -ms-grid-rows: (1fr)[3];
    grid-template-rows: repeat(3, 1fr);
  }

  .item-contacts__text:nth-child(1),
  .item-contacts__text:nth-child(2) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .page-cart__inner {
    padding: 1.25rem 1rem;
  }

  .page-cart__head {
    gap: 0.5rem;
  }

  .body-cart {
    gap: 0.3125rem;
  }

  .page-finalization__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .body-finalization {
    max-width: 100%;
    width: 100%;
  }

  .aside-finalization {
    max-width: 100%;
    width: 100%;
  }

  .page-product__sliders {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 100%;
  }

  .page-product__slider {
    max-width: 100%;
  }

  .page-product__slide {
    max-width: 100%;
  }

  .thumbs-product__slider {
    width: 100%;
  }
}

@media (max-width: 56.24875em) {
  .page-cart__head {
    -ms-grid-columns: 260px 90px 126px 90px 24px;
    grid-template-columns: 260px 90px 126px 90px 24px;
  }

  .body-cart {
    -ms-grid-columns: 260px 90px 126px 90px 24px;
    grid-template-columns: 260px 90px 126px 90px 24px;
  }
}

@media (max-width: 53.125em) {
  .item-contacts {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .item-contacts__block {
    -ms-grid-rows: (1fr)[2];
    grid-template-rows: repeat(2, 1fr);
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .item-contacts__text:nth-child(1),
  .item-contacts__text:nth-child(2) {
    grid-column: auto;
  }

  .item-contacts__img {
    padding-bottom: 33.5164835165%;
    max-width: 100%;
  }
}

@media (max-width: 47.99875em) {
  .quantity {
    width: 100px;
  }

  .header {
    padding: 0.625rem 0 0rem;
  }

  .header::before {
    content: "";
    position: fixed;
    left: 0;
    top: -150%;
    width: 100%;
    height: 90px;
    background-color: #1F4037;
    z-index: 16;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .menu-open .header::before {
    top: 0;
  }

  .header__inner {
    gap: 0;
  }

  .header__top {
    -ms-grid-columns: 1fr 123px 1fr;
    grid-template-columns: 1fr 123px 1fr;
    position: relative;
    z-index: 17;
    padding-bottom: 0.625rem;
  }

  .menu-open .header__top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px 10px;
    margin: 0 -20px;
  }

  .header__languges {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .header__logo {
    width: 7.6875rem;
  }

  .menu__body {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 15;
    height: 100%;
    width: 100%;
    background-color: #1F4037;
    padding: 5.625rem 0;
    overflow-x: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    pointer-events: none;
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .menu-open .menu__body {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    pointer-events: all;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .menu__list:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .menu__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu__link {
    display: block;
    padding: 1.875rem;
    text-align: center;
    font-family: LibreBaskerville;
    font-weight: 400;
    font-size: 1.6875rem;
    text-transform: capitalize;
  }

  .menu__socials {
    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;
    gap: 1.125rem;
  }

  a.header__phone.mobile-phone {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .icon-menu {
    display: -ms-grid;
    display: grid;
    place-items: center;
    position: relative;
    width: 2rem;
    height: 2rem;
    overflow: hidden;
    z-index: 17;
  }

  .icon-menu svg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }

  .icon-menu__burger {
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  .icon-menu__close {
    -webkit-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  .menu-open .icon-menu .icon-menu__burger {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }

  .menu-open .icon-menu .icon-menu__close {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }

  .category__item {
    min-height: 25rem;
  }

  .category__item-body {
    padding: 1.25rem;
  }

  .category__item-reverse .category__item-body {
    padding: 1.25rem;
  }

  .about {
    padding-top: 32.5rem;
  }

  .about__title:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .about__text:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .item-delivery:not(:first-child) {
    padding-top: 1.25rem;
  }

  .item-delivery:not(:last-child) {
    padding-bottom: 1.25rem;
  }

  .head-cart__item.tac {
    text-align: left;
    padding-left: 0.9375rem;
  }

  .products-head {
    padding: 9.0625rem 0 3.125rem;
  }
}

@media (max-width: 47.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 43.74875em) {
  .quantity {
    height: 100%;
  }

  .page-cart__head {
    display: none;
  }

  .body-cart {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
  }

  .body-cart__item {
    display: -ms-grid;
    display: grid;
    height: 100%;
  }

  .body-cart__item:first-child {
    -ms-grid-column-span: 3;
    grid-column: span 3;
    padding-right: 1.875rem;
  }

  .body-cart__item:last-child {
    position: absolute;
    top: 0.625rem;
    right: 0;
    height: auto;
  }

  .body-cart__span {
    display: block;
    font-weight: 500;
    color: #777;
    font-size: 0.875rem;
    margin-bottom: 0.3125rem;
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
  }

  .body-cart__price {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .body-cart__total {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .bottom-cart {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }

  .bottom-cart__btn {
    width: 100%;
  }
}

@media (max-width: 40.62375em) {
  .options-finalization {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .title {
    text-align: center;
  }

  .footer__top {
    padding: 2.5rem 0;
  }

  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__socials {
    -ms-grid-columns: (44px)[4];
    grid-template-columns: repeat(4, 44px);
    -ms-grid-row-align: center;
        align-self: center;
    gap: 1.125rem;
  }

  .footer__copy {
    -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;
  }

  .footer-spollers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer-spollers .spollers__title {
    padding-right: 1.875rem;
    border-bottom: 1px solid #E7E7E7;
  }

  .footer-spollers .spollers__body {
    padding: 1.25rem 0 0;
  }

  .page-cart__title {
    text-align: left !important;
  }

  .page-finalization__title {
    text-align: left;
  }

  .body-finalization__blocks {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .tabs-delivery__navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .address-delivery__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .address-delivery__img {
    padding-bottom: 46.25%;
  }

  .page-about__title {
    text-align: center;
  }

  .page-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .page-about__text {
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .page-about__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .page-product__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .page-product__title {
    text-align: left;
    margin-bottom: 0.9375rem;
  }

  .page-product__aval {
    margin-bottom: 0.9375rem;
  }

  .page-product__sizes {
    margin-bottom: 0.9375rem;
  }

  .page-product__block {
    margin-bottom: 0.9375rem;
  }

  .product-tabs__body {
    padding: 1.25rem;
  }
}

@media (max-width: 40.625em) {
  .services__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .pagging li:nth-child(3) {
    /*display: none;*/
  }
}

@media (max-width: 37.5em) {
  .header::before {
    height: 70px;
  }

  .header__top {
    -ms-grid-columns: 1fr 90px 1fr;
    grid-template-columns: 1fr 90px 1fr;
  }

  .header__logo {
    width: 5.625rem;
    height: 2.75rem;
  }

  .menu__body {
    padding: 4.375rem 0;
  }
}

@media (max-width: 1380px) {
  .search__input {
    max-width: 93%;
  }
}

  @media (max-width: 34.375em) {
  .category__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .category__item-img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding-bottom: 88.8888888889%;
  }

  .category__item-body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .category__item-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .category__item-text {
    text-align: center;
  }

  .category__item-link {
    margin: 0 auto;
  }

  .about {
    background-color: #fff;
  }

  .about__bg {
    height: 40%;
  }

  .about__info {
    padding: 1.25rem;
    margin: 0 -20px;
  }

  .about__title {
    text-align: center;
  }

  .about__text {
    text-align: center;
  }

  .about__link {
    margin: 0 auto;
  }

  .item-contacts__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    justify-items: center;
  }

  .item-contacts__text {
    text-align: center;
  }

  .item-contacts__img {
    padding-bottom: 76.25%;
  }

  .pagging {
    gap: 0.375rem;
  }

  .pagging__arrow {
    width: 3rem;
    height: 3rem;
  }

  .pagging__list {
    gap: 0.375rem;
  }

  .pagging__item {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 34.375em) and (max-width: 34.375em) {
  .about {
    padding-top: 15rem;
  }
}

@media (max-width: 31.25em) {
  .header__languges {
    width: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }

  .menu__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.25rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu__link {
    font-size: 1.4375rem;
    padding: 1.25rem;
  }
}

@media (max-width: 29.99875em) {
  .services__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .menu__list:not(:last-child) {
    margin-bottom: 1.25rem;
  }

  .promo__slide-ibg {
    height: 15rem;
  }

  .body-cart {
    gap: 0.625rem;
  }

  .body-cart__wrapper {
    gap: 0.625rem;
  }

  .body-finalization__input {
    width: 100%;
  }

  .page-about__img {
    margin: 0 auto;
  }

  .page-about__img img {
    height: 15rem;
  }

  .page-product__wrapper {
    margin-bottom: 0.9375rem;
  }

  .page-product__btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .thumbs-product__slider {
    display: none;
  }

  .products-head {
    padding: 6.5625rem 0 2.5rem;
  }

  .product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex: 0 0 calc((100% - 0px)/ 1);
  }

  .item-contacts__title {
    justify-content: center;
    text-align: center;
  }
  details.spollers__item.text-center .footer__list{
    align-items: center;
    text-align: center;
  }

  [class*=-ibg] img {
    width: auto;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 22.4375em) {
  .quantity {
    width: 80px;
  }

  .quantity__button::before,
  .quantity__button::after {
    width: 12px;
    margin: 0px 0px 0px -6px;
  }
}

@media (max-width: 22.1875em) {
  .header__top {
    -ms-grid-columns: 1fr 70px 1fr;
    grid-template-columns: 1fr 70px 1fr;
  }

  .header__logo {
    width: 4.375rem;
  }
}

@media (max-width: 22.49875em) {
  .body-cart__span.tac {
    padding-left: 0.5rem;
  }
}

@media (max-width: 22.5em) {
  .aside-finalization__name {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .product-tabs__title {
    font-size: 1rem;
  }

  .pagging__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  .pagging__item {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (min-width: 20em) and (max-width: 83.125em) {
@supports (gap: clamp( 0.9375rem , 0.5810643564rem  +  1.7821782178vw , 2.0625rem )) {
    .options-finalization {
      gap: clamp( 0.9375rem , 0.5810643564rem  +  1.7821782178vw , 2.0625rem );
    }
}

@supports not (gap: clamp( 0.9375rem , 0.5810643564rem  +  1.7821782178vw , 2.0625rem )) {
    .options-finalization {
      gap: calc(0.9375rem + 1.125 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 0.875rem , 0.7561881188rem  +  0.5940594059vw , 1.25rem )) {
    .quantity__input input {
      font-size: clamp( 0.875rem , 0.7561881188rem  +  0.5940594059vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.7561881188rem  +  0.5940594059vw , 1.25rem )) {
    .quantity__input input {
      font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 0.875rem , 0.8353960396rem  +  0.198019802vw , 1rem )) {
    .breadcrumbs__item {
      font-size: clamp( 0.875rem , 0.8353960396rem  +  0.198019802vw , 1rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.8353960396rem  +  0.198019802vw , 1rem )) {
    .breadcrumbs__item {
      font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.625rem , 1.3477722772rem  +  1.3861386139vw , 2.5rem )) {
    .title {
      font-size: clamp( 1.625rem , 1.3477722772rem  +  1.3861386139vw , 2.5rem );
    }
}

@supports not (font-size: clamp( 1.625rem , 1.3477722772rem  +  1.3861386139vw , 2.5rem )) {
    .title {
      font-size: calc(1.625rem + 0.875 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .title {
      margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .title {
      margin-bottom: calc(1.25rem + 0.625 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .services {
      margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .services {
      margin-bottom: calc(3.125rem + 1.875 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.25rem , 0.853960396rem  +  1.9801980198vw , 2.5rem )) {
    .services__title {
      font-size: clamp( 1.25rem , 0.853960396rem  +  1.9801980198vw , 2.5rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 0.853960396rem  +  1.9801980198vw , 2.5rem )) {
    .services__title {
      font-size: calc(1.25rem + 1.25 * (100vw - 20rem) / 63.125);
    }
}

@supports (gap: clamp( 0.625rem , 0.228960396rem  +  1.9801980198vw , 1.875rem )) {
    .services__items {
      gap: clamp( 0.625rem , 0.228960396rem  +  1.9801980198vw , 1.875rem );
    }
}

@supports not (gap: clamp( 0.625rem , 0.228960396rem  +  1.9801980198vw , 1.875rem )) {
    .services__items {
      gap: calc(0.625rem + 1.25 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .item-services {
      padding: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem );
    }
}

@supports not (padding: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .item-services {
      padding: calc(1.25rem + 0.625 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 1.5625rem , 0.8694306931rem  +  3.4653465347vw , 3.75rem )) {
    .promo {
      margin-bottom: clamp( 1.5625rem , 0.8694306931rem  +  3.4653465347vw , 3.75rem );
    }
}

@supports not (margin-bottom: clamp( 1.5625rem , 0.8694306931rem  +  3.4653465347vw , 3.75rem )) {
    .promo {
      margin-bottom: calc(1.5625rem + 2.1875 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem )) {
    .discounted {
      margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem )) {
    .discounted {
      margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem )) {
    .category {
      margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem )) {
    .category {
      margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding-bottom: clamp( 1.875rem , 0.6472772277rem  +  6.1386138614vw , 5.75rem )) {
    .about {
      padding-bottom: clamp( 1.875rem , 0.6472772277rem  +  6.1386138614vw , 5.75rem );
    }
}

@supports not (padding-bottom: clamp( 1.875rem , 0.6472772277rem  +  6.1386138614vw , 5.75rem )) {
    .about {
      padding-bottom: calc(1.875rem + 3.875 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.3125rem , 0.9362623762rem  +  1.8811881188vw , 2.5rem )) {
    .about__title {
      font-size: clamp( 1.3125rem , 0.9362623762rem  +  1.8811881188vw , 2.5rem );
    }
}

@supports not (font-size: clamp( 1.3125rem , 0.9362623762rem  +  1.8811881188vw , 2.5rem )) {
    .about__title {
      font-size: calc(1.3125rem + 1.1875 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding-top: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .page-order {
      padding-top: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem );
    }
}

@supports not (padding-top: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .page-order {
      padding-top: calc(3.125rem + 1.875 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding: clamp( 1.25rem , 0.853960396rem  +  1.9801980198vw , 2.5rem )) {
    .page-order__inner {
      padding: clamp( 1.25rem , 0.853960396rem  +  1.9801980198vw , 2.5rem );
    }
}

@supports not (padding: clamp( 1.25rem , 0.853960396rem  +  1.9801980198vw , 2.5rem )) {
    .page-order__inner {
      padding: calc(1.25rem + 1.25 * (100vw - 20rem) / 63.125);
    }
}

@supports (width: clamp( 4.5rem , 4.103960396rem  +  1.9801980198vw , 5.75rem )) {
    .page-order__img {
      width: clamp( 4.5rem , 4.103960396rem  +  1.9801980198vw , 5.75rem );
    }
}

@supports not (width: clamp( 4.5rem , 4.103960396rem  +  1.9801980198vw , 5.75rem )) {
    .page-order__img {
      width: calc(4.5rem + 1.25 * (100vw - 20rem) / 63.125);
    }
}

@supports (height: clamp( 4.5rem , 4.103960396rem  +  1.9801980198vw , 5.75rem )) {
    .page-order__img {
      height: clamp( 4.5rem , 4.103960396rem  +  1.9801980198vw , 5.75rem );
    }
}

@supports not (height: clamp( 4.5rem , 4.103960396rem  +  1.9801980198vw , 5.75rem )) {
    .page-order__img {
      height: calc(4.5rem + 1.25 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.25rem , 1.1311881188rem  +  0.5940594059vw , 1.625rem )) {
    .page-order__title {
      font-size: clamp( 1.25rem , 1.1311881188rem  +  0.5940594059vw , 1.625rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 1.1311881188rem  +  0.5940594059vw , 1.625rem )) {
    .page-order__title {
      font-size: calc(1.25rem + 0.375 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .page-contacts {
      margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .page-contacts {
      margin-bottom: calc(3.125rem + 1.875 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding: clamp( 1.25rem , 0.853960396rem  +  1.9801980198vw , 2.5rem )) {
    .item-contacts__info {
      padding: clamp( 1.25rem , 0.853960396rem  +  1.9801980198vw , 2.5rem );
    }
}

@supports not (padding: clamp( 1.25rem , 0.853960396rem  +  1.9801980198vw , 2.5rem )) {
    .item-contacts__info {
      padding: calc(1.25rem + 1.25 * (100vw - 20rem) / 63.125);
    }
}

@supports (gap: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .item-contacts__info {
      gap: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem );
    }
}

@supports not (gap: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .item-contacts__info {
      gap: calc(1.25rem + 0.625 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.125rem , 1.0853960396rem  +  0.198019802vw , 1.25rem )) {
    .item-contacts__title {
      font-size: clamp( 1.125rem , 1.0853960396rem  +  0.198019802vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 1.125rem , 1.0853960396rem  +  0.198019802vw , 1.25rem )) {
    .item-contacts__title {
      font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 0.9375rem , 0.838490099rem  +  0.495049505vw , 1.25rem )) {
    .item-contacts__text {
      font-size: clamp( 0.9375rem , 0.838490099rem  +  0.495049505vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 0.9375rem , 0.838490099rem  +  0.495049505vw , 1.25rem )) {
    .item-contacts__text {
      font-size: calc(0.9375rem + 0.3125 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 3.125rem , 2.728960396rem  +  1.9801980198vw , 4.375rem )) {
    .page-delivery {
      margin-bottom: clamp( 3.125rem , 2.728960396rem  +  1.9801980198vw , 4.375rem );
    }
}

@supports not (margin-bottom: clamp( 3.125rem , 2.728960396rem  +  1.9801980198vw , 4.375rem )) {
    .page-delivery {
      margin-bottom: calc(3.125rem + 1.25 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.125rem , 0.9665841584rem  +  0.7920792079vw , 1.625rem )) {
    .item-delivery__title {
      font-size: clamp( 1.125rem , 0.9665841584rem  +  0.7920792079vw , 1.625rem );
    }
}

@supports not (font-size: clamp( 1.125rem , 0.9665841584rem  +  0.7920792079vw , 1.625rem )) {
    .item-delivery__title {
      font-size: calc(1.125rem + 0.5 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .page-cart {
      margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .page-cart {
      margin-bottom: calc(3.125rem + 1.875 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 0.9375rem , 0.838490099rem  +  0.495049505vw , 1.25rem )) {
    .body-cart__title {
      font-size: clamp( 0.9375rem , 0.838490099rem  +  0.495049505vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 0.9375rem , 0.838490099rem  +  0.495049505vw , 1.25rem )) {
    .body-cart__title {
      font-size: calc(0.9375rem + 0.3125 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 0.875rem , 0.7561881188rem  +  0.5940594059vw , 1.25rem )) {
    .body-cart__price {
      font-size: clamp( 0.875rem , 0.7561881188rem  +  0.5940594059vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.7561881188rem  +  0.5940594059vw , 1.25rem )) {
    .body-cart__price {
      font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 0.875rem , 0.7561881188rem  +  0.5940594059vw , 1.25rem )) {
    .body-cart__total {
      font-size: clamp( 0.875rem , 0.7561881188rem  +  0.5940594059vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.7561881188rem  +  0.5940594059vw , 1.25rem )) {
    .body-cart__total {
      font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.375rem , 1.3353960396rem  +  0.198019802vw , 1.5rem )) {
    .bottom-cart__total {
      font-size: clamp( 1.375rem , 1.3353960396rem  +  0.198019802vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 1.3353960396rem  +  0.198019802vw , 1.5rem )) {
    .bottom-cart__total {
      font-size: calc(1.375rem + 0.125 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem )) {
    .page-finalization {
      margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem )) {
    .page-finalization {
      margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 63.125);
    }
}

@supports (gap: clamp( 0.9375rem , 0.640470297rem  +  1.4851485149vw , 1.875rem )) {
    .page-finalization__inner {
      gap: clamp( 0.9375rem , 0.640470297rem  +  1.4851485149vw , 1.875rem );
    }
}

@supports not (gap: clamp( 0.9375rem , 0.640470297rem  +  1.4851485149vw , 1.875rem )) {
    .page-finalization__inner {
      gap: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization {
      padding: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem );
    }
}

@supports not (padding: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization {
      padding: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding-bottom: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__top {
      padding-bottom: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem );
    }
}

@supports not (padding-bottom: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__top {
      padding-bottom: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.375rem , 1.2957920792rem  +  0.396039604vw , 1.625rem )) {
    .body-finalization__title {
      font-size: clamp( 1.375rem , 1.2957920792rem  +  0.396039604vw , 1.625rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 1.2957920792rem  +  0.396039604vw , 1.625rem )) {
    .body-finalization__title {
      font-size: calc(1.375rem + 0.25 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .body-finalization__title {
      margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .body-finalization__title {
      margin-bottom: calc(1.25rem + 0.625 * (100vw - 20rem) / 63.125);
    }
}

@supports (gap: clamp( 0.9375rem , 0.5810643564rem  +  1.7821782178vw , 2.0625rem )) {
    .body-finalization__blocks {
      gap: clamp( 0.9375rem , 0.5810643564rem  +  1.7821782178vw , 2.0625rem );
    }
}

@supports not (gap: clamp( 0.9375rem , 0.5810643564rem  +  1.7821782178vw , 2.0625rem )) {
    .body-finalization__blocks {
      gap: calc(0.9375rem + 1.125 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .body-finalization__blocks:not(:last-child) {
      margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .body-finalization__blocks:not(:last-child) {
      margin-bottom: calc(1.25rem + 0.625 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding-bottom: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__delivery {
      padding-bottom: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem );
    }
}

@supports not (padding-bottom: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__delivery {
      padding-bottom: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding-top: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__delivery {
      padding-top: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem );
    }
}

@supports not (padding-top: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__delivery {
      padding-top: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding-bottom: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__payment {
      padding-bottom: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem );
    }
}

@supports not (padding-bottom: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__payment {
      padding-bottom: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding-top: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__payment {
      padding-top: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem );
    }
}

@supports not (padding-top: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__payment {
      padding-top: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding-top: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__message {
      padding-top: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem );
    }
}

@supports not (padding-top: clamp( 0.9375rem , 0.442450495rem  +  2.4752475248vw , 2.5rem )) {
    .body-finalization__message {
      padding-top: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 63.125);
    }
}

@supports (gap: clamp( 0.9375rem , 0.5810643564rem  +  1.7821782178vw , 2.0625rem )) {
    .tabs-delivery__navigation {
      gap: clamp( 0.9375rem , 0.5810643564rem  +  1.7821782178vw , 2.0625rem );
    }
}

@supports not (gap: clamp( 0.9375rem , 0.5810643564rem  +  1.7821782178vw , 2.0625rem )) {
    .tabs-delivery__navigation {
      gap: calc(0.9375rem + 1.125 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .tabs-delivery__navigation {
      margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 1.051980198rem  +  0.9900990099vw , 1.875rem )) {
    .tabs-delivery__navigation {
      margin-bottom: calc(1.25rem + 0.625 * (100vw - 20rem) / 63.125);
    }
}

@supports (gap: clamp( 0.9375rem , 0.640470297rem  +  1.4851485149vw , 1.875rem )) {
    .address-delivery__inner {
      gap: clamp( 0.9375rem , 0.640470297rem  +  1.4851485149vw , 1.875rem );
    }
}

@supports not (gap: clamp( 0.9375rem , 0.640470297rem  +  1.4851485149vw , 1.875rem )) {
    .address-delivery__inner {
      gap: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding: clamp( 0.9375rem , 0.640470297rem  +  1.4851485149vw , 1.875rem )) {
    .aside-finalization {
      padding: clamp( 0.9375rem , 0.640470297rem  +  1.4851485149vw , 1.875rem );
    }
}

@supports not (padding: clamp( 0.9375rem , 0.640470297rem  +  1.4851485149vw , 1.875rem )) {
    .aside-finalization {
      padding: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .page-about {
      margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .page-about {
      margin-bottom: calc(3.125rem + 1.875 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem )) {
    .page-product {
      margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem )) {
    .page-product {
      margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.375rem , 0.8997524752rem  +  2.3762376238vw , 2.875rem )) {
    .page-product__title {
      font-size: clamp( 1.375rem , 0.8997524752rem  +  2.3762376238vw , 2.875rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 0.8997524752rem  +  2.3762376238vw , 2.875rem )) {
    .page-product__title {
      font-size: calc(1.375rem + 1.5 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.625rem , 1.5061881188rem  +  0.5940594059vw , 2rem )) {
    .page-product__price {
      font-size: clamp( 1.625rem , 1.5061881188rem  +  0.5940594059vw , 2rem );
    }
}

@supports not (font-size: clamp( 1.625rem , 1.5061881188rem  +  0.5940594059vw , 2rem )) {
    .page-product__price {
      font-size: calc(1.625rem + 0.375 * (100vw - 20rem) / 63.125);
    }
}

@supports (font-size: clamp( 1.125rem , 0.9863861386rem  +  0.6930693069vw , 1.5625rem )) {
    .page-product__price span {
      font-size: clamp( 1.125rem , 0.9863861386rem  +  0.6930693069vw , 1.5625rem );
    }
}

@supports not (font-size: clamp( 1.125rem , 0.9863861386rem  +  0.6930693069vw , 1.5625rem )) {
    .page-product__price span {
      font-size: calc(1.125rem + 0.4375 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding-top: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .discounted-product {
      padding-top: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem );
    }
}

@supports not (padding-top: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .discounted-product {
      padding-top: calc(3.125rem + 1.875 * (100vw - 20rem) / 63.125);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .discounted-product {
      padding-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 2.5309405941rem  +  2.9702970297vw , 5rem )) {
    .discounted-product {
      padding-bottom: calc(3.125rem + 1.875 * (100vw - 20rem) / 63.125);
    }
}

@supports (margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem )) {
    .catalog {
      margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 2.5rem , 1.7079207921rem  +  3.9603960396vw , 5rem )) {
    .catalog {
      margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 63.125);
    }
}
}

@media (min-width: 62em) and (max-width: 83.125em) {
@supports (margin-right: clamp( 1.875rem , -4.7285502959rem  +  10.650887574vw , 4.125rem )) {
    .header__phone {
      margin-right: clamp( 1.875rem , -4.7285502959rem  +  10.650887574vw , 4.125rem );
    }
}

@supports not (margin-right: clamp( 1.875rem , -4.7285502959rem  +  10.650887574vw , 4.125rem )) {
    .header__phone {
      margin-right: calc(1.875rem + 2.25 * (100vw - 62rem) / 21.125);
    }
}
}

@media (max-width: 74.9375em) and (min-width: 74.9375em) {
  .footer-spollers {
    -webkit-column-gap: 9.375rem;
       -moz-column-gap: 9.375rem;
            column-gap: 9.375rem;
  }
}

@media (max-width: 74.9375em) and (min-width: 40.62375em) and (max-width: 74.9375em) {
@supports ((-moz-column-gap: clamp( 1.875rem , -7.0041847292rem  +  21.8571272449vw , 9.375rem )) or (column-gap: clamp( 1.875rem , -7.0041847292rem  +  21.8571272449vw , 9.375rem ))) {
    .footer-spollers {
      -webkit-column-gap: clamp( 1.875rem , -7.0041847292rem  +  21.8571272449vw , 9.375rem );
         -moz-column-gap: clamp( 1.875rem , -7.0041847292rem  +  21.8571272449vw , 9.375rem );
              column-gap: clamp( 1.875rem , -7.0041847292rem  +  21.8571272449vw , 9.375rem );
    }
}

@supports not ((-moz-column-gap: clamp( 1.875rem , -7.0041847292rem  +  21.8571272449vw , 9.375rem )) or (column-gap: clamp( 1.875rem , -7.0041847292rem  +  21.8571272449vw , 9.375rem ))) {
    .footer-spollers {
      -webkit-column-gap: calc(1.875rem + 7.5 * (100vw - 40.62375rem) / 34.31375);
         -moz-column-gap: calc(1.875rem + 7.5 * (100vw - 40.62375rem) / 34.31375);
              column-gap: calc(1.875rem + 7.5 * (100vw - 40.62375rem) / 34.31375);
    }
}
}

@media (min-width: 47.99875em) and (max-width: 83.125em) {
@supports (padding-top: clamp( 5.75rem , 69.0529073698rem  +  -76.1538735276vw , 32.5rem )) {
    .about {
      padding-top: clamp( 5.75rem , 69.0529073698rem  +  -76.1538735276vw , 32.5rem );
    }
}

@supports not (padding-top: clamp( 5.75rem , 69.0529073698rem  +  -76.1538735276vw , 32.5rem )) {
    .about {
      padding-top: calc(32.5rem + -26.75 * (100vw - 47.99875rem) / 35.12625);
    }
}
}

@media (max-width: 34.375em) and (min-width: 83.125em) {
  .about {
    padding-top: 5.75rem;
  }
}

@media (max-width: 34.375em) and (min-width: 34.375em) and (max-width: 83.125em) {
@supports (padding-top: clamp( 5.75rem , 21.5224358974rem  +  -18.9743589744vw , 15rem )) {
    .about {
      padding-top: clamp( 5.75rem , 21.5224358974rem  +  -18.9743589744vw , 15rem );
    }
}

@supports not (padding-top: clamp( 5.75rem , 21.5224358974rem  +  -18.9743589744vw , 15rem )) {
    .about {
      padding-top: calc(15rem + -9.25 * (100vw - 34.375rem) / 48.75);
    }
}
}



@media (any-hover: hover) {
  .options-sizes__radio:hover {
    background-color: #d1d1d1;
  }

  .select__option:hover {
    background: #d9d9d9;
  }

  .select.select_sort .select__option:hover {
    background: #d9d9d9;
  }

  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: rgba(31, 64, 55, 0.5);
  }

  .breadcrumbs__link:hover {
    color: #F2D5A0;
  }

  .swiper-button-prev:hover path,
  .swiper-button-next:hover path {
    stroke: #1F4037;
  }

  .header__lang:hover {
    color: #F2D5A0;
  }

  .header__phone:hover {
    color: #F2D5A0;
  }

  .header__phone:hover path {
    fill: #F2D5A0;
  }

  .header__search:hover path {
    stroke: #F2D5A0;
  }

  .header__link:hover path {
    fill: #F2D5A0;
  }

  .menu__link:hover {
    color: #F2D5A0;
  }

  .footer__link:hover {
    text-decoration: underline;
  }

  .footer__soc:hover {
    border: 1px solid #1f4037;
  }

  .discounted__more:hover {
    color: #F2D5A0;
    border: 1px solid #F2D5A0;
  }

  .product-item__img:hover .product-item__img_1 {
    opacity: 0;
  }

  .product-item__img:hover .product-item__img_2 {
    opacity: 1;
  }

  .product-item__name:hover {
    color: #F2D5A0;
  }

  .product-item__buy:hover {
    background-color: #1F4037;
  }

  .product-item__buy:hover path {
    fill: #F2D5A0;
  }


  .product-item_:hover {
    background-color: #1F4037;
  }

  .product-item_:hover path {
    fill: #F2D5A0;
  }

  .category__item-link:hover {
    background-color: #1F4037;
  }

  .about__link:hover {
    color: #F2D5A0;
    background-color: #335240;
  }

  .page-order__btn:hover {
    background-color: #1F4037;
  }

  .bottom-cart__btn:hover {
    background-color: #1F4037;
  }

  .aside-finalization__btn:hover {
    background-color: #1F4037;
  }

  .page-product__btn:hover {
    background-color: #335240;
  }

  .pagging__arrow:hover {
    border: 1px solid #1F4037;
  }

  .pagging__item:hover {
    color: #1F4037;
  }

  .pagging__item._active:hover {
    color: #777;
  }
}

.webp .products-head{ background: url(../img/promo-img.webp) center/cover no-repeat; }

.address-delivery__img{
  position: relative;
  height: 200px;
  padding-bottom: 0;
}
.address-delivery__map{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.item-contacts__img{
  position: relative;
  min-height: 250px;
}
.item-contacts__map{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
