/* Style des conteneurs Elementor */
.zoomable {
    cursor: pointer;
    transition: transform 0.2s;
}
.zoomable:hover {
    transform: scale(1.01);
}

/* Overlay */
.fiv-overlay {
    opacity: 0;
    animation: fiv-fadeIn 0.3s ease-out forwards;
}
.fiv-overlay img {
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* Animation */
@keyframes fiv-fadeIn {
    to { opacity: 1; }
}