/* =============================================
   AlleZoo Header Redesign 2026-05
   ============================================= */

:root {
	--azh-bg: #ffffff;
	--azh-bg-soft: #f8fafc;
	--azh-bg-top: #1e293b;
	--azh-bg-top-text: #ffffff;
	--azh-bg-top-muted: rgba(255, 255, 255, .65);
	--azh-text: #0f172a;
	--azh-text-muted: #64748b;
	--azh-text-brand: #1e293b;
	--azh-brand: #26B170;
	--azh-brand-dark: #1d9059;
	--azh-brand-light: #e6f7ee;
	--azh-border: #e5e7eb;
	--azh-border-strong: #d1d5db;
	--azh-shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
	--azh-shadow-md: 0 4px 6px rgba(15, 23, 42, .07), 0 2px 4px rgba(15, 23, 42, .04);
	--azh-shadow-lg: 0 10px 25px rgba(15, 23, 42, .1), 0 4px 10px rgba(15, 23, 42, .04);
	--azh-shadow-xl: 0 20px 40px rgba(15, 23, 42, .12), 0 8px 16px rgba(15, 23, 42, .04);
	--azh-radius: 14px;
	--azh-radius-sm: 8px;
	--azh-radius-pill: 999px;
	--azh-container: 1400px;
	--azh-z-header: 9990;
	--azh-z-dropdown: 9995;
	--azh-z-drawer: 9999;
	--azh-font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
}

/* Pull system font dla naszych komponentow (bez naruszania reszty theme) */
.azh, .azh-mobile-drawer, .azh-search-dropdown { font-family: var(--azh-font-system); }

/* ===== Container ===== */
.azh-container { max-width: var(--azh-container); margin: 0 auto; padding: 0 20px; position: relative; }

/* ===== Header root - sticky natywny + fallback fixed przez JS ===== */
.azh {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: var(--azh-z-header);
	background: var(--azh-bg);
	transition: box-shadow .25s ease;
}
/* Spacer w body kompensuje wysokosc headera w trybie fixed */
body.azh-sticky-active { padding-top: var(--azh-sticky-offset, 0px); }
.azh.is-fixed {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100%;
}

/* ===== Top bar ===== */
.azh-topbar {
	background: var(--azh-bg-top);
	color: var(--azh-bg-top-text);
	font-size: 13px;
	padding: 8px 0;
	letter-spacing: .15px;
}
.azh-topbar .azh-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	min-height: 22px;
}
.azh-topbar__usp { flex: 1; min-width: 0; overflow: hidden; }
.azh-usp-slider { position: relative; height: 22px; }
.azh-usp-slider__item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	font-weight: 500;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--azh-bg-top-text);
}
.azh-usp-slider__item.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.azh-usp-slider__line {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.azh-usp-slider__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(34, 197, 94, .2);
	color: #4ade80;
	flex-shrink: 0;
}
.azh-usp-slider__icon svg { width: 13px; height: 13px; }
.azh-usp-slider__text { font-weight: 500; }
.azh-topbar__right {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 13px;
	font-weight: 500;
}
.azh-topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--azh-bg-top-text);
	text-decoration: none;
	transition: color .15s;
	font-weight: 600;
}
.azh-topbar__phone:hover { color: var(--azh-brand-light); }
.azh-topbar__phone svg { flex-shrink: 0; opacity: .9; }
.azh-topbar__hours { font-weight: 400; color: var(--azh-bg-top-muted); font-size: 12px; margin-left: 4px; }
.azh-topbar__link {
	color: var(--azh-bg-top-muted);
	text-decoration: none;
	transition: color .15s;
	font-weight: 500;
}
.azh-topbar__link:hover { color: var(--azh-bg-top-text); }
.azh-topbar__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	color: var(--azh-bg-top-muted);
	background: rgba(255, 255, 255, .08);
	transition: all .15s ease;
}
.azh-topbar__social:hover {
	background: var(--azh-brand);
	color: #fff;
	transform: translateY(-1px);
}

/* ===== Main bar ===== */
.azh-mainbar {
	background: var(--azh-bg);
	padding: 18px 0;
	transition: padding .25s ease, box-shadow .25s ease;
}
.azh-mainbar .azh-container {
	display: grid;
	grid-template-columns: 180px 1fr 160px;
	gap: 32px;
	align-items: center;
}
.azh-mainbar__logo {
	display: flex;
	align-items: center;
	width: 180px;
}
.azh-logo img {
	width: 140px;
	height: 60px;
	display: block;
	transition: width .25s ease, height .25s ease;
}
.azh-mainbar__icons {
	justify-self: end;
}

