/**
 * Maestri menu front-end enhancements.
 */

/*
 * Native sticky positioning keeps the category bar in its original layout.
 * This avoids inserting spacer elements that can break flex/grid navigation
 * before the bar reaches the top of the viewport.
 */
.maestri-sticky-category-nav {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: var(--maestri-sticky-top, 0px) !important;
	z-index: 9998 !important;
	box-sizing: border-box;
	background: var(--maestri-sticky-background, #fffaf7);
}

.maestri-sticky-category-nav.is-maestri-stuck {
	box-shadow: 0 8px 22px rgba(38, 24, 17, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}
