@charset "UTF-8";

.lock body {
  touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wrapper > main {
  flex: 1 1 auto;
}

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

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

[class*=__container] {
  max-width: 1440px;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 15px;
}

/*
    Подключение базовых стилей
*/

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

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

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

body {
  color: #3f3c38;
  line-height: 1;
  font-family: "Lato", sans-serif;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fdfdfd;
}

input,
button,
textarea {
  font-size: inherit;
}

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

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

p,
span,
div {
  font-size: 16px;
}

html.lock body {
  overflow: hidden;
  position: relative;
}

html.lock body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(63, 60, 56, 0.2);
  backdrop-filter: blur(4px);
  z-index: 100;
}

.pagging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.pagging__arrow {
  font-size: 25px;
  opacity: 0.7;
}

.pagging__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pagging__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(63, 60, 56, 0.1);
  border-radius: 4px;
}

.pagging__item._active {
  background-color: #e76642;
  color: #ffffff;
}

/*
    Подключение стилей отдельных страниц
*/

.products__title {
  font-size: clamp(35px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-top: 50px;
}

.products__subtitle {
  max-width: 600px;
  text-wrap: balance;
  text-align: center;
  line-height: 150%;
  color: rgba(63, 60, 56, 0.8);
}

.single-content {
  display: flex;
  gap: 40px;
}

.products-single {
  width: 100%;
}

.products-single__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 40px;
}

.aside {
  min-width: 290px;
  height: 100%;
  overflow-y: auto;
  padding: 30px 20px;
  position: sticky;
  top: 20px;
  box-shadow: 0px 0px 10px rgba(63, 60, 56, 0.1);
  border: 1px solid rgba(63, 60, 56, 0.1);
  border-radius: 8px;
}

.aside::-webkit-scrollbar {
  width: 6px;
  /* ширина всей полосы прокрутки */
}

.aside::-webkit-scrollbar-track {
  background: rgba(63, 60, 56, 0.03);
  border-radius: 2px;
  /* цвет зоны отслеживания */
}

.aside::-webkit-scrollbar-thumb {
  background-color: #e76642;
  border-radius: 2px;
  /* цвет бегунка */
}

.aside__options:not(:last-child) {
  margin-bottom: 20px;
}

.aside__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 140%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(63, 60, 56, 0.2);
}

.aside__filter {
  max-height: 600px;
}

.aside__item {
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.5s;
}

.aside__item._active {
  background-color: #e76642;
  color: #ffffff;
}

.day-single__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.day-single__days {
  flex: 1 1 auto;
  box-shadow: 0 0 4px 2px rgba(63, 60, 56, 0.05);
  border: 1px solid rgba(63, 60, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  position: relative;
}

.day-single__day {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: 0.5s;
}

.day-single__day._active {
  background-color: #e76642;
  color: #ffffff;
  font-weight: 600;
}

.day-single__btn {
  position: relative;
  box-shadow: 0 0 4px 2px rgba(63, 60, 56, 0.05);
  border: 1px solid rgba(63, 60, 56, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  transition: 0.5s;
}

.day-single__btn i {
  transition: 0.5s;
  transition-delay: 0.3s;
}

.day-single__btn._active {
  color: #e76642;
}

.stock__title {
  margin-bottom: 40px;
}

.stock__inner {
  display: grid;
  gap: 40px;
}

.stock__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  box-shadow: 0px 0px 4px rgba(63, 60, 56, 0.1);
  border: 1px solid rgba(63, 60, 56, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.stock__row:nth-child(odd) .stock__col:nth-child(1) {
  order: 0;
}

.stock__row:nth-child(odd) .stock__col:nth-child(2) {
  order: 1;
  background-color: white;
  padding: clamp(15px, 2.5vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stock__row:nth-child(even) .stock__col:nth-child(2) {
  order: 0;
  background-color: white;
  padding: clamp(15px, 2.5vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stock__row:nth-child(even) .stock__col:nth-child(1) {
  order: 1;
}

.stock__image {
  position: relative;
  height: 100%;
}

.stock__image img {
  max-width: 100%;
}

.stock__col-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 15px;
}

.stock__col-text {
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 20px;
}

.stock__col-link {
  position: relative;
  display: inline-grid;
  line-height: 150%;
  font-weight: 900;
  font-size: 18px;
  color: #e76642;
  transition: 0.5s;
}

.stock__col-link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background-color: #e76642;
  transition: 0.5s;
  z-index: 0;
}

.index-slider {
  margin-top: 10px;
}

.index-slider__grid {
  display: flex;
  gap: 30px;
  min-width: 0;
}

.index-slider__slider {
  max-width: 100%;
  max-height: 100vh;
  min-height: 0;
  min-width: 0;
}

.index-slider__slider:hover .index-slider-prev {
  left: 20px;
  opacity: 1;
}

.index-slider__slider:hover .index-slider-next {
  right: 20px;
  opacity: 1;
}

.index-slider__wrapper {
  min-width: 0;
}

.index-slider__slide {
  padding: 40px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  border-radius: 5px;
  min-height: 400px;
  position: relative;
}

.index-slider__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(63, 60, 56, 0.2);
}

.index-slider .swiper-slide-active .index-slider__title {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.index-slider .swiper-slide-active .index-slider__subtitle {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.7s;
}

.index-slider .swiper-slide-active .index-slider__btn {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.9s;
}

.index-slider__title {
  font-size: 50px;
  color: white;
  text-wrap: balance;
  max-width: 630px;
  line-height: 120%;
  margin-bottom: 20px;
  transform: translateX(-100px);
  opacity: 0;
  transition: 0.5s;
}

.index-slider__subtitle {
  font-size: 18px;
  text-wrap: balance;
  max-width: 700px;
  line-height: 150%;
  color: white;
  margin-bottom: 40px;
  transform: translateX(-100px);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.index-slider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 290px;
  height: 50px;
  color: #fafafa;
  font-size: 16px;
  background-color: #b25f68;
  border-radius: 5px;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.5s;
}

.index-slider__grid-col {
  flex: 1 1 10%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.index-slider__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 290px;
  position: relative;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 20px;
  font-size: 23px;
  color: #fafafa;
  overflow: hidden;
  border-radius: 5px;
  font-family: Forum, serif;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgba(0, 0, 0, 0.4)), to(rgba(228, 227, 232, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 35%, rgba(228, 227, 232, 0) 100%);
}

.index-slider__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
}

.index-slider__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgba(0, 0, 0, 0.3)), to(rgba(228, 227, 232, 0.3)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 100%, rgba(228, 227, 232, 0.3) 100%);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
}

.index-slider__item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.index-slider__item:hover::before {
  opacity: 1;
}

.index-slider__item-title {
  position: relative;
  z-index: 2;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
}

.index-slider .index-slider-next,
.index-slider .index-slider-prev {
  background-color: #fafafa;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}

.index-slider .index-slider-next::after,
.index-slider .index-slider-prev::after {
  font-size: 18px;
  color: #4d6469;
}

.index-slider .index-slider-prev {
  left: 0;
}

.index-slider .index-slider-next {
  right: 0;
}

.index-slider .swiper-pagination-bullet {
  background-color: #4d6469;
}

.advantage__grid {
  padding: 50px 0;
  background-color: #fafafa;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

.advantage__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}

.advantage__icon {
  margin-bottom: 10px;
}

.advantage__title {
  font-size: 16px;
  font-weight: 600;
}

.advantage__subtitle {
  line-height: 150%;
}

.section {
  padding: 50px 0;
}

.section__top {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 40px;
  justify-content: center;
}

.section__top .line-left {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(77, 100, 105, 0.4);
}

.section__top .line-right {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(77, 100, 105, 0.4);
}

.section__title {
  font-size: 30px;
  font-family: Forum, serif;
}

.section__link {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 10px 30px;
}

.section__link:hover {
  color: #b25f68;
}

.section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}

.section .swiper-button-next,
.section .swiper-button-prev {
  background-color: #fafafa;
  width: 40px;
  height: 40px;
}

.section .swiper-button-next::after,
.section .swiper-button-prev::after {
  font-size: 16px;
  color: #b25f68;
}

.section__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 290px;
  height: 50px;
  background-color: #b25f68;
  color: #fafafa;
  margin: 0 auto;
  margin-top: 50px;
}

.card-section {
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-section__image {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-section__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.card-section__name {
  display: flex;
  flex: 1 1 auto;
  font-size: 25px;
  font-weight: 400;
  font-family: Forum, serif;
  color: #4d6469;
  padding: 20px 0;
  transition: 0.5s;
}

.card-section__name:hover {
  color: #b25f68;
}

.card-section__price {
  display: flex;
  font-size: 20px;
}

.card-section__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid rgba(178, 95, 104, 0.1);
  padding: 10px 0;
  margin-top: 10px;
}

.card-section__btn {
  padding: 0 10px;
}

.card-section__btn svg {
  -webkit-transition: 0s;
  transition: 0s;
}

.card-section__btn:hover svg {
  fill: #c05b5e;
}

.card-section .add-one-click {
  font-size: 18px;
}

.card-section .add-one-click:hover {
  color: #c05b5e;
}

.add-to-favorit {
  padding: 0 0 0 10px;
}

.add-to-favorit._active svg {
  fill: #b25f68;
}

.card-section .add-to-favorit svg {
  -webkit-transition: 0s;
  transition: 0s;
}

.card-section .add-to-favorit:hover svg {
  fill: #c05b5e;
}

.catalog {
  padding: 50px 0;
}

.catalog__head {
  margin-bottom: 30px;
}

.catalog__title {
  font-size: 40px;
  font-family: Forum, serif;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

.contact {
  padding: 60px 0px;
}

.catalog__item {
  min-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.catalog__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(5%, rgba(0, 0, 0, 0.5)), color-stop(50%, rgba(228, 227, 232, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 5%, rgba(228, 227, 232, 0) 50%);
  z-index: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.catalog__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgba(0, 0, 0, 0.5)), to(rgba(228, 227, 232, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 100%, rgba(228, 227, 232, 0) 100%);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.item-catalog {
  overflow: hidden;
}

.item-catalog:hover .item-catalog__image {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.item-catalog:hover::after {
  opacity: 1;
}

.item-catalog__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  transition: 0.5s;
}

.item-catalog__content {
  position: relative;
  z-index: 1;
}

.item-catalog__underline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.6);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 11px;
}

.item-catalog__name {
  font-size: 20px;
  color: #fafafa;
  margin-bottom: 10px;
}

.item-catalog__text {
  font-size: 16px;
  color: #fafafa;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.item-catalog__count {
  position: absolute;
  top: 20px;
  left: 20px;
  border: 1px solid rgba(250, 250, 250, 0.7);
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fafafa;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
}

.novelty {
  background-color: #fafafa;
}

.reviews {
  padding: 100px 0;
  background-size: cover;
  background-position-x: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.reviews__inner {
  text-align: center;
}

.reviews__title {
  text-align: center;
  margin-bottom: 40px;
}

.reviews__slider {
  position: relative;
}

.reviews__text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 150%;
  font-style: italic;
  font-weight: 300;
}

.reviews__name {
  margin-top: 40px;
  font-size: 20px;
}

.reviews__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px !important;
  height: 50px;
  width: 200px;
  color: #fafafa;
  border-radius: 5px;
  margin: 0 auto;
  background-color: #b25f68;
}

.reviews .reviews-button-next,
.reviews .reviews-button-prev {
  z-index: 3 !important;
}

.reviews .reviews-button-next::after,
.reviews .reviews-button-prev::after {
  font-size: 20px !important;
  color: #4d6469;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.reviews .reviews-button-prev {
  left: 7%;
}

.reviews .reviews-button-next {
  right: 7%;
}

.faq {
  padding: 50px 0;
}

.faq .spollers {
  gap: 20px;
}

.faq .spollers__title {
  border-radius: 0;
  height: 70px;
  font-size: 18px;
}

.faq .spollers__title::after,
.faq .spollers__title::before {
  width: 10px;
  background-color: #4d6469;
}

.faq .spollers__body {
  font-size: 16px;
}

ce .about {
  padding: 50px 0;
}

.about__row {
  display: flex;
  gap: 60px;
}

.about__image {
  width: 100%;
  height: 100%;
}

.about__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__undertitle {
  font-size: 10px;
  color: rgba(77, 100, 105, 0.6);
  text-transform: uppercase;
  margin-bottom: 7px;
}

.about__title {
  margin-bottom: 20px;
}

.about__text p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 150%;
}

.about__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b25f68;
  height: 50px;
  width: 250px;
  color: #fafafa;
}

