.pps-slider,
.pps-slider * {
  box-sizing: border-box;
}

.pps-slider {
  --pps-transition-speed: 650ms;
  position: relative;
  width: 100%;
  min-height: 82vh;
  overflow: hidden;
  isolation: isolate;
  background: #9b7aad;
}

.pps-slider__track,
.pps-slide {
  position: absolute;
  inset: 0;
}

.pps-slider__track {
  z-index: 1;
}

.pps-slide {
  color: var(--pps-text-color, #fff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition:
    opacity var(--pps-transition-speed) ease,
    visibility var(--pps-transition-speed) ease,
    transform calc(var(--pps-transition-speed) * 1.2) ease;
  pointer-events: none;
}

.pps-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.pps-slide__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(100%, 1600px);
  min-height: inherit;
  height: 100%;
  margin-inline: auto;
  padding: 48px;
}

.pps-slide__content {
  position: relative;
  z-index: 4;
  width: 42%;
  max-width: 720px;
  pointer-events: none;
}

.pps-slide__title {
  margin: 0 0 0.18em;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6.5vw, 7.6rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.pps-slide__subtitle {
  margin: 0 0 0.3em;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.65vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
}

.pps-slide__description {
  max-width: 42rem;
  margin-bottom: 1.7rem;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  line-height: 1.55;
}

.pps-slide__description p {
  margin: 0;
}

.pps-slide__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: #2f2945;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.28);
}

.pps-slide__link {
  position: absolute;
  z-index: 5;
  inset: 0;
  cursor: pointer;
}

.pps-slide__link:focus-visible {
  outline: 4px solid currentColor;
  outline-offset: -8px;
}

.pps-products {
  --pps-parallax-y: 0px;
  position: absolute;
  z-index: 3;
  right: clamp(-5%, -2vw, 0%);
  bottom: clamp(-10rem, -9vw, -4rem);
  width: min(62%, 940px);
  height: 94%;
  transform: translate3d(0, var(--pps-parallax-y), 0);
  will-change: transform;
  pointer-events: none;
}

.pps-product {
  position: absolute;
  bottom: 0;
  width: auto;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.18));
  user-select: none;
}

.pps-product--1 {
  z-index: 2;
  left: 4%;
  max-height: 67%;
  transform: rotate(-4deg);
}

.pps-product--2 {
  z-index: 3;
  left: 34%;
  max-height: 91%;
  transform: translateY(-4%);
}

.pps-product--3 {
  z-index: 2;
  right: 1%;
  max-height: 72%;
  transform: rotate(4deg) translateY(2%);
}

.pps-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(28, 24, 42, 0.55);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 180ms ease, transform 180ms ease;
}

.pps-arrow:hover,
.pps-arrow:focus-visible {
  background: rgba(28, 24, 42, 0.88);
}

.pps-arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.pps-arrow--prev {
  left: 18px;
}

.pps-arrow--next {
  right: 18px;
}

.pps-dots {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.pps-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  opacity: 0.72;
  cursor: pointer;
  transition: width 180ms ease, opacity 180ms ease, background 180ms ease;
}

.pps-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: currentColor;
  opacity: 1;
}

@media (max-width: 1024px) {
  .pps-slider {
    min-height: 680px;
  }

  .pps-slide__inner {
    align-items: flex-start;
    padding: 54px 42px;
  }

  .pps-slide__content {
    width: 58%;
  }

  .pps-slide__title {
    font-size: clamp(3rem, 8vw, 5.5rem);
  }

  .pps-products {
    right: -9%;
    width: 67%;
    height: 77%;
  }
}

@media (max-width: 767px) {
  .pps-slider {
    min-height: 720px;
  }

  .pps-slide__inner {
    display: block;
    padding: 40px 24px 20px;
  }

  .pps-slide__content {
    width: 100% !important;
    max-width: none;
  }

  .pps-slide__title {
    max-width: 94%;
    font-size: clamp(2.7rem, 14vw, 4.5rem);
    line-height: 0.9;
  }

  .pps-slide__subtitle {
    max-width: 90%;
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }

  .pps-slide__description {
    max-width: 90%;
    margin-bottom: 1.1rem;
  }

  .pps-slide__button {
    min-height: 44px;
    padding: 0.72rem 1.45rem;
    font-size: 0.82rem;
  }

  .pps-products {
    right: -8%;
    bottom: -3.5rem;
    width: 116%;
    height: 56%;
  }

  .pps-product--1 {
    left: 3%;
    max-height: 68%;
  }

  .pps-product--2 {
    left: 34%;
    max-height: 94%;
  }

  .pps-product--3 {
    right: 2%;
    max-height: 72%;
  }

  .pps-arrow {
    top: auto;
    bottom: 14px;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .pps-arrow:active {
    transform: scale(0.94);
  }

  .pps-arrow--prev {
    left: 14px;
  }

  .pps-arrow--next {
    right: 14px;
  }

  .pps-dots {
    bottom: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pps-slide,
  .pps-arrow,
  .pps-dot {
    transition-duration: 1ms !important;
  }

  .pps-products {
    transform: none !important;
  }
}

