.product-catalog__header {
  margin-bottom: 30px;
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.product-catalog-page {
  padding-top: 0;
}
.product-catalog-tag {
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 15px;
  line-height: 21px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-catalog-tag span {
  padding: 2px 12px;
  text-align: center;
  color: #FFF;
  background: #FE693A;
  border-radius: 50px;
}
.product-catalog-title {
  font-size: 64px;
}
.product-catalog-subtitle {
  font-size: 15px;
  color: #5c5c5c;
}
.product-catalog__body {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 50px 60px;
}
.product-catalog__slider {
  position: sticky;
  top: 100px;
  min-width: 0;
  display: flex;
  gap: 30px;
  flex-direction: row-reverse;
  aspect-ratio: 1/1;
}
.product-catalog__slider-image .swiper-slide {
  aspect-ratio: 1/1;
}
.product-catalog__slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-catalog__slider-thumbs {
  padding: 30px 0;
  width: 70px;
  flex-shrink: 0;
}
.product-catalog__slider-thumbs .swiper-slide {
  position: relative;
  width: 70px;
  height: 70px;
}
.product-catalog__slider-thumbs .swiper-slide > * {
  width: 100%;
  height: 100%;
}
.product-catalog__slider-thumbs .swiper-slide:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease-in-out;
}
.product-catalog__slider-thumbs .swiper-slide-thumb-active:after {
  content: '';
  height: 2px;
  opacity: 1;
  background: #fe693a;
}
.product-catalog__slider-thumbs img {
  object-fit: cover;
}
.product-catalog__slider-thumbs .pre-video {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-catalog__slider-thumbs .pre-video .icon-svg {
  width: 50px;
  height: 50px;
}
.product-catalog__slider-thumbs .swiper-button-prev, .product-catalog__slider-thumbs .swiper-button-next {
  position: absolute;
  top: initial;
  left: 0;
  right: 0;
  margin: 0;
  width: initial;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}
.product-catalog__slider-thumbs .swiper-button-prev:before, .product-catalog__slider-thumbs .swiper-button-next:before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("/images/icons/arrow.svg") center/contain no-repeat;
}
.product-catalog__slider-thumbs .swiper-button-prev:after, .product-catalog__slider-thumbs .swiper-button-next:after {
  display: none;
}
.product-catalog__slider-thumbs .swiper-button-prev.swiper-button-disabled, .product-catalog__slider-thumbs .swiper-button-next.swiper-button-disabled {
  opacity: .5;
  pointer-events: none;
}
.product-catalog__slider-thumbs .swiper-button-prev {
  top: 0;
}
.product-catalog__slider-thumbs .swiper-button-prev:before {
  transform: rotate(-90deg);
}
.product-catalog__slider-thumbs .swiper-button-next {
  bottom: 0;
}
.product-catalog__slider-thumbs .swiper-button-next:before {
  transform: rotate(90deg);
}
.product-catalog__content .radio-group {
  margin-bottom: 30px;
}
.product-catalog__content .button {
  margin-bottom: 30px;
  width: 100%;
  max-width: initial;
}
.product-catalog__price {
  margin-top: 35px;
  margin-bottom: 5px;
  font-size: 30px;
}
@media (max-width: 1199px) {
  .product-catalog-title {
    font-size: 48px;
  }
}
@media (max-width: 999px) {
  .product-catalog__header {
    margin-bottom: 15px;
  }
  .product-catalog-title {
    font-size: 32px;
  }
  .product-catalog__body {
    grid-template-columns: 1fr;
  }
  .product-catalog__body .accordion {
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 22px);
  }
  .product-catalog__slider {
    position: relative;
    top: initial;
    gap: 10px;
    flex-direction: column;
  }
  .product-catalog__slider-thumbs {
    padding: 0 30px 5px;
    width: 100%;
  }
  .product-catalog__slider-thumbs .swiper-slide {
    width: 50px;
    height: 50px;
  }
  .product-catalog__slider-thumbs .pre-video .icon-svg {
    width: 30px;
    height: 30px;
  }
  .product-catalog__slider-thumbs .swiper-button-prev {
    top: 0;
    left: 0;
    right: initial;
    bottom: 0;
    width: 20px;
    height: 100%;
  }
  .product-catalog__slider-thumbs .swiper-button-prev:before {
    transform: rotate(180deg);
  }
  .product-catalog__slider-thumbs .swiper-button-next {
    top: 0;
    left: initial;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 100%;
  }
  .product-catalog__slider-thumbs .swiper-button-next:before {
    transform: rotate(0);
  }
  .product-catalog__content .button {
    margin-bottom: 25px;
  }
}

/*# sourceMappingURL=product-catalog.css.map */