.footer {
  padding: 50px 0;
  background-color: #222;
}

.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

.footer__logo {
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer__title {
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__nav a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer__nav a:not(:last-child) {
  margin-bottom: 20px;
}

.footer__nav a:hover {
  color: #fafafa;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer__social:not(:last-child) {
  margin-bottom: 20px;
}

.footer__social:hover {
  color: #fafafa;
}

.footer__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid rgba(250, 250, 250, 0.2);
  font-size: 16px;
  color: #fafafa;
}

.footer {
  padding: 50px 0;
  background-color: #222;
}

.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

.footer__logo {
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer__title {
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__nav a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer__nav a:not(:last-child) {
  margin-bottom: 20px;
}

.footer__nav a:hover {
  color: #fafafa;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer__social:not(:last-child) {
  margin-bottom: 20px;
}

.footer__social:hover {
  color: #fafafa;
}

.footer__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid rgba(250, 250, 250, 0.2);
  font-size: 16px;
  color: #fafafa;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

th,
td {
  padding: 8px;
}

.cookie-notice {
  display: none;
  width: 60%;
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: #384b5a;
  color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  line-height: 150%;
  z-index: 1000;
}

.cookie-notice a {
  color: #b25f68;
  text-decoration: underline;
}

.accept-cookies {
  margin-left: 10px;
  padding: 5px 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
}

.product-page__row {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}

.product-page__image {
  display: flex;
  justify-content: center;
  border: 1px solid rgba(63, 60, 56, 0.1);
  border-radius: 10px;
}

.product-page__image img {
  object-fit: cover;
  border-radius: 10px;
}

.product-page__head {
  display: flex;
  align-items: center;
}

.product-page__title {
  margin-bottom: 30px;
}

.product-page__text p {
  line-height: 120%;
}

.product-page__text-full {
  margin-top: 40px;
}

.product-page__label {
  display: block;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 10px;
  color: rgba(63, 60, 56, 0.7);
}

.product-page__price {
  margin-top: 20px;
}

.product-page__price p {
  font-size: 22px;
  font-weight: 600;
}

.nutritional {
  margin-top: 20px;
}

.nutritional__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 30px;
}

.nutritional__card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100px;
  box-shadow: 0 0 4px 2px rgba(63, 60, 56, 0.05);
  border: 1px solid rgba(63, 60, 56, 0.1);
  border-radius: 6px;
}

.nutritional__meaning {
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
}

.nutritional__name {
  color: rgba(63, 60, 56, 0.6);
}

.product-related__title {
  margin-bottom: 30px;
}

.product-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 30px;
}

.service-page {
  background-color: #fff;
}

.service-page .products__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.body-service {
  background-color: #f3f3f3;
  position: relative;
  padding: 250px 0px;
}

.body-service__separator {
  position: absolute;
  top: 0;
  left: 0;
}

.body-service__row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.body-service__col:first-child .body-service__image img {
  width: 650px;
  height: 650px;
}

.body-service__col:last-child {
  margin-top: 20px;
}

.body-service__col:last-child .body-service__image img {
  width: 350px;
  height: 350px;
}

.body-service__image img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.body-service__image span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  margin: 10px 0px 0px;
}

.body-service__title {
  margin-bottom: 20px;
}

.body-service__subtitle {
  margin-bottom: 50px;
}

.body-service__btn {
  margin-top: 40px;
  background-color: #e76642;
  width: 290px;
  height: 50px;
  color: #ffffff;
  border-radius: 4px;
}

.about-page {
  margin-top: 80px;
}

.about__title {
  font-size: 35px;
}

.about__page-row {
  display: flex;
  gap: 40px;
}

.about__content i {
  font-size: 20px;
}

.about__content p {
  margin-bottom: 20px;
  line-height: 150%;
}