/* ===== Search (main bar centerpiece) - PILL SHAPE ===== */
.azh-mainbar__search { position: relative; max-width: 720px; margin: 0 auto; width: 100%; }
.azh-search {
	display: flex;
	align-items: stretch;
	background: var(--azh-bg-soft);
	border: 1.5px solid transparent;
	border-radius: var(--azh-radius-pill);
	overflow: hidden;
	transition: border-color .2s, box-shadow .2s, background .2s;
	height: 48px;
	box-shadow: var(--azh-shadow-sm);
	padding: 3px 3px 3px 0;
}
.azh-search:hover {
	background: #fff;
	box-shadow: var(--azh-shadow-md);
}
.azh-search:focus-within {
	background: #fff;
	border-color: var(--azh-brand);
	box-shadow: 0 0 0 4px rgba(38, 177, 112, .15), var(--azh-shadow-md);
}
.azh-search__icon {
	display: flex;
	align-items: center;
	padding: 0 10px 0 22px;
	color: var(--azh-text-muted);
	flex-shrink: 0;
}
.azh-search__input {
	flex: 1;
	border: 0;
	padding: 0 10px;
	font-size: 15px;
	outline: none;
	background: transparent;
	color: var(--azh-text);
	min-width: 0;
	font-family: inherit;
	font-weight: 500;
}
.azh-search__input::placeholder { color: var(--azh-text-muted); font-weight: 400; }
.azh-search__submit {
	background: var(--azh-brand);
	color: #fff;
	border: 0;
	padding: 0 26px;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s, transform .15s;
	letter-spacing: .6px;
	font-family: inherit;
	flex-shrink: 0;
	border-radius: var(--azh-radius-pill);
}
.azh-search__submit:hover { background: var(--azh-brand-dark); }
.azh-search__submit:active { transform: scale(.97); }

/* ===== Search dropdown ===== */
.azh-search-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid var(--azh-border);
	border-radius: var(--azh-radius);
	box-shadow: var(--azh-shadow-lg);
	max-height: 70vh;
	overflow-y: auto;
	z-index: var(--azh-z-dropdown);
	animation: azh-fadeIn .2s ease;
}
.azh-search-dropdown[hidden] { display: none; }
@keyframes azh-fadeIn {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}
.azh-sd__inner { padding: 18px; }
.azh-sd__section { margin-bottom: 20px; }
.azh-sd__section:last-child { margin-bottom: 0; }
.azh-sd__title {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--azh-text-muted);
	margin: 0 0 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
}
.azh-sd__title svg { color: var(--azh-brand); flex-shrink: 0; }
.azh-sd__count {
	margin-left: auto;
	background: var(--azh-bg-soft);
	color: var(--azh-text-muted);
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: var(--azh-radius-pill);
	letter-spacing: 0;
}
.azh-sd__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.azh-sd__chip {
	padding: 7px 12px;
	background: #f3f4f6;
	border-radius: 18px;
	font-size: 13px;
	cursor: pointer;
	transition: all .15s;
	color: var(--azh-text);
	text-decoration: none;
	border: 1px solid transparent;
	display: inline-block;
}
.azh-sd__chip:hover, .azh-sd__chip.is-active {
	background: var(--azh-brand);
	color: #fff;
}
.azh-sd__categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
.azh-sd__category {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #f9fafb;
	text-decoration: none;
	color: var(--azh-text);
	font-size: 13px;
	font-weight: 600;
	transition: background .15s, color .15s;
}
.azh-sd__category:hover { background: var(--azh-brand-light); color: var(--azh-brand-dark); }
.azh-sd__category svg { width: 22px; height: 22px; color: var(--azh-brand); flex-shrink: 0; }
.azh-sd__products { display: flex; flex-direction: column; gap: 4px; }
.azh-sd__product {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 8px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--azh-text);
	transition: background .15s;
}
.azh-sd__product:hover, .azh-sd__product.is-focused {
	background: #f3f4f6;
}
.azh-sd__product img {
	width: 52px;
	height: 52px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}
