.product-showcase {
  margin-bottom: -90px;
}
.product-showcase__inner {
  display: grid;
  @media (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-showcase__content {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin-inline: auto;
  display: flex;
  @media (min-width: 1200px) {
    max-width: 520px;
  }
}
/* Сохраняем ту самую "кинематографичную" плавность из видео для обоих слайдеров */
.product-showcase__slider-left .swiper-wrapper,
.product-showcase__slider-right .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

/* --- Левый слайдер --- */
.product-showcase__left {
  padding: 0 20px 40px;
  position: relative;
  display: grid;
  gap: 20px;
  grid-template-columns: 40px calc(100% - 60px);
  @media (min-width: 768px) {
    padding-block: 20px;
  }
  @media (min-width: 1200px) {
    padding-inline: 40px;
    grid-template-columns: 50px calc(100% - 170px);
    gap: 120px;
  }
}

.product-showcase__slide-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-showcase__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width: 1200px) {
    max-width: 280px;
  }
  @media (min-width: 1440px) {
    max-width: 380px;
  }
}
.product-showcase__thumb {
  width: 160px;
  height: auto;
  background-color: #f5f5f5;
  @media (min-width: 1200px) {
    width: 260px;
  }
  @media (min-width: 1440px) {
    width: 400px;
  }
}

/* --- Правый слайдер --- */
.product-showcase__slider-right {
  width: 100%;
  aspect-ratio: 1;
  @media (min-width: 768px) {
    height: 500px;
  }
  @media (min-width: 1200px) {
    height: 750px;
  }
  @media (min-width: 1440px) {
    height: 900px;
  }
}

.product-showcase__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Элементы управления (теперь они живут внутри левого слайдера) --- */
.product-showcase__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 160px;
  @media (min-width: 1200px) {
    max-width: 260px;
  }
  @media (min-width: 1440px) {
    max-width: 400px;
  }
}

.product-showcase__btn-next {
  width: 40px;
  height: 40px;
  background-color: #f7d238;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
  position: absolute;
  bottom: 42px;
  right: -50px;
  z-index: 1;
  @media (min-width: 1440px) {
    right: -60px;
  }
}

.product-showcase__btn-next:hover {
  opacity: 0.8;
}

.swiper .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-black);
  opacity: 1;
  margin: 0 !important;
  transition: background-color 0.3s;
  @media (min-width: 1440px) {
    width: 20px;
    height: 20px;
  }
}

.swiper .swiper-pagination-bullet-active {
  background-color: var(--color-yellow);
}

.product-showcase__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.product-showcase__label svg {
  width: 21px;
  height: 30px;
  @media (min-width: 1400px) {
    width: 49px;
    height: 70px;
  }
}
.product-showcase__thumb-wrap {
  max-width: max-content;
  position: relative;
  display: grid;
  place-items: center;
  margin-top: auto;
}
.product-showcase__thumb-svg {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  transform: translate(-80px, -80px);
  @media (min-width: 1200px) {
    transform: translate(-140px, -100px);
  }
}
.product-showcase__thumb-svg svg {
  width: 204px;
  height: 223px;
  @media (min-width: 1200px) {
    width: 447px;
    height: 488px;
  }
  @media (min-width: 1440px) {
    width: 733px;
    height: 583px;
  }
}
.product-showcase__slide-left {
  display: flex !important;
  @media (max-width: 767px) {
    gap: 80px;
  }
}
.product-showcase__desc {
  color: #7a7a7a;
}
.swiper.product-showcase__slider-left {
  display: flex;
  flex-direction: column;
  padding-bottom: 42px;
}
