/* Product page styles — moved out of the Blade @push('styles') block. */

.image-zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    height: auto;
    max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoom-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.1s ease-out;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