.azh-sd__product-info { flex: 1; min-width: 0; }
.azh-sd__product-name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	overflow: hidden;
	font-size: 13px;
	line-height: 1.35;
	color: var(--azh-text);
	margin-bottom: 2px;
}
.azh-sd__product-price {
	font-weight: 700;
	font-size: 13px;
	color: var(--azh-brand);
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
}
.azh-sd__product-price del {
	color: var(--azh-text-muted);
	font-weight: 400;
	font-size: 12px;
	text-decoration: line-through;
}
.azh-sd__product-price ins {
	text-decoration: none;
	color: var(--azh-brand);
	font-weight: 700;
}
.azh-sd__product-price .screen-reader-text,
.azh-sd__product-price .woocommerce-Price-currencySymbol {
	/* zostaw symbol; screen-reader-text ukryj */
}
.azh-sd__product-price .screen-reader-text {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}
.azh-sd__product-price small {
	font-size: 11px;
	font-weight: 400;
	color: var(--azh-text-muted);
	margin-left: 4px;
}
.azh-sd__see-all {
	display: block;
	text-align: center;
	padding: 11px;
	margin-top: 10px;
	background: var(--azh-brand);
	color: #fff;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	font-size: 13px;
	letter-spacing: .3px;
	text-transform: uppercase;
	transition: background .15s;
}
.azh-sd__see-all:hover { background: var(--azh-brand-dark); color: #fff; }
.azh-sd__empty {
	text-align: center;
	padding: 24px 16px;
	color: var(--azh-text-muted);
	font-size: 14px;
}
.azh-sd__loading {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px;
	color: var(--azh-text-muted);
	font-size: 14px;
}
.azh-sd__loading::before {
	content: '';
	width: 18px;
	height: 18px;
	border: 2px solid var(--azh-border);
	border-top-color: var(--azh-brand);
	border-radius: 50%;
	animation: azh-spin .8s linear infinite;
	margin-right: 8px;
}
@keyframes azh-spin { to { transform: rotate(360deg); } }

/* ===== Main bar icons ===== */
.azh-mainbar__icons {
	display: flex;
	align-items: center;
	gap: 4px;
}
.azh-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: transparent;
	border: 0;
	cursor: pointer;
	color: var(--azh-text);
	text-decoration: none;
	transition: background .15s, color .15s;
	font-family: inherit;
}
.azh-icon-btn:hover { background: rgba(38, 177, 112, .08); color: var(--azh-brand); }
.azh-cart-count {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	background: var(--azh-brand);
	color: #fff;
	border-radius: 9px;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.azh-search-toggle { display: none; }

/* Close button mobilnego overlaya (domyslnie ukryty) */
.azh-search-close {
	display: none;
	position: absolute;
	top: 14px;
	right: 14px;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border: 0;
	background: var(--azh-bg-soft);
	border-radius: 50%;
	color: var(--azh-text);
	cursor: pointer;
	z-index: 2;
	transition: background .15s;
}
.azh-search-close:hover { background: var(--azh-border); }
.azh-mainbar__search.is-mobile-visible .azh-search-close { display: inline-flex; }

/* ===== Menu bar ===== */
.azh-menubar {
	background: #fff;
	border-top: 1px solid var(--azh-border);
	box-shadow: var(--azh-shadow-sm);
	position: relative;
}
.azh-categories {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 4px;
}
.azh-categories__item { position: static; }
.azh-categories__link {
	display: block;
	padding: 14px 20px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--azh-text);
	text-decoration: none;
	transition: color .2s ease, background .2s ease;
	letter-spacing: .6px;
	position: relative;
	border-radius: 0;
}
.azh-categories__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: var(--azh-brand);
	transition: width .25s ease, left .25s ease;
	pointer-events: none;
	border-radius: 2px 2px 0 0;
}
.azh-categories__link:hover {
	color: var(--azh-brand);
	background: var(--azh-brand-light);
}
.azh-categories__item.is-open .azh-categories__link,
.azh-categories__item:hover .azh-categories__link {
	color: var(--azh-brand-dark);
	background: var(--azh-brand-light);
}
.azh-categories__item.is-open .azh-categories__link::after,
.azh-categories__item:hover .azh-categories__link::after {
	width: calc(100% - 24px);
	left: 12px;
}
.azh-hamburger {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: var(--azh-text);
	border-radius: 8px;
}
.azh-hamburger:hover { background: rgba(0, 0, 0, .04); }