.about__category {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__category h2 {
  font-size: 25px;
  line-height: 120%;
}

.about__category-inner {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(63, 60, 56, 0.1);
  border-left: 1px solid rgba(63, 60, 56, 0.1);
  border-bottom: 1px solid rgba(63, 60, 56, 0.1);
  border-radius: 5px;
}

.about__category-item {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  border-top: 1px solid rgba(63, 60, 56, 0.1);
}

.about__category-item:hover {
  background-color: #b25f68;
  color: white;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.about__grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(63, 60, 56, 0.1);
}

.about__grid-image {
  height: 50px;
  width: 50px;
}

.about__grid-image img {
  width: 100%;
  height: 100%;
}

.about__grid-text {
  margin-bottom: 0px !important;
}

.service-page__item {
  padding: 15px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(63, 60, 56, 0.1);
  border: 1px solid rgba(63, 60, 56, 0.1);
  border-radius: 6px;
}

.service-page__icon {
  margin-right: 10px;
}

/*
    Подключение стилей отдельных блоков
*/

.header {
  border-bottom: 1px solid rgba(63, 60, 56, 0.05);
}

.header__inner-pc {
  display: block;
  visibility: visible;
}

.header__bottom {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  border-top: 1px solid #e5e5e5;
  background-color: #f8f8f8;
}

.top-header {
  border-bottom: 1px solid rgba(77, 100, 105, 0.2);
}

.top-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-header__nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  font-size: 13px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-header__nav a:not(:last-child) {
  margin-right: 40px;
}

.top-header__nav a:hover {
  color: #b25f68;
}

.top-header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-header__socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-header__socials a img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-header__socials a:not(:last-child) {
  margin-right: 20px;
}

.top-header__socials a:hover img {
  opacity: 0.9;
}

.top-header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-header__login img {
  opacity: 0.6 !important;
}

.top-header__login span {
  margin-left: 10px;
}

.middle-header {
  padding: 10px 0;
}

.middle-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.middle-header__logo img {
  width: 86px;
}

.middle-header__search {
  width: clamp(290px, 70vw, 550px);
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(77, 100, 105, 0.3);
  overflow: hidden;
  border-radius: 5px;
}

.middle-header__search input[type=search] {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  outline: 0;
}

.middle-header__search input[type=search]::-webkit-input-placeholder {
  color: rgba(77, 100, 105, 0.5);
}

.middle-header__search input[type=search]::-moz-placeholder {
  color: rgba(77, 100, 105, 0.5);
}

.middle-header__search input[type=search]:-ms-input-placeholder {
  color: rgba(77, 100, 105, 0.5);
}

.middle-header__search input[type=search]::-ms-input-placeholder {
  color: rgba(77, 100, 105, 0.5);
}

.middle-header__search input[type=search]::placeholder {
  color: rgba(77, 100, 105, 0.5);
}

.middle-header__search button[type=submit] {
  width: 50px;
  height: 100%;
}

.middle-header__btn {
  width: 220px;
  height: 50px;
  background-color: #b25f68;
  color: #fafafa;
  font-size: 15px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.middle-header__btn:hover {
  background-color: #a13e4a;
}

.middle-header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right;
}

.middle-header__info a {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 120%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.middle-header__info a:hover {
  color: #b25f68;
}

.middle-header__info p {
  font-size: 12px;
}

.middle-header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.middle-header__action a,
.middle-header__action button {
  padding: 20px;
}

.bottom-header__nav {
  display: flex;
  align-items: center;
}

.bottom-header__nav a {
  display: flex;
  padding: 17px 25px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  color: #3f3c38;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
  transition: 0.5s;
}

.bottom-header__nav a:hover {
  background-color: #b25f68;
  color: #ffffff;
}

.middle-header__cart {
  position: relative;
}

.middle-header__cart img {
  width: 25px;
  height: 20px;
}

.cart_count {
  position: absolute;
  top: 3px;
  right: 5px;
  background-color: #b25f68;
  color: white;
  font-size: 10px;
  padding: 3px 6px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
}

.header__burger {
  width: 40px;
  height: 30px;
  position: relative;
}

.header__burger span,
.header__burger::before,
.header__burger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  height: 2px;
  margin-top: -1px;
  background-color: rgba(63, 60, 56, 0.9);
}

.header__burger::before {
  transform: translateY(-8px);
}

.header__burger::after {
  transform: translateY(8px);
}

.header-mb {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 99;
  box-shadow: 0px 0px 4px rgba(63, 60, 56, 0.3);
}

.header-mb__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
}

.header-mb__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-mb__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 35px;
}

.header-mb__phone img {
  width: 100%;
  height: 100%;
}

.header-mb__middle {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.header-mb__logo {
  width: 80px;
  height: 80px;
}

.header-mb__logo img {
  width: 100%;
  height: 100%;
}

.header-mb__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-mb__favorit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-mb__favorit img {
  width: 25px;
  height: 20px;
}

.header-mb__cart {
  padding: 5px;
  position: relative;
}

.header-mb__cart img {
  width: 25px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 30px;
  height: 30px;
  z-index: 999;
}

.close::before,
.close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin-top: -1px;
  margin-left: -11px;
  background-color: #b25f68;
}

.close::after {
  transform: rotate(-45deg);
}

.close::before {
  transform: rotate(45deg);
}

.hidden-menu {
  position: fixed;
  top: 0;
  left: -150%;
  width: 100%;
  max-width: 400px;
  min-width: 290px;
  height: 100vh;
  overflow-y: auto;
  background-color: white;
  z-index: 101;
  padding: 50px 0px 10px;
  transition: 0.5s;
}

.hidden-menu._show {
  left: 0%;
}

.hidden-menu::-webkit-scrollbar {
  width: 3px;
  /* ширина всей полосы прокрутки */
}

.hidden-menu::-webkit-scrollbar-track {
  background: rgba(63, 60, 56, 0.2);
  /* цвет зоны отслеживания */
}

.hidden-menu::-webkit-scrollbar-thumb {
  background-color: #b25f68;
  border-radius: 20px;
}

.hidden-menu__search {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 10px;
}

.hidden-menu__search input {
  border: 1px solid rgba(63, 60, 56, 0.3);
  height: 40px;
  padding: 10px;
  border-radius: 4px;
  width: 100%;
  color: rgba(63, 60, 56, 0.8);
  font-size: 14px;
}

.hidden-menu__search input:placeholder {
  color: rgba(63, 60, 56, 0.8);
}

.hidden-menu__search-btn {
  width: 50px;
  height: 40px;
}

.hidden-menu__list {
  border-top: 1px solid #b25f68;
}

.hidden-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hidden-menu__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-weight: 600;
}

.hidden-menu__item-inner {
  border-top: 1px solid rgba(63, 60, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hidden-menu__item-inner a {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-weight: 600;
}

.hidden-menu__item-inner button {
  padding: 10px;
}

.hidden-menu__action {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid #b25f68;
}

.hidden-menu__action a {
  font-weight: 600;
}

.hidden-menu__action button {
  text-align: left;
  color: #b25f68;
  font-weight: 600;
  text-decoration: underline;
}

.hidden-submenu {
  display: none;
  width: 100%;
  background-color: rgba(63, 60, 56, 0.02);
}

.hidden-submenu._show {
  display: block;
}

.hidden-submenu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hidden-submenu__item a {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  border-top: 1px solid rgba(63, 60, 56, 0.1);
}

.footer {
  padding: 50px 0;
  background-color: #222;
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer__logo {
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer__text {
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
  line-height: 150%;
  text-wrap: balance;
  font-size: 14px;
  margin-bottom: 15px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer__title {
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__nav a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer__nav a:not(:last-child) {
  margin-bottom: 20px;
}

.footer__nav a:hover {
  color: #fafafa;
}

.footer__social {
  display: flex;
  flex-direction: column;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: 0.5s;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer__social:not(:last-child) {
  margin-bottom: 20px;
}

.footer__social:hover {
  color: #fafafa;
}

.footer__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid rgba(250, 250, 250, 0.2);
  font-size: 16px;
  color: #fafafa;
}

.footer {
  padding: 50px 0;
  background-color: #222;
}

.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

.footer__logo {
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer__title {
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__nav a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer__nav a:not(:last-child) {
  margin-bottom: 20px;
}

.footer__nav a:hover {
  color: #fafafa;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer__social:not(:last-child) {
  margin-bottom: 20px;
}

.footer__social:hover {
  color: #fafafa;
}

.footer__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid rgba(250, 250, 250, 0.2);
  font-size: 16px;
  color: #fafafa;
}

._lock {
  overflow: hidden;
}

._lock body {
  position: relative;
}

._lock body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(63, 60, 56, 0.2);
  backdrop-filter: blur(3px);
  z-index: 100;
  cursor: pointer;
}

.product {
  padding: 0 0 50px;
  margin-top: 40px;
}

.ymaps-2-1-79-map {
  height: 100%;
}

.ymaps-2-1-79-map-copyrights-promo {
  display: none !important;
}

.ymaps-2-1-79-copyrights-pane {
  display: none !important;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding: 0;
  margin: 0;
}

.product__content {
  display: flex;
  gap: 50px;
  margin-top: 60px;
}

#delivery-price {
  display: none;
}

.product__image {
  min-width: 0;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.product__slider {
  flex: 1 1 70%;
}

.product__slide {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.product__slide img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__info {
  flex: 0 0 50%;
}

.product .product-thumb__slider {
  flex: 1 1 15%;
}

.product .product-thumb__slide {
  width: 100%;
  height: 160px !important;
  position: relative;
}

.product .product-thumb__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product .swiper-slide-thumb-active {
  border: 1px solid #b25f68;
}

.info-product__article {
  display: flex;
  line-height: 140%;
  margin-bottom: 10px;
}

.info-product__name-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 550px;
  margin-bottom: 30px;
}

.info-product__name {
  font-size: 25px;
}

.info-product__sizes {
  margin-bottom: 50px;
}

.info-product__sizes-title {
  font-size: 18px;
  color: rgba(63, 60, 56, 0.9);
  font-weight: 600;
  margin-bottom: 20px;
}

.info-product__sizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 20px;
  max-width: 550px;
}

.info-product__sizes-height {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-product__sizes-height div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-product__sizes-width {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(63, 60, 56, 0.1);
}

.info-product__sizes-width img {
  opacity: 0.7;
  width: 30px;
}

.info-product__sizes-width div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #b25f68;
  font-weight: 600;
}

.info-product__description {
  margin-bottom: 40px;
}

.info-product__description p {
  line-height: 150%;
  max-width: 550px;
}

.info-product__description-label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}

.info-product__inner {
  flex: 1 1 auto;
}

.info-product__action {
  max-width: 550px;
}

.info-product__favorit {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 550px;
}

.info-product__click {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  border: 1px solid #4d6469;
  border-radius: 5px;
  padding: 15px 30px;
}

.action-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.action-product__price {
  font-weight: 700;
  font-size: 25px;
}

.action-product__count {
  display: flex;
  align-items: center;
}

.action-product__count input {
  text-align: center;
  height: 30px;
  width: 100px;
  font-size: 16px;
  border: 1px solid rgba(77, 100, 105, 0.1);
}

.action-product__plus {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 20px;
  margin-left: clamp(10px, 10vw, 30px);
}

.action-product__plus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 15px;
  margin-left: -10px;
  height: 2px;
  margin-top: -1px;
  background-color: #b25f68;
}

.action-product__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 15px;
  margin-left: -10px;
  height: 2px;
  margin-top: -1px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background-color: #b25f68;
}

.action-product__minus {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 20px;
  margin-right: clamp(10px, 10vw, 30px);
}

.action-product__minus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 15px;
  margin-left: -10px;
  height: 2px;
  margin-top: -1px;
  background-color: #b25f68;
}

.action-product__submit {
  background-color: #b25f68;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 40px;
  color: #fafafa;
  border-radius: 5px;
}

.specification-product {
  margin-top: 100px;
}

.specification-product__header {
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(77, 100, 105, 0.2);
}

.specification-product__header button {
  font-size: 18px;
  font-weight: 600;
  padding: 0 20px;
}

.specification-product__header button:first-child {
  padding-left: 0;
}

.specification-product__header button._active {
  color: #b25f68;
}

.specification-product__info {
  display: none;
}

.specification-product__info._show {
  display: block !important;
}

.specification-product__info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.specification-product__info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.specification-product__info ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background-color: #b25f68;
}

