.aps-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.aps-left-area {
  position: relative;
  overflow: hidden;
}

.aps-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: background 0.8s ease;
  z-index: 1;
}

.aps-product-slider {
  position: relative;
  z-index: 2;
  height: 100%;
}

.aps-product-slider .swiper-slide {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aps-product {
  width: 360px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.aps-product img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.aps-title {
  margin-top: 20px;
  font-size: 22px;
  line-height: 1.3;
}

.aps-category {
  margin-top: 8px;
}

.aps-price {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
}

.aps-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 26px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.aps-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 640px;
  padding: 80px;
  min-height: 650px;
}

.aps-right-bg,
.aps-right-bg-next {
  position: absolute;
  inset: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.aps-right-bg-next {
  opacity: 0;
}

.aps-right-inner {
  position: relative;
  z-index: 2;
}

.aps-right-top {
  width: 100%;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.aps-text-slider .swiper-slide {
  opacity: 0;
  transform: translateX(60px);
  transition: .6s;
}

.aps-text-slider .swiper-slide-active {
  opacity: 1;
  transform: translateX(0);
}

.aps-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.aps-prev,
.aps-next {
  cursor: pointer;
  font-size: 26px;
  user-select: none;
}

.aps-counter {
  font-weight: 600;
}

@media (max-width: 1024px) {
  .aps-wrapper {
    grid-template-columns: 1fr;
  }

  .aps-product-slider .swiper-slide,
  .aps-right,
  .aps-wrapper {
    min-height: auto;
  }

  .aps-right {
    padding: 40px 24px;
  }

  .aps-product {
    width: min(100%, 360px);
  }
}