* {
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

h1,
.h1 {
  font-weight: 300;
  line-height: 130%;
  font-size: clamp(1.875rem, calc(1.1373730964rem + 0.0314720812 * 100vw), 3.8125rem);
}

h2,
.h2 {
  font-weight: 300;
  line-height: 130%;
  font-size: clamp(1.625rem, calc(1.4346446701rem + 0.0081218274 * 100vw), 2.125rem);
}

img {
  max-width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a {
  text-decoration: none;
}

input,
select,
textarea {
  padding: 9px 21px;
  font-size: 16px;
  color: rgba(18, 18, 18, 0.9803921569);
  font-family: Inter, sans-serif;
  background: #fff;
  border: solid 1px rgba(18, 18, 18, 0.7215686275);
  display: block;
  width: 100%;
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 0.75;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 0.75;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 0.75;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  opacity: 0.75;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  opacity: 0.75;
}

textarea {
  resize: none;
  height: 100px;
}

.choices {
  margin-bottom: 0;
}

.choices__inner {
  padding: 5px 50px 5px 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: solid 1px #000;
  position: relative;
}

.choices__inner::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 16px;
  background: url("../img/main/select.svg") no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.choices[data-type*=select-one]::after {
  display: none;
}

.choices__list--single {
  padding: 0;
}

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

.choices__list--dropdown .choices__item {
  padding: 10px 29px !important;
}

.qty {
  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: 2px;
}

.qty button {
  border: none;
  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: none;
  font-weight: 400;
  cursor: pointer;
  width: 15px;
  height: 30px;
  margin: 0;
  padding: 0;
  font-size: clamp(1rem, calc(0.9524111675rem + 0.0020304569 * 100vw), 1.125rem);
}

.qty .minus {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}

.qty input {
  background: none;
  padding: 0;
  border: none;
  text-align: center;
  width: 40px;
  height: 30px;
  font-size: clamp(1rem, calc(0.9524111675rem + 0.0020304569 * 100vw), 1.125rem);
}

.slick-dots {
  margin-top: 37px;
  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;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 11px;
}

.slick-dots li {
  margin: 0;
  padding: 0;
}

.slick-dots li button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D9D9D9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.slick-dots .slick-active button {
  background-color: #121212;
}

.slick-arrow {
  border: none;
  background: none;
  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;
  cursor: pointer;
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
}

.slick-arrow svg * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.slick-disabled svg * {
  fill: #1D1D1F;
  opacity: 0.25;
}

.slick-arrow:not(.slick-disabled):hover svg * {
  fill: #FF5787;
}

.slick-prev {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.btn {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: Inter, sans-serif;
  border: none;
  background: none;
  font-size: 16px;
  padding: 12px 22px;
  color: #000;
  background-color: #fff;
  border: solid 1px #000;
}

.btn:hover {
  background-color: #000;
  color: #fff;
}

.btn-primary {
  background-color: #000;
  color: #fff;
}

.btn-primary:hover {
  background-color: #fff;
  color: #000;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}

.header-top {
  background-color: #F1F1F1;
}

.header-top__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  font-size: 12px;
}

.header-top__flex--nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  gap: 20px;
}

.header-top__flex--nav ul a {
  color: #000;
  position: relative;
}

.header-top__flex--nav ul a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-top__flex--nav ul a:hover::after {
  width: 100%;
}

.header-top__flex--nav ul .sale a {
  color: #FF5787;
  font-weight: 700;
  position: relative;
}

.header-top__flex--nav ul .sale a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #FF5787;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-top__flex--nav ul .sale a:hover::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-right: 20px;
  margin-right: 4px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.lang-switcher--top {
  display: none;
}

.lang-switcher ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.lang-switcher li {
  list-style: none;
}

.lang-switcher ul li a,
.lang-switcher ul li span,
.lang-switcher li a,
.lang-switcher li span {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  border: 1px solid transparent;
  transition: 0.2s;
}

.lang-switcher ul li a:hover,
.lang-switcher li a:hover {
  border-color: #000;
}

.lang-switcher ul li.current-lang span,
.lang-switcher ul li.current-lang a,
.lang-switcher li.current-lang span,
.lang-switcher li.current-lang a {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.header-top__flex--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header-top__flex--list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.header-top__flex--list .item img {
  max-width: 20px;
  max-height: 20px;
}

.header-top__flex--list .item a {
  color: #000;
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  position: relative;
}

.header-wrap__icon {
  display: none;
}

.header-wrap__modal {
  position: absolute;
  right: 0;
  top: 92px;
  -webkit-box-shadow: 0px 34px 40.8px -13px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 34px 40.8px -13px rgba(0, 0, 0, 0.1490196078);
  background-color: #fff;
  border: solid 1px rgba(0, 0, 0, 0.0784313725);
  padding: 15px 15px 41px;
  min-width: 386px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-height: 85vh;
  overflow: hidden;
  overflow-y: auto;
}

.header-wrap__modal--categories {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.header-wrap__modal--categories-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  width: 100%;
  max-width: 300px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header-wrap__modal--categories-flex .row {
  width: calc((100% - 15px) / 2);
}

.header-wrap__modal--categories-flex .row-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 13px;
}

.header-wrap__modal--categories-flex .row ul {
  list-style-type: none;
}

.header-wrap__modal--categories-flex .row ul li {
  margin-bottom: 8px;
}

.header-wrap__modal--categories-flex .row ul li:last-child {
  margin-bottom: 0;
}

.header-wrap__modal--categories-flex .row ul li a {
  font-size: 13px;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-wrap__modal--categories-flex .row ul li a:hover {
  color: #FF5787;
}

.header-wrap__modal--categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 570px;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.header-wrap__modal--categories-list .item {
  width: calc((100% - 8px) / 2);
  position: relative;
  min-height: 153px;
  font-size: 17px;
  color: #fff;
  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;
  text-align: center;
  padding: 15px;
  overflow: hidden;
}

.header-wrap__modal--categories-list .item img {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-wrap__modal--categories-list .item:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.header-wrap__modal--back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  position: relative;
}

.header-wrap__modal--back::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #333333;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-wrap__modal--back:hover::after {
  width: 100%;
}

.header-wrap__modal--back::after {
  width: 100%;
}

.header-wrap__modal--back:hover::after {
  width: 0;
}

.header-wrap__modal--close {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.header-wrap__modal--close svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.header-wrap__modal--close svg:hover {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header-wrap__modal--title {
  font-weight: 500;
  text-align: center;
  margin: 20px auto 31px;
  font-size: clamp(1rem, calc(0.9524111675rem + 0.0020304569 * 100vw), 1.125rem);
}

.header-wrap__modal .btn {
  width: 100%;
  margin: 0 auto;
  max-width: 330px;
}

.header-wrap__modal--subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  font-weight: 500;
  margin: 5px 0 30px;
  line-height: 130%;
  font-size: clamp(1rem, calc(0.9524111675rem + 0.0020304569 * 100vw), 1.125rem);
}

.header-wrap__modal--subtitle span {
  font-size: 14px;
  color: #444444;
  font-weight: 400;
}

.header-wrap__modal--list {
  margin-left: -15px;
  width: calc(100% + 30px);
}

.header-wrap__modal--list .item {
  margin-bottom: 4px;
  background-color: #F1F1F1;
  padding: 18px 11px;
  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: 30px;
}

.header-wrap__modal--list .item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-wrap__modal--list .item-meta__image {
  min-width: 96px;
  min-height: 96px;
  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;
}

.header-wrap__modal--list .item-meta__image img {
  max-height: 96px;
}

.header-wrap__modal--list .item-meta__title {
  width: 161px;
  padding-left: 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.header-wrap__modal--list .item-meta__title--attr {
  margin-top: 16px;
  padding: 2px 10px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: #fff;
  background-color: #000;
}

.header-wrap__modal--list .item-actions {
  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: 25px;
  padding-right: 30px;
}

.header-wrap__modal--list .item-actions__price {
  text-align: center;
  width: 100%;
  min-width: 110px;
  font-weight: 700;
  color: #E0295D;
  font-size: clamp(0.9375rem, calc(0.8899111675rem + 0.0020304569 * 100vw), 1.0625rem);
}

.header-wrap__modal--list .item-actions__remove svg {
  cursor: pointer;
}

.header-wrap__modal--list .item-actions__remove svg * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-wrap__modal--list .item-actions__remove svg:hover * {
  stroke: #E0295D;
  stroke-opacity: 1;
}

.header-wrap__modal--list .item:last-child {
  margin-bottom: 0;
}

.header-wrap__modal--total {
  margin: 42px 0 27px;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.header-wrap__modal--total span {
  text-transform: none;
  padding-left: 12px;
  font-weight: 700;
  color: #E0295D;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
  display: inline-block;
  font-size: clamp(1rem, calc(0.6906725888rem + 0.0131979695 * 100vw), 1.8125rem);
}

.header-wrap__modal .btn-checkout {
  max-width: 100%;
  margin-bottom: -15px;
}

.header-wrap__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header-wrap__meta--logo {
  display: block;
  max-width: 242px;
}

.header-wrap__meta--catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #fff;
  padding: 11px 21px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #000;
  border: solid 1px #000;
}

.header-wrap__meta--catalog svg * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-wrap__meta--catalog:hover {
  background-color: #fff;
  color: #000;
}

.header-wrap__meta--catalog:hover svg * {
  fill: #000;
}

.header-wrap__meta--search {
  width: 576px;
}

.header-wrap__meta--search input {
  min-height: 41px;
}

.header-wrap__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header-wrap__actions .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  position: relative;
}

.header-wrap__actions .item span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  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;
  overflow: hidden;
  background-color: #121212;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  right: -8px;
  top: -8px;
}

.header-wrap__actions .item svg * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-wrap__actions .item:not(.item-stroke):hover svg * {
  fill: #E0295D;
}

.header-wrap__actions .item-stroke:hover svg * {
  stroke: #E0295D;
}

.header-wrap__actions .open-search {
  display: none;
}

.advantages {
  background-color: #FAF6FA;
}

.advantages-wrap {
  margin-top: 105px;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 10px;
}

.advantages-wrap .item {
  width: calc((100% - 20px) / 3);
  text-align: center;
}

.advantages-wrap .item-image {
  width: 50px;
  margin: 0 auto;
}

.advantages-wrap .item-title {
  font-weight: 500;
  margin: 15px 0;
  font-size: clamp(1rem, calc(0.9286167513rem + 0.0030456853 * 100vw), 1.1875rem);
}

.advantages-wrap .item-text {
  font-size: 15px;
  line-height: 20px;
  color: #646464;
}

.subscribe-wrap {
  margin-top: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.subscribe-wrap__image {
  width: 100%;
  max-width: 669px;
}

.subscribe-wrap__content {
  width: 100%;
  max-width: 601px;
  margin-top: 143px;
}

.subscribe-wrap__content--title {
  margin-bottom: 43px;
  max-width: 561px;
}

.subscribe-wrap__content--text {
  line-height: 25px;
  margin-bottom: 33px;
  font-size: clamp(1rem, calc(0.9762055838rem + 0.0010152284 * 100vw), 1.0625rem);
}

.subscribe-wrap__content--form .row {
  position: relative;
}

.subscribe-wrap__content--form .row input {
  min-height: 82px;
  border-color: #DDDDDD;
  border-radius: 12px;
  padding-right: 80px;
}

.subscribe-wrap__content--form .row button {
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  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;
  position: absolute;
  right: 24px;
  top: 17px;
  border-radius: 50%;
  background-color: #252427;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.subscribe-wrap__content--form .row button:hover {
  background-color: #E0295D;
}

.subscribe-wrap__content--notice {
  margin-top: 26px;
  font-size: 14px;
  line-height: 17px;
}

.footer {
  margin: 105px 0 45px;
  color: #F1F1F1;
}

.footer-row {
  background-color: #1D1D1D;
  padding: 73px 61px 40px;
}

.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.footer-wrap .row {
  max-width: 336px;
}

.footer-wrap .row-title {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.footer-wrap .row-nav ul {
  list-style-type: none;
}

.footer-wrap .row-nav ul li {
  margin-bottom: 11px;
}

.footer-wrap .row-nav ul li:last-child {
  margin-bottom: 0;
}

.footer-wrap .row-nav ul a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #F2F2F2;
}

.footer-wrap .row-nav ul a:hover {
  color: #E0295D;
}

.footer-logo {
  display: block;
  margin-top: 50px;
  max-width: 227px;
}

.footer-bottom {
  margin-top: 29px;
  padding-top: 39px;
  border-top: solid 1px rgba(235, 235, 236, 0.2784313725);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  font-size: 15px;
  font-weight: 300;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-bottom__nav ul {
  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;
  gap: 15px 27px;
  list-style-type: none;
}

.footer-bottom__nav ul a {
  color: #F2F2F2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-bottom__nav ul a:hover {
  color: #E0295D;
}

.bread {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 39px;
}

.bread-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bread-item::after {
  content: ">";
  display: block;
  margin: 0 5px;
  color: rgba(0, 0, 0, 0.3019607843);
}

.bread-item a {
  color: rgba(0, 0, 0, 0.3019607843);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bread-item a:hover {
  color: #E0295D;
}

.bread-item:last-child::after {
  display: none;
}

.ttx {
  font-size: clamp(0.875rem, calc(0.8274111675rem + 0.0020304569 * 100vw), 1rem);
  line-height: 175%;
}

.ttx h1,
.ttx h2,
.ttx h3,
.ttx h4,
.ttx h5,
.ttx h6 {
  margin-bottom: 41px;
}

.ttx ol,
.ttx ul,
.ttx p,
.ttx img {
  margin-bottom: 15px;
}

.ttx p {
  display: block;
}

.ttx ol,
.ttx ul {
  padding-left: 20px;
}

.modal-active {
  opacity: 1;
  visibility: visible;
}

#modalAdded {
  min-width: inherit;
  width: 100%;
  max-width: 484px;
}

#modalAdded .btn {
  margin: 34px auto 15px;
  max-width: 377px;
}

#modalCategories {
  max-width: 1114px;
  min-width: inherit;
  width: 100%;
  right: auto;
  left: 0;
}

.main-wrap {
  position: relative;
}

.main-wrap .slick-arrow {
  position: absolute;
  left: 56%;
  bottom: 19px;
  width: 30px;
  height: 30px;
}

.main-wrap .slick-arrow svg {
  max-width: 30px;
  max-height: 30px;
  width: 30px;
  height: 30px;
}

.main-wrap .slick-prev {
  left: calc(56% - 30px);
}

.main-wrap .item {
  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: 30px;
}

.main-wrap .item-content {
  width: 100%;
  max-width: 617px;
}

.main-wrap .item-content__text {
  margin: 32px 0;
  max-width: 434px;
  font-weight: 300;
  line-height: 26px;
  font-size: clamp(1rem, calc(0.9524111675rem + 0.0020304569 * 100vw), 1.125rem);
}

.main-wrap .item-image {
  width: 100%;
  max-width: 639px;
  position: relative;
}

.main-wrap .item-image__bottom {
  position: absolute;
  right: 21px;
  max-width: 500px;
  bottom: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}

.main-wrap .item-image__bottom--title {
  font-weight: 300;
  line-height: 26px;
  font-size: clamp(1rem, calc(0.9524111675rem + 0.0020304569 * 100vw), 1.125rem);
}

.main-wrap .item-image__bottom .btn {
  border-color: #fff;
}

.main-wrap .item-image__bottom .btn:hover {
  border-color: #000;
}

.brands .container {
  max-width: 1420px;
}

.brands-wrap {
  padding: 0 30px;
  margin-top: 47px;
  position: relative;
}

.brands-wrap .slick-arrow {
  position: absolute;
  left: 0;
  top: 25%;
}

.brands-wrap .slick-next {
  left: auto;
  right: 0;
}

.brands-wrap__slider .item {
  margin: 0 6px;
  height: 156px;
  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;
  border-radius: 2px;
  border: solid 1px #E5E7EB;
}

.brands-wrap__slider .item img {
  max-height: 62px;
}

.categories-wrap {
  margin-top: 94px;
}

.categories-wrap__list {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 17px;
}

.categories-wrap__list .item {
  width: calc((100% - 51px) / 4);
}

.categories-wrap__list .item-image {
  width: 100%;
  height: 262px;
  overflow: hidden;
}

.categories-wrap__list .item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.categories-wrap__list .item-title {
  margin-top: 11px;
  font-size: 17px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  background-color: #000;
}

.categories-wrap__list .item:hover .item-image img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.banner-wrap {
  margin-top: 105px;
  position: relative;
}

.banner-wrap .slick-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 15px;
  top: 45%;
}

.banner-wrap .slick-arrow svg {
  width: 40px;
  height: 30px;
  opacity: 1;
  margin-left: 5px;
}

.banner-wrap .slick-arrow svg * {
  opacity: 1;
  stroke-opacity: 1;
  fill-opacity: 1;
  fill: #000000;
}

.banner-wrap .slick-arrow:not(.slick-disabled):hover {
  background-color: #E0295D;
}

.banner-wrap .slick-arrow:not(.slick-disabled):hover svg * {
  fill: #fff;
}

.banner-wrap .slick-next {
  left: auto;
  right: 15px;
}

.banner-wrap .item {
  background-color: #0B090C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 129px;
  color: #fff;
  min-height: 422px;
}

.banner-wrap .item-content {
  width: 100%;
  max-width: 617px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  -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;
}

.banner-wrap .item-content__text {
  margin-top: 32px;
  max-width: 434px;
  font-weight: 300;
  font-size: clamp(1rem, calc(0.9524111675rem + 0.0020304569 * 100vw), 1.125rem);
}

.banner-wrap .item-image {
  width: 100%;
  max-width: 617px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.banner-wrap .item-image__circle {
  position: absolute;
  left: 20px;
  bottom: 57px;
  width: 147px;
  height: 147px;
  border-radius: 50%;
  background-color: #E0C1DE;
  padding: 49px 0 10px 35px;
  overflow: hidden;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}

.products .container {
  max-width: 1420px;
}

.products-wrap {
  margin-top: 105px;
}

.products-wrap__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 42px;
  margin-bottom: 67px;
  padding: 0 30px;
}

.products-wrap__list .item {
  padding: 11px 18px;
  border: solid 1px #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.products-wrap__list .item-image {
  position: relative;
  width: 100%;
  height: 271px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.products-wrap__list .item-image img {
  max-height: 211px;
}

.products-wrap__list .item-image__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  position: absolute;
  left: 18px;
  top: 11px;
  width: calc(100% - 36px);
  z-index: 2;
}

.products-wrap__list .item-image__flex--labels span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
  border-radius: 2px;
  background-color: #F1F1F1;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-align: center;
  padding: 4px 8px;
}

.products-wrap__list .item-title {
  margin-top: 36px;
  font-size: 16px;
  line-height: 24px;
}

.products-wrap__list .item-subtitle {
  font-size: 12px;
  line-height: 16px;
  color: #666666;
}

.products-wrap__list .item-price {
  margin-top: auto;
  padding-top: 29px;
  font-size: 17px;
  font-weight: 700;
  color: #E0295D;
}

.products-wrap__list .item-price__del {
  font-size: 12px;
  color: #666666;
}

.products-wrap__list .item-attr {
  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;
  gap: 5px;
  margin-top: 18px;
}

.products-wrap__list .item-attr span {
  padding: 2px 8px;
  text-align: center;
  font-size: 12px;
  color: #666666;
}

.products-wrap__list .item-attr .active {
  background-color: #000;
  color: #fff;
}

.products-wrap__list .item:hover {
  border-color: #000;
}

.products-wrap__list--wrapper .row {
  padding: 0 30px;
  position: relative;
}

.products-wrap__list--wrapper .row .item {
  margin-right: 2px;
}

.products-wrap__list--wrapper .row-nav .slick-arrow {
  position: absolute;
  left: 0;
  top: 45%;
}

.products-wrap__list--wrapper .row-nav .slick-next {
  left: auto;
  right: 0;
}

.faq-wrap {
  margin-top: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.faq-wrap__sidebar {
  width: 100%;
  max-width: 411px;
}

.faq-wrap__sidebar .item {
  padding-bottom: 18px;
  margin-bottom: 27px;
  border-bottom: solid 1px #121212;
  font-weight: 500;
  color: rgba(18, 18, 18, 0.44);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: clamp(1rem, calc(0.8334390863rem + 0.007106599 * 100vw), 1.4375rem);
}

.faq-wrap__sidebar .active {
  color: #121212;
}

.faq-wrap__list {
  width: 100%;
  max-width: 754px;
}

.faq-wrap__list .wrapper {
  display: none;
}

.faq-wrap__list .wrapper:first-child {
  display: block;
}

.faq-wrap__list .item {
  border-bottom: dashed 1px #121212;
  margin-bottom: 30px;
  padding-bottom: 23px;
}

.faq-wrap__list .item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  cursor: pointer;
}

.faq-wrap__list .item-top__title {
  max-width: calc(100% - 50px);
  font-size: clamp(1rem, calc(0.9524111675rem + 0.0020304569 * 100vw), 1.125rem);
}

.faq-wrap__list .item-top__icon {
  position: relative;
  width: 20px;
  height: 20px;
  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;
}

.faq-wrap__list .item-top__icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #121212;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq-wrap__list .item-top__icon span:nth-child(2) {
  position: absolute;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq-wrap__list .item-text {
  margin-top: 32px;
  font-size: 14px;
  line-height: 18px;
  color: rgba(34, 34, 34, 0.768627451);
  display: none;
  max-width: 620px;
}

.faq-wrap__list .open .item-top__icon span {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-wrap__list .open .item-top__icon span:nth-child(2) {
  display: none;
}

.contacts-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.contacts-wrap__content {
  width: 100%;
  max-width: 527px;
}

.contacts-wrap__content--socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
  margin-top: 45px;
}

.contacts-wrap__content--socials .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts-wrap__content--socials .item svg * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contacts-wrap__content--socials .item:hover svg * {
  fill: #FF5787;
}

.contacts-wrap__form {
  width: 100%;
  max-width: 757px;
}

.contacts-wrap__form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 41px;
  border-bottom: solid 1px #4C4341;
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
  color: #4C4341;
}

