* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  max-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Jost", sans-serif;
}

.container {
  max-width: 1481px;
  margin: 0 auto;
  padding: 0 20px;
}

.title {
  font-size: 66px;
  line-height: 1.15;
  max-width: 871px;
  margin-bottom: 27px;
}
@media (max-width: 1330px) {
  .title {
    font-size: 46px;
    max-width: 659px;
  }
}
@media (max-width: 1100px) {
  .title {
    max-width: calc(100% - 380px);
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .title {
    max-width: calc(100% - 240px);
    font-size: 34px;
  }
}
@media (max-width: 580px) {
  .title {
    max-width: 100%;
    text-align: center;
    font-size: 30px;
    margin-bottom: 8px;
  }
}

.btn {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  height: 68px;
  padding: 0 45px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media (max-width: 580px) {
  .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    height: 56px;
  }
}
.btn-small {
  height: 46px;
  padding: 0 24px;
  font-size: 16px;
}
.btn-yellow {
  background: #FFC23A;
  color: #000;
}
.btn-yellow:hover {
  background: #FFB30A;
}
.btn-center {
  margin: 0 auto;
}
.btn-fullwidth {
  width: 100%;
}
.btn-form {
  height: 60px;
  font-size: 20px;
  font-weight: 500;
}
.btn-purple {
  background: #9931D5;
  color: #fff;
}
.btn-purple:hover {
  background: #6a159b;
}

.btn-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #FFC23A;
}