.specification-product__info ul li:not(:last-child) {
  margin-bottom: 10px;
}

.specification-product__compound {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 20px;
}

.specification-product__compound .name {
  display: block;
}

.specification-product__compound .line {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-bottom: 2px dotted #4d6469;
}

.specification-product__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.specification-product__payment img {
  height: 30px;
  margin-bottom: 10px;
}

.specification-product__payment div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.specification-product__payment div span {
  font-size: 12px;
}

.similar-product {
  padding-top: 100px;
}

.similar-product__title {
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 900;
}

.similar-product__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 40px;
}

.empty-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
}

.empty-info p {
  font-size: 35px;
  font-weight: 900;
  color: rgba(63, 60, 56, 0.3);
  text-wrap: balance;
}

.ff {
  font-family: "Oswald", sans-serif;
}

._hidden {
  display: none !important;
}

.social-link img {
  width: 20px;
  height: 20px;
}

#count {
  position: absolute;
  top: 3px;
  right: 5px;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 10px;
  color: white;
  background-color: #b25f68;
}

.django-ckeditor-widget {
  width: 100%;
}

.text {
  padding: 60px 0px;
}

.text ul,
.text ol {
  padding: 0px 0px 0px 40px;
}

.text li {
  line-height: 150%;
}

.text a {
  line-height: 150%;
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  line-height: 140%;
}

.text p {
  line-height: 150%;
}

.delivery__title {
  font-size: 30px;
  margin-top: 40px;
}

#finaladress {
  display: none;
}

.section__wrapper {
  height: 100% !important;
}

.login {
  color: #343434;
}

.login__wrapper {
  display: flex;
  align-items: center;
}

.login__inner {
  display: grid;
  grid-template-rows: 100px 1fr 100px;
  padding: 40px 40px;
  height: 100vh;
}

.login__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login__top img {
  max-width: 50px;
}

.login__top p {
  font-size: 25px;
  font-weight: 900;
  line-height: 150%;
}

.login__middle {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.login__middle h1 {
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 10px;
}

.login__middle p {
  line-height: 150%;
  font-weight: 300;
}

.login__images {
  width: 100%;
  height: 100vh;
}

.login__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login__reset {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 40px;
}

.login__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5776c4;
}

.login__link i {
  transition: 0.5s;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.login-form__group {
  display: grid;
  gap: 10px;
}

.login-form__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.login-form__label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
}

.login-form__controls {
  background: #fbfbfb;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  display: inline-block;
  padding: 16px;
  width: 100%;
  outline: none;
}

.login-form__controls:focus {
  border-color: #5776c4;
}

.login-form__submit {
  padding: 16px;
  background: #5776c4;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

.login-form__reset {
  font-size: 14px;
  margin-bottom: 7px;
  color: #5776c4;
}

/*
    Подключение стилей отдельных компонентов
*/

.search {
  position: absolute;
  top: 0%;
  background-color: white;
  border-radius: 8px;
  left: 0;
  width: 0%;
  z-index: 10;
  transition: 0.5s;
  overflow: hidden;
  pointer-events: none;
}

.search._active {
  width: 100%;
  pointer-events: all;
}

.search form {
  display: flex;
}

.search form input {
  font-size: 18px;
  border-bottom: 1px solid rgba(63, 60, 56, 0.3);
}

.search form button {
  width: 150px;
  background-color: #e76642;
  color: #ffffff;
  border-radius: 0px 8px 8px 0px;
}

.filter-sort {
  position: absolute;
  top: 180%;
  margin-top: 10px;
  right: 0;
  width: 290px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  z-index: 19;
}

.filter-sort._active {
  top: 100%;
  pointer-events: all;
  opacity: 1;
}

.filter-sort__value {
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.5s;
}

.filter-sort__value:hover {
  color: #e76642;
}

.filter-sort__value._active {
  background-color: #e76642;
  color: white;
}

.price-input__fields {
  display: flex;
  align-items: center;
  border: 1px solid rgba(63, 60, 56, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.price-input__field input[type=number] {
  width: 100%;
  height: 40px;
  text-align: center;
  border: 1px solid rgba(63, 60, 56, 0);
  color: #3f3c38;
  background-color: transparent;
  appearance: none;
}

.price-input__field input[type=number]:focus {
  outline: none;
}

.price-input .separator {
  display: block;
  width: 1px;
  height: 40px;
  margin: 0px 1px;
  background-color: rgba(63, 60, 56, 0.1);
}

.price-input__slider {
  margin-top: 20px;
  height: 5px;
  border-radius: 5px;
  position: relative;
  background-color: rgba(63, 60, 56, 0.1);
}

.price-input__progress {
  height: 5px;
  position: absolute;
  left: 25%;
  right: 25%;
  border-radius: 5px;
  background-color: #e76642;
}

.price-input__range {
  position: relative;
}

.price-input__range input {
  position: absolute;
  top: -5px;
  height: 5px;
  width: 100%;
  background: none;
  appearance: none;
  pointer-events: none;
}

.price-input__range input::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  pointer-events: auto;
  appearance: none;
  border: none;
  background-color: #e76642;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.form__group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.form__label {
  font-weight: 400;
}

.form__label span {
  color: #d71635;
}

.form__controls {
  width: 100%;
  padding: 15px 10px;
  border-radius: 5px;
  border: 1px solid rgba(63, 60, 56, 0.3);
}

.form__controls:focus {
  outline: none;
  border-color: rgba(63, 60, 56, 0.9);
}

.form__controls::placeholder {
  color: rgba(63, 60, 56, 0.3);
}

.form__submit {
  padding: 20px 40px;
  background-color: #b25f68;
  align-self: flex-end;
  min-width: 290px;
  border-radius: 5px;
  color: #ffffff;
  transition: 0.5s;
}

.form__submit:hover {
  opacity: 0.9;
}

.form__submit:disabled {
  opacity: 0.7;
}

.form__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 0px 30px;
  border-bottom: 1px dashed rgba(63, 60, 56, 0.2);
}

.form__item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 10px;
}

