/* ==========================================================================
   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;
}
