/* ==========================================================
   ANTI-FOUC - Système unifié
   ========================================================== */

/* Cache la page par défaut */
html:not(.ready) {
    visibility: hidden;
}

html.ready {
    visibility: visible;
}

/* MAIS le header et le fond sont toujours visibles */
html:not(.ready) header,
html:not(.ready) .elementor-location-header,
html:not(.ready) body {
    visibility: visible;
}

/* Cache les cards jusqu'à leur animation */
.e-loop-item {
    opacity: 0;
}

.e-loop-item.animated {
    opacity: 1;
}