.contacts-wrap__form .row-value {
  font-weight: 500;
  font-size: clamp(1rem, calc(0.7620558376rem + 0.0101522843 * 100vw), 1.625rem);
}

.contacts-wrap__form .row-value a {
  color: #4C4341;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contacts-wrap__form .row-value a:hover {
  color: #FF5787;
}

.contacts-wrap__form--data {
  margin-top: 54px;
  background-color: #121212;
  padding: 71px 60px 150px;
  color: #fff;
}

.contacts-wrap__form--data-title {
  max-width: 526px;
  margin-bottom: 47px;
  font-size: clamp(1rem, calc(0.8334390863rem + 0.007106599 * 100vw), 1.4375rem);
}

.contacts-wrap__form--data input,
.contacts-wrap__form--data textarea,
.contacts-wrap__form--data select {
  padding-left: 0;
  background: none;
  border: none;
  border-bottom: solid 1px #fff;
  color: #fff;
  margin-bottom: 30px;
}

.contacts-wrap__form--data input::-webkit-input-placeholder, .contacts-wrap__form--data textarea::-webkit-input-placeholder, .contacts-wrap__form--data select::-webkit-input-placeholder {
  color: #fff;
}

.contacts-wrap__form--data input::-moz-placeholder, .contacts-wrap__form--data textarea::-moz-placeholder, .contacts-wrap__form--data select::-moz-placeholder {
  color: #fff;
}