.form__group-boolean {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form__boolean-label {
  cursor: pointer;
}

.form__controls-radio {
  appearance: none;
  width: 16px;
  height: 16px;
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(63, 60, 56, 0.7);
  cursor: pointer;
}

.form__controls-radio::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  border-radius: 4px;
  background-color: #b25f68;
}

.form__controls-radio:checked::before {
  display: block;
}

.form__controls-checkbox {
  appearance: none;
  width: 16px;
  height: 16px;
  position: relative;
  border-radius: 4px;
  border: 1px solid rgba(63, 60, 56, 0.7);
  cursor: pointer;
}

.form__controls-checkbox::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  border-radius: 4px;
  background-color: #b25f68;
}

.form__controls-checkbox:checked::before {
  display: block;
}

.form__help-text {
  font-size: 13px;
  font-weight: 600;
}

.form__row {
  display: flex;
  gap: 20px;
}

.breadcrumbs {
  display: flex;
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}

.breadcrumbs--top {
  margin-top: 40px;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 0px 10px;
  background-color: #3f3c38;
}

.callback {
  position: relative;
  width: 100%;
  height: 100%;
}

.callback__container {
  position: relative;
  z-index: 1;
}

.callback__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.callback__title {
  text-wrap: balance;
  text-align: center;
}

.callback__subtitle {
  max-width: 700px;
  text-align: center;
  text-wrap: balance;
  line-height: 150%;
  font-size: 18px;
  margin-top: 20px;
}

.callback__action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.callback__btn {
  background-color: #b25f68;
  padding: 20px 40px;
  border-radius: 6px;
  color: #ffffff;
  margin-top: 35px;
}

.favorites {
  padding: 60px 0px;
}

.favorites .section__title {
  margin-bottom: 40px;
}

.favorites__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 40px;
}

.favorites__item {
  display: grid;
  gap: 10px;
}

.favorites__image img {
  width: 100%;
}

.favorites__content {
  display: grid;
  gap: 15px;
}

.favorites__title {
  font-weight: 600;
}

.favorites__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.favorites__action-inner {
  display: flex;
  align-items: center;
}

.favorites__action-inner .add-to-favorit {
  height: 20px;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  90% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/*
    Подключение стилей отдельных блоков страницы
*/

.index-catalog {
  position: relative;
  padding: 60px 60px;
}

.index-catalog__inner {
  display: flex;
  flex-direction: column;
}

.index-catalog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.index-catalog__title {
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  gap: 30px;
}

.index-catalog__title svg {
  width: 30px;
}

.index-catalog__subtitle {
  font-size: 18px;
}

.index-catalog__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.index-catalog__link {
  font-size: 14px;
  font-weight: 700;
  line-height: 136%;
  transition: 0.5s;
  color: #3f3c38;
}

.index-catalog__link:hover {
  color: #d71635;
}

.cards-catalog {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 330px));
  gap: 30px;
}

.card {
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 50px 15px rgba(164, 152, 141, 0.16);
  border-radius: 20px;
  z-index: 1000;
  position: relative;
  z-index: 2;
}

.card:hover .card__click {
  display: block;
}

.card:hover .card__image img:nth-child(1) {
  opacity: 0;
}

.card:hover .card__image img:nth-child(2) {
  opacity: 1 !important;
}

.card__image {
  position: relative;
  min-width: 340px;
  min-height: 350px;
  width: 100%;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.5s;
}

.card__image img:nth-child(1) {
  opacity: 1;
}

.card__image img:nth-child(2) {
  opacity: 0;
}

.card__favorit {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}

.card__stock {
  position: absolute;
  top: 70px;
  right: 10px;
  padding: 10px;
  border-radius: 10px;
  background-color: #d71635;
  color: #ffffff;
}

.card__hit {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9;
  width: 40px;
  height: 40px;
}

.card__content {
  padding: 20px 20px 40px;
  background-color: white;
}

.card__click {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 70%;
  padding: 20px 0px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  backdrop-filter: blur(4px);
  border-radius: 20px;
  display: none;
}

.card__title-h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #232020;
  margin-bottom: 25px;
  font-family: "Oswald", sans-serif;
}

.card__content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__price {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #232020;
}

.card__price-number {
  font-size: 20px;
  margin-left: 10px;
}

.card__cart {
  width: 100%;
  display: flex;
}

.card__cart span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b25f68;
  color: white;
  font-size: 13px;
  border-radius: 4px;
  width: 100%;
  height: 30px;
}

.card .currency {
  font-weight: 600;
  font-size: 14px;
}

.card-section__action {
  display: flex;
}

.bg-absolute {
  position: absolute;
  z-index: -1;
  left: -50%;
  top: -50%;
  opacity: 0.1;
}

.advantages {
  padding: 30px 60px;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  justify-items: center;
  padding: 30px 0px;
}

.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages__item span {
  font-weight: 600;
  display: inline-flex;
  margin-top: 10px;
  text-align: center;
}

.advantages__icon img {
  width: 60px;
  height: 60px;
}

.faq {
  padding: 60px 60px;
}

.faq .index-catalog__head {
  margin-bottom: 0px;
  padding: 30px 0px;
}

.faq__title {
  margin-bottom: 30px;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.faq__item {
  text-align: center;
  background-color: #ffffff;
  border-radius: 30px;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
  text-wrap: balance;
  box-shadow: 0px 0px 4px rgba(63, 60, 56, 0.1);
  border: 1px solid rgba(63, 60, 56, 0.1);
  background-color: #ffffff;
  position: relative;
}

.faq__item:last-child {
  background-color: #d71635;
  color: #ffffff;
}

.faq__item:last-child span {
  display: none;
}

.faq__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #d71635;
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 10px;
}

.faq__item span svg {
  width: 15px;
  height: 15px;
}

.index-about {
  padding: 60px 60px;
}

.index-about .index-catalog__head {
  margin-bottom: 0px;
  padding: 30px 0px;
}

.index-about__text {
  margin: 30px 0px 40px;
}

.index-about__text p {
  font-size: 16px;
  line-height: 150%;
}

.index-about__text p:not(:last-child) {
  margin-bottom: 20px;
}

.index-about__slider {
  max-height: 550px;
  border-radius: 46px;
}

.index-about__slide img {
  max-width: 100%;
}

.index-about .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  background: #ffffff;
  border-radius: 0px;
  opacity: 1;
}

.index-about .swiper-pagination-bullet-active {
  background: #d71635;
}

.index-reviews {
  position: relative;
  padding: 60px 60px;
}

.index-reviews .index-catalog__head {
  margin-bottom: 0px;
  padding: 30px 0px;
}

.index-reviews__image:nth-child(1) {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.5;
}

.index-reviews__image:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
  opacity: 0.5;
}

.index-reviews__title {
  margin-bottom: 30px;
}

.index-category {
  padding: 60px 60px;
}

.index-category .index-catalog__head {
  margin-bottom: 0px;
  padding: 30px 0px;
}

.index-category__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  grid-gap: 32px;
  grid-auto-flow: dense;
  margin-top: 30px;
}

.index-category__item {
  display: flex;
  justify-content: space-between;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  padding: 45px;
  min-height: 450px;
  position: relative;
}

.index-category__item:hover .index-category__arrow {
  background: #b25f68;
}

.index-category__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(2.2deg, rgba(0, 0, 0, 0.8) 1.69%, rgba(0, 0, 0, 0) 98.02%);
  z-index: 0;
}

.index-category__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 100%, rgba(228, 227, 232, 0) 100%);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.index-category__item-col {
  position: relative;
  z-index: 1;
}

.index-category__item-col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.index-category__item-col:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-category__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
}

.index-category__arrow img {
  width: 10px;
}

.index-category__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px dotted white;
  border-radius: 50%;
  animation: circle 30s linear infinite;
}

.index-category__item-top span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  color: white;
  font-weight: 700;
}

.index-category__title {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.page-contact .contact {
  height: 900px;
}

.page-contact .contact__title {
  margin-bottom: 40px;
}

.page-contact .contact__map {
  position: relative;
}

.page-contact .contact__inner {
  position: absolute;
  top: clamp(1px, 10vh, 85px);
  left: clamp(1px, 10vh, 85px);
  z-index: 2;
  background-color: #ffffff;
  padding: clamp(20px, 20vw, 40px);
  width: clamp(290px, 90vw, 800px);
}

.page-contact .contact__content {
  margin-bottom: clamp(20px, 10vh, 40px);
}

.page-contact .content-contact__title {
  font-size: clamp(20px, 10vw, 25px);
  color: #3f3c38;
  line-height: 150%;
  margin-bottom: clamp(15px, 10vw, 25px);
}

.page-contact .content-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 50px 30px;
}

