/* Enhanced background patterns and effects */
#simple-zoom-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.3) 0%, rgba(10, 10, 10, 0.1) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced product image styles */
#zoom-image {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

#zoom-image:hover {
    transform: scale(1.02) !important;
}

/* Animation for image loading */
@keyframes imageEntrance {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-loaded {
    animation: imageEntrance 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