.contacts-wrap__form--data input:-ms-input-placeholder, .contacts-wrap__form--data textarea:-ms-input-placeholder, .contacts-wrap__form--data select:-ms-input-placeholder {
  color: #fff;
}

.contacts-wrap__form--data input::-ms-input-placeholder, .contacts-wrap__form--data textarea::-ms-input-placeholder, .contacts-wrap__form--data select::-ms-input-placeholder {
  color: #fff;
}

.contacts-wrap__form--data input::placeholder,
.contacts-wrap__form--data textarea::placeholder,
.contacts-wrap__form--data select::placeholder {
  color: #fff;
}

.contacts-wrap__form--data .btn {
  width: 100%;
  min-height: 50px;
  margin-top: 40px;
}

.contacts-wrap__form--data .btn:hover {
  border-color: #fff;
}

.not-found__wrapper {
  padding: 50px 0 100px;
  text-align: center;
}

.not-found__wrapper--title {
  font-weight: 600;
  font-size: clamp(3.75rem, calc(0.7281091371rem + 0.1289340102 * 100vw), 11.6875rem);
}

.not-found__wrapper--text {
  font-size: 16px;
  line-height: 24px;
  margin: 15px 0 40px;
}

.not-found__wrapper .btn {
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
}

.archive-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 22px;
}

