/*
 Theme Name: Astra Child
 Template: astra
 Version: 1.0
*/
#sticky-section {
    position: relative;
    width: 100%;
    background-color: #000000;
    z-index: 999;
    padding-top: 10px;
    padding-bottom: 10px;
}
#sticky-section.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
}
body.has-sticky {
    padding-top: 80px; /* Ajustez si la hauteur totale (incluant padding) change */
}
@media (max-width: 767px) {
    #sticky-section {
        position: static !important;
        padding-top: 10px; /* Garder le padding sur mobile si souhaité */
        padding-bottom: 10px;
    }
    body.has-sticky {
        padding-top: 0;
    }
}