.page-contact .content-contact__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.page-contact .content-contact__item-left {
  display: flex;
  flex-direction: column;
}

.page-contact .content-contact__item-left span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #939297;
}

.page-contact .content-contact__item-left a,
.page-contact .content-contact__item-left p {
  font-size: 18px;
  color: rgba(178, 95, 104, 0.8);
  font-weight: 600;
  transition: 0.5s;
}

.page-contact .content-contact__item-left a:hover {
  color: #b25f68;
}

.page-contact .content-contact__item-right img {
  opacity: 0.3;
  width: 30px;
}

.page-contact .form-contact {
  border-top: 1px dashed rgba(63, 60, 56, 0.1);
}

.page-contact .form-contact__title {
  margin-top: 20px;
  font-size: clamp(20px, 10vw, 25px);
  color: #3f3c38;
  line-height: 150%;
  margin-bottom: clamp(15px, 10vw, 25px);
}

.page-contact .form-contact__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}

.page-contact .form-contact__row:not(:last-child) {
  margin-bottom: 20px;
}

.page-contact .form-contact__input {
  height: 60px;
  padding: 0px 20px;
  outline: none;
  border: 1px solid rgba(63, 60, 56, 0.3);
}

.page-contact .form-contact__input:focus {
  border-color: #3f3c38;
}

.page-contact .form-contact__input::placeholder {
  color: rgba(63, 60, 56, 0.6);
  font-weight: 500;
}

.page-contact .form-contact__input.error {
  border-color: brown;
}

.page-contact .form-contact__textarea {
  height: 150px;
  padding: 20px 20px;
  outline: none;
  border: 1px solid rgba(63, 60, 56, 0.3);
}

.page-contact .form-contact__textarea:focus {
  border-color: #3f3c38;
}

.page-contact .form-contact__textarea::placeholder {
  color: rgba(63, 60, 56, 0.6);
  font-weight: 500;
}

.page-contact .form-contact__textarea::-webkit-scrollbar {
  width: 6px;
}

.page-contact .form-contact__textarea::-webkit-scrollbar-track {
  background: transparent;
}

.page-contact .form-contact__textarea::-webkit-scrollbar-thumb {
  background-color: #b25f68;
}

.page-contact .form-contact__checkbox {
  cursor: pointer;
}

.page-contact .form-contact__checkbox label {
  cursor: pointer;
}

.page-contact .form-contact__submit {
  justify-content: center;
}

.page-contact .requisites {
  position: relative;
}

.page-contact .requisites__title {
  font-size: 35px;
  line-height: 120%;
  margin-bottom: 30px;
}

.page-contact .requisites__image {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  opacity: 0.1;
}

.page-contact .table-requisites {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.page-contact .table-requisites__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(63, 60, 56, 0.1);
  padding: 20px 20px;
}

.login {
  margin: 0px 10px;
}

.login__inner {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 20px 60px 2px rgba(149, 144, 135, 0.15);
  padding: 30px;
  border-radius: 10px;
}

.login__reset {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 40px;
}

.login__link:hover {
  color: #d71635;
}

.login ._title-h2 {
  text-align: center;
  margin-bottom: 20px;
}

.register__inner {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 20px 60px 2px rgba(149, 144, 135, 0.15);
  padding: 30px;
  border-radius: 10px;
}

.register ._title-h2 {
  text-align: center;
  margin-bottom: 20px;
}

.profile__title,
.profile .section__title {
  text-align: center;
  margin-bottom: 40px;
}

.profile__title-h2 {
  font-size: 25px;
  margin-bottom: 20px;
}

.profile__row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.profile__col {
  flex: 1 1 50%;
}

.profile__col:first-child {
  position: sticky;
  top: 100px;
  background-color: white;
  box-shadow: 0 20px 60px 2px rgba(149, 144, 135, 0.15);
  padding: 30px;
  border-radius: 10px;
}

.profile__avatar {
  width: 150px;
  height: 150px;
}

.profile__avatar img {
  max-width: 100%;
  object-fit: cover;
}

.profile__order {
  background-color: white;
  box-shadow: 0 20px 60px 2px rgba(149, 144, 135, 0.15);
  padding: 30px;
  border-radius: 10px;
}

.profile__item + .profile__item {
  margin-top: 30px;
}

.profile__item-header {
  font-size: 18px;
}

.profile__item-header span {
  color: #d71635;
}

.profile__item-header strong {
  margin-left: 5px;
}

.profile .process {
  color: orange;
}

.profile .success {
  color: green;
}

.profile .danger {
  color: red;
}

.profile__item-link {
  font-weight: 600;
}

.profile__total-sum {
  background-color: white;
  box-shadow: 0 20px 60px 2px rgba(149, 144, 135, 0.15);
  padding: 40px 30px;
  border-radius: 10px;
  margin-top: 40px;
}

.profile__total-sum p {
  font-size: 20px;
}

.profile__total-sum p span {
  font-size: 20px;
  font-weight: 800;
  color: #b25f68;
}

.profile table {
  border-collapse: collapse;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-top: 20px;
}

.profile td,
.profile th {
  border: 1px solid rgba(63, 60, 56, 0.2);
  padding: 15px 5px;
  text-align: left;
}

.order-create {
  padding: 60px 0px;
}

.order-create__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.order-create__col {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #fafafa;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
}

.order-create__col:last-child {
  padding: 0px;
  overflow: hidden;
}

.order-create__information {
  padding: 0px 25px 25px;
}

.order-create__title {
  font-size: 35px;
  line-height: 150%;
}

.order-create__item {
  display: flex;
  gap: 20px;
  border-bottom: 2px dashed rgba(63, 60, 56, 0.1);
  padding: 15px 0px;
}

.order-create__thumb {
  width: 50px;
  height: 50px;
}

.order-create__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-create__info {
  display: flex;
  flex-direction: column;
  height: 50px;
}

.order-create__name {
  flex: 1 1 auto;
  font-size: 18px;
  font-weight: 600;
}

.order-create__price {
  font-size: 18px;
}

.order-create__price span {
  font-weight: 600;
}

.order-create__promocode {
  margin-top: 30px;
  padding: 0px 25px;
}

.order-create__promocode p {
  color: #b25f68;
}

.order-create #order-create__promocode-error {
  display: none;
}

.order-create__total {
  font-size: 20px;
  margin-top: 20px;
}

.order-create__total span {
  font-size: 22px;
  font-weight: 600;
}

.order-create__summ {
  margin-top: 20px;
}

.order-create__delivery {
  margin-top: 20px;
}

.order-create__info-order {
  font-size: 30px;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-create__info-order span {
  font-size: inherit;
}

#contact-human {
  display: none;
}

#contact-human._show {
  display: flex;
}

#address-delivery.hidden {
  display: none;
}

.order-succes {
  padding: 60px 0px;
}

.order-succes__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-succes__image {
  background-color: green;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-succes__image i {
  font-size: 35px;
  color: white;
}

.order-succes__title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 30px;
  color: #b25f68;
  font-weight: 600;
  margin-bottom: 20px;
}

.order-succes__subtitle {
  font-size: 35px;
  line-height: 150%;
  margin-bottom: 40px;
  text-align: center;
}

.order-succes__questions {
  text-align: center;
  line-height: 150%;
}

.order-succes__questions-text {
  font-size: 18px;
}

.order-succes__questions-phone {
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-top: 30px;
}

.error-order {
  background-color: red;
}

.category-details {
  padding: 60px 0px;
}

.category-details__title {
  font-size: 25px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-align: center;
  margin-bottom: 40px;
}

.category-details__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.category-details__col {
  flex: 1 1 auto;
}

.category-details__col.filter-col {
  position: sticky;
  top: 10px;
  flex: 0 0 20%;
  min-width: 300px;
  background-color: white;
  border: 1px solid rgba(63, 60, 56, 0.3);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 20px;
  max-height: calc(100vh - 20px);
  height: 100%;
  overflow-y: auto;
}

.category-details__col.filter-col::-webkit-scrollbar {
  width: 4px;
  display: none;
  /* ширина всей полосы прокрутки */
}

.category-details__col.filter-col::-webkit-scrollbar-track {
  margin: 10px 0;
  border-radius: 100px;
  background: rgba(63, 60, 56, 0.1);
  /* цвет зоны отслеживания */
}

.category-details__col.filter-col::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: rgba(178, 95, 104, 0.5);
}

.category-details__col.filter-col:hover::-webkit-scrollbar {
  display: flex;
}

.category-details .cards-catalog {
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}

.category-details .content-catalog__filter {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
}

.category-details .content-catalog__filter span {
  font-weight: 600;
}

