/* Styles custom du projet Clue - chargés après le style parent Divi. */
.mon-menu-sticky {
    position: sticky;
    top: 0;
    background-color: transparent;
    box-shadow: none;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    z-index: 999;
}

/* La classe ajoutée par le JavaScript */
.mon-menu-sticky.is-sticky {
    background-color: #ffffff00;
    box-shadow: 0 4px 20px #1c1c1cbd;
}