/* ==========================================================================
   ElevateZoomPlus & Image Gallery Styles
   ========================================================================== */

/* --- Carousel Container --- */
#product_images .carouselimages {
    position: relative;
}

#product_images .carousel-item {
    position: relative;
}

/* --- Navigation Arrows --- */
/* #product_images .carousel-control-prev,
#product_images .carousel-control-next {
    position: absolute;
    z-index: 1001;
    opacity: 0.8;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
     background-color: rgba(0, 0, 0, 0.4); 
    border-radius: 50%;
    padding: 0;
    margin: 0;
    border: none;
    transition: opacity 0.3s, background-color 0.3s;
} */

/* #product_images .carousel-control-prev {
    left: 10px;
    right: auto;
}

#product_images .carousel-control-next {
    right: 10px;
    left: auto;
}

#product_images .carousel-control-prev:hover,
#product_images .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

#product_images .carousel-control-prev-icon,
#product_images .carousel-control-next-icon {
    width: 16px;
    height: 16px;
} */

/* --- Zoom Container --- */
.zoomContainer {
    z-index: 999 !important;
}

.zoomWindow {
    max-width: 100vw;   
}

/* --- Hover to Zoom Hint --- */
#product_images .zoom-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.8s ease;
}

#product_images .zoom-hint i {
    margin-right: 5px;
}

#product_images .zoom-hint.fade-out {
    opacity: 0;
}

@media(max-width: 767px){
    .zoomContainer{
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
    }
}
@media (min-width: 768px){
    .zoomWindow{
        left: 21rem !important;
        top: -0.625rem !important;
        border-radius: 0.5rem;
        box-shadow: 0px 2px 20px -7px rgba(0, 0, 0, .2);
        border: 1px solid #dee2e6 !important;
    }
}
@media (min-width: 992px){
    .zoomWindow{                
        left: 29.75rem !important;
        top: -0.625rem !important;        
    }
}

@media (min-width: 1248px){
    .zoomWindow{
        left: 35.75rem !important;
    }
}

@media (min-width: 1440px){
    .zoomWindow{          
        top: -0.625rem !important;
        left: 38.875rem !important;        
    }
}

@media (min-width: 1600px){
    .zoomWindow{left: 47.875rem !important;}
}