.category-details .content-catalog__filter a {
  display: flex;
}

.category-details .content-catalog__filter a + .category-details .content-catalog__filter a {
  margin-right: 10px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.reviews-add__row {
  display: flex;
  gap: clamp(20px, 10vw, 90px);
}

.reviews-add__col img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.reviews-add__title {
  margin-bottom: 30px;
}

.reviews-add__form {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.form-reviews__stars {
  display: inline-flex;
  flex-direction: row-reverse;
}

.form-reviews__stars img {
  width: 10px !important;
}

.form-reviews__star {
  transition: 0.5s;
}

.form-reviews__star:hover,
.form-reviews__star:hover ~ .form-reviews__star {
  background-position: 0px -1px;
}

.form-reviews__stars[data-rating-total="1"] .form-reviews__star:nth-child(n+5),
.form-reviews__stars[data-rating-total="2"] .form-reviews__star:nth-child(n+4),
.form-reviews__stars[data-rating-total="3"] .form-reviews__star:nth-child(n+3),
.form-reviews__stars[data-rating-total="4"] .form-reviews__star:nth-child(n+2),
.form-reviews__stars[data-rating-total="5"] .form-reviews__star:nth-child(n+1) {
  background-position: 0px -1px;
}

.form-reviews {
  display: flex;
  flex-direction: column;
}

.form-reviews__control {
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid rgba(63, 60, 56, 0.2);
  padding: 15px 0px;
  outline: none;
}

.form-reviews__control.error {
  border-color: brown;
}

.form-reviews__control:not(:last-child) {
  margin-bottom: 20px;
}

.form-reviews__control:focus {
  border-color: #3f3c38;
}

.form-reviews__control::-webkit-scrollbar {
  width: 6px;
  /* ширина всей полосы прокрутки */
}

.form-reviews__control::-webkit-scrollbar-track {
  background: rgba(63, 60, 56, 0.05);
  /* цвет зоны отслеживания */
}

.form-reviews__control::-webkit-scrollbar-thumb {
  background-color: #b25f68;
  /* цвет бегунка */
}

.form-reviews__group {
  margin: 10px 0px 10px;
}

.form-reviews__stars {
  position: relative;
  margin-right: 20px;
}

.form-reviews__stars span {
  background-size: cover;
  background-position: 0 -21px;
  background-repeat: no-repeat;
  width: 25px;
  height: 21px;
  float: left;
  display: block;
  margin: 0;
  cursor: pointer;
}

.form-reviews__stars img {
  width: 10px;
}

.form-reviews__btn {
  align-self: flex-start;
}

.filter__submit {
  width: 100%;
  padding: 15px 20px;
  background-color: #b25f68;
  border-radius: 5px;
  color: #ffffff;
  transition: 0.5s;
}

.filter__submit:hover {
  opacity: 0.9;
}

.filter-mb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0px;
}

.filter-mb__select {
  font-size: 16px;
  color: rgba(63, 60, 56, 0.9);
  padding: 10px 0px;
}

.filter-mb__btn {
  display: flex;
  gap: 40px;
  padding: 10px 20px;
  background-color: #b25f68;
  color: white;
  border-radius: 4px;
}

.filter-mobile {
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 101;
  padding: 0px 20px 20px;
  transition: 0.5s;
}

.filter-mobile._show {
  left: 0;
}

.filter-mobile .form__submit {
  width: 100%;
}

.filter-mobile .filter {
  padding-right: 0px;
}

.filter-mobile .close-filter {
  position: relative;
  top: 0;
  right: 0;
}

.filter-mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
  border-bottom: 1px solid rgba(63, 60, 56, 0.1);
  margin-bottom: 30px;
}

.filter-mobile__top button[type=reset] {
  font-size: 14px;
  text-decoration: underline;
}

.filter-mobile__top p {
  font-weight: 600;
}

.filter__body {
  padding-top: 20px;
}

.category-filter {
  height: 350px;
  overflow-y: auto;
  border-left: 1px solid rgba(63, 60, 56, 0.01);
  border-right: 1px solid rgba(63, 60, 56, 0.01);
}

.category-filter::-webkit-scrollbar {
  width: 0px;
  /* ширина всей полосы прокрутки */
}

.category-filter::-webkit-scrollbar-track {
  /* цвет зоны отслеживания */
}

.filter::-webkit-scrollbar {
  width: 1px;
}

.filter::-webkit-scrollbar-track {
  background: transparent;
}

.filter::-webkit-scrollbar-thumb {
  background-color: #b25f68;
  border-radius: 20px;
}

.filter__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(63, 60, 56, 0.1);
}

.filter__label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mini-cart {
  position: fixed;
  top: 0;
  right: -200%;
  height: 100vh;
  width: 450px;
  background-color: #ffffff;
  z-index: 101;
  box-shadow: 0px 0px 10px rgba(63, 60, 56, 0.1);
  border-radius: 10px;
  padding: 70px 20px 50px;
  transition: 0.5s;
}

.mini-cart__close {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 25px;
  height: 25px;
}

.mini-cart__close::before,
.mini-cart__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin-left: -50%;
  height: 2px;
  margin-top: -1px;
  background-color: #b25f68;
}

.mini-cart__close::before {
  transform: rotate(-45deg);
}

.mini-cart__close::after {
  transform: rotate(45deg);
}

.mini-cart_noempty {
  height: 100%;
}

.mini-cart__title {
  font-size: 22px;
  line-height: 140%;
  padding: 20px 0px;
  border-top: 1px solid rgba(63, 60, 56, 0.1);
}

.mini-cart__title span {
  font-size: 22px;
  color: #b25f68;
}

.mini-cart__inner {
  height: calc(100vh - 300px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
}

.mini-cart__inner::-webkit-scrollbar {
  width: 4px;
}

.mini-cart__inner::-webkit-scrollbar-track {
  background: rgba(63, 60, 56, 0.2);
}

.mini-cart__inner::-webkit-scrollbar-thumb {
  background-color: #b25f68;
  border-radius: 20px;
}

.mini-cart__item {
  display: flex;
  gap: 15px;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(63, 60, 56, 0.1);
}

.mini-cart__item + .mini-cart__item {
  margin-top: 20px;
}

.mini-cart__thumb img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.mini-cart__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.mini-cart__info {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-cart__name {
  max-width: 210px;
  margin-bottom: 5px;
}

.mini-cart__action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-cart__delete {
  align-self: flex-end;
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  padding: 5px;
  margin-top: 3px;
}

.mini-cart__delete::before,
.mini-cart__delete::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin-left: -50%;
  height: 2px;
  margin-top: -1px;
  background-color: #b25f68;
}

.mini-cart__delete::before {
  transform: rotate(-45deg);
}

.mini-cart__delete::after {
  transform: rotate(45deg);
}

.mini-cart__counter {
  display: flex;
  gap: 5px;
}

.mini-cart__counter input {
  width: 20px;
  font-size: 14px;
  text-align: center;
  outline: none;
}

.mini-cart__counter button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 25px;
  height: 25px;
}

.mini-cart__links {
  margin: 20px 10px 0px;
}

.mini-cart__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  color: white;
  background-color: #b25f68;
  border-radius: 5px;
}

.mini-cart__empty {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mini-cart__empty-text {
  text-transform: uppercase;
  font-size: 40px;
  text-wrap: balance;
  font-weight: 900;
  color: rgba(63, 60, 56, 0.3);
  margin-bottom: 30px;
}

.mini-cart__empty-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50px;
  color: white;
  background-color: #b25f68;
  border-radius: 20px;
}

.mini-cart._show-mini-cart {
  right: 0%;
}

.success {
  pointer-events: none;
  position: fixed;
  top: 20px;
  right: 0%;
  padding: 15px 30px;
  background-color: #3c8100;
  min-width: 290px;
  border-radius: 10px;
  transition: 0.5s;
  z-index: 999;
  opacity: 0;
}

.success__body {
  text-align: center;
  color: white;
}

.show {
  animation: fadeInOut 3s forwards;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform: scale(0);
  pointer-events: none;
  transition: 0.5s;
}

.popup__content {
  width: 560px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 26px;
  position: relative;
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup__title {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  text-wrap: balance;
  margin-bottom: 25px;
}

.popup__product {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-top: 1px dashed #c5b89a;
  border-bottom: 1px dashed #c5b89a;
  padding: 10px 0px;
}

.popup__product-image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 10px;
}

.popup__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup__product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.popup__product-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.popup__product-form .form__submit {
  width: 100%;
}

.popup .form__submit {
  align-self: center;
}

.popup._open {
  transform: scale(1) !important;
  pointer-events: all !important;
}

.popup__image {
  width: 100px;
  height: auto;
}

.popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup__callback-text {
  font-size: 30px;
  line-height: 140%;
  margin-top: 30px;
}

#order {
  align-items: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}

#success .popup__content {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#popup-notification {
  align-items: flex-end;
}

#popup-notification .popup__close {
  position: relative;
  top: auto;
  right: auto;
}

#popup-notification .popup__content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
  width: 100%;
  padding: 20px;
}

.popup__order {
  display: flex;
}

.popup__order .order-create__title {
  font-size: 20px;
}

.popup__order .form {
  padding: 30px;
  background-color: white;
  height: 100vh;
  overflow-y: auto;
}

.close-btn {
  width: 20px;
  height: 20px;
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background: #b25f68;
}

.close-btn::before {
  transform: rotate(-45deg);
}

.close-btn::after {
  transform: rotate(45deg);
}

@media screen and (min-width: 520px) {
  .reviews__grid {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  }
}

@media screen and (min-width: 600px) {
  .product-page__image img {
    max-width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 611px) {
  .stock__image {
    padding: 0px 0px 50%;
  }

  .stock__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (min-width: 640px) {
  .card__cart {
    width: 20px;
    height: 20px;
  }

  .card__cart span {
    display: none;
  }
}

@media screen and (min-width: 650px) {
  .filter-mb {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .section__top {
    justify-content: space-between;
  }

  .section__title {
    white-space: nowrap;
  }

  .population {
    padding: 100px 0 50px !important;
  }

  .product-page__image {
    flex: 0 0 50%;
  }

  .product-page__content {
    flex: 0 0 50%;
  }

  .product__slide img {
    min-width: 500px;
    width: 100% !important;
    height: 500px;
  }

  .login__middle {
    width: 400px;
  }

  .callback__content {
    flex: 1 1 50%;
  }

  .callback__action {
    flex: 1 1 50%;
  }

  .reviews-add__col {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .index-slider__slider {
    flex: 1 1 60%;
  }

  .header-mb {
    display: none;
  }

  .order-create__col {
    position: sticky;
    top: 20px;
    flex: 1 1 40%;
  }

  .order-create__col:last-child {
    position: sticky;
    top: 20px;
    flex: 1 1 60%;
  }
}

@media screen and (min-width: 1200px) {
  .index-category__item:nth-child(1) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(2) {
    grid-column: span 1;
  }

  .index-category__item:nth-child(3) {
    grid-column: span 1;
  }

  .index-category__item:nth-child(4) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(5) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(6) {
    grid-column: span 1;
  }

  .index-category__item:nth-child(7) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(8) {
    grid-column: span 1;
  }

  .index-category__item:nth-child(9) {
    grid-column: span 1;
  }

  .index-category__item:nth-child(10) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(11) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(12) {
    grid-column: span 1;
  }

  .index-category__item:nth-child(13) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(14) {
    grid-column: span 3;
  }

  .index-category__item:nth-child(15) {
    grid-column: span 2;
  }

  .index-category__item:nth-child(16) {
    grid-column: span 2;
  }

  .index-category__item:nth-child(17) {
    grid-column: span 3;
  }
}

@media screen and (max-width: 1460px) {
  .bottom-header__nav a {
    padding: 15px 20px;
  }
}

@media screen and (max-width: 1300px) {
  .card-section__image {
    height: 245px;
  }

  .card-section__name {
    font-size: 20px;
  }

  .card-section__price {
    font-size: 16px;
  }

  .bottom-header__nav a {
    padding: 15px 10px;
  }

  .category-details .cards-catalog {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }
}

@media screen and (max-width: 1220px) {
  .middle-header__search {
    width: 290px;
  }
}

@media screen and (max-width: 1150px) {
  #filter-category {
    display: none;
  }
}

@media screen and (max-width: 1140px) {
  .bottom-header__nav {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1024px) {
  .index-slider {
    margin-top: 98px;
  }

  .index-slider__grid {
    flex-direction: column-reverse;
  }

  .index-slider__grid-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
  }

  .about__row {
    flex-direction: column-reverse;
  }

  .header__inner-pc {
    display: none;
    visibility: hidden;
  }

  .cart_count {
    top: -6px;
    right: -1px;
  }

  .footer__grid {
    flex-wrap: wrap;
  }

  #count {
    top: -12px;
    right: -6px;
  }

  .page-contact {
    margin-top: 80px;
  }

  .order-create {
    margin-top: 80px;
  }

  .order-create__row {
    flex-direction: column;
  }

  .order-succes {
    margin-top: 80px;
  }

  .category-details {
    margin-top: 70px;
  }
}

@media screen and (max-width: 980px) {
  .action-product {
    flex-direction: column;
    align-items: flex-start;
  }

  .action-product__price {
    margin-bottom: 20px;
  }

  .action-product__submit {
    width: 100%;
  }
}

@media screen and (max-width: 920px) {
  .reviews .reviews-button-prev {
    top: 100%;
  }

  .reviews .reviews-button-next {
    top: 100%;
  }

  .about__page-row {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .index-slider__slide {
    padding: 40px 40px;
  }

  .section__top .line-left {
    display: none;
  }

  .section__top .line-right {
    display: none;
  }

  .section__title {
    text-align: center;
  }

  .product__content {
    flex-direction: column;
  }

  .action-product {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .login__inner {
    padding: 20px 20px;
  }

  .login__images {
    display: none;
  }

  .order-create__title {
    font-size: 30px;
  }

  .order-create__info-order {
    font-size: 23px;
  }

  .reviews-add__row {
    flex-direction: column;
  }

  .reviews-add__col:first-child {
    display: none;
  }
}

@media screen and (max-width: 664px) {
  .catalog__grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  }
}

@media screen and (max-width: 650px) {
  .category-details .content-catalog__filter {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .card-section__image {
    height: 200px;
  }

  .card-section__name {
    font-size: 18px;
  }

  .card-section__price {
    font-size: 16px;
  }

  .card-section__bottom {
    flex-direction: column;
    gap: 10px;
  }

  .card-section .add-one-click {
    width: 100%;
    height: 30px;
    border: 1px solid #3f3c38;
    border-radius: 4px;
    font-size: 12px;
  }

  .add-to-favorit {
    display: none;
  }

  .card__cart svg {
    display: none;
  }

  .card-section__action {
    width: 100%;
  }

  .category-details .cards-catalog {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media screen and (max-width: 620px) {
  .form__submit {
    width: 100%;
  }

  .page-contact .contact__map iframe {
    display: none;
  }

  .page-contact .contact__inner {
    padding: 0px 15px 40px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }

  .page-contact .requisites__image {
    display: none;
  }

  .page-contact .table-requisites {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }

  .page-contact .table-requisites__row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .reviews-add__col img {
    width: 100%;
    height: 400px;
  }

  .filter__submit {
    width: 100%;
  }

  .mini-cart {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .index-slider__slide {
    padding: 40px 20px;
  }

  .index-slider__title {
    font-size: 30px;
    max-width: 100%;
  }

  .index-slider__subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .index-slider__btn {
    width: 230px;
  }
}

@media screen and (max-width: 520px) {
  .about__btn {
    width: 100%;
  }

  .footer__grid {
    flex-direction: column;
  }
}

@media screen and (max-width: 425px) {
  .reviews__text {
    font-size: 16px;
  }

  .about__title {
    font-size: 24px;
  }

  .product .product-thumb__slider {
    display: none;
  }

  .specification-product {
    margin-top: 20px;
  }

  .similar-product {
    padding-top: 50px;
  }

  .form__group-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }

  .order-succes__image {
    width: 100px;
    height: 100px;
  }

  .order-succes__image i {
    font-size: 25px;
  }

  .order-succes__title {
    font-size: 20px;
  }

  .order-succes__subtitle {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .order-succes__questions-text {
    font-size: 16px;
  }

  .star-img {
    width: 12px;
  }

  .filter-mb {
    flex-direction: column;
  }

  .filter-mb {
    gap: 10px;
  }

  .filter-mb form {
    width: 100%;
  }

  .filter-mb__select {
    width: 100%;
    border: 1px solid rgba(63, 60, 56, 0.8);
    border-radius: 4px;
  }

  .filter-mb__btn {
    width: 100%;
    justify-content: space-between;
  }
}

@media (hover: hover) {
  .aside__item:hover {
    color: #e76642;
  }

  .day-single__day:not(._active):hover {
    color: #e76642;
  }

  .day-single__btn:hover {
    color: #e76642;
  }

  .stock__col-link:hover {
    opacity: 0.8;
  }

  .login__link:hover {
    opacity: 0.8;
  }

  .login__link:hover i {
    transform: translateX(-10px);
  }
}
/*# sourceMappingURL=maps/main.css.map */