.archive-wrap__filters {
  width: 100%;
  max-width: 317px;
}

.archive-wrap__filters--top {
  display: none;
}

.archive-wrap__content {
  width: 100%;
  max-width: 991px;
}

.archive-wrap__content--banner {
  position: relative;
  margin-bottom: 30px;
}

.archive-wrap__content--banner-close {
  position: absolute;
  cursor: pointer;
  right: 13px;
  top: 11px;
}

.archive-wrap__content--banner-close svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.archive-wrap__content--banner-close:hover svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.archive-wrap__content--banner-link {
  display: block;
}

.archive-wrap__content--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.archive-wrap__content--flex-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
  font-size: 15px;
}

.archive-wrap__content--flex-meta_mobile {
  display: none;
}

.archive-wrap__content--flex-meta_filter {
  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;
  gap: 10px;
}

.archive-wrap__content--flex-meta_filter a {
  text-align: center;
  font-size: 12px;
  color: #121212;
  padding: 4px 10px;
  border: solid 1px rgba(0, 0, 0, 0.2196078431);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.archive-wrap__content--flex-meta_filter a:hover {
  border-color: #E0295D;
}

.archive-wrap__content--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px 0;
}

.archive-wrap__content--list .item {
  width: 33.3333333333%;
}

.seo-wrap {
  margin-top: 150px;
}

