/**
 * Transparent overlay header — Figma whitish bottom rule, no glass blur.
 */

:root {
	--evo-header-overlay-rule: rgba(255, 255, 255, 0.08);
}

/* Desktop only — hero overlay header at rest */
@media (min-width: 1101px) {
	.evo-header--overlay:not(.is-scrolled):not(.is-dropdown-open):not(.is-nav-open):not(:has(.evo-header__item--has-children:hover)):not(:has(.evo-header__dropdown-track:hover)) .evo-header__bar {
		-webkit-backdrop-filter: none !important;
		backdrop-filter: none !important;
		border-bottom: none !important;
		box-shadow: none !important;
	}

	.evo-header--overlay:not(.is-scrolled):not(.is-dropdown-open):not(.is-nav-open):not(:has(.evo-header__item--has-children:hover)):not(:has(.evo-header__dropdown-track:hover)) .evo-header__bar::before {
		opacity: 0 !important;
		background: transparent !important;
		-webkit-backdrop-filter: none !important;
		backdrop-filter: none !important;
		box-shadow: none !important;
	}
}