/* ===== Mega-menu ===== */
.azh-megamenu {
	position: absolute;
	top: 100%;
	left: 20px;
	right: 20px;
	background: #fff;
	border: 1px solid var(--azh-border);
	box-shadow: var(--azh-shadow-xl);
	padding: 0;
	z-index: var(--azh-z-dropdown);
	border-radius: 0 0 var(--azh-radius) var(--azh-radius);
	animation: azh-megaFadeIn .25s ease;
	overflow: hidden;
	margin-top: -1px;
}
.azh-megamenu[hidden] { display: none; }
@keyframes azh-megaFadeIn {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}
.azh-megamenu__inner {
	display: grid;
	grid-template-columns: 2.2fr 1fr;
	gap: 0;
	min-height: 280px;
}
.azh-megamenu__subcats-wrap {
	padding: 24px 28px;
}
.azh-megamenu__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--azh-text);
	margin: 0 0 16px;
}
.azh-megamenu__subcats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.azh-megamenu__subcat {
	padding: 0;
}
.azh-megamenu__subcat a {
	display: block;
	padding: 8px 0;
	color: var(--azh-text);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	transition: color .15s, padding-left .15s;
	position: relative;
}
.azh-megamenu__subcat a:hover {
	color: var(--azh-brand);
	padding-left: 6px;
}
.azh-megamenu__see-all-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
	padding: 8px 14px;
	background: transparent;
	color: var(--azh-brand);
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
	border: 1.5px solid var(--azh-brand);
	border-radius: 6px;
	transition: all .15s;
}
.azh-megamenu__see-all-link:hover {
	background: var(--azh-brand);
	color: #fff;
}
.azh-megamenu__bestsellers {
	background: var(--azh-bg-soft);
	padding: 24px 28px;
	border-left: 1px solid var(--azh-border);
}
.azh-megamenu__bs-title {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--azh-text-muted);
	margin: 0 0 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 6px;
}
.azh-megamenu__bs-title svg { color: var(--azh-brand); flex-shrink: 0; }
.azh-megamenu__product {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 8px;
	margin: 0 -8px 6px;
	border-radius: 6px;
	text-decoration: none;
	color: var(--azh-text);
	transition: background .15s;
}
.azh-megamenu__product:hover { background: #fff; }
.azh-megamenu__product img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}
.azh-megamenu__product-info { flex: 1; min-width: 0; }
.azh-megamenu__product-name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	overflow: hidden;
	font-size: 12px;
	line-height: 1.35;
	margin-bottom: 3px;
	color: var(--azh-text);
}
.azh-megamenu__product-price {
	font-weight: 700;
	font-size: 12px;
	color: var(--azh-brand);
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	flex-wrap: wrap;
}
.azh-megamenu__product-price del {
	color: var(--azh-text-muted);
	font-weight: 400;
	text-decoration: line-through;
	font-size: 11px;
}
.azh-megamenu__product-price ins {
	text-decoration: none;
	color: var(--azh-brand);
	font-weight: 700;
}
.azh-megamenu__product-price .screen-reader-text {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}
.azh-megamenu__product-price small {
	font-size: 10px;
	font-weight: 400;
	color: var(--azh-text-muted);
	margin-left: 2px;
}

/* ===== Sticky compact mode (po scrollu) ===== */
.azh.is-sticky {
	box-shadow: var(--azh-shadow-md);
}
.azh.is-sticky .azh-topbar { display: none !important; }
.azh.is-sticky .azh-mainbar {
	padding: 6px 0 !important;
	min-height: 0 !important;
}
.azh.is-sticky .azh-mainbar__logo { width: 140px !important; }
.azh.is-sticky .azh-logo img {
	width: 90px !important;
	height: 38px !important;
}
.azh.is-sticky .azh-search { height: 40px !important; }
.azh.is-sticky .azh-mainbar .azh-container { gap: 16px !important; }
.azh.is-sticky .azh-icon-btn { width: 38px !important; height: 38px !important; }
.azh.is-sticky .azh-icon-btn svg { width: 20px; height: 20px; }
.azh.is-sticky .azh-menubar { box-shadow: 0 1px 0 rgba(15, 23, 42, .06); min-height: 0 !important; }
.azh.is-sticky .azh-categories__link {
	padding: 9px 16px !important;
	font-size: 12.5px !important;
	letter-spacing: .4px !important;
}
.azh.is-sticky .azh-mainbar__icons { gap: 2px; }

