/* ===================================
   SCROLL LOCK - Prevent initial jump
   =================================== */

/* Bloquer le scroll pendant le chargement */
html.loading {
    overflow: hidden !important;
    scroll-behavior: auto !important;
}

html.loading body {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* Réactiver après chargement */
html:not(.loading) {
    scroll-behavior: smooth;
}
