/* Layout Container */
.custom-product-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
    float: left;
    width: 50%;
}

/* Vertical Thumbnails */
.thumbs-swiper {
    width: 80px;
    max-height: 460px;
    overflow: hidden;
}

.thumbs-swiper .swiper-slide {
    opacity: 0.6;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.2s;
    border: 2px solid transparent;
}

.thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #000;
}

.thumbs-swiper img {
    width: 100%;
    border-radius: 0px;
}

/* Main Image */
.main-swiper {
    width: 430px;
    position: relative;
}

.main-swiper .swiper-slide img {
    width: 100%;
    border-radius: 6px;
}

/* Arrows */
.gallery-nav {
    color: #00000000;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.swiper-button-prev,
.swiper-button-next {
    top: 45%;
}

.swiper-button-prev{
    transform: rotate(180deg);
}

/* Product Info */
.custom-product-info {
    flex: 1;
    max-width: 420px;
}

.custom-product-container {
	position: relative;
	z-index: 0;
}
.custom-product-container.is-stuck {
    position: sticky;
    top: 100px;
}


.custom-product-container {
  transition: all 0.3s ease;
}


.custom-product-container .swiper {
    z-index: 0 !important;
}

@media only screen and (min-width:320px) and (max-width:768px){
    .custom-product-container {
        width: 100%;
    }
}