/* ===== Mobile drawer ===== */
.azh-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	z-index: calc(var(--azh-z-drawer) - 1);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}
.azh-drawer-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}
.azh-mobile-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: min(90vw, 360px);
	height: 100dvh;
	background: #fff;
	z-index: var(--azh-z-drawer);
	transform: translateX(-100%);
	transition: transform .3s ease;
	box-shadow: var(--azh-shadow-lg);
	display: flex;
	flex-direction: column;
}
.azh-mobile-drawer:not([hidden]) { display: flex; }
.azh-mobile-drawer.is-open {
	transform: translateX(0);
}
.azh-mobile-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	border-bottom: 1px solid var(--azh-border);
	background: var(--azh-bg-cream);
}
.azh-mobile-drawer__logo img { width: 100px; height: auto; display: block; }
.azh-mobile-drawer__close {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	cursor: pointer;
	border-radius: 6px;
	color: var(--azh-text);
}
.azh-mobile-drawer__close:hover { background: rgba(0, 0, 0, .06); }
.azh-mobile-drawer__body {
	flex: 1;
	overflow-y: auto;
	padding: 8px 0;
}
.azh-mobile-nav { list-style: none; margin: 0; padding: 0; }
.azh-mobile-nav__item { border-bottom: 1px solid var(--azh-border); }
.azh-mobile-nav__row {
	display: flex;
	align-items: stretch;
	min-height: 48px;
}
.azh-mobile-nav__link {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 0 20px;
	font-size: 15px;
	font-weight: 700;
	color: var(--azh-text);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .3px;
}
.azh-mobile-nav__toggle {
	width: 48px;
	height: 48px;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-size: 22px;
	font-weight: 700;
	color: var(--azh-text-muted);
	border-left: 1px solid var(--azh-border);
	transition: background .15s;
}
.azh-mobile-nav__toggle:hover { background: rgba(0, 0, 0, .04); }
.azh-mobile-nav__toggle[aria-expanded="true"] { background: var(--azh-brand-light); color: var(--azh-brand); }
.azh-mobile-nav__sub {
	list-style: none;
	margin: 0;
	padding: 4px 0 8px;
	background: #fafbfc;
}
.azh-mobile-nav__sub li a {
	display: block;
	padding: 10px 30px;
	font-size: 14px;
	color: var(--azh-text);
	text-decoration: none;
}
.azh-mobile-nav__sub li a:hover { color: var(--azh-brand); background: rgba(38, 177, 112, .04); }
.azh-mobile-drawer__footer {
	border-top: 1px solid var(--azh-border);
	padding: 16px 20px;
	background: #fafbfc;
}
.azh-mobile-drawer__phone {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 0;
	color: var(--azh-text);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}
.azh-mobile-drawer__phone small { color: var(--azh-text-muted); font-weight: 400; margin-left: auto; }
.azh-mobile-drawer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 10px;
}
.azh-mobile-drawer__links a {
	font-size: 13px;
	color: var(--azh-text-muted);
	text-decoration: none;
}
.azh-mobile-drawer__links a:hover { color: var(--azh-brand); }

/* ===== Body scroll lock when drawer/search open ===== */
body.azh-drawer-open,
body.azh-search-open { overflow: hidden; }

/* ===== Responsive breakpoints ===== */
@media (max-width: 1199px) {
	.azh-categories__link { padding: 14px 16px; font-size: 14px; }
}

@media (max-width: 1023px) {
	.azh-categories { display: none; }
	.azh-hamburger { display: inline-flex; }
	.azh-mainbar .azh-container {
		grid-template-columns: auto auto 1fr auto;
		gap: 8px;
	}
	.azh-mainbar__search { max-width: none; }
	.azh-megamenu { display: none !important; }
}

@media (max-width: 767px) {
	.azh-topbar { font-size: 12px; padding: 5px 0; }
	.azh-topbar__phone .azh-topbar__phone-num,
	.azh-topbar__hours,
	.azh-topbar__link {
		display: none;
	}
	.azh-topbar__phone { padding: 4px; }
	.azh-mainbar { padding: 10px 0; }
	.azh-logo img { width: 80px; height: auto; }
	.azh-mainbar__search { display: none; }
	.azh-mainbar__search.is-mobile-visible {
		display: block;
		position: fixed;
		inset: 0;
		background: #fff;
		z-index: var(--azh-z-drawer);
		padding: 64px 16px 16px 16px;
		max-width: none;
		margin: 0;
	}
	.azh-mainbar__search.is-mobile-visible .azh-search { height: 48px; }
	.azh-mainbar__search.is-mobile-visible .azh-search-dropdown {
		position: static;
		margin-top: 10px;
		max-height: calc(100dvh - 80px);
		box-shadow: none;
		border-color: var(--azh-border);
	}
	.azh-search-toggle { display: inline-flex; }
	.azh-mainbar .azh-container {
		grid-template-columns: auto auto 1fr auto;
		gap: 4px;
	}
	.azh-sd__categories { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Print: hide non-essential ===== */
@media print {
	.azh-topbar, .azh-menubar, .azh-mobile-drawer, .azh-drawer-overlay { display: none !important; }
}

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
	.azh-usp-slider__item,
	.azh-search-dropdown,
	.azh-megamenu,
	.azh-mobile-drawer,
	.azh-categories__link::after {
		transition: none !important;
		animation: none !important;
	}
}