.pink-bg {
  padding: 150px 0;
  background: url("../images/bg.png") center center/cover #FEF5FF;
}
@media (max-width: 1024px) {
  .pink-bg {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .pink-bg {
    padding: 60px 0;
  }
}

.ttl {
  margin-bottom: 20px;
  text-align: center;
  font-size: 60px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ttl {
    font-size: 30px;
  }
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}
.slider-nav .next,
.slider-nav .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.slider-nav__pink .next,
.slider-nav__pink .prev {
  background: #FEF5FF;
}

input:not([type=submit]) {
  width: 100%;
  height: 60px;
  padding: 0 19px;
  font-size: 20px;
  color: #000;
  border: 1px solid #8E7EAA;
  border-radius: 5px;
  background: transparent;
  outline: none;
  font-family: "Jost", sans-serif;
}
input:not([type=submit])::-moz-placeholder {
  font-family: "Jost", sans-serif;
  color: #211D23;
}
input:not([type=submit])::placeholder {
  font-family: "Jost", sans-serif;
  color: #211D23;
}

.description {
  margin-top: -10px;
  margin-bottom: 35px;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .description {
    margin-bottom: 20px;
  }
}

.header {
  position: absolute;
  left: 0;
  top: 24px;
  width: 100%;
  z-index: 10;
}
@media (max-width: 768px) {
  .header {
    top: 12px;
  }
}
.header__wrapper {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 37px;
  padding-right: 17px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .header__wrapper {
    height: 47px;
    padding: 0 16px;
  }
}
.header__logo {
  max-width: 230px;
  width: 100%;
  display: flex;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 140px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 65px;
}
@media (max-width: 1024px) {
  .header__nav {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1024px) {
  .header__menu {
    gap: 10px;
  }
}
.header__menu li a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: color 0.5s ease;
}
.header__menu li a:hover {
  color: #FFB30A;
}
.header__mobile-nav {
  display: none;
}
@media (max-width: 768px) {
  .header__mobile-nav {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

.head-section {
  background: url("../images/hero-bg.png") center top/cover;
  color: #fff;
}
@media (max-width: 580px) {
  .head-section {
    background: url("../images/hero-bg-mobile.png") center top/cover;
  }
}
.head-section__container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 917px;
  min-height: 770px;
  position: relative;
  padding-top: 97px;
}
@media (max-width: 1100px) {
  .head-section__container {
    padding-top: 180px;
    padding-bottom: 50px;
    max-height: inherit;
    min-height: 1px;
    height: auto;
  }
}
@media (max-width: 580px) {
  .head-section__container {
    padding-top: 82px;
    padding-bottom: 361px;
    height: auto;
  }
}
.head-section__girl {
  position: absolute;
  bottom: 0;
  display: flex;
  right: 76px;
  pointer-events: none;
}
@media (max-width: 1330px) {
  .head-section__girl {
    right: 0;
    width: 450px;
  }
}
@media (max-width: 768px) {
  .head-section__girl {
    width: 300px;
  }
}
@media (max-width: 580px) {
  .head-section__girl {
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    height: 401px;
  }
}
.head-section__text {
  margin-bottom: 29px;
  font-size: 22px;
}
@media (max-width: 1330px) {
  .head-section__text {
    max-width: 659px;
  }
}
@media (max-width: 1100px) {
  .head-section__text {
    max-width: calc(100% - 380px);
  }
}
@media (max-width: 768px) {
  .head-section__text {
    max-width: calc(100% - 240px);
    font-size: 18px;
  }
}
@media (max-width: 580px) {
  .head-section__text {
    max-width: 100%;
    font-size: 16px;
    margin-bottom: 18px;
    text-align: center;
  }
}

.mobile-menu-open {
  width: 27px;
  height: 16px;
  border: 0;
  position: relative;
  background: transparent;
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .mobile-menu-open {
    display: block;
  }
}
.mobile-menu-open span, .mobile-menu-open:before, .mobile-menu-open:after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  background: #000;
  width: 100%;
  top: 50%;
  margin-top: -1px;
  transition: all 0.5s ease;
  border-radius: 50px;
}
.mobile-menu-open:before {
  top: 0;
  margin: 0;
}
.mobile-menu-open:after {
  top: auto;
  margin: 0;
  bottom: 0;
}
.mobile-menu-open.active span {
  opacity: 0;
}
.mobile-menu-open.active:before {
  transform: rotate(45deg);
  top: 50%;
}
.mobile-menu-open.active:after {
  transform: rotate(-45deg);
  top: 50%;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FEF5FF;
  padding: 80px 20px 20px 20px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.mobile-menu__nav li a {
  text-decoration: none;
  font-size: 30px;
  line-height: 1.15;
  color: #000;
  font-weight: bold;
}

.remodal {
  max-width: 663px;
  padding: 60px 40px;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .remodal {
    padding: 43px 20px;
  }
}

.remodal-close {
  width: 20px;
  height: 20px;
  left: auto;
  right: 19px;
  top: 18px;
}
.remodal-close:before, .remodal-close:after {
  display: none;
}

.access__title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 11px;
}
@media (max-width: 768px) {
  .access__title {
    font-size: 26px;
  }
}
.access__description {
  text-align: center;
  font-size: 20px;
  color: #4E4A50;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .access__description {
    font-size: 16px;
  }
}
.access__form {
  display: grid;
  gap: 20px;
}

.footer {
  padding: 74px 0;
  background: #E6CEFF;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 46px;
  }
}
.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
  }
}
.footer__right {
  width: 709px;
  height: 451px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer__right {
    width: 100%;
    height: 342px;
    margin-bottom: 11px;
  }
}
.footer__right iframe {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin-left: -2px;
  margin-top: -2px;
  display: flex;
}
.footer__left {
  display: flex;
  flex-direction: column;
}
.footer__top {
  flex: 1;
}
.footer__title {
  margin-bottom: 35px;
  font-size: 60px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer__title {
    margin-bottom: 12px;
    font-size: 30px;
  }
}
.footer__contacts {
  display: grid;
  gap: 16px;
  list-style: none;
}
.footer__contacts li,
.footer__contacts a {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: center;
  color: #211D23;
  font-size: 18px;
}
.footer__contacts li svg,
.footer__contacts a svg {
  width: 19px;
}
.footer__contacts a {
  transition: all 0.5s ease;
}
.footer__contacts a:hover {
  color: #FFB30A;
}
.footer__policy {
  font-size: 16px;
  text-decoration: none;
  transition: all 0.5s ease;
  color: #211D23;
}
@media (max-width: 768px) {
  .footer__policy {
    display: none;
  }
}
.footer__policy:hover {
  color: #FFB30A;
}
.footer__policy-mobile {
  display: none;
}
@media (max-width: 768px) {
  .footer__policy-mobile {
    display: inline-block;
    font-size: 16px;
    color: #211D23;
    text-decoration: none;
  }
}
.footer__buttons {
  display: grid;
  gap: 15px;
  margin-top: 25px;
}

