.product-thumb.cust{
  width: 24%;
}

.product-thumb.cust .slick-slide{
  width: 100%;
}

.zoompro-wrap.cust{
  width: 70%;
}


.swiper-container {
  display: flex;
  gap: 20px;
  max-width: 100%;
  height: 800px;
}

.swiper-thumbs {
  max-width: 180px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.swiper-thumbs img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.swiper-thumbs .swiper-slide {
  height: auto;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.swiper-thumbs .swiper-slide:hover,
.swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-main {
  max-width: 550px;
  width: 100%;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.swiper-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Стили для стрелок */
.swiper-button-prev,
.swiper-button-next {
  color: #e9b59e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #e9b59e;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* Стили для пагинации */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.swiper-pagination-bullet-active{
  color: #e9b59e;
  background: #e9b59e !important;
  opacity: 1;
}


@media only screen and (max-width: 1199px){
  .swiper-thumbs {
    max-width: 45px;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 767px){
  .swiper-thumbs {
    display: none;
  }
  .swiper-main{
    max-width: unset;
  }
  .swiper-container{
    height: auto;
  }
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide:hover .zoom-image {
  opacity: 0;
}

.swiper-slide:hover .parallax-bg {
  opacity: 1;
}

.zoom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.parallax-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190%;
  height: 190%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transform: translate(-50%, -50%) translate(var(--tx, 0%), var(--ty, 0%));
  transition: transform 0s;
  opacity: 0;
}

.swiper-button-prev-thumbs,
.swiper-button-next-thumbs {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  z-index: 10;
  cursor: pointer;

}

.swiper-button-prev-thumbs.swiper-button-top {
  top: 0px; /* Стрелка сверху */
  transform: translateX(-50%) rotate(-90deg);
}

.swiper-button-next-thumbs.swiper-button-bottom {
  bottom: 0px; /* Стрелка снизу */
  transform: translateX(-50%) rotate(90deg);

}

/* Используем символы или иконки для направления */
.swiper-button-prev-thumbs::after {
  content: 'next';
  font-size: 20px !important;
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  color: #e9b59e;

}

.swiper-button-next-thumbs::after {
  content: 'next'; /* Стрелка вниз */
  font-size: 20px !important;
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  color: #e9b59e;
}

.swiper-main .swiper-zoom-container:hover {
  cursor: zoom-in;
}