/* Pharmazilla sticky header — compact-on-scroll, hide/reveal, solid white */

#masthead.site-header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 999;
	background-color: #ffffff;
	transition: transform 0.32s ease, box-shadow 0.3s ease, background-color 0.3s ease;
	/* Note: no `will-change: transform` — it promotes the sticky header to its own
	   compositing layer, which breaks sticky+transform hide/reveal on iOS Safari. */
}

/* Sit below the WP admin bar when logged in (real visitors have no admin bar) */
.admin-bar #masthead.site-header {
	top: 32px;
}
@media (max-width: 782px) {
	.admin-bar #masthead.site-header {
		top: 46px;
	}
}

/* Soft shadow once the user has scrolled at all */
#masthead.pz-scrolled {
	box-shadow: 0 2px 14px rgba(18, 60, 105, 0.10) !important;
}

/* Hidden state (scrolling down) — slides up out of view without shifting content */
#masthead.pz-hide {
	transform: translateY(-100%) !important;
}

/* For users who prefer reduced motion: still hide/reveal, just without the
   sliding animation (disable the transition only — keep the transform). */
@media (prefers-reduced-motion: reduce) {
	#masthead.site-header {
		transition: none;
	}
}
