/* ============================================================================
 * Nodoo FSE — Header sticky + scroll compact
 * Injecté via wp_footer (priorité basse pour ne pas casser Gutenberg).
 * ============================================================================ */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: var(--wp--preset--color--base);
	transition: padding 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

@media (prefers-reduced-motion: reduce) {
	.site-header {
		transition: none;
	}
}