.single-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.single-wrap__gallery {
  position: relative;
  width: 100%;
  max-width: 654px;
}

.single-wrap__gallery--labels {
  position: absolute;
  left: 30px;
  top: 26px;
}

.single-wrap__gallery--labels span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
  border-radius: 2px;
  background-color: #F1F1F1;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-align: center;
  padding: 4px 8px;
}

.single-wrap__gallery--main {
  width: 100%;
  height: 549px;
  border: solid 1px rgba(18, 18, 18, 0.168627451);
  padding: 30px;
  overflow: hidden;
}

.single-wrap__gallery--main .item {
  height: 100%;
  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;
}

.single-wrap__gallery--main .item img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-wrap__gallery--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;
  gap: 15px;
  margin-top: 22px;
}

.single-wrap__gallery--list-flex {
  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;
  gap: 17px;
}

.single-wrap__gallery--list-flex .item {
  width: 76px;
  height: 76px;
  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;
  border: solid 1px #fff;
  opacity: 0.52;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.single-wrap__gallery--list-flex .item img {
  max-height: 76px;
}

.single-wrap__gallery--list-flex .active {
  opacity: 1;
  border-color: #000;
}

.single-wrap__content {
  width: 100%;
  max-width: 635px;
}

.single-wrap__content--title {
  max-width: 334px;
  font-weight: 400;
  margin-bottom: 12px;
  font-size: clamp(1.625rem, calc(1.5536167513rem + 0.0030456853 * 100vw), 1.8125rem);
}

.single-wrap__content--subtitle {
  font-size: 15px;
  color: #666666;
  margin-bottom: 22px;
}

.single-wrap__content--text {
  max-width: 480px;
  margin-bottom: 12px;
}

.single-wrap__content--pay {
  background-color: #F1F1F1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  padding: 20px;
  font-size: 16px;
  line-height: 24px;
  margin: 38px 0 17px;
}

.single-wrap__content--pay img {
  max-width: 170px;
}

.single-wrap__content--notice {
  font-size: 15px;
  color: #666666;
}

.single-wrap__content--variations-price {
  margin-bottom: 22px;
}

.single-wrap__content--variations-price .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.single-wrap__content--variations-price ins,
.single-wrap__content--variations-price .amount {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-weight: 700;
  color: #E0295D;
  text-decoration: none;
  font-size: clamp(1rem, calc(0.8096446701rem + 0.0081218274 * 100vw), 1.5rem);
}

.single-wrap__content--variations-price ins p,
.single-wrap__content--variations-price .amount p {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  padding-left: 2px;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-wrap__content--variations-price del {
  text-decoration: none;
}

.single-wrap__content--variations-price del .amount {
  font-size: 13px;
  color: #666666;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-wrap__content--variations-price del p {
  font-size: 13px !important;
  color: #666666 !important;
  font-weight: 400 !important;
  display: inline-block;
  -webkit-transform: translateY(0) !important;
      -ms-transform: translateY(0) !important;
          transform: translateY(0) !important;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.single-wrap__content--variations-price del bdi {
  text-decoration: line-through;
}

.single-wrap__content--variations-price del bdi .woocommerce-Price-currencySymbol {
  -webkit-transform: translateY(0) !important;
      -ms-transform: translateY(0) !important;
          transform: translateY(0) !important;
  font-size: 13px !important;
  color: #666666 !important;
  font-weight: 400 !important;
}

.single-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1215686275);
  margin: 57px 0 47px;
}

.single-tabs .item {
  width: 100%;
  max-width: 211px;
  text-align: center;
  padding-bottom: 21px;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

.single-tabs .item::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}

.single-tabs .active::after {
  width: 100%;
}

.single-content .wrapper {
  display: none;
}

.single-content .wrapper:first-child {
  display: block;
}

.checkout-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.checkout-wrap__form {
  width: 100%;
  max-width: 610px;
}

.checkout-wrap__form--title {
  margin-bottom: 30px;
}

.checkout-wrap__form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px;
}

