@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); */
:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Factor A", sans-serif;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
h1 {
  font-weight: 800;
  font-size: 50px;
  /* line-height: 51px; */
  line-height: 1.02;
  color: #2b2b2b;
}

h2 {
  font-weight: 800;
  font-size: 40px;
  /* line-height: 40px; */
  line-height: 1;
  color: #290718;
}

h3 {
  font-weight: 800;
  font-size: 26px;
  color: #2b2b2b;
}

h4 {
  font-weight: 600;
  font-size: 20px;
  color: #290718;
}

h5 {
  font-weight: 600;
  font-size: 15px;
  /* line-height: 20px; */
  line-height: 1.35;
  color: #290718;
}

ul {padding: 0}

.header {
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 20px 0;
  position: relative;
  z-index: 1000;
}
.header__logo {
  display: block;
  width: 151px;
  height: 100%;
  position: relative;
}
.header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.header__top_right, .header__top_middle {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__top_middle {
  width: 100%;
}
.header__catalog {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 19px;
  background: #c2025e;
  border-radius: 50px;
  cursor: pointer;
  height: 46px;
  width: 129px;
  min-width: 129px;
  max-width: 129px;
  max-height: 46px;
  transition: all 0.2s;
}
.header__catalog_ico {
  width: 18px;
  height: 18px;
}
.header__catalog_title {
  font-weight: 700;
  font-size: 15px;
  color: #f6f4f5;
}
.header__catalog .when-active {
  display: none;
}
.header__catalog * {
  cursor: pointer;
}
.header__catalog.active {
  padding: 5px 19px 5px 4px;
  background: #290718;
  font-weight: 700;
  font-size: 15px;
  color: #f6f4f5;
}
.header__catalog.active svg {
  display: none;
}
.header__catalog.active .header__catalog_ico {
  width: auto;
  height: auto;
}
.header__catalog.active .when-active {
  display: block;
}
.header-catalog {
  position: absolute;
  top: 85px;
  z-index: 50;
  border-top: 1px solid #e8e3e6;
  box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  width: 100%;
  padding: 30px 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: all 0.2s linear;
  opacity: 0;
  overflow: hidden;
  left: -100%;
}
.header-catalog__container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template: auto/315px 1fr;
}
.header-catalog__tabs {
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #e8e3e6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header-catalog__tabs_item {
  width: 100%;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
  cursor: pointer;
  transition: all 0.3s;
}
.header-catalog__tabs_item:hover {
  font-weight: 500;
  color: #290718;
  background: rgba(246, 244, 245, 0.7);
}
.header-catalog__tabs_item.active {
  background: #f6f4f5;
  font-weight: 500;
  color: #290718;
}
.header-catalog__menu {
  display: none;
  padding-top: 13px;
}
.header-catalog__menu_link {
  position: relative;
  display: inline-block;
  color: #776E73;
  font-size: 13px;
  font-weight: 400;
}
.header-catalog__menu_link:hover {
  color: #C2025E;
}
.header-catalog__menu_link:before {
  content: '';
  position: absolute;
  display: block;
}
.header-catalog__menu_link:hover:before {
  top: 100%;
  width: 100%;
  height: 1px;
  background-color: #C2025E;
}
.header-catalog.active {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.header__search {
  width: 100%;
}
.header__search_form {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 673px;
}
.header__search_input {
  width: 100%;
  position: relative;
}
.header__search_input input {
  height: 43px;
  padding: 7px 5px 5px 32px;
  border: none;
  border-bottom: 1px solid #e8e3e6;
  cursor: text;
  outline: none;
}
.header__search_input input::-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
  color: #c2bdbf;
}
.header__search_input input::placeholder {
  font-weight: 400;
  font-size: 15px;
  color: #c2bdbf;
}
.header__search_input-ico {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header__search_btn {
  padding: 8px 17px;
  border: 1px solid #e8e3e6;
  border-radius: 50px;
  background: none;
  cursor: pointer;
}
.header__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.header__links svg, .header__links path {
  cursor: pointer;
}
.header__links_ico {
  min-width: 24px;
  min-height: 24px;
  position: relative;
}
.header__links_title {
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: #a9a2a6;
  cursor: pointer;
}
.header__links_count {
  font-weight: 500;
  font-size: 10px;
  color: #290718;
  background: #ffcc16;
  border-radius: 50%;
  padding: 2px 0;
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 16px;
  text-align: center;
}
.header__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 20px;
  margin-top: 30px;
}
.header__bottom ul {
  padding: 0;
}
.header__bottom ul li {
  margin: 0;
}
.header__bottom a {
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: #776e73;
}
.header__categories {
  width: auto;
}
.header__categories_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
}
.header__nav_menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__nav_item svg, .header__nav_item path, .header__nav_item span {
  cursor: pointer;
}
.header__nav_item a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__nav_item-ico {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header ul {
  list-style-type: none;
}

.header-burger, .header-mobile__search {
  display: none;
}

.promo {
  margin-top: 30px;
}
.promo__container {
  position: relative;
}
.promo__slider {
  border-radius: 20px;
}
.promo__slide {
  background: #EFF5F4;
  padding: 60px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.promo__slide_heading {
  max-width: 603px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  z-index: 5;
}
.promo__slide_descr {
  font-weight: 400;
  font-size: 26px;
  color: #2b2b2b;
}
.promo__slide_btn {
  font-weight: 500;
  font-size: 15px;
  color: #290718;
  padding: 9px 18px;
  background: #fff;
  border-radius: 50px;
}
.promo__slide_bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 4;
  transform-style: preserve-3d;
}
.promo__slide_bg-img {
  border: 10px solid #fff;
  border-radius: 300px;
  width: 285px;
  height: 285px;
  position: absolute;
}
.promo__slide_bg-img-2 {
  bottom: 2.5%;
  right: 1.6%;
  left: 1080px;
  transform: translateZ(3px);
  z-index: 3;
}
.promo__slide_bg-img-3 {
  bottom: -12%;
  right: 35%;
  left: 650px;
  z-index: 1;
  transform: translateZ(1px);
}
.promo__slide_bg-img_big {
  width: 410px;
  height: 410px;
  left: 780px;
  right: 13%;
  top: -15%;
  z-index: 2;
  transform: translateZ(2px);
}
.promo__slide_bg-svg {
  position: absolute;
}
.promo__slide_bg-svg_lb {
  left: 0;
  bottom: 0;
  filter: blur(90px);
}
.promo__slide_bg-svg_rt {
  left: 75%;
  top: 0;
  z-index: 0;
  transform: translateZ(1px);
}
.promo__slide_bg-svg_rt-b {
  right: 0;
  bottom: 0;
  transform: translateZ(0);
  filter: blur(90px);
}
.promo__slide_bg-svg_rb {
  left: 84%;
  bottom: 0;
}
.promo__slide_video {
  height: 381px;
  padding: 0;
}
.promo__slide_video iframe {
  width: 100%;
  height: 100%;
}
.promo__slide_video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__arrow, .promo__arrow {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}
.slider__arrow_item, .promo__arrow_item {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 1px solid #e8e3e6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.promo__arrow_item svg, .promo__arrow_item path {
  cursor: pointer;
}
.slider__arrow_prev, .promo__arrow_prev {
  position: absolute;
  left: -70px;
}
.slider__arrow_next, .promo__arrow_next {
  position: absolute;
  right: -70px;
}
.promo__pagination {
  display: none;
}

.slider-outer {position: relative;}

.brand {
  margin-top: 50px;
}
.brand__title {
  font-weight: 600;
  font-size: 20px;
  color: #290718;
}
.brand__slider {
  margin-top: 20px;
}
.brand__item {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f8f7f7;
}

.popular {
  margin-top: 50px;
}
.popular__wrapper {
  margin-top: 21px;
  display: grid;
  grid-template: auto/calc(60% - 10px) calc(40% - 10px);
  gap: 20px;
}
.popular__cards {
  display: grid;
  grid-template: auto/repeat(3, 1fr);
  gap: 20px;
}
.popular__slider {
  position: relative;
}

.bannerComponent {
  margin-top: 50px;
}
.bannerComponent__banner {
  background: #f9faf9 !important;
}
.bannerComponent__slider {
  position: relative;
}

.hit {
  margin-top: 50px;
}
.hit__banner {
  background: #E8E3E6 !important;
}
.hit__slider {
  position: relative;
}

.recommendation {
  margin-top: 50px;
}
.recommendation__wrapper {
  margin-top: 21px;
  display: grid;
  grid-template: auto/calc(40% - 10px) calc(60% - 10px);
  gap: 20px;
}
.recommendation__cards {
  display: grid;
  grid-template: auto/repeat(3, 1fr);
  gap: 20px;
}

.special {
  margin-top: 50px;
}
.special__slider {
  position: relative;
}
.special__slider .card__slider.swiper {
  padding: 20px 10px;
}
.special__title {
  font-weight: 700;
  font-size: 18px;
  color: #290718;
}

.privacy-policy {
	position: fixed;
	bottom: 0;
	z-index: 10;

	display: flex;
	align-items: center;
	gap: 25px;
	padding: 20px 25px;

	border-radius: 20px 20px 0 0;
	background-color: #F7F8FA;
	line-height: 1.2em;
	transition: bottom .4s;

	animation: ppReviewal 1s;

	& a {
		color: inherit;
		opacity: .8;
    text-decoration: underline;
	}

	&.hidden {
		bottom: -200px;
		pointer-events: none;
	}
}
@keyframes ppReviewal {
	0% {bottom: -200px;}
	100% {bottom: 0;}
}
.privacy-policy_text {
    color: #a9a2a6;
    font-size: 16px;
    & .privacy-policy_strong {
        color: #290718;
        font-weight: 500;
    }
}
.privacy-policy_button {
	padding: 16px 30px;

	border: none;
	border-radius: 8px;
	color: #ffffff;
	background-color: #c2025e;

	font-size: 16px;
    font-weight: 800;
	transition: opacity .4s;

	cursor: pointer;

	&:hover {
		opacity: .7;
	}
}
@media(min-width: 1250px) {
	.privacy-policy {
		left: 50%;
		width: max-content;
		transform: translateX(-50%);
	}
}
@media (max-width: 993px) {
	.privacy-policy {
		bottom: 69px;
		left: 0;
	}
	@keyframes ppReviewal {
		0% {bottom: -200px;}
		100% {bottom: 69px;}
	}
}
@media (max-width: 576px) {
	.privacy-policy {
    bottom: 61px;
		gap: 10px;
		flex-wrap: wrap;
        .privacy-policy_text {
            font-size: 12px;
        }
	}
	.privacy-policy_button {
		padding: 10px 20px;
		font-size: 12px;
	}
}

.form-privacy {
	position: relative;

	display: block;
  width: 100%;
    margin-top: 15px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 300;

	cursor: pointer;

	& > input[type="checkbox"] {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}
	& a {color: inherit; text-decoration: underline;}
}
.form-privacy-text:before {
    display: inline-block;
	width: 10px;
	height: 10px;
}
.form-privacy .form-privacy-text:before  {
	content: '';

	border: 1px solid #ffffff;
	border-radius: 3px;
}
.form-privacy_checkbox:checked + .form-privacy-text:before {
	background: url(/assets/icons/accept.svg)center no-repeat;
}

.footer {
  margin-top: 100px;
}
.footer__banner_title {
  font-weight: 800;
  font-size: 30px;
  /* line-height: 51px; */
  color: #f6f4f5;
}
.footer__banner_descr {
  font-weight: 400;
  font-size: 16px;
  color: #f6f4f5;
  margin-bottom: 20px;
}
.footer__banner_form {
  display: flex;
  align-items: center;
  gap: 0 20px;
  flex-wrap: wrap;
}
.footer__banner_form input {
  height: 50px;
  padding: 0 20px;
  border-radius: 6px;
  background: #f8f7f7;
  border: none;
  outline: none;
  font-weight: 400;
  font-size: 15px;
  max-width: 220px;
}
.footer__banner_form input::-moz-placeholder {
  color: #776e73;
}
.footer__banner_form input::placeholder {
  color: #776e73;
}
.footer__banner_form button {
  font-weight: 500;
  font-size: 15px;
  color: #f6f4f5;
  border-radius: 6px;
  border: 1px solid rgba(246, 244, 245, 0.5);
  outline: none;
  height: 50px;
  padding: 0 24px;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}
.footer__top {
  padding: 50px 0 40px;
  background: #fff;
}
.footer__top_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__top_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__bottom {
  padding: 30px 0 48px;
  background: #f6f4f5;
}
.footer__bottom_container {
  display: flex;
  gap: 100px;
}
.footer__bottom-legal {
  width: 100%;
  max-width: 264px;
}
.footer__bottom-text p:not(:last-child) {
  margin-bottom: 4px;
}
.footer__bottom p {
  font-weight: 400;
  font-size: 13px;
  /* line-height: 18px; */
  line-height: 1.35;
  color: #a9a2a6;
}
.footer__nav .menu {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding: 0;
}
.footer__nav .menu a {
  font-weight: 400;
  font-size: 13px;
  /* line-height: 27px; */
  line-height: 2.07692;
  color: #776e73;
}
.footer__social_wrapper {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__social_item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__social_item span, .footer__social_item svg {
  cursor: pointer;
}
.footer__social_item-ico {
  height: 20px;
  width: 20px;
}
.footer__social_item-title {
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
}
.footer__contacts_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__contacts_phone-item {
  font-weight: 400;
  font-size: 18px;
  /* line-height: 24px; */
  line-height: 1.35;
  color: #290718;
}
.footer__contacts_item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__contacts_item-title {
  font-weight: 400;
  font-size: 12px;
  /* line-height: 16px; */
  line-height: 1.35;
  color: #a9a2a6;
}
.footer__contacts_item-wrapper {
  display: flex;
  gap: 10px;
}
.footer__contacts_item-wrapper span, .footer__contacts_item-wrapper svg, .footer__contacts_item-wrapper path {
  cursor: pointer;
}
.footer__contacts_item-wrapper span {
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
}
.footer__mailing {
  padding: 24px 30px 30px;
  border: 1px solid #e8e3e6;
  border-radius: 10px;
  width: 100%;
  max-width: 435px;
}
.footer__mailing_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.footer__mailing_content {
  display: flex;
  flex-direction: column;
  max-width: 270px;
}
.footer__mailing_title {
  font-weight: 600;
  font-size: 17px;
  /* line-height: 23px; */
  line-height: 1.35;
  color: #290718;
}
.footer__mailing_descr {
  font-weight: 400;
  font-size: 16px;
  color: #776e73;
}
.footer__mailing_form + .form-privacy {
  color: #776e73;

  & .form-privacy-text::before {
    border: 1px solid #7F7F7F;
	  border-radius: 3px;
  }
  & .form-privacy_checkbox:checked + .form-privacy-text:before {
    background-color: #C2025E;
  }
}
.footer__mailing_form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__mailing_form input {
  border-radius: 6px;
  background: #f8f7f7;
  outline: none;
  border: none;
  width: 100%;
  max-width: 220px;
  height: 50px;
  padding: 0 20px;
  font-weight: 400;
  font-size: 15px;
  cursor: text;
}
.footer__mailing_form input::-moz-placeholder {
  color: #776e73;
}
.footer__mailing_form input::placeholder {
  color: #776e73;
}
.footer__mailing_form button {
  font-weight: 500;
  font-size: 15px;
  color: #f6f4f5;
  padding: 0 24px;
  height: 50px;
  border-radius: 6px;
  background: #c2025e;
  border: none;
  outline: none;
  cursor: pointer;
}

.catalog {
  margin-top: 10px;
}
.catalog-banners {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.catalog-banners-slider {
  position: relative;
  z-index: 1;
}
.catalog-banners-arrow {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  justify-content: space-between;
}
.catalog-banners-arrow__item {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background: #f8f7f7;
  border: 1px solid #e8e3e6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
}
.catalog-banners-arrow__item svg, .catalog-banners-arrow__item path {
  cursor: pointer;
}
.catalog-banners-arrow__next {
  right: 30px;
}
.catalog-banners-arrow__prev {
  left: 30px;
}
.catalog-banners-arrow .swiper-button-disabled {
  display: none;
}
.catalog-banners-item {
  background: #f8f7f7;
}
.catalog-banners-item .banner__bg img {
  bottom: auto;
}
.catalog-popular {
  margin-top: 40px;
}
.catalog-popular__wrapper {
  margin-top: 20px;
}
.catalog-popular__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog-popular__item_card {
  height: 216px;
  background: #e8e3e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform-style: preserve-3d;
}
.catalog-popular__item_card-img {
  height: 174px;
  transform: translateZ(2px);
}
.catalog-popular__item_card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateZ(1px);
}
.catalog-popular__item_card-bg svg {
  position: absolute;
}
.catalog-popular__item_card-bg svg:first-child {
  top: 0;
  right: 0;
}
.catalog-popular__item_card-bg svg:last-child {
  bottom: 0;
  left: 0;
}
.catalog-popular__item_title {
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: #776e73;
}
.catalog-popular__item * {
  cursor: pointer;
}
.catalog-brands {
  margin-top: 40px;
}
.catalog-brands__wrapper {
  margin-top: 20px;
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  gap: 20px;
}
.catalog-brands__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog-brands__item-card {
  height: 120px;
  background: #F8F7F7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-brands__item-title {
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: #776e73;
}
.catalog-brands__item * {
  cursor: pointer;
}
.catalog-content {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.catalog-content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.catalog-content__cards {
  display: grid;
  grid-template: minmax(264px, auto)/repeat(4, 1fr);
  gap: 20px;
}
.catalog-content__cards-row {
  grid-template: auto/1fr !important;
}
.catalog-content__cards .card__star {
  row-gap: 5px;
  justify-content: space-between;
}
.catalog-mobile__filter {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  cursor: pointer;
}
.catalog-mobile__filter * {
  cursor: pointer;
}
.catalog-mobile__filter_title {
  color: #290718;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.catalog-mobile__filter_title span {
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  background: #C2025E;
  margin-left: 5px;
  display: none;
}
.catalog-mobile__filter_reset {
  color: #C2025E;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid rgba(194, 2, 94, 0.5);
  width: 82px;
  height: 30px;
  background: none;
  display: none;
  position: absolute;
  z-index: 5;
  right: 20px;
  cursor: pointer;
}
.catalog-mobile__filter.active {
  justify-content: space-between;
  padding: 16px 110px 16px 20px;
}
.catalog-mobile__filter.active .catalog-mobile__filter_title span {
  display: inline-block;
}
.catalog-mobile__filter.active .catalog-mobile__filter_reset {
  display: block;
}
.catalog-mobile__filter.active svg {
  display: none;
}

.product__info, .product__review {
  display: grid;
  grid-template: auto/1fr 375px;
  gap: 40px;
}
.product__info_left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e3e6;
}
.product__info_left-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.product__info_left-info {
  width: 100%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.product__info_left-sale {
  font-weight: 500;
  font-size: 15px;
  color: #f0371e;
  padding: 6px;
  border: 1px solid rgba(240, 55, 30, 0.2);
  border-radius: 20px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.product__info_left-sliders {
  width: 100%;
  max-width: 570px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}
.product__info_top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__info_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product__info_right-top {
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
}
.product__info_code {
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
}
.product__info_title {
  font-weight: 700;
  font-size: 23px;
  color: #2b2b2b;
}
.product__info_rating {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product__info_rating-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
}
.product__info_brand {
  padding: 7px 13px;
  background: #f8f7f7;
  border-radius: 10px;
}
.product__info_brand img {
  width: 114px;
  max-width: 114px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__info_characteristic {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.product__info_characteristic-wrapper {
  transition: all 0.2s linear;
}
.product__info_characteristic-title {
  font-weight: 700;
  font-size: 18px;
  color: #290718;
}
.product__info_characteristic-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
}
.product__info_characteristic-item:not(:first-child) {
  border-bottom: 1px solid rgba(232, 227, 230, 0.5);
}
.product__info_characteristic-name {
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
}
.product__info_characteristic-meaning {
  font-weight: 400;
  font-size: 13px;
  color: #290718;
  min-width: 46px;
  white-space: nowrap;
}
.product__info_characteristic-more {
  margin-top: 26px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  cursor: pointer;
}
.product__info_characteristic-more .show {
  transform: rotate(180deg);
}
.product__info_characteristic-more span {
  font-weight: 500;
  font-size: 13px;
  color: #c2025e;
}
.product__info_characteristic-more * {
  cursor: pointer;
}
.product__info_characteristic .characteristic-active {
  min-width: 390px;
  border-radius: 10px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 20px;
  position: absolute;
  z-index: 5;
  top: 30px;
  left: -20px;
}
.product__info_characteristic .hidden {
  display: none;
}
.product__info_price {
  display: flex;
  flex-direction: column;
}
.product__info_price-title {
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
}
.product__info_price-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product__info_price-new {
  font-weight: 500;
  font-size: 31px;
  color: #290718;
}
.product__info_price-old {
  font-weight: 300;
  font-size: 20px;
  text-decoration: line-through;
  color: #c2bdbf;
}
.product__info_counter {
  margin-top: 20px;
  height: 50px;
  max-height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product__info_counter-cart {
  background: #f8f7f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  max-width: 140px;
  padding: 17px 20px;
}
.product__info_counter-cart__item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 20px;
}
.product__info_counter-cart__item * {
  cursor: pointer;
}
.product__info_counter-cart input {
  border: none;
  background: #f8f7f7;
  outline: none;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #776e73;
}
.product__info_counter-cart input::-webkit-outer-spin-button,
.product__info_counter-cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product__info_counter-delivery {
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product__info_counter-delivery__text {
  display: flex;
  flex-direction: column;
}
.product__info_buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__info_buttons-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product__info_buttons-cart {
  background: #c2025e;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 50px;
}
.product__info_buttons-like {
  background: #f8f7f7;
  border-radius: 10px;
  border: none;
  min-width: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__info_buttons-like svg, .product__info_buttons-like path {
  fill: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.product__info_buttons-now {
  padding: 15px 20px;
  border: 1px solid rgba(194, 2, 94, 0.2);
  border-radius: 10px;
  background: none;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #c2025e;
  display: block;
}
.product__info_buttons button {
  cursor: pointer;
}
.product__info_buttons button * {
  cursor: pointer;
}
.product__info_description-title {
  font-weight: 700;
  font-size: 18px;
  color: #290718;
  margin-bottom: 20px;
}
.product__info_description-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  color: #776e73;
  animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.product__info_description-text p, .product__info_description-text ul, .product__info_description-text li, .product__info_description-text a {
  font-weight: 400;
  font-size: 15px;
  color: #776e73;
  animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.product__info_description-text .hidden {
  display: none;
  animation: fade-out 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.product__info_description-more {
  display: none;
  font-weight: 500;
  font-size: 13px;
  color: #c2025e;
  width: 110px;
  cursor: pointer;
  transition: all 0.3s;
}
.product__info_description-more .show {
  transform: rotate(180deg);
}
.product__info_description-more * {
  cursor: pointer;
}
.product__info_description-more.active {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}
.product__review_left {
  margin-top: 30px;
}
.product__review_right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product__review_counter {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product__review_counter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__review_counter-stars {
  display: flex;
  align-items: center;
  gap: 7px;
}
.product__review_counter-total {
  font-weight: 500;
  font-size: 18px;
  color: #290718;
}
.product__review_counter-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product__review_counter-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__review_counter-item__title {
  max-width: 58px;
  width: 100%;
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
}
.product__review_counter-item__progress {
  max-width: 203px;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #f6f4f5;
}
.product__review_counter-item__progress-active {
  border-radius: 10px;
  height: 100%;
  width: 0;
  background: #ffb648;
}
.product__review_counter-item__amount {
  max-width: 35px;
  width: 100%;
  font-weight: 400;
  font-size: 13px;
  text-align: right;
  color: #290718;
}
.product__review_feedback {
  border: 1px solid rgba(194, 2, 94, 0.2);
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #c2025e;
  cursor: pointer;
  transition: all 0.3s;
}
.product__review_feedback * {
  cursor: pointer;
}
.product__review_feedback svg, .product__review_feedback path {
  transition: all 0.3s;
}
.product__review_feedback:hover {
  color: #fff;
  background: #c2025e;
}
.product__review_feedback:hover path {
  fill: #fff;
}
.product__review_heading {
  display: flex;
  gap: 8px;
}
.product__review_title {
  font-weight: 700;
  font-size: 18px;
  color: #290718;
}
.product__review_count {
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
}
.product__review_images {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.product__review_images-item {
  width: 100%;
  height: 86px;
  position: relative;
  cursor: pointer;
}
.product__review_images-item img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__review_images-item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.product__review_images-item * {
  cursor: pointer;
}
.product__review_images-item__video:before {
  content: "";
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("/images/video-play.svg") center/contain no-repeat;
  position: absolute;
  z-index: 5;
  transform: scale(0.5);
}
.product__review_images-item__video:after {
  content: "";
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  inset: 0;
}
.product__review_sort {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.product__review_sort-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product__review_sort-item {
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}
.product__review_sort-item * {
  cursor: pointer;
}
.product__review_sort .active {
  font-weight: 500;
  color: #c2025e;
}
.product__review_wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product__review_item {
  display: flex;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(232, 227, 230, 0.5);
  animation: fade-in 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.product__review_item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product__review_item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__review_item-top__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product__review_item-ico {
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #e8e3e6;
  font-weight: 800;
  font-size: 15px;
  color: #f6f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__review_item-name {
  font-weight: 600;
  font-size: 15px;
  color: #290718;
}
.product__review_item-date {
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
  white-space: nowrap;
}
.product__review_item-stars {
  display: flex;
  align-items: center;
  gap: 7px;
}
.product__review_item-text {
  font-weight: 400;
  font-size: 15px;
  color: #776e73;
}
.product__review_item.hidden {
  animation: fade-out 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.product__review_more, .product__review_less {
  display: none;
  font-weight: 500;
  font-size: 13px;
  color: #c2025e;
  width: 101px;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s;
}
.product__review_more *, .product__review_less * {
  cursor: pointer;
}
.product__review_more svg, .product__review_less svg {
  transition: all 0.3s;
}
.product__review_more.active, .product__review_less.active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.product__slider {
  max-height: 500px;
}
.product__slider_main {
  max-height: 500px;
}
.product__slider_main-wrapper {
  max-height: 500px;
}
.product__slider_main-slide {
  padding: 5px;
  height: 500px;
  max-height: 500px;
  background: #fff;
  cursor: pointer;
}
.product__slider_main-slide * {
  cursor: pointer;
}
.product__slider_main-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__slider_main-slide__video {
  position: relative;
}
.product__slider_main-slide__video img {
  filter: blur(3px);
}
.product__slider_main-slide__video span {
  width: 40px;
  height: 40px;
  background: rgb(255, 255, 255);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #C2025E;
}
.product__slider_main-slide__video span img {
  filter: none;
}
.product__slider_thumbs {
  min-width: 60px;
  width: 60px;
  height: 480px;
}
.product__slider_thumbs-slide {
  width: 60px;
  height: 60px;
  padding: 5px 8px;
  background: #fff;
  border-radius: 4px;
}
.product__slider_thumbs-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__slider_thumbs-slide__video {
  position: relative;
}
.product__slider_thumbs-slide__video span {
  width: 30px;
  height: 30px;
  background: rgb(255, 255, 255);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #C2025E;
}
.product__slider_thumbs-wrapper {
  height: 480px;
}
.product__slider_thumbs .swiper-slide {
  opacity: 0.3;
  z-index: 1;
  transition: all 0.3s;
}
.product__slider_thumbs .swiper-slide-thumb-active {
  border: 1px solid #c2025e;
  opacity: 1;
}
.product__slider_second {
  position: relative;
  height: 500px;
}
.product__slider_second .swiper-button-disabled {
  opacity: 0;
}
.product__slider_navigate {
  position: absolute;
  z-index: 5;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.product__slider_navigate-prev {
  top: 0;
}
.product__slider_navigate-prev svg {
  transform: rotate(180deg);
}
.product__slider_navigate-next {
  bottom: 0;
}
.product__slider_navigate * {
  cursor: pointer;
}

.review-mobile {
  background: #fff;
  position: fixed;
  z-index: 500;
  inset: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  padding-bottom: 50px;
}
.review-mobile__content {
  padding-top: 100px;
}
.review-mobile__item {
  padding: 12.5px 20px 12.5px 25px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 20px;
  position: relative;
}
.review-mobile__item_image {
  min-width: 50px;
  width: 50px;
  height: 50px;
}
.review-mobile__item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-mobile__item_code {
  color: #776E73;
  font-size: 11px;
  font-weight: 400;
}
.review-mobile__item_title {
  margin-top: 3px;
  color: #290718;
  font-size: 13px;
  font-weight: 600;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-mobile__item:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 10px;
  top: 48%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 1px solid #290718;
  border-left: 1px solid #290718;
}
.review-mobile .product__review_heading {
  gap: 5px;
}
.review-mobile .product__review_heading .product__review_star {
  margin-left: 5px;
}
.review-mobile .product__review_images-item__video span {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-mobile .product__review_item {
  display: flex !important;
}
.review-mobile.active {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.recently {
  margin-top: 50px;
}
.recently__slider {
  position: relative;
}
.recently__slider .card__slider.swiper {
  padding: 20px 10px;
}
.recently__title {
  font-weight: 700;
  font-size: 18px;
  color: #290718;
}

.order-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 240px;
}
.order-thanks__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.order-thanks__title {
  font-weight: 700;
  text-align: center;
}
.order-thanks__descr {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #a9a2a6;
  max-width: 460px;
  margin-top: 10px;
}
.order-thanks__btn {
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #f6f4f5;
  padding: 16px 30px;
  border: 1px solid transparent;
  background: #c2025e;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.order-thanks__btn:hover {
  background: none;
  border: 1px solid #c2025e;
  color: #C2025E;
}

.favorite__wrapper {
  margin-top: 30px;
  display: grid;
  grid-template: auto/repeat(5, 1fr);
  gap: 20px;
}
.favorite__wrapper .card .card__price_new {
  color: #290718;
}
.favorite__wrapper .card.card-favorite .card__top_heading-like svg path {
  stroke: #c2025e;
  fill: #c2025e;
}
.favorite-empty {
  margin: 172px 0;
}
.favorite-empty__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.favorite-empty__title {
  text-align: center;
}
.favorite-empty__text {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #a9a2a6;
  max-width: 370px;
  margin-top: 10px;
}
.favorite-empty__button {
  display: block;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #f6f4f5;
  padding: 16px 30px;
  border-radius: 10px;
  background: #c2025e;
  border: 1px solid #c2025e;
  transition: all 0.2s linear;
}
.favorite-empty__button:hover {
  color: #c2025e;
  background: none;
}

.cart__top {
  margin: 30px 0 127px;
}
.cart__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.cart__content_left {
  width: 100%;
  min-width: 650px;
}
.cart__content_left .cart__item {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(232, 227, 230, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cart__content_left .cart__item_left {
  margin-right: 20px;
}
.cart__content_left .cart__item_left .cart__item_ico {
  width: 150px;
  min-width: 150px;
  height: 150px;
  border-radius: 10px;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cart__content_left .cart__item_left .cart__item_ico img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart__content_left .cart__item_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.cart__content_left .cart__item_right .cart__item_content {
  display: flex;
  align-items: center;
}
.cart__content_left .cart__item_right .cart__item_title {
  font-weight: 400;
  font-size: 16px;
  color: #776e73;
  max-width: 264px;
}
.cart__content_left .cart__item_right .cart__item_price {
  font-weight: 500;
  font-size: 21px;
  text-align: right;
  color: #290718;
  margin-right: 50px;
  white-space: nowrap;
}
.cart__content_left .cart__item_right .cart__item_counter {
  max-width: 140px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background: #f8f7f7;
  padding: 0 20px;
  margin-right: 30px;
}
.cart__content_left .cart__item_right .cart__item_counter input {
  outline: none;
  border: none;
  background: none;
  width: 100%;
  text-align: center;
}
.cart__content_left .cart__item_right .cart__item_counter input::-webkit-outer-spin-button, .cart__content_left .cart__item_right .cart__item_counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart__content_left .cart__item_right .cart__item_counter button {
  outline: none;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cart__content_left .cart__item_right .cart__item_counter button * {
  cursor: pointer;
}
.cart__content_left .cart__item_right .cart__item_remove {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cart__content_left .cart__item_right .cart__item_remove * {
  cursor: pointer;
}
.cart__content_left .cart__item:not(:first-child) {
  padding-top: 20px;
}
.cart__content_right {
  padding: 30px 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  width: 100%;
  max-width: 375px;
}
.cart__content_right-order {
  display: none;
}
.cart__content_right-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(232, 227, 230, 0.5);
}
.cart__content_right-info div {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 13px;
  color: #776e73;
}
.cart__content_right-info div span {
  font-weight: 500;
  font-size: 31px;
  color: #290718;
}
.cart__content_right-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart__content_right-form .cart__form_title {
  font-weight: 700;
  font-size: 18px;
  color: #290718;
  text-align: center;
}
.cart__content_right-form .cart__form_fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart__content_right-form .cart__form_fields input, .cart__content_right-form .cart__form_fields textarea {
  width: 100%;
  height: 50px;
  padding: 16px 20px;
  border-radius: 6px;
  background: #f8f7f7;
  font-weight: 400;
  font-size: 15px;
  border: none;
  outline: none;
  cursor: text;
}
.cart__content_right-form .cart__form_fields input::-moz-placeholder, .cart__content_right-form .cart__form_fields textarea::-moz-placeholder {
  color: #776e73;
}
.cart__content_right-form .cart__form_fields input::placeholder, .cart__content_right-form .cart__form_fields textarea::placeholder {
  color: #776e73;
}
.cart__content_right-form .cart__form_fields textarea {
  height: 100px;
  resize: none;
}
.cart__content_right-form .cart__form_button button {
  width: 100%;
  height: 50px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  background: #c2025e;
  border: none;
  outline: none;
  margin-bottom: 14px;
}
.cart__content_right-form .cart__form_button p {
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: #c2bdbf;
}
.cart-empty {
  margin: 172px 0;
}
.cart-empty__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.cart-empty__title {
  text-align: center;
}
.cart-empty__text {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #a9a2a6;
  max-width: 370px;
  margin-top: 10px;
}
.cart-empty__button {
  display: block;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #f6f4f5;
  padding: 16px 30px;
  border-radius: 10px;
  background: #c2025e;
  border: 1px solid #c2025e;
  transition: all 0.2s linear;
}
.cart-empty__button:hover {
  color: #c2025e;
  background: none;
}

.card {
  padding: 10px 10px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  border: 1px solid transparent;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card__top {
  margin-bottom: 35px;
}
.card__top_heading {
  display: flex;
  align-items: center;
}
.card__top_heading-sale {
  font-weight: 500;
  font-size: 12px;
  color: #f0371e;
  border: 1px solid rgba(240, 55, 30, 0.2);
  border-radius: 10px;
  padding: 3px 5px;
  display: none;
  max-height: 22px;
  background: #fff;
}
.card__top_heading-sale.show {
  display: block;
}
.card__top_heading-like, .card__top_heading .card__like {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
}
.card__top_heading-like svg, .card__top_heading-like path, .card__top_heading .card__like svg, .card__top_heading .card__like path {
  fill: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.card__top_image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5/4;
}
.card__top_image img {
  width: 100%;
  height: 100%;
  max-width: 194px;
  max-height: 194px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
.card__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}
.card__content .card-mobile__price {
  display: none;
}
.card__star {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.card__star_wrapper {
  display: flex;
  align-items: center;
  gap: 7px;
}
.card__star_count {
  font-weight: 400;
  font-size: 12px;
  color: #c2bdbf;
}
.card__title {
  font-weight: 400;
  font-size: 16px;
  color: #776e73;
  display: block;
  margin-top: 10px;
  min-height: 60px;
}
.card__price {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 5px;
  margin-top: 10px;
}
.card__price_old {
  font-weight: 400;
  font-size: 15px;
  text-decoration: line-through;
  color: #c2bdbf;
}
.card__price_new {
  font-weight: 500;
  font-size: 21px;
  color: #290718;
}
.card__price span {
  cursor: pointer;
}
.card__button {
  margin-top: 13px;
  display: block;
  border: 1px solid rgba(194, 2, 94, 0.2);
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #c2025e;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}
.card__button-cart {
  color: #fff;
  background: #c2025e;
  border: 1px solid transparent;
}
.card__button_row {
  display: none;
}
.card__status {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 2px 3px;
  border: 1px solid;
  color: transparent;
  border-radius: 10px;
  text-transform: uppercase;
}
.card__status.stock {
  color: #19b03a;
  border-color: rgba(25, 176, 58, 0.2);
}
.card__status.order {
  color: #ed930d;
  border-color: rgba(237, 147, 13, 0.2);
}
.card .card__like {
  display: none;
}
.card:hover {
  box-shadow: 0 4px 15px 0 rgba(194, 2, 94, 0.1);
  border: 1px solid #e8e3e6;
}

.card-row {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  min-height: 120px;
  height: 120px;
  padding: 20px 20px 20px 0;
}
.card-row .card__top {
  margin: 0;
  height: 120px;
  position: relative;
}
.card-row .card__top_image {
  height: 120px;
  width: 120px;
}
.card-row .card__top_image img {
  height: 80px;
  width: 95px;
}
.card-row .card__top_heading {
  position: absolute;
  top: 10px;
  left: 10px;
}
.card-row .card__top_heading-like {
  display: none;
}
.card-row .card__bottom {
  flex-direction: row;
  align-items: center;
  gap: 54px;
  height: 100%;
}
.card-row .card__bottom_top {
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.card-row .card__title {
  height: auto;
  min-width: 210px;
  margin: 0;
}
.card-row .card__price {
  max-width: 250px;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.card-row .card__price span {
  white-space: nowrap;
}
.card-row .card__button {
  margin: 0;
  min-width: 224px;
  max-width: 224px;
  height: 50px;
}
.card-row .card__like {
  display: block;
  cursor: pointer;
}
.card-row .card__like * {
  cursor: pointer;
}
.card-row .card__status {
  margin: 0;
}
.card-row .card__content, .card-row .card__wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.card-banner {
  padding: 30px;
  border-radius: 10px;
  background: url("/images/product-card/card-banner.png") center/cover no-repeat;
}
.card-banner__title {
  font-weight: 800;
  font-size: 22px;
  /* line-height: 24px; */
  line-height: 1.09091;
  color: #182f1f;
  max-width: 186px;
}
.card-banner__descr {
  font-weight: 400;
  font-size: 14px;
  color: #182f1f;
  max-width: 100px;
  margin-top: 13px;
}

.card-video {
  border-radius: 10px;
  position: relative;
}
.card-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.card-video__link {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #f6f4f5;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card-video__link svg {
  padding-left: 5px;
}
.card-video__link svg, .card-video__link path {
  cursor: pointer;
}

.card__slider.swiper {
  padding: 30px 10px;
  margin-bottom: -30px;
}
.card__slider.swiper .swiper-wrapper {
  align-items: stretch;
}
.card__slider.swiper .swiper-slide {
  height: auto;
}

.card__arrow {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}
.card__arrow_item {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 1px solid #e8e3e6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.card__arrow_item svg, .card__arrow_item path {
  cursor: pointer;
}
.card__arrow_prev {
  position: absolute;
  left: -70px;
}
.card__arrow_next {
  position: absolute;
  right: -70px;
}
.swiper-button-lock, .swiper-button-disabled {
  display: none;
}

.ready-solution {
  padding: 20px 30px;
  border-radius: 10px;
  background: #f6f4f5;
}
.ready-solution__suptitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ready-solution__suptitle span {
  font-weight: 400;
  font-size: 17px;
  color: #c2025e;
}
.ready-solution__suptitle span, .ready-solution__suptitle svg {
  cursor: pointer;
}
.ready-solution__title {
  max-width: 284px;
  min-height: 56px;
  font-weight: 800;
  font-size: 23px;
  color: #2b2b2b;
  margin-top: 8px;
}
.ready-solution__wrapper {
  display: grid;
  grid-template: auto/repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
}
.ready-solution__item_image {
  width: 100%;
  height: 234px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ready-solution__item_image img {
  height: 194px;
  width: 194px;
  -o-object-fit: cover;
     object-fit: cover;
}
.ready-solution__item_star {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
}
.ready-solution__item_star span {
  font-weight: 400;
  font-size: 11px;
  color: #c2bdbf;
}
.ready-solution__item_star img {
  width: 12px;
  height: 12px;
}
.ready-solution__item_star-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ready-solution__item_title {
  font-weight: 400;
  font-size: 14px;
  color: #776e73;
  margin-top: 8px;
  max-width: 226px;
  min-height: 34px;
}
.ready-solution__item_price {
  font-weight: 500;
  font-size: 17px;
  color: #290718;
  margin-top: 22px;
}

.breadcrumbs {
  margin: 20px 0 10px;
}
.breadcrumbs-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumbs-item {
  color: #a9a2a6;
}
.breadcrumbs-item-link {
  font-weight: 400;
  font-size: 13px;
  color: #a9a2a6;
}
.breadcrumbs-item-link span {
  cursor: pointer;
}

.banner {
  border-radius: 10px;
  padding: 60px 162px;
  min-height: 280px;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f7f7;
}
.banner-small {
  margin: 0;
  min-height: 216px;
  padding: 60px 220px;
}
.banner-small__content {
  gap: 10px !important;
  max-width: 455px !important;
}
.banner-small__title {
  font-weight: 800;
  font-size: 30px;
  /* line-height: 31px; */
  line-height: 1.03333;
  text-transform: uppercase;
  color: #290718;
}
.banner__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  position: relative;
  z-index: 5;
}
.banner__descr {
  font-weight: 400;
  font-size: 18px;
  color: #776e73;
}
.banner__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transform-style: preserve-3d;
}
.banner__bg img {
  position: absolute;
  bottom: -33%;
  left: 60%;
  transform: translateZ(2px);
}
.banner__bg svg {
  position: absolute;
  right: 16%;
  bottom: 0;
  filter: blur(90px);
  transform: translateZ(1px);
}

.filter {
  width: 265px;
  display: flex;
  flex-direction: column;
  gap: 47px;
}
.filter__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.filter__category {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.filter__category_title {
  font-weight: 500;
  font-size: 13px;
  color: #290718;
}
.filter__category:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(232, 227, 230, 0.5);
}
.filter__wrapper {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 350px;
  overflow: auto;
  /* Стили только для Firefox */
}
.filter__wrapper::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 3px;
  border-radius: 10px;
}
.filter__wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #E7E7E7;
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
@-moz-document url-prefix() {
  .filter__wrapper {
    scrollbar-width: thin; /* Устанавливаем тонкий скролл */
    scrollbar-color: #E7E7E7 rgba(0, 0, 0, 0); /* Цвет скролла и фона */
  }
}
.filter__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter__item-checkbox label {
  cursor: pointer;
}
.filter__item-checkbox label * {
  cursor: pointer;
}
.filter__item-checkbox label > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filter__item-checkbox label > span {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.filter__item-checkbox label > span::before {
  content: "";
  display: block;
  border: 1px solid #e8e3e6;
  border-radius: 6px;
  min-width: 30px;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.filter__item-checkbox label > input:checked + span::before {
  content: "";
  background-image: url("/images/checked.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.filter__item-checkbox label span {
  font-weight: 400;
  font-size: 15px;
  color: #776e73;
}
.filter__item-radio label {
  cursor: pointer;
}
.filter__item-radio label * {
  cursor: pointer;
}
.filter__item-radio label > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filter__item-radio label > span {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.filter__item-radio label > span::before {
  content: "";
  display: block;
  border: 1px solid #e8e3e6;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.filter__item-radio label > input:checked + span::before {
  content: "";
  background-image: url("/images/radio.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.filter__item-radio label span {
  font-weight: 400;
  font-size: 15px;
  color: #776e73;
}
.filter__item-num {
  display: flex;
  align-items: center;
  gap: 20px;
}
.filter__item-num input {
  border-radius: 6px;
  max-width: 122px;
  height: 50px;
  background: #f8f7f7;
  border: none;
  outline: none;
  padding: 0 15px;
  font-weight: 400;
  font-size: 15px;
  color: #776e73;
}
.filter__item-num input::-webkit-outer-spin-button,
.filter__item-num input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sort {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sort-dropdown {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 292px;
}
.sort-dropdown .dropdown {
  width: 190px;
  height: 50px;
  background: #f8f7f7;
  border-radius: 10px;
  position: relative;
}
.sort-dropdown .dropdown-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sort-dropdown .dropdown-arrow svg {
  transition: all 0.3s linear;
}
.sort-dropdown .dropdown input {
  width: 100%;
  height: 50px;
  border-radius: 9px;
  padding: 0 40px 0 20px;
  cursor: pointer;
  border: none;
  outline: none;
  background: #f8f7f7;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 400;
  font-size: 15px;
  color: #776e73;
}
.sort-dropdown .dropdown .options {
  border-radius: 10px;
  padding: 5px;
  cursor: pointer;
  background: #f8f7f7;
  outline: none;
  overflow: hidden;
  position: absolute;
  z-index: 10;
  top: 55px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-50px);
  visibility: hidden;
  box-shadow: 0 10px 25px 0 rgba(49, 32, 32, 0.15);
}
.sort-dropdown .dropdown .options .option {
  font-weight: 400;
  font-size: 15px;
  color: #776e73;
  padding: 15px;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.sort-dropdown .dropdown .options .option:not(:last-of-type) {
  margin-bottom: 8px;
}
.sort-dropdown .dropdown .options .option:hover {
  background: #e8e3e6;
}
.sort-dropdown .dropdown.opened .options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sort-dropdown .dropdown.opened .dropdown-arrow svg {
  transform: rotate(180deg);
}
.sort-view {
  height: 50px;
  padding: 5px;
  background: #f8f7f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.sort-view-item {
  height: 40px;
  width: 40px;
  background: none;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.sort-view-item * {
  cursor: pointer;
}
.sort-view-item svg path {
  transition: all 0.3s;
}
.sort-view-item-active {
  background: #c2025e;
}
.sort-view-item-active svg path {
  fill: white;
}

.buy-now {
  max-width: 375px;
  border-radius: 10px;
  padding: 40px 60px;
  background: #fff;
}
.buy-now__title {
  font-weight: 700;
  font-size: 23px;
  text-align: center;
  color: #2b2b2b;
}
.buy-now__form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.buy-now__field input {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 10px;
  padding: 0 20px;
  outline: none;
  background: #f8f7f7;
  color: #655d61;
  font-weight: 400;
  font-size: 15px;
}
.buy-now__field input::-moz-placeholder {
  color: #776e73;
}
.buy-now__field input::placeholder {
  color: #776e73;
}
.buy-now__btn {
  padding: 15px 20px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c2025e;
  background: #c2025e;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.buy-now__btn:hover {
  background: none;
  color: #c2025e;
}
.buy-now__policy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-now__policy a {
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: #776e73;
}
.buy-now .f-button.is-close-btn {
  top: 10px;
  right: 10px;
}

.review-modal {
  padding: 30px;
  border-radius: 10px;
  max-width: 570px;
}
.review-modal__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.review-modal__title {
  font-weight: 700;
  font-size: 26px;
  color: #2b2b2b;
}
.review-modal__stars {
  display: flex;
  direction: rtl;
  justify-content: space-between;
  gap: 9px;
  overflow: hidden;
}
.review-modal__stars_label {
  position: relative;
  width: 22px;
  height: 22px;
  filter: grayscale(1);
  transition: all 0.2s linear;
  overflow: hidden;
  background: url("/images/review-star.svg") center/cover no-repeat;
  cursor: pointer;
}
.review-modal__stars_label:hover, .review-modal__stars_label:hover ~ .review-modal__stars_label, .review-modal__stars_label.checked, .review-modal__stars_label.checked ~ .review-modal__stars_label {
  filter: grayscale(0);
}
.review-modal__stars_input {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  border-radius: 0;
  opacity: 0;
  cursor: pointer;
}
.review-modal__form input, .review-modal__form textarea {
  font-weight: 400;
  font-size: 15px;
  color: #776e73;
  padding: 16px 20px;
  width: 100%;
  height: 50px;
  border-radius: 6px;
  background: #f8f7f7;
  outline: none;
  border: none;
  cursor: text;
}
.review-modal__form input:not(input), .review-modal__form textarea:not(input) {
  margin-top: 10px;
  height: 100px;
  resize: none;
}
.review-modal__form .review-modal__inpts {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-modal__images {
  margin-top: 20px;
}
.review-modal__images_title {
  font-weight: 500;
  font-size: 15px;
  color: #290718;
}
.review-modal__images_wrapper {
  margin-top: 12px;
}
.review-modal__images_files {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.review-modal__images_files .review-modal__file_thumb {
  border-radius: 4px;
  width: 76px;
  height: 76px;
  border: 1px solid #e8e8e8;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-modal__images_files .thumb-video {
  position: relative;
  overflow: hidden;
}
.review-modal__images_files .thumb-video:before {
  content: "";
  display: block;
  width: 76px;
  height: 76px;
  background: url("/images/video-play.svg") center/contain no-repeat;
  position: absolute;
  z-index: 5;
  transform: scale(0.5);
}
.review-modal__images_files .thumb-video:after {
  content: "";
  display: block;
  width: 76px;
  height: 76px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  inset: 0;
}
.review-modal__images_files .thumb-video.video-open:before, .review-modal__images_files .thumb-video.video-open:after {
  display: none;
}
.review-modal__images_download {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 4px;
  border: 1px dashed #C2025E;
  outline: none;
  background: url("/images/review-download.svg") center no-repeat;
  cursor: pointer;
}
.review-modal__images_download input {
  display: none;
}
.review-modal__btn {
  width: 100%;
  height: 50px;
  margin-top: 20px;
  outline: none;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #C2025E;
  background: #c2025e;
  transition: all 0.2s linear;
  cursor: pointer;
}
.review-modal__btn:hover {
  background: none;
  color: #c2025e;
}
.review-modal__privacy {
  margin-top: 10px;
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: #c2bdbf;
}
.review-modal__privacy a {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.review-modal .f-button.is-close-btn {
  top: 5px;
  right: 5px;
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  bottom: 0;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
  background: #FFF;
  /* 444 */
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
}
.mobile-menu a {
  gap: 5px;
}

@media screen and (max-width: 1200px) {
  .header__top {
    gap: 10px;
  }
  .header__top_right, .header__top_middle {
    gap: 10px;
  }
  .header__bottom {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .header__categories_menu {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .header-catalog__container {
    grid-template: auto/240px 1fr;
  }
  .header-catalog__tabs {
    gap: 5px;
  }
  .header-catalog__tabs_item {
    padding: 10px;
  }
  .header-catalog__menu.active {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
@media screen and (max-width: 992px) {
  .header__top_middle, .header__top_right {
    display: none;
  }
  .header__bottom {
    display: none;
  }
  .header-catalog {
    display: none;
  }
  .header-mobile__search {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .mobile-menu {
    display: flex;
  }
}
@media screen and (max-width: 576px) {
  .header__logo {
    width: 115.73px;
    height: 23px;
  }
  .mobile-menu {
    padding: 10px 35px;
  }
  .mobile-menu .header__links {
    gap: 4px;
  }
  .mobile-menu .header__links_ico {
    width: 24px;
    height: 24px;
  }
  .mobile-menu .header__links_title {
    font-size: 11px;
  }
}
@media screen and (max-width: 1200px) {
  .footer__top_container {
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer__contacts {
    flex: 0 0 40%;
  }
}
@media screen and (max-width: 992px) {
  .footer__bottom {
    padding: 30px 0 90px;
  }
  .footer__banner_form {
    display: grid;
    grid-template: auto/repeat(3, auto);
  }
  .footer__banner_form input {
    width: 100%;
    max-width: 100%;
  }
  .footer__banner_form button {
    grid-column: 1/4;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 40px;
  }
  .footer__banner_form {
    display: grid;
    grid-template: auto/1fr;
    gap: 10px;
    max-width: 80%;
  }
  .footer__banner_form input {
    width: 100%;
    max-width: 100%;
  }
  .footer__banner_form button {
    grid-column: auto;
  }
}
@media screen and (max-width: 576px) {
  .footer__top {
    padding: 20px 0;
  }
  .footer__top_container {
    flex-direction: column;
  }
  .footer__top_container .footer__mailing {
    order: 1;
    max-width: 100%;
    padding: 20px;
  }
  .footer__top_container .footer__mailing_form input {
    max-width: 100%;
    height: 40px;
    font-size: 13px;
  }
  .footer__top_container .footer__mailing_form button {
    font-size: 13px;
    padding: 12px;
    height: 40px;
  }
  .footer__top_container .footer__mailing_title {
    font-size: 15px;
  }
  .footer__top_container .footer__mailing_descr {
    font-size: 13px;
  }
  .footer__top_container .footer__contacts {
    order: 2;
  }
  .footer__top_container .footer__nav-catalog {
    order: 3;
  }
  .footer__top_container .footer__nav-customers {
    order: 4;
  }
  .footer__bottom {
    padding: 20px 0 70px;
  }
  .footer__bottom p {
    font-size: 11px;
    line-height: 135%; /* 14.85px */
  }
  .footer__bottom_container {
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer__banner {
    padding: 30px 0;
  }
  .footer__banner_title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .footer__banner_descr {
    font-size: 14px;
  }
  .footer__banner_form input {
    font-size: 13px;
    height: 40px;
  }
  .footer__banner_form button {
    font-size: 14px;
    height: 40px;
  }
}
@media screen and (max-width: 375px) {
  .footer__mailing_heading svg {
    display: none;
  }
  .footer__mailing_form {
    flex-direction: column;
  }
  .footer__mailing_form button {
    width: 100%;
  }
  .footer__banner_descr {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
  h3 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .favorite__wrapper {
    display: grid;
    grid-template: auto/repeat(4, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .favorite__wrapper {
    grid-template: auto/repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .favorite__wrapper {
    margin-top: 20px;
    grid-template: auto/repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .favorite__wrapper {
    gap: 10px;
  }
}
@media screen and (max-width: 576px) {
  .favorite-empty {
    margin: 60px 0;
  }
  .favorite-empty__wrapper {
    gap: 10px;
  }
  .favorite-empty__title {
    margin-top: 10px;
  }
  .favorite-empty__text {
    max-width: 220px;
    font-size: 13px;
  }
  .favorite-empty__button {
    margin-top: 30px;
    height: 40px;
    padding: 10px 35px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .cart__content_right {
    padding: 20px;
  }
  .cart__item_counter {
    min-width: 125px;
    margin-right: 15px !important;
  }
  .cart__item_price {
    margin-right: 15px !important;
  }
}
@media screen and (max-width: 992px) {
  .cart__top {
    margin: 30px 0 80px;
  }
  .cart__content_right {
    position: fixed;
    border-radius: 0;
    padding: 20px;
    z-index: 100;
    width: 100%;
    max-width: 100%;
    left: 0;
    box-shadow: 0px -10px 20px 0px rgba(0, 0, 0, 0.03);
  }
  .cart__content_right form {
    display: none;
  }
  .cart__content_right-info {
    border: none;
    padding: 0;
    flex-wrap: nowrap;
    max-width: 500px;
    margin: 0 auto;
  }
  .cart__content_right-info div {
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
  }
  .cart__content_right-info div span {
    margin-top: 3px;
    color: #290718;
    font-size: 18px;
    font-weight: 500;
  }
  .cart__content_right-order {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C2025E;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 15px; /* 115.385% */
    border-radius: 8px;
    border: 1px solid rgba(194, 2, 94, 0.2);
    padding: 7px 12px;
    height: 40px;
  }
  #order {
    max-width: 360px;
    border-radius: 10px;
  }
  #order .f-button.is-close-btn {
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .cart__content_left {
    min-width: auto;
  }
  .cart__content_left .cart__item {
    position: relative;
    border-bottom: none;
    border-radius: 10px;
    background: #FFF;
    /* 444 */
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    padding-bottom: 0;
    padding: 10px;
  }
  .cart__content_left .cart__item:not(:first-child) {
    padding-top: 10px;
  }
  .cart__content_left .cart__item:not(:last-child) {
    margin-bottom: 10px;
  }
  .cart__content_left .cart__item_right {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cart__content_left .cart__item_title {
    padding-right: 40px;
    max-width: 100% !important;
  }
  .cart__content_left .cart__item_ico {
    width: 120px !important;
    height: 120px !important;
    min-width: 120px !important;
    box-shadow: none !important;
  }
  .cart__content_left .cart__item_remove {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .cart__content_left .cart__item_content {
    flex-wrap: wrap;
    row-gap: 5px;
  }
  .cart__top {
    margin: 10px 0;
  }
}
@media screen and (max-width: 576px) {
  .cart-empty {
    margin: 60px 0 120px;
  }
  .cart-empty__wrapper {
    gap: 10px;
  }
  .cart-empty__title {
    margin-top: 10px;
  }
  .cart-empty__text {
    max-width: 220px;
    font-size: 13px;
  }
  .cart-empty__button {
    margin-top: 30px;
    height: 40px;
    padding: 10px 35px;
    font-size: 14px;
  }
  .cart__content_left .cart__item_title {
    font-size: 13px !important;
  }
  .cart__content_left .cart__item_left {
    margin-right: 0;
  }
  .cart__content_left .cart__item_ico {
    width: 100px !important;
    height: 100px !important;
    min-width: 100px !important;
    padding: 10px !important;
  }
  .cart__content_left .cart__item_price {
    font-size: 15px !important;
  }
  .cart__content_left .cart__item_counter {
    height: 40px !important;
    padding: 0 10px !important;
    min-width: 100px;
    max-width: 100px !important;
    margin-right: 0 !important;
  }
  .cart__content_left .cart__item_counter button {
    transform: scale(0.7);
  }
  .cart__bottom .cart-special__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .cart__content_left .cart__item_ico {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
  }
}
@media screen and (max-width: 576px) {
  .special {
    margin-top: 30px;
  }
  .special__title {
    font-size: 16px;
  }
  .special__slider .card__slider.swiper {
    padding: 10px 0;
  }
  .special__slider .card__arrow {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .recently__title {
    font-size: 16px;
  }
  .recently__slider .card__slider.swiper {
    padding: 10px 0;
  }
  .recently__slider .card__arrow {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .order-thanks {
    margin: 60px 0;
    gap: 5px;
  }
  .order-thanks__wrapper {
    gap: 10px;
  }
  .order-thanks__title {
    margin-top: 10px;
  }
  .order-thanks__descr {
    max-width: 220px;
    font-size: 13px;
  }
  .order-thanks__btn {
    margin-top: 30px;
    height: 40px;
    padding: 10px 35px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1550px) {
  .promo__arrow {
    z-index: 20;
  }
  .promo__arrow_prev {
    left: 5px;
    background: #fff;
  }
  .promo__arrow_next {
    right: 5px;
    background: #fff;
  }
}
@media screen and (max-width: 1400px) {
  .promo__arrow {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1200px) {
  .promo__slide_bg-img_big {
    left: 665px;
  }
  .promo__slide_bg-img-2 {
    left: 880px;
  }
  .promo__slide_bg-img-3 {
    left: 580px;
  }
}
@media screen and (max-width: 768px) {
  .promo__slide {
    padding: 30px;
    min-height: 400px;
  }
  .promo__slide_title {
    font-size: 38px;
  }
  .promo__slide_heading {
    gap: 10px;
  }
  .promo__slide .promo__slide_bg-svg_rt, .promo__slide .promo__slide_bg-svg_rt-b {
    display: none;
  }
  .promo__slide .promo__slide_bg-svg_rb {
    left: 0;
    bottom: -25%;
  }
  .promo__slide .promo__slide_bg-img_big {
    width: 210px;
    height: 210px;
    left: auto;
    top: auto;
    right: 10px;
    bottom: 0;
  }
  .promo__slide .promo__slide_bg-img-2 {
    width: 139px;
    height: 139px;
    left: auto;
    bottom: -30px;
    right: -30px;
  }
  .promo__slide .promo__slide_bg-img-3 {
    width: 139px;
    height: 139px;
    left: auto;
    right: 150px;
  }
  .promo__arrow {
    display: none;
  }
  .promo__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  .promo__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #E8E3E6;
  }
  .promo__pagination .swiper-pagination-bullet-active {
    background: #C2025E;
  }
}
@media screen and (max-width: 576px) {
  .promo__slide {
    padding: 30px;
    min-height: 420px;
  }
  .promo__slide_title {
    font-size: 32px;
  }
  .promo__slide_descr {
    font-size: 18px;
  }
  .promo__slide_btn {
    font-size: 13px;
  }
  .promo__slide_video {
    padding: 0;
  }
}
@media screen and (max-width: 476px) {
  .promo__slide_title {
    font-size: 20px;
  }
  .promo__slide_descr {
    font-size: 16px;
  }
}
@media screen and (max-width: 1550px) {
  .card__slider.swiper {
    padding: 30px;
  }
  .card__arrow {
    z-index: 20;
  }
  .card__arrow_prev {
    left: 5px;
    background: #fff;
  }
  .card__arrow_next {
    right: 5px;
    background: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .card-row {
    padding: 10px 10px 10px 0;
  }
  .card-row .card__wrapper {
    gap: 15px;
  }
  .card-row .card__content {
    gap: 15px;
  }
  .card-row .card__top {
    height: 100px;
  }
  .card-row .card__top_image {
    width: 100px;
    height: 100px;
  }
  .card-row .card__button {
    min-width: auto;
    max-width: 180px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .card__arrow {
    display: none;
  }
  .card__content .card-mobile__price {
    display: flex;
  }
  .card__wrapper .card__price {
    display: none;
  }
  .card-row {
    padding: 13px 30px 13px 0;
  }
  .card-row .card__button {
    display: none;
  }
  .card-row .card__button_row {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(194, 2, 94, 0.2);
    border-radius: 8px;
    width: 30px;
    height: 30px;
    background: none;
    transition: all 0.3s ease;
  }
  .card-row .card__button_row svg {
    min-width: 16px;
  }
  .card-row .card__button_row svg path {
    transition: all 0.3s ease;
  }
  .card-row .card__button_row.card__button-cart {
    background: #c2025e;
  }
  .card-row .card__button_row.card__button-cart svg path {
    fill: #fff;
  }
  .card-row .card__like {
    position: absolute;
    top: 10px;
    right: 13px;
    transform: scale(0.8);
  }
  .card-row .card__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .card-row .card__bottom_top {
    flex-direction: column;
    gap: 5px;
  }
  .card-row .card__title {
    min-width: auto;
    min-height: auto;
  }
}
@media screen and (max-width: 576px) {
  .card__top {
    margin-bottom: 8px;
  }
  .card__top_image img {
    width: 125px;
    height: 125px;
  }
  .card__star {
    gap: 3px;
  }
  .card__star img {
    width: 12px;
    height: 12px;
  }
  .card__star_count {
    font-size: 10px;
  }
  .card__title {
    font-size: 13px;
    min-height: 32px;
    margin-top: 5px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card__price {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .card__price_new {
    font-size: 13px;
  }
  .card__price_old {
    font-size: 11px;
  }
  .card__button {
    font-size: 12px;
    padding: 10px 5px;
  }
  .card-banner {
    padding: 10px;
  }
  .card-banner__title {
    font-size: 14px;
  }
  .card-banner__descr {
    max-width: 108px;
    margin-top: 8px;
    font-size: 12px;
  }
  .card-video__link {
    width: 60px;
    height: 60px;
  }
  .card__slider.swiper {
    padding: 10px 0;
  }
  .card__status {
    font-size: 8px;
  }
  .card-row .card__content {
    gap: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .banner {
    padding: 60px 80px;
  }
  .banner-small {
    padding: 60px 100px;
  }
}
@media screen and (max-width: 992px) {
  .banner {
    padding: 40px 60px 250px;
  }
  .banner-small {
    padding: 60px 80px;
  }
  .banner-small .banner__bg img {
    transform: scale(0.8) translateZ(2px);
    left: 450px;
  }
  .banner-small .banner__bg svg {
    right: auto;
    left: 400px;
  }
  .banner-small .banner__title {
    font-size: 24px;
  }
  .banner-small .banner__descr {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .catalog-banners-arrow {
    display: none;
  }
  .banner-small {
    padding: 50px;
  }
  .banner-small .banner__bg img {
    transform: scale(0.6) translateZ(2px);
    left: 350px;
  }
  .banner-small .banner__bg svg {
    right: auto;
    left: 330px;
  }
  .banner-small .banner-small__content {
    max-width: 380px !important;
  }
}
@media screen and (max-width: 576px) {
  .bannerComponent {
    margin-top: 30px;
  }
  .banner {
    padding: 30px 25px 170px;
    min-height: auto;
  }
  .banner__content {
    gap: 6px;
  }
  .banner__title {
    font-size: 18px;
  }
  .banner__descr {
    font-size: 14px;
  }
  .banner__bg img {
    max-width: 175px;
    bottom: -20%;
    left: 50%;
    transform: translateZ(2px) translateX(-50%);
  }
  .banner__bg_big img {
    max-width: 265px;
    bottom: -35%;
  }
  .banner-small {
    padding: 25px 30px 112px;
  }
  .banner-small .banner__bg img {
    transform: scale(1) translateZ(2px);
    left: auto;
    right: 17px;
    bottom: -60px;
  }
  .banner-small .banner__bg svg {
    right: auto;
    left: 150px;
  }
  .banner-small .banner__title {
    font-size: 18px;
    text-transform: none;
  }
  .banner-small .banner-small__content {
    max-width: 100% !important;
  }
  .banner-small .banner-small__content .banner__descr {
    max-width: 200px;
    font-size: 14px;
  }
}
@media screen and (max-width: 425px) {
  .banner-small .banner__bg img {
    transform: scale(0.8) translateZ(2px);
    left: auto;
    right: 5px;
    bottom: -60px;
  }
  .banner-small .banner__bg svg {
    right: auto;
    left: 20px;
  }
  .banner-small .banner-small__content .banner__descr {
    max-width: 125px;
  }
}
@media screen and (max-width: 1250px) {
  .recommendation__wrapper {
    grid-template: auto/1fr;
  }
  .recommendation__cards {
    grid-template: auto/repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 992px) {
  .recommendation__cards {
    gap: 20px;
  }
}
@media screen and (max-width: 878px) {
  .recommendation__cards {
    max-width: 600px;
    grid-template: auto/repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .recommendation__cards {
    gap: 10px;
  }
}
@media screen and (max-width: 1250px) {
  .popular__wrapper {
    grid-template: auto/1fr;
  }
  .popular__cards {
    grid-template: auto/repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 992px) {
  .popular__cards {
    gap: 20px;
  }
}
@media screen and (max-width: 878px) {
  .popular__cards {
    max-width: 600px;
    grid-template: auto/repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .popular {
    margin-top: 30px;
  }
  .popular__cards {
    gap: 10px;
  }
}
@media screen and (max-width: 1250px) {
  .ready-solution__wrapper {
    grid-template: auto/repeat(4, 1fr);
    gap: 10px;
  }
  .ready-solution__title {
    min-height: auto;
  }
}
@media screen and (max-width: 878px) {
  .ready-solution__wrapper {
    grid-template: auto/repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .ready-solution {
    padding: 15px;
  }
  .ready-solution__suptitle span {
    font-size: 13px;
  }
  .ready-solution__title {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 700;
  }
  .ready-solution__item_image {
    width: 100%;
    height: 140px;
  }
  .ready-solution__item_image img {
    width: 120px;
    height: 120px;
  }
  .ready-solution__item_star {
    margin-top: 10px;
    gap: 3px;
  }
  .ready-solution__item_star img {
    width: 12px;
    height: 12px;
  }
  .ready-solution__item_star_count {
    font-size: 10px;
  }
  .ready-solution__item_title {
    font-size: 13px;
    min-height: 32px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ready-solution__item_price {
    margin-top: 10px;
    font-size: 13px;
  }
}
@media screen and (max-width: 576px) {
  .brand {
    margin-top: 30px;
  }
  .brand__title {
    font-size: 15px;
  }
  .brand__slider {
    margin-top: 10px;
  }
  .brand__item {
    padding: 20px;
    max-height: 100px;
  }
  .brand__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 476px) {
  .brand__item {
    max-height: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .catalog-content__cards {
    grid-template: minmax(264px, auto)/repeat(3, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 992px) {
  .catalog-content {
    flex-direction: column;
    margin-top: 20px;
  }
  .catalog-content .filter {
    display: none;
  }
  .catalog-mobile__filter {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .catalog-content__cards {
    grid-template: minmax(264px, auto)/repeat(2, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 576px) {
  .sort {
    gap: 5px;
  }
  .sort-dropdown {
    gap: 8px;
  }
  .sort-dropdown label {
    font-size: 13px;
  }
  .sort-dropdown .dropdown {
    max-width: 148px;
    width: 100%;
    height: 40px;
  }
  .sort-dropdown .dropdown input {
    font-size: 13px;
    padding: 0 30px 0 10px;
    height: 40px;
    width: 100%;
    max-width: 148px;
  }
  .sort-dropdown .dropdown .options .option {
    font-size: 12px;
    padding: 10px;
  }
  .sort-dropdown .dropdown-arrow {
    right: 8px;
  }
  .sort-view {
    height: 40px;
  }
  .sort-view-item {
    width: 30px;
    height: 30px;
  }
  .catalog-brands__title {
    font-size: 15px;
  }
  .catalog-popular {
    margin-top: 20px;
  }
  .catalog-popular__wrapper {
    margin-top: 10px;
  }
  .catalog-popular__title {
    font-size: 15px;
  }
  .catalog-popular__item_card {
    height: 180px;
  }
  .catalog-popular__item_card-img {
    height: 145px;
  }
  .catalog-popular__item_title {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  #mobile-filter {
    border-radius: 10px;
  }
  #mobile-filter .f-button.is-close-btn {
    --f-button-bg: rgba(0, 0, 0, 0);
    --f-button-color: none;
    top: 10px;
    right: 10px;
  }
  #mobile-filter .filter__title {
    color: #290718;
    font-size: 16px;
    font-weight: 700;
  }
  #mobile-filter .filter__title span {
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    background: #C2025E;
    margin-left: 5px;
  }
  #mobile-filter .filter {
    width: 100%;
    gap: 20px;
  }
  #mobile-filter .filter__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
  }
  #mobile-filter .filter__buttons button {
    font-size: 14px;
    font-weight: 400;
    height: 40px;
    width: 140px;
    cursor: pointer;
    border-radius: 8px;
    background: none;
    border: none;
  }
  #mobile-filter .filter__buttons #filter-reset {
    color: #C2025E;
    border: 1px solid rgba(194, 2, 94, 0.2);
  }
  #mobile-filter .filter__buttons #filter-send {
    background: #C2025E;
    color: #fff;
  }
}
@media screen and (max-width: 576px) {
  #mobile-filter .filter__category_title {
    font-size: 12px;
  }
  #mobile-filter .filter__item-num input {
    font-size: 13px;
  }
  #mobile-filter .filter__item-checkbox label span, #mobile-filter .filter__item-radio label span {
    font-size: 13px;
  }
}
.burger-menu {
  display: none;
}

@media screen and (max-width: 992px) {
  .header-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 36px;
    height: 36px;
  }
  .header-burger .close {
    display: none;
  }
  .header-burger .open {
    display: block;
  }
  .header-burger.active .close {
    display: block;
  }
  .header-burger.active .open {
    display: none;
  }
  .burger-menu {
    display: block;
    position: fixed;
    left: -100%;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease 0s;
    z-index: 99950;
    background: #fff;
    overflow: auto;
    padding: 20px 40px 100px;
    /* Стили только для Firefox */
  }
  .burger-menu::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 3px;
    border-radius: 10px;
  }
  .burger-menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #b5b5b5;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  }
  @-moz-document url-prefix() {
    .burger-menu {
      scrollbar-width: thin; /* Устанавливаем тонкий скролл */
      scrollbar-color: #b5b5b5 rgba(0, 0, 0, 0); /* Цвет скролла и фона */
    }
  }
  .burger-menu.active {
    left: 0;
    border-top: 1px solid #E8E3E6;
  }
  .burger-menu__menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .burger-menu__menu_item a, .burger-menu__menu_item span {
    color: #776E73;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s ease;
  }
  .burger-menu__menu_item .submenu {
    padding: 20px;
    background: #F6F4F5;
    border-radius: 0 0 10px 10px;
    display: none;
    flex-direction: column;
    gap: 10px;
  }
  .burger-menu__menu_item .submenu a:hover {
    color: #C2025E;
    text-decoration: underline;
  }
  .burger-menu__menu_item.has-child.active .submenu {
    display: flex;
  }
}
@media screen and (max-width: 992px) {
  .header-mobile__search {
    height: 100%;
  }
  .header-mobile__search form {
    width: 100%;
    height: 100%;
    display: none;
    background: #fff;
  }
  .header-mobile__search form input {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    outline: none;
    color: #290718;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 60px 0 48px;
  }
  .header-mobile__search form input::-moz-placeholder {
    color: #C2BDBF;
  }
  .header-mobile__search form input::placeholder {
    color: #C2BDBF;
  }
  .header-mobile__search form input::-webkit-search-decoration, .header-mobile__search form input::-webkit-search-results-decoration, .header-mobile__search form input::-webkit-search-results-button, .header-mobile__search form input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
  }
  .header-mobile__search form button {
    width: 36px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-mobile__search .close {
    display: none;
  }
  .header-mobile__search .open {
    display: block;
  }
  .header-mobile__search.active {
    position: absolute;
    width: calc(100% - 40px);
    height: 100%;
    left: 20px;
    right: 20px;
    background: #fff;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .header-mobile__search.active form {
    display: block;
  }
  .header-mobile__search.active .close {
    display: block;
  }
  .header-mobile__search.active .open {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  .product__info_left-sliders {
    max-width: 470px;
  }
}
@media screen and (max-width: 1200px) {
  .product__review {
    grid-template: auto/1fr;
    gap: 20px;
  }
  .product__review_right {
    grid-row: 1/2;
  }
  .product__review_counter-top {
    justify-content: flex-end;
    gap: 20px;
  }
  .product__review_counter-item__progress {
    max-width: calc(100% - 150px);
  }
  .product__info_right {
    display: none;
  }
  .product__info {
    grid-template: auto/1fr;
  }
  .product__info_left-bottom .product__info_buy {
    display: flex !important;
    margin-bottom: 30px;
  }
  .product__info_left-bottom .product__info_buy .product__info_right-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .product__info_left-bottom .product__info_buy .product__info_buttons {
    margin: 0;
    width: 350px;
  }
  .product__info_characteristic {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .product__review_right {
    display: none;
  }
  .product__slider_main {
    width: 100%;
  }
  .product__slider_thumbs {
    min-width: 60px;
    width: 100%;
    height: 60px;
  }
  .product__slider_second {
    width: 100%;
    height: 60px;
  }
  .product__slider_navigate {
    display: none;
  }
  .product__info_left-sliders {
    flex-direction: column-reverse;
  }
  .product__info_left-sliders {
    max-width: 400px;
  }
  .product__review_mobile {
    display: flex !important;
    align-items: center;
    gap: 20px;
    margin-left: auto;
  }
  .product__review_mobile .product__review_mobile-more {
    display: none;
    color: #C2025E;
    font-size: 13px;
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  .product__info_mobile {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
  }
  .product__info_mobile .product__info_row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .product__info_left-info {
    display: none;
  }
  .product__info_left-top {
    justify-content: center;
  }
  .product__info_left-sliders {
    max-width: 540px;
  }
  .product__info_right-top {
    position: relative;
    padding: 15px 20px;
  }
  .product__info_buttons {
    width: 100% !important;
  }
  .product__info_buttons-like {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  .product__info_left-bottom .product__info_characteristic {
    display: flex !important;
    margin-bottom: 30px;
  }
  .product__info_left-bottom .characteristic-active {
    min-width: auto;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    padding: 0;
    position: static;
    z-index: 5;
    top: 30px;
    left: -20px;
  }
  .product__info_left-bottom .product__info_characteristic-more {
    margin-top: 10px;
  }
  .product__review_mobile .product__review_mobile-more {
    display: block;
    white-space: nowrap;
  }
  .product__review_wrapper .product__review_item:not(:first-child) {
    display: none;
  }
  .product__review_more.active {
    display: none;
  }
  .product__review_mobile-feedback {
    display: flex !important;
  }
  .product__review_sort {
    display: none;
  }
  .product__review_item {
    padding-bottom: 0;
    border-bottom: none;
  }
  .product__review_item-stars {
    display: none;
  }
  .product__review_item-stars__mobile {
    display: flex !important;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #290718;
  }
  .product__slider_thumbs-wrapper {
    height: auto;
  }
  .product__slider_thumbs-slide {
    height: 50px;
  }
  .buy-now {
    padding: 20px 30px;
  }
  .review-modal {
    width: 100% !important;
  }
}
@media screen and (max-width: 576px) {
  .product__info_left-sliders {
    max-width: 320px;
  }
  .product__slider_main {
    max-height: 320px;
  }
  .product__slider_main-slide {
    height: 320px;
    max-height: 320px;
  }
  .product__info_code,
  .product__info_rating-item {
    font-size: 11px;
  }
  .product__info_title {
    font-size: 18px;
  }
  .product__info_brand {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product__info_brand img {
    width: 65.489px;
    height: 18.383px;
  }
  .product__info_left-sale {
    font-size: 12px;
  }
  .product__info_price-title {
    font-size: 11px;
  }
  .product__info_price-new {
    font-size: 21px;
  }
  .product__info_price-old {
    font-size: 16px;
  }
  .product__info_counter {
    margin-top: 10px;
    height: auto;
    max-height: 100%;
    flex-wrap: wrap;
  }
  .product__info_counter-cart {
    max-width: 100px;
    padding: 10px 10px;
  }
  .product__info_counter-cart div {
    transform: scale(0.8);
  }
  .product__info_counter-delivery {
    font-size: 11px;
  }
  .product__info_counter-delivery__text {
    flex-direction: row;
    gap: 3px;
  }
  .product__info_buttons-cart {
    font-size: 14px;
    height: 40px;
  }
  .product__info_buttons-now {
    font-size: 14px;
    height: 40px;
    padding: 10px 20px;
  }
  .product__info_characteristic-title {
    font-size: 16px;
  }
  .product__info_characteristic-item {
    border-bottom: 1px solid rgba(232, 227, 230, 0.5);
    padding: 8px 0;
  }
  .product__info_characteristic-name,
  .product__info_characteristic-meaning {
    font-size: 12px;
  }
  .product__info_description-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .product__info_description-text {
    font-size: 12px;
  }
  .product__info_description-text p, .product__info_description-text ul, .product__info_description-text ol, .product__info_description-text li {
    font-size: 12px;
  }
  .product__review_left {
    margin-top: 20px;
  }
  .product__review_title {
    font-size: 16px;
    white-space: nowrap;
  }
  .product__review_count,
  .product__review_star {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .product__review_images-item {
    height: 56px;
  }
  .product__review_wrapper {
    margin-top: 20px;
  }
  .product__review_item-ico {
    min-width: 30px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .product__review_item {
    gap: 10px;
  }
  .product__review_item-name {
    font-size: 13px;
  }
  .product__review_item-text {
    font-size: 12px;
  }
  .product__review_item-date {
    font-size: 11px;
  }
  .product__review_item-top__right {
    align-items: center;
  }
  .product__review_item-top {
    height: 30px;
  }
  .product__review_item-content {
    gap: 5px;
  }
  .product__review_feedback {
    height: 40px;
    font-size: 14px;
  }
  .product__review_feedback svg {
    transform: scale(0.9);
  }
  .product__review_heading {
    flex-wrap: wrap;
  }
  .product__review_heading .product__review_mobile {
    gap: 10px;
  }
  .product__review_images {
    gap: 5px;
  }
  .product__slider_main-slide__video span {
    width: 30px;
    height: 30px;
  }
  .buy-now {
    padding: 20px;
    width: 100%;
    max-width: 340px;
  }
  .buy-now__title {
    text-align: left;
    font-size: 18px;
  }
  .buy-now__form {
    margin-top: 20px;
    gap: 10px;
  }
  .buy-now__field input {
    height: 40px;
    font-size: 13px;
    padding: 0 15px;
  }
  .buy-now__btn {
    margin-top: 10px;
    font-size: 14px;
    padding: 10.5px 15px;
  }
  .buy-now__policy a {
    font-size: 12px;
  }
  .buy-now .f-button.is-close-btn {
    background: none;
  }
  .buy-now .f-button.is-close-btn svg {
    stroke: #E8E3E6;
  }
  .review-modal {
    padding: 30px 20px;
  }
  .review-modal__heading {
    flex-wrap: wrap;
    row-gap: 5px;
  }
  .review-modal__title {
    font-size: 18px;
    white-space: nowrap;
  }
  .review-modal__stars {
    gap: 5px;
  }
  .review-modal__form input, .review-modal__form textarea {
    height: 40px;
    font-size: 13px;
    padding: 15px;
  }
  .review-modal__form textarea {
    height: 90px !important;
  }
  .review-modal__images_files .review-modal__file_thumb {
    width: 52px;
    height: 52px;
  }
  .review-modal__images_files .thumb-video:after, .review-modal__images_files .thumb-video:before {
    width: 52px;
    height: 52px;
  }
  .review-modal__images_download {
    width: 52px;
    height: 52px;
  }
  .review-modal__btn {
    height: 40px;
    font-size: 14px;
  }
  .review-modal__privacy {
    font-size: 12px;
  }
  .review-modal .f-button.is-close-btn {
    background: none;
    top: 2px !important;
    right: 2px !important;
  }
  .review-modal .f-button.is-close-btn svg {
    stroke: #E8E3E6;
  }
}
@media screen and (max-width: 375px) {
  .product__info_left-sliders {
    max-width: 300px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Inter", sans-serif;
}

html.lock {
  overflow: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  font-style: normal;
  font-weight: normal;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

main {
  min-height: 100vh;
}

.like svg path {
  stroke: #c2025e;
  fill: #c2025e;
}

@media screen and (max-width: 1400px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 576px) {
  main {
    min-height: 50vh;
  }
  h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 425px) {
  h3 {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */

/** Accordion */
.accordion-item {
  list-style: none;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.accordion-item.is-active {
  background: #fff;
}
.accordion-item.is-active .accordion-item_text {
  max-height: 500px;
  opacity: 1;
  padding: 16px;
  margin-top: 16px;
}
.accordion-item.is-active .accordion-item_arrow {
  transform: rotate(180deg);
  color: #0071e3;
}
.accordion-item_arrow {
  transition: transform 0.35s ease, color 0.35s ease;
  cursor: pointer;
}
.accordion-item_arrow svg {
  cursor: pointer;
}
.accordion-item_arrow svg path {
  fill: #776e73;
  cursor: pointer;
}
.accordion-item_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  line-height: 1.23;
  cursor: pointer;
}
.accordion-item_text {
  background: #f6f4f5;
  margin-top: 0;
  font-size: 16px;
  color: #776e73;
  border-radius: 16px;
  line-height: 1.19;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  transition: max-height 0.45s ease, opacity 0.25s ease, padding 0.35s ease, margin 0.35s ease;
}
@media (max-width: 768px) {
  .accordion-item {
    padding: 16px;
  }
  .accordion-item_text {
    font-size: 14px;
  }
  .accordion-item.is-active .accordion-item_text {
    padding: 16px;
  }
}

.btn {
  border-radius: 10px;
  border: none;
  padding: 15px 30px;
  background: #c2025e;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #f6f4f5;
  cursor: pointer
}