.reviews {
  margin-bottom: 150px;
}
@media (max-width: 1024px) {
  .reviews {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .reviews {
    margin-bottom: 50px;
  }
}
.reviews__slider .swiper-slide {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  font-size: 16px;
  color: #211D23;
  height: 100%;
}
@media (max-width: 768px) {
  .reviews__slider .swiper-slide {
    padding: 16px;
  }
}
@media (max-width: 640px) {
  .reviews__slider .swiper-slide {
    height: auto;
  }
}
.reviews__name {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}
.reviews__name img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.sertificate .swiper-slide a {
  display: flex;
}
.sertificate .swiper-slide a img {
  width: 100%;
}

.get-access {
  margin-bottom: 150px;
}
@media (max-width: 1024px) {
  .get-access {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .get-access {
    margin-bottom: 60px;
  }
}
.get-access__wrapp {
  background: linear-gradient(90deg, #EBD9FF 0%, #E2C8FF 100%);
  border-radius: 25px;
  padding: 60px 50px;
}
@media (max-width: 1024px) {
  .get-access__wrapp {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .get-access__wrapp {
    padding: 50px 20px 20px;
  }
}
.get-access__title {
  margin-bottom: 4px;
  font-size: 60px;
  font-weight: bold;
  color: #000;
  text-align: center;
}
@media (max-width: 1024px) {
  .get-access__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .get-access__title {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.get-access__description {
  margin-bottom: 16px;
  text-align: center;
  font-size: 20px;
  color: #4E4A50;
}
@media (max-width: 768px) {
  .get-access__description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.get-access__form {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr) 300px;
}
@media (max-width: 1024px) {
  .get-access__form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .get-access__form {
    grid-template-columns: 1fr;
  }
}

.benefits {
  padding: 150px 0;
}
@media (max-width: 1024px) {
  .benefits {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .benefits {
    padding: 60px 0;
  }
}
.benefits__wrapp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .benefits__wrapp {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
  }
}
.benefits__image {
  display: flex;
  overflow: hidden;
  border-radius: 15px;
  height: 397px;
}
@media (max-width: 470px) {
  .benefits__image {
    height: 179px;
  }
}
.benefits__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.benefits__image video {
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.benefits__list {
  list-style: none;
  display: grid;
  gap: 24px;
}
@media (max-width: 768px) {
  .benefits__list {
    gap: 16px;
  }
}
.benefits__list li {
  background: #9931D5;
  align-items: center;
  gap: 28px;
  display: flex;
  padding: 10px 32px;
  border-radius: 15px;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1280px) {
  .benefits__list li {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .benefits__list li {
    height: 60px;
    padding: 10px 16px;
    font-size: 16px;
    gap: 10px;
  }
}
.benefits__list li img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .benefits__list li img {
    width: 30px;
    height: 30px;
  }
}

.production {
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  .production {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .production {
    padding-bottom: 60px;
  }
}
.production__wrapp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 600px) {
  .production__wrapp {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.production__item {
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}
@media (max-width: 768px) {
  .production__item {
    font-size: 18px;
  }
}
.production__img {
  height: 350px;
  width: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 17px;
  display: flex;
}
@media (max-width: 1024px) {
  .production__img {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .production__img {
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .production__img {
    height: auto;
  }
}

.portfolio .slider-nav {
  display: none;
}
@media (max-width: 768px) {
  .portfolio .slider-nav {
    display: flex;
  }
}
@media (min-width: 768px) {
  .portfolio .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px 20px;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .portfolio .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.portfolio .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  display: flex;
  height: 260px;
}
@media (max-width: 768px) {
  .portfolio .swiper-slide img {
    height: 113px;
  }
}
@media (max-width: 768px) {
  .portfolio__slider {
    height: 512px;
  }
}

.benefits-2 {
  padding: 150px 0;
}
@media (max-width: 1024px) {
  .benefits-2 {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .benefits-2 {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .benefits-2 .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .benefits-2 .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.benefits-2 .swiper-slide {
  background: #EBD8FF;
  border-radius: 15px;
  padding: 40px 20px 30px;
  text-align: center;
  color: #4E4A50;
  font-size: 18px;
}
@media (max-width: 768px) {
  .benefits-2 .swiper-slide {
    padding: 20px 10px 17px;
    height: 197px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}
.benefits-2__img {
  width: 66px;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  margin: 0 auto 9px;
}
@media (max-width: 768px) {
  .benefits-2__img {
    width: 45px;
    height: 45px;
  }
}
.benefits-2__title {
  color: #211D23;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 9px;
}
@media (max-width: 768px) {
  .benefits-2__title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .benefits-2__slider {
    height: 413px;
  }
}
.benefits-2 .slider-nav {
  display: none;
}
@media (max-width: 768px) {
  .benefits-2 .slider-nav {
    display: flex;
  }
}

.about {
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  .about {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .about {
    padding-bottom: 60px;
  }
}
.about__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about__wrap {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .about__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.about__video {
  height: 453px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .about__video {
    height: 200px;
    margin: 0 auto;
    width: 100%;
  }
}
.about__video iframe {
  display: flex;
  width: 100%;
  height: 100%;
}
.about__list {
  display: grid;
  gap: 70px;
}
@media (max-width: 768px) {
  .about__list {
    gap: 20px;
  }
}
.about__list-item {
  position: relative;
  font-size: 18px;
  color: #4E4A50;
  padding-left: 55px;
}
@media (max-width: 768px) {
  .about__list-item {
    font-size: 16px;
    padding-left: 43px;
  }
}
.about__list-item h3 {
  color: #211D23;
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .about__list-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.about__list-item img {
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  .about__list-item img {
    width: 27px;
  }
}
.about__video-load {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  background: url("../images/video-bg.png") center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.about__video-load.hidden {
  opacity: 0;
  visibility: hidden;
}

.geography {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .geography {
    padding: 60px 0;
  }
}
.geography .description {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .geography .description {
    margin-bottom: 30px;
  }
}
.geography__map-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #FEF5FF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(153, 49, 213, 0.1);
}
@media (max-width: 768px) {
  .geography__map-wrapper {
    padding: 20px;
    border-radius: 15px;
  }
}
#geography-map {
  width: 100%;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 768px) {
  #geography-map {
    height: 400px;
  }
}
.geography__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .geography__stats {
    gap: 30px;
    margin-top: 30px;
  }
}
.geography__stat-item {
  text-align: center;
}
.geography__stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #9931D5;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .geography__stat-number {
    font-size: 36px;
  }
}
.geography__stat-label {
  font-size: 18px;
  font-weight: 500;
  color: #211D23;
}
@media (max-width: 768px) {
  .geography__stat-label {
    font-size: 14px;
  }
}

.products-detail {
  padding: 0 0 80px 0;
}
@media (max-width: 768px) {
  .products-detail {
    padding: 0 0 60px 0;
  }
}
.products-detail__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .products-detail__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .products-detail__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.products-detail__category {
  margin-bottom: 0;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(153, 49, 213, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .products-detail__category {
    padding: 25px 20px;
    border-radius: 15px;
  }
}
.products-detail__category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(153, 49, 213, 0.15);
}
.products-detail__category-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #FEF5FF;
}
@media (max-width: 768px) {
  .products-detail__category-title {
    font-size: 22px;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }
}
.products-detail__category-title a {
  color: #211D23;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
.products-detail__category-title a:hover {
  color: #9931D5;
}
@media (max-width: 768px) {
  .products-detail__category-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.products-detail__subcategory {
  padding-left: 0;
}
.products-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-detail__list > li {
  font-size: 16px;
  color: #211D23;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .products-detail__list > li {
    font-size: 15px;
    margin-bottom: 7px;
    padding-left: 20px;
  }
}
.products-detail__list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #9931D5;
  border-radius: 50%;
  transform: translateY(-50%);
}
.products-detail__list > li > a {
  color: #211D23;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}
.products-detail__list > li > a:hover {
  color: #9931D5;
  padding-left: 5px;
}
.products-detail__sublist {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 15px;
}
.products-detail__sublist li {
  font-size: 14px;
  color: #4E4A50;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .products-detail__sublist li {
    font-size: 13px;
    margin-bottom: 5px;
    padding-left: 18px;
  }
}
.products-detail__sublist li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 4px;
  height: 4px;
  background: #9931D5;
  border-radius: 50%;
  opacity: 0.6;
}
.products-detail__sublist li a {
  color: #4E4A50;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}
.products-detail__sublist li a:hover {
  color: #9931D5;
  padding-left: 3px;
}

.products-carousel {
  padding: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FEF5FF 100%);
}
.products-carousel .ttl {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .products-carousel .ttl {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .products-carousel .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .products-carousel .swiper-slide:nth-child(n+9) {
    display: none;
  }
  .products-carousel .swiper-slide.show-all {
    display: flex !important;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .products-carousel .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.products-carousel .swiper-slide {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #F5E6FF;
  box-shadow: 0 2px 8px rgba(153, 49, 213, 0.08), 0 4px 16px rgba(153, 49, 213, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  cursor: pointer;
}
.products-carousel .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #9931D5 0%, #EBD8FF 50%, #9931D5 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.products-carousel .swiper-slide::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, #9931D5, #EBD8FF, #9931D5);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
@media (min-width: 768px) {
  .products-carousel .swiper-slide:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: #9931D5;
    box-shadow: 0 8px 24px rgba(153, 49, 213, 0.15), 0 16px 48px rgba(153, 49, 213, 0.12), 0 0 0 1px rgba(153, 49, 213, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
  .products-carousel .swiper-slide:hover::before {
    opacity: 1;
  }
  .products-carousel .swiper-slide:hover::after {
    opacity: 0.1;
  }
  .products-carousel .swiper-slide:hover .products-carousel__img {
    transform: scale(1.02);
    image-rendering: -webkit-optimize-contrast;
  }
  .products-carousel .swiper-slide:hover .products-carousel__content {
    background: linear-gradient(180deg, #FFFFFF 0%, #FEF5FF 100%);
  }
}
.products-carousel__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 20px 0 0;
}
@media (max-width: 768px) {
  .products-carousel__img {
    height: 120px;
    border-radius: 20px 20px 0 0;
  }
}
.products-carousel__content {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  transition: background 0.4s ease;
}
@media (max-width: 768px) {
  .products-carousel__content {
    padding: 18px;
    min-height: 130px;
  }
}
.products-carousel__title {
  color: #211D23;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
}
@media (max-width: 768px) {
  .products-carousel__title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.products-carousel .swiper-slide:hover .products-carousel__title {
  color: #9931D5;
  transform: translateX(2px);
}
.products-carousel__description {
  color: #6B6B6B;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .products-carousel__description {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.products-carousel .swiper-slide:hover .products-carousel__description {
  color: #4E4A50;
}
.products-carousel__price {
  color: #9931D5 !important;
  font-size: 26px;
  font-weight: 800;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #F0E6FF;
  transition: all 0.3s ease;
}
.products-carousel__price::before {
  content: '';
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #9931D5 0%, #EBD8FF 50%, #9931D5 100%);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(153, 49, 213, 0.3);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .products-carousel__price {
    font-size: 20px;
    padding-top: 10px;
  }
  .products-carousel__price::before {
    width: 16px;
    height: 16px;
  }
}
.products-carousel .swiper-slide:hover .products-carousel__price {
  border-top-color: #EBD8FF;
}
.products-carousel .swiper-slide:hover .products-carousel__price::before {
  transform: scale(1.1) rotate(180deg);
}
.products-carousel__slider {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .products-carousel__slider {
    height: 400px;
    margin-bottom: 20px;
  }
}
.products-carousel .slider-nav {
  display: none;
}
@media (max-width: 768px) {
  .products-carousel .slider-nav {
    display: flex;
  }
}
.products-carousel__show-more {
  text-align: center;
  margin-top: 40px;
  display: none;
}
@media (min-width: 768px) {
  .products-carousel__show-more {
    display: block;
  }
}
.products-carousel__show-more.hidden {
  display: none !important;
}

/* Попап заявки на каталог в стиле купонного */
.catalog-popup-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 500px;
  width: auto;
  min-width: 400px;
  background-color: #fff;
  border-radius: 16px;
  border: 2px solid #F5E6FF;
  box-shadow: 0 10px 40px rgba(153, 49, 213, 0.15), 0 4px 16px rgba(153, 49, 213, 0.1);
  padding: 20px;
  font-family: inherit !important;
  display: none;
  animation: slowScaleUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog-popup-wrapper.show {
  display: block;
}

@media (max-width: 768px) {
  .catalog-popup-wrapper {
    bottom: 100px;
    right: 10px;
    left: 10px;
    max-width: none;
    min-width: auto;
    width: calc(100% - 20px);
    padding: 16px;
    display: none;
  }
  .catalog-popup-wrapper.show {
    display: block;
  }
}

@keyframes slowScaleUp {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.catalog-popup-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .catalog-popup-content {
    flex-direction: column;
  }
}

.catalog-popup-image {
  width: 200px;
  height: auto;
  min-height: 240px;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  align-self: stretch;
}

@media (max-width: 768px) {
  .catalog-popup-image {
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    align-self: auto;
  }
}

.catalog-popup-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.catalog-popup-title {
  font-size: 22px;
  font-weight: 700;
  color: #9931D5;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .catalog-popup-title {
    font-size: 20px;
  }
}

.catalog-popup-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #808080;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.catalog-popup-close:hover {
  color: #000;
}

.catalog-popup-description {
  font-size: 15px;
  color: #555555;
  margin: 0;
  line-height: 1.5;
}

.catalog-popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalog-popup-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.catalog-popup-form input:focus {
  outline: none;
  border-color: #9931D5;
}

.catalog-popup-form input::placeholder {
  color: #999;
}

.catalog-popup-button {
  background: #9931D5;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.2s ease, transform 0.1s ease;
  font-family: inherit;
}

.catalog-popup-button:hover {
  background: #7a28b0;
  transform: translateY(-1px);
}

.catalog-popup-button:active {
  transform: translateY(0);
}

.catalog-popup-mini {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #fff;
  border-radius: 12px;
  border: 2px solid #F5E6FF;
  box-shadow: 0 4px 16px rgba(153, 49, 213, 0.2), 0 2px 8px rgba(153, 49, 213, 0.15);
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .catalog-popup-mini {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.catalog-popup-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 49, 213, 0.25), 0 4px 12px rgba(153, 49, 213, 0.2);
}

.catalog-popup-mini:active {
  transform: translateY(0);
}

.catalog-popup-mini-title {
  font-size: 14px;
  font-weight: 700;
  color: #9931D5;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/*# sourceMappingURL=style.css.map */
