/* Masquer le footer du thème (priorité maximale) */
html body footer, html body .site-footer, html body #colophon { 
    display: none !important; 
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Déplacer l'intégralité du menu légèrement vers le bas */
/* 32px pour la barre WP + 15px pour l'esthétique = 47px */
html body.admin-bar .site-header,
html body.admin-bar header {
    margin-top: 47px !important;
}

/* Gérer l'espacement si le header est en position sticky/fixed avec la barre admin */
html body.admin-bar .site-header.fixed,
html body.admin-bar header[style*="fixed"],
html body.admin-bar .elementor-location-header {
    top: 47px !important;
}

/* Décalage esthétique même sans la barre d'admin (visiteurs normaux) */
html body:not(.admin-bar) .site-header,
html body:not(.admin-bar) header {
    margin-top: 15px !important;
}

html body:not(.admin-bar) .site-header.fixed,
html body:not(.admin-bar) header[style*="fixed"],
html body:not(.admin-bar) .elementor-location-header {
    top: 15px !important;
}