.checkout-wrap__form .row input,
.checkout-wrap__form .row select,
.checkout-wrap__form .row textarea {
  min-height: 44px;
}

.checkout-wrap__form .row-item {
  width: calc((100% - 13px) / 2);
}

.checkout-wrap__form .row-item__full {
  width: 100%;
}

.checkout-wrap__form--subtitle {
  margin: 20px 0 10px;
  font-weight: 500;
  font-size: clamp(1rem, calc(0.904822335rem + 0.0040609137 * 100vw), 1.25rem);
}

.checkout-wrap__form--comment {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  color: #E0295D;
  cursor: pointer;
  position: relative;
}

.checkout-wrap__form--comment::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #E0295D;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.checkout-wrap__form--comment:hover::after {
  width: 100%;
}

.checkout-wrap__form--comment::after {
  width: 100%;
  background-color: inherit;
  border-bottom: dashed 1px #E0295D;
}

.checkout-wrap__form--comment:hover::after {
  width: 0;
}

.checkout-wrap__form textarea {
  display: none;
}

.checkout-wrap__sidebar {
  width: 100%;
  max-width: 583px;
}

.checkout-wrap__sidebar--title {
  font-weight: 500;
  margin-bottom: 37px;
  font-size: clamp(1rem, calc(0.904822335rem + 0.0040609137 * 100vw), 1.25rem);
}

.checkout-wrap__sidebar--cart .header-wrap__modal--list {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

.checkout-wrap__sidebar--promo {
  margin-top: 24px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3294117647);
  padding-bottom: 15px;
}

.checkout-wrap__sidebar--promo-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  font-size: 14px;
  color: rgba(18, 18, 18, 0.768627451);
  cursor: pointer;
}

.checkout-wrap__sidebar--promo-title_icon {
  position: relative;
  width: 10px;
  height: 10px;
  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;
}

.checkout-wrap__sidebar--promo-title_icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #121212;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.checkout-wrap__sidebar--promo-title_icon span:nth-child(2) {
  position: absolute;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.checkout-wrap__sidebar--promo-form {
  margin-top: 15px;
  display: none;
  gap: 15px;
}

.checkout-wrap__sidebar--promo-form input {
  width: calc(100% - 200px);
}

.checkout-wrap__sidebar--promo-form .btn {
  margin-top: 0 !important;
  width: 100%;
  max-width: 185px;
}

.checkout-wrap__sidebar--total {
  margin-top: 29px;
  border: solid 1px #000;
  padding: 30px;
}

.checkout-wrap__sidebar--total .row {
  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;
  margin-bottom: 10px;
  gap: 15px;
  font-size: 14px;
}

.checkout-wrap__sidebar--total .row span:last-child {
  text-align: right;
}

.checkout-wrap__sidebar--total .row:last-child {
  margin-bottom: 0;
}

.checkout-wrap__sidebar--total .row:first-child {
  font-weight: 500;
}

.checkout-wrap__sidebar--total .row:first-child span:last-child {
  font-weight: 700;
  font-size: clamp(1rem, calc(0.6906725888rem + 0.0131979695 * 100vw), 1.8125rem);
}

.checkout-wrap__sidebar--privacy {
  margin-top: 22px;
  font-size: 14px;
}

.checkout-wrap__sidebar--privacy a {
  color: #000;
  text-decoration: underline;
}

.checkout-wrap__sidebar--privacy a:hover {
  text-decoration: none;
}

.checkout-wrap__sidebar--pay {
  margin-top: 14px;
}

.checkout-wrap__sidebar .btn {
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 1440px) {
  .single-wrap__gallery,
  .single-wrap__content {
    max-width: 100%;
    width: 50%;
  }

  .checkout-wrap__form,
  .checkout-wrap__sidebar {
    max-width: 100%;
    width: 50%;
  }
}

@media (max-width: 1300px) {
  .main-wrap__nav {
    display: none;
  }
}

@media (max-width: 1200px) {
  .archive-wrap__content--list {
    gap: 30px 15px;
  }

  .archive-wrap__content--list .item {
    width: calc((100% - 15px) / 2);
  }

  .checkout-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .checkout-wrap__form,
  .checkout-wrap__sidebar {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .header-top {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 150px 15px;
    z-index: 2;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .header-top__active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .header-top__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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }

  .header-top__flex--nav {
    width: 100%;
    max-width: 100%;
  }

  .header-top__flex--nav ul {
    display: block;
    padding-bottom: 15px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.25);
    width: 100%;
  }

  .header-top__flex--nav ul li {
    margin-bottom: 15px;
  }

  .header-top__flex--nav ul li:last-child {
    margin-bottom: 0;
  }

  .header-top__flex--nav ul li a {
    font-size: 20px;
  }

  .header-top__flex--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .header-top__flex--list .item {
    font-size: 16px;
  }

  .header-wrap {
    position: relative;
    z-index: 3;
  }

  .header-wrap__icon {
    width: 25px;
    height: 18px;
    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;
    position: relative;
  }

  .header-wrap__icon span {
    width: 100%;
    height: 2px;
    border-bottom: solid 2px #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .header-wrap__icon--active {
    -webkit-transform: translateY(0.6em);
        -ms-transform: translateY(0.6em);
            transform: translateY(0.6em);
  }

  .header-wrap__icon--active span {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .header-wrap__icon--active span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
  }

  .header-wrap__icon--active span:nth-child(3) {
    display: none;
  }

  .footer-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px 100px;
  }

  .footer-wrap .row {
    max-width: 100%;
    width: calc((100% - 100px) / 2);
  }

  .faq-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .faq-wrap__sidebar {
    width: calc(100% + 15px);
    max-width: calc(100% + 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    white-space: nowrap;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    margin-right: -15px;
  }

  .faq-wrap__sidebar .item {
    width: 100%;
    min-width: 250px;
    margin: 0;
  }
}

@media (max-width: 1024px) {
  .header-wrap__meta--search {
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 100%;
    min-width: inherit;
    top: 90px;
    display: none;
  }

  .header-wrap__actions .open-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-wrap__actions .open-search svg {
    width: 22px;
    height: 22px;
  }

  .header-wrap__modal--categories {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .header-wrap__modal--categories-flex,
  .header-wrap__modal--categories-list {
    max-width: 100%;
  }

  .main-wrap {
    padding-top: 30px;
  }

  .main-wrap .item {
    -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;
    text-align: center;
  }

  .main-wrap .item-content {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .categories-wrap__list {
    gap: 15px;
  }

  .categories-wrap__list .item {
    width: calc((100% - 15px) / 2);
  }

  .products-wrap__top {
    padding: 0;
  }

  .products-wrap__list--wrapper .row {
    padding: 0;
  }

  .products-wrap__list--wrapper .row-nav {
    display: none;
  }

  .banner-wrap__nav {
    display: none;
  }

  .banner-wrap .item {
    padding-left: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 30px 0 30px 30px;
  }

  .banner-wrap .item-content {
    max-width: 100%;
  }

  .advantages-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .advantages-wrap .item {
    width: calc((100% - 10px) / 2);
  }

  .subscribe-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }

  .subscribe-wrap__content {
    max-width: 100%;
    margin: 0;
  }

  .archive-wrap__filters {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 50px 15px;
    z-index: 101;
    background-color: #fff;
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .archive-wrap__filters--active {
    opacity: 1;
    visibility: visible;
    left: 0;
  }

  .archive-wrap__filters--top {
    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;
    margin-bottom: 30px;
    gap: 15px;
  }

  .archive-wrap__content--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }

  .archive-wrap__content--flex-meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
    max-width: 100%;
  }

  .archive-wrap__content--flex-meta_mobile {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .archive-wrap__content--flex-meta_mobile .btn {
    width: 100%;
    max-width: 196px;
  }

  .single-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .single-wrap__gallery,
  .single-wrap__content {
    width: 100%;
  }

  .single-tabs {
    overflow: hidden;
    overflow-x: auto;
  }

  .single-tabs .item {
    min-width: 210px;
  }

  .contacts-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .contacts-wrap__content,
  .contacts-wrap__form {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .header-wrap__modal {
    min-width: inherit;
    width: 100%;
    max-width: 100%;
  }

  .header-wrap__modal--list .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
  }

  .header-wrap__modal--list .item-meta {
    width: 100%;
    max-width: 100%;
    padding-right: 30px;
  }

  .header-wrap__modal--list .item-actions {
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
  }

  .header-wrap__modal--list .item-actions__remove {
    position: absolute;
    right: 15px;
    top: 15px;
  }

  #modalAdded .header-wrap__modal--list .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }

  #modalAdded .header-wrap__modal--list .item-meta {
    padding: 0;
    width: calc(100% - 95px);
  }

  #modalAdded .header-wrap__modal--list .item-actions {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
    min-width: 90px;
  }
}

@media (max-width: 550px) {
  .ttx h1,
  .ttx h2,
  .ttx h3,
  .ttx h4,
  .ttx h5,
  .ttx h6 {
    margin-bottom: 21px;
  }

  .header-wrap {
    gap: 10px;
  }

  .header-wrap__meta {
    gap: 10px;
  }

  .header-wrap__meta--logo {
    max-width: 150px;
  }

  .header-wrap__meta--catalog {
    padding: 6px 12px;
    font-size: 12px;
  }

  .header-wrap__meta--catalog svg {
    display: none;
  }

  .header-wrap__modal--categories-flex {
    gap: 30px;
  }

  .header-wrap__modal--categories-flex .row {
    width: 100%;
  }

  .header-wrap__modal--categories-list .item {
    width: 100%;
  }

  .header-wrap__actions {
    gap: 10px;
  }

  .header-wrap__actions .lang-switcher {
    display: none;
  }

  .lang-switcher--top {
    display: flex;
  }

  .header-wrap__actions .item svg {
    width: 20px;
    height: 20px;
  }

  .header-wrap__actions .item span {
    width: 15px;
    height: 15px;
    font-size: 8px;
  }

  .header-wrap__icon {
    width: 20px;
    height: 15px;
    margin-bottom: -2px;
  }

  .header-wrap__icon--active {
    -webkit-transform: translateY(0.4em);
        -ms-transform: translateY(0.4em);
            transform: translateY(0.4em);
  }

  .main-wrap .item-image__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 0 0;
    position: static;
  }

  .main-wrap .item-image__bottom .btn {
    border-color: #000;
  }

  .brands-wrap {
    padding: 0;
  }

  .brands-wrap__nav {
    display: none;
  }

  .brands-wrap__slider .item {
    height: 75px;
  }

  .brands-wrap__slider .item img {
    max-height: 40px;
  }

  .categories-wrap {
    margin-top: 60px;
  }

  .categories-wrap__list .item-image {
    height: 175px;
  }

  .categories-wrap__list .item-title {
    font-size: 14px;
  }

  .products-wrap {
    margin-top: 60px;
  }

  .products-wrap__top {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }

  .products-wrap__list .item {
    padding: 0;
    border: none;
  }

  .products-wrap__list .item-image__flex {
    left: 0;
    width: 100%;
  }

  .products-wrap__list--wrapper {
    margin-right: -15px;
  }

  .products-wrap__list--wrapper .wrapper {
    padding-right: 15px;
  }

  .banner-wrap {
    margin-top: 60px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }

  .banner-wrap .item-image__circle {
    left: 0;
  }

  .advantages-wrap {
    margin-top: 60px;
  }

  .advantages-wrap .item {
    width: 100%;
  }

  .subscribe-wrap {
    margin-top: 60px;
  }

  .subscribe-wrap__content--form .row input {
    min-height: 60px;
  }

  .subscribe-wrap__content--form .row button {
    top: 6px;
    right: 15px;
  }

  .footer {
    margin: 60px 0 25px;
  }

  .footer-row {
    padding: 50px 30px;
  }

  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }

  .footer-wrap .row {
    width: 100%;
  }

  .seo-wrap {
    margin-top: 60px;
  }

  .single-wrap__gallery--main {
    height: 350px;
  }

  .single-wrap__gallery--main .item {
    height: 300px;
  }

  .single-wrap__gallery--main .item img {
    max-height: 300px;
  }

  .single-wrap__gallery--list {
    display: block;
  }

  .single-wrap__gallery--list-flex {
    gap: 10px;
  }

  .single-wrap__gallery--list .slick-next,
  .single-wrap__gallery--list .slick-prev {
    display: none;
  }

  .single-wrap__gallery--list .item {
    width: calc((100% - 30px) / 4);
  }

  .single-wrap__content--pay {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .faq-wrap {
    margin-top: 30px;
  }

  .faq-wrap__sidebar .item {
    min-width: 210px;
  }

  .contacts-wrap__content--socials {
    margin-top: 15px;
    gap: 15px;
  }

  .contacts-wrap__content--socials .item svg {
    width: 25px;
    height: 25px;
  }

  .contacts-wrap__form--data {
    margin-left: -15px;
    width: calc(100% + 30px);
    padding: 50px 30px;
  }

  .not-found__wrapper {
    padding-bottom: 0;
  }

  .header-wrap__modal {
    top: 65px;
    max-height: 92vh;
  }

  .checkout-wrap__form .row-item {
    width: 100%;
  }

  .checkout-wrap__form--comment {
    font-size: 14px;
  }

  .checkout-wrap__form--comment::after {
    display: none;
  }

  .checkout-wrap__sidebar--total .row {
    gap: 5px;
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}