/* Header + mega menus */

.bz-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: var(--bz-white);
	border-bottom: none;
	box-shadow: none;
}

/* Reserve space so content starts below the fixed header */
.bz-header-offset {
	display: block;
	height: var(--bz-header-height, 7.5rem);
	pointer-events: none;
}

.bz-topbar {
	background: var(--bz-topbar);
	color: var(--bz-white);
	font-size: 0.8125rem;
}

.bz-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.2rem 0;
	min-height: 0;
	height: var(--bz-topbar-h);
	box-sizing: border-box;
}

.bz-topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--bz-white);
	font-weight: 500;
}

.bz-topbar__phone:hover {
	color: #f0f0f0;
}

.bz-topbar__phone:hover .bz-topbar__phone-icon {
	background: var(--bz-red-dark);
	border-color: var(--bz-red-dark);
	box-shadow: 0 2px 12px color-mix(in srgb, var(--bz-red) 50%, transparent);
	transform: translateY(-1px);
}

.bz-topbar__phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	border-radius: 0.45rem;
	background: var(--bz-red);
	border: 1px solid var(--bz-red-dark);
	color: #fff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 1px 6px color-mix(in srgb, var(--bz-red) 40%, transparent);
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.bz-topbar__phone-icon svg {
	display: block;
	width: 0.95rem;
	height: 0.95rem;
}

.bz-topbar__social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bz-topbar__social a,
.bz-topbar__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 0.45rem;
	background: var(--bz-red);
	border: 1px solid var(--bz-red-dark);
	color: #fff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 1px 6px color-mix(in srgb, var(--bz-red) 40%, transparent);
	opacity: 1;
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.bz-topbar__social-link--facebook,
.bz-topbar__social-link--linkedin {
	background: var(--bz-red);
	border-color: var(--bz-red-dark);
}

.bz-topbar__social a:hover,
.bz-topbar__social a:focus-visible,
.bz-topbar__social-link:hover,
.bz-topbar__social-link:focus-visible {
	background: var(--bz-red-dark);
	border-color: var(--bz-red-dark);
	color: #fff;
	box-shadow: 0 2px 12px color-mix(in srgb, var(--bz-red) 50%, transparent);
	opacity: 1;
	transform: translateY(-1px);
	outline: none;
}

.bz-topbar__social svg {
	display: block;
	width: 0.95rem;
	height: 0.95rem;
	flex-shrink: 0;
}

.bz-header__bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.25rem 0;
	min-height: var(--bz-header-bar-h);
	height: var(--bz-header-bar-h);
	/* Same horizontal inset as page content / inner hero */
	width: min(100% - (2 * var(--bz-gutter)), var(--bz-container));
	margin-inline: auto;
	padding-inline: 0;
	box-sizing: border-box;
}

.bz-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	align-self: stretch;
	line-height: 0;
}

.bz-logo img {
	width: auto;
	height: var(--bz-logo-h, 100px);
	max-height: none;
	display: block;
	object-fit: contain;
}

/* ——— Primary nav (compact pill cluster) ——— */
.bz-nav {
	display: none;
	flex: 1;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.bz-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 0.15rem;
	list-style: none;
	margin: 0;
	padding: 0.2rem;
	max-width: 100%;
	background: #f3f4f6;
	border: 1px solid #e8e8ea;
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.bz-nav__item {
	position: relative;
	display: flex;
	align-items: center;
}

.bz-nav__item > a,
.bz-nav__trigger {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	padding: 0.42rem 0.85rem;
	color: #2a2a2a;
	font-family: inherit;
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.01em;
	line-height: 1.2;
	background: transparent;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition:
		color 160ms var(--bz-ease),
		background-color 160ms var(--bz-ease),
		box-shadow 160ms var(--bz-ease);
}

.bz-nav__item > a:hover,
.bz-nav__trigger:hover {
	color: var(--bz-black);
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.bz-nav__item.is-open > .bz-nav__trigger,
.bz-nav__item:focus-within > .bz-nav__trigger,
.bz-nav__item > a:focus-visible,
.bz-nav__trigger:focus-visible {
	color: var(--bz-red);
	background: #fff;
	box-shadow: 0 1px 4px rgba(163, 24, 32, 0.12);
	outline: none;
}

.bz-nav__item.is-current > a,
.bz-nav__item.is-current > .bz-nav__trigger {
	color: #fff;
	background: var(--bz-red);
	box-shadow: none;
}

.bz-nav__item.is-current > a:hover,
.bz-nav__item.is-current > .bz-nav__trigger:hover {
	color: #fff;
	background: var(--bz-red-dark, #86141b);
	box-shadow: none;
}

.bz-nav__item.is-current.is-open > .bz-nav__trigger,
.bz-nav__item.is-current:focus-within > .bz-nav__trigger {
	color: var(--bz-red);
	background: #fff;
	box-shadow: 0 1px 4px rgba(163, 24, 32, 0.12);
}

.bz-nav__chev {
	display: inline-flex;
	opacity: 0.7;
	transition: transform 160ms var(--bz-ease);
}

.bz-nav__item.is-open .bz-nav__chev,
.bz-nav__item:hover .bz-nav__chev {
	transform: rotate(180deg);
}

.bz-nav__item--mega {
	position: static;
}

.bz-nav__item--mega > .bz-nav__trigger {
	height: auto;
}

/* ——— Mega panel ——— */
.bz-mega {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 40;
	/* Bridge so pointer can travel trigger → panel without closing */
	padding-top: 0.65rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px) scale(0.98);
	transform-origin: top center;
	transition:
		opacity 180ms var(--bz-ease),
		transform 180ms var(--bz-ease),
		visibility 180ms;
}

/* Hit-area covering the gap under the nav pill */
.bz-mega::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 3rem;
}

/* JS-controlled only — CSS :hover open feels jumpy with the pill nav */
.bz-nav__item.is-open > .bz-mega {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
	.bz-mega {
		transition: none;
		transform: none;
	}
}

.bz-mega__inner,
.bz-mega__feature-grid {
	background: var(--bz-white);
	border: 1px solid #e6e6e6;
	border-radius: var(--bz-radius);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

/* Products: 3 columns */
.bz-mega__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	padding: 1.15rem;
}

.bz-mega__panel {
	border: 1px solid #ececec;
	border-radius: var(--bz-radius);
	padding: 1.15rem 1.2rem 1.25rem;
	background: #fff;
	min-height: 100%;
}

.bz-mega__title {
	margin: 0 0 1rem;
	color: var(--bz-red);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.bz-mega__products,
.bz-mega__bundles,
.bz-mega__text-links,
.bz-mega__feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bz-mega__product {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.55rem 0.35rem;
	border-radius: var(--bz-radius);
	color: var(--bz-text);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background-color var(--bz-duration) var(--bz-ease), color var(--bz-duration) var(--bz-ease);
}

.bz-mega__product img {
	width: 48px;
	height: 62px;
	object-fit: cover;
	border-radius: var(--bz-radius);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}

.bz-mega__product:hover {
	background: var(--bz-wash);
	color: var(--bz-red);
}

.bz-mega__products li + li,
.bz-mega__bundles li + li {
	margin-top: 0.35rem;
}

.bz-mega__bundle {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.55rem 0.35rem;
	border-radius: var(--bz-radius);
	text-decoration: none;
	transition: background-color var(--bz-duration) var(--bz-ease);
}

.bz-mega__bundle img {
	width: 72px;
	height: 48px;
	object-fit: cover;
	border-radius: var(--bz-radius);
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bz-mega__bundle-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.bz-mega__bundle-name {
	color: var(--bz-text);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.3;
}

.bz-mega__offer {
	color: #aa3030;
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1.3;
}

.bz-mega__bundle:hover {
	background: var(--bz-wash);
}

.bz-mega__bundle:hover .bz-mega__bundle-name {
	color: var(--bz-red);
}

.bz-mega__text-links li + li {
	margin-top: 0.65rem;
}

.bz-mega__text-links a {
	color: var(--bz-text);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
}

.bz-mega__text-links a:hover {
	color: var(--bz-red);
}

.bz-mega__cta-stack {
	display: grid;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.bz-mega__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.7rem 1.25rem;
	border-radius: var(--bz-radius);
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--bz-white) !important;
	transition: transform var(--bz-duration) var(--bz-ease), filter var(--bz-duration) var(--bz-ease);
}

.bz-mega__btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
	color: var(--bz-white) !important;
}

.bz-mega__btn--trial {
	background: #1f6b3a;
}

.bz-mega__btn--support {
	background: #8b1a1f;
}

/* Feature mega (Why / Endpoint) */
.bz-mega__feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
	gap: 1.5rem;
	padding: 1.25rem;
	align-items: stretch;
}

.bz-mega__visual {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--bz-radius);
	min-height: 260px;
	text-decoration: none;
}

.bz-mega__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 260px;
}

.bz-mega__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.65) 100%);
}

.bz-mega__visual-label {
	position: absolute;
	left: 1.15rem;
	bottom: 1.1rem;
	z-index: 1;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.bz-mega__feature-list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.35rem 0.5rem 0.35rem 0.25rem;
}

.bz-mega__feature-link {
	display: flex;
	align-items: flex-start;
	gap: 0.95rem;
	padding: 0.85rem 0.75rem;
	border-radius: var(--bz-radius);
	text-decoration: none;
	transition: background-color var(--bz-duration) var(--bz-ease);
}

.bz-mega__feature-link:hover {
	background: #f7f7f7;
}

.bz-mega__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	margin-top: 0.1rem;
	color: var(--bz-red);
}

.bz-mega__feature-icon--img {
	width: 3.25rem;
	height: 3.25rem;
	margin-top: 0;
	overflow: hidden;
	border-radius: 0.45rem;
	background: #eee;
}

.bz-mega__feature-icon--img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bz-mega__feature-icon svg {
	width: 24px;
	height: 24px;
}

.bz-mega__feature-copy {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

.bz-mega__feature-title {
	color: var(--bz-red);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.bz-mega__feature-desc {
	color: #6a6a6a;
	font-size: 0.9rem;
	line-height: 1.45;
	font-weight: 500;
}

/* ——— Actions ——— */
.bz-header__actions {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-shrink: 0;
}

.bz-search,
.bz-cart,
.bz-account__toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	color: var(--bz-black);
	border: none;
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	font: inherit;
	transition: background-color var(--bz-duration) var(--bz-ease), color var(--bz-duration) var(--bz-ease);
}

.bz-cart[aria-expanded="true"],
.bz-account__toggle[aria-expanded="true"] {
	background: var(--bz-wash);
	color: var(--bz-red);
}

.bz-search:hover,
.bz-cart:hover,
.bz-account__toggle:hover,
.bz-account:hover .bz-account__toggle,
.bz-account:focus-within .bz-account__toggle {
	background: var(--bz-wash);
	color: var(--bz-black);
}

.bz-search[aria-expanded="true"] {
	background: var(--bz-wash);
	color: var(--bz-red);
}

/* —— Account / profile menu —— */
.bz-header .bz-account,
.bz-account {
	position: relative;
	display: block;
	width: auto;
	max-width: none;
	float: none;
	clear: none;
	grid-template-columns: unset;
	gap: 0;
	align-items: unset;
}

.bz-account__menu {
	position: absolute;
	/* Flush under toggle; top padding is an invisible hover bridge */
	top: 100%;
	right: 0;
	z-index: 1200;
	min-width: 11.5rem;
	padding: 0.55rem 0.4rem 0.4rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.15s ease,
		visibility 0.15s ease;
}

/* White panel sits below the bridge so the cursor never leaves .bz-account */
.bz-account__menu::before {
	content: "";
	position: absolute;
	top: 0.55rem;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: 0.75rem;
	background: #fff;
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.bz-account:hover .bz-account__menu,
.bz-account:focus-within .bz-account__menu,
.bz-account.is-open .bz-account__menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.bz-account__link {
	display: block;
	padding: 0.65rem 0.8rem;
	border-radius: 0.5rem;
	color: var(--bz-black);
	font-size: 0.875rem;
	font-weight: 650;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.bz-account__link:hover,
.bz-account__link:focus-visible {
	background: var(--bz-wash);
	color: var(--bz-red);
	outline: none;
}

.bz-account__link--muted {
	color: #5c6570;
	font-weight: 600;
}

/* —— Search overlay (sitewide) —— */
.bz-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: calc(var(--bz-header-height, 7.5rem) + 0.75rem) 1rem 2rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.bz-search-overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.bz-search-overlay[hidden] {
	display: none !important;
}

.bz-search-overlay.is-open:not([hidden]) {
	display: flex;
}

.bz-search-overlay__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(17, 17, 17, 0.55);
	border: 0;
	cursor: pointer;
}

.bz-search-overlay__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 40rem);
	margin-top: 0.5rem;
	padding: 1.25rem 1.35rem 1.4rem;
	border-radius: 0.75rem;
	background: #fff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
	transform: translateY(-0.5rem);
	transition: transform 0.2s ease;
	pointer-events: auto;
}

.bz-search-overlay.is-open .bz-search-overlay__panel {
	transform: translateY(0);
}

.bz-search-overlay__inner {
	width: 100%;
	max-width: none;
	padding: 0;
}

.bz-search-overlay__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.bz-search-overlay__title {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 800;
	color: #111;
	letter-spacing: -0.01em;
}

.bz-search-overlay__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 0;
	border-radius: 0.4rem;
	background: #f3f4f6;
	color: #111;
	cursor: pointer;
}

.bz-search-overlay__close:hover {
	background: #e5e7eb;
	color: var(--bz-red);
}

.bz-search-overlay__hint {
	margin: 0.75rem 0 0;
	font-size: 0.88rem;
	color: #666;
	line-height: 1.45;
}

/* Shared search field */
.bz-search-form__row {
	display: flex;
	align-items: stretch;
	gap: 0.5rem;
	width: 100%;
}

.bz-search-form__icon {
	display: none;
}

.bz-search-form__input {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 3rem;
	padding: 0.7rem 1rem;
	border: 1px solid #d4d4d8;
	border-radius: 0.45rem;
	background: #f7f8f9;
	color: #111;
	font-size: 1rem;
	line-height: 1.3;
	box-shadow: none;
}

.bz-search-form__input:focus {
	outline: 2px solid rgba(163, 24, 32, 0.35);
	outline-offset: 1px;
	border-color: #ccc;
	background: #fff;
}

.bz-search-form__submit {
	flex: 0 0 auto;
	min-height: 3rem;
	padding: 0.7rem 1.25rem;
	border: 0;
	border-radius: 0.45rem;
	background: #a31820;
	color: #fff;
	font-weight: 700;
	font-size: 0.92rem;
	cursor: pointer;
	white-space: nowrap;
}

.bz-search-form__submit:hover {
	background: #86141b;
}

.bz-search-form--overlay .bz-search-form__row {
	position: relative;
}

.bz-search-form--overlay .bz-search-form__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.25rem;
	height: 1.25rem;
	color: #666;
	pointer-events: none;
}

.bz-search-form--overlay .bz-search-form__input {
	padding-left: 2.6rem;
}

.bz-drawer__search {
	padding: 0 0 1rem;
	margin: 0 0 0.5rem;
	border-bottom: 1px solid #e8eaed;
}

.bz-drawer__search .bz-search-form__row {
	flex-wrap: wrap;
}

.bz-drawer__search .bz-search-form__input {
	flex: 1 1 100%;
}

.bz-drawer__search .bz-search-form__submit {
	width: 100%;
}

body.bz-search-open {
	overflow: hidden;
}

.bz-cart__count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: var(--bz-radius);
	background: var(--bz-red);
	color: var(--bz-white);
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

.bz-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 999px;
	background: var(--bz-red);
	color: var(--bz-white);
	cursor: pointer;
}

/* ——— Drawer ——— */
.bz-drawer {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1100;
}

.bz-drawer.is-open {
	display: block;
}

.bz-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.bz-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(380px, 92vw);
	height: 100%;
	background: var(--bz-white);
	padding: 1.25rem;
	overflow-y: auto;
	box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
}

.bz-drawer__close {
	display: inline-flex;
	margin-bottom: 1rem;
	background: var(--bz-wash);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.bz-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bz-drawer__list > li > a,
.bz-drawer__list > li > button {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 0.85rem 0;
	border: none;
	border-bottom: 1px solid var(--bz-border);
	background: none;
	font: inherit;
	font-weight: 600;
	color: var(--bz-black);
	text-align: left;
	cursor: pointer;
}

.bz-drawer__sub {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0.25rem 0 0.75rem 0.5rem;
}

.bz-drawer__sub.is-open {
	display: block;
}

.bz-drawer__sub a {
	display: block;
	padding: 0.45rem 0;
	color: var(--bz-muted);
	font-size: 0.92rem;
}

.bz-drawer__sub-label {
	display: block;
	margin: 0.65rem 0 0.25rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bz-red);
}

body.bz-drawer-open,
body.bz-cart-open {
	overflow: hidden;
}

/* ——— Side mini-cart ——— */
.bz-mini-cart {
	position: fixed;
	inset: 0;
	z-index: 1200;
	visibility: hidden;
	pointer-events: none;
}

.bz-mini-cart.is-open {
	visibility: visible;
	pointer-events: auto;
}

.bz-mini-cart__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.bz-mini-cart.is-open .bz-mini-cart__overlay {
	opacity: 1;
}

.bz-mini-cart__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(400px, 94vw);
	height: 100%;
	background: var(--bz-white);
	box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.bz-mini-cart.is-open .bz-mini-cart__panel {
	transform: translateX(0);
}

.bz-mini-cart__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1.1rem 1.25rem;
	border-bottom: 1px solid var(--bz-border);
	flex-shrink: 0;
}

.bz-mini-cart__title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	font-family: var(--bz-font-display);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: var(--bz-tracking-tight);
	color: var(--bz-black);
}

.bz-mini-cart__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.4rem;
	height: 1.4rem;
	padding: 0 0.35rem;
	border-radius: 999px;
	background: var(--bz-red);
	color: var(--bz-white);
	font-family: var(--bz-font);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
}

.bz-mini-cart__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: var(--bz-wash);
	color: var(--bz-black);
	cursor: pointer;
}

.bz-mini-cart__close:hover {
	background: var(--bz-border);
}

.bz-mini-cart__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 0.75rem 1.15rem 1rem;
}

.bz-mini-cart__body .woocommerce-mini-cart__empty-message {
	margin: 2rem 0.5rem;
	color: var(--bz-muted);
	text-align: center;
	font-size: 0.95rem;
}

/* Kill WooCommerce widget cart defaults (32px float images, absolute remove). */
.bz-mini-cart ul.cart_list,
.bz-mini-cart ul.product_list_widget,
.bz-mini-cart-list,
.bz-mini-cart__body .woocommerce-mini-cart {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.bz-mini-cart ul.cart_list li,
.bz-mini-cart ul.product_list_widget li,
.bz-mini-cart-item {
	display: grid !important;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: start;
	position: relative;
	float: none !important;
	padding: 1rem 0 !important;
	margin: 0 !important;
	border-bottom: 1px solid var(--bz-border);
	list-style: none !important;
}

.bz-mini-cart ul.cart_list li::before,
.bz-mini-cart ul.cart_list li::after,
.bz-mini-cart ul.product_list_widget li::before,
.bz-mini-cart ul.product_list_widget li::after {
	content: none !important;
	display: none !important;
}

.bz-mini-cart ul.cart_list li a,
.bz-mini-cart ul.product_list_widget li a {
	display: inline !important;
	font-weight: inherit;
}

.bz-mini-cart-item__thumb {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 88px !important;
	height: 88px !important;
	padding: 0.4rem;
	border-radius: var(--bz-radius);
	background: var(--bz-wash);
	overflow: hidden;
	text-decoration: none !important;
	float: none !important;
}

.bz-mini-cart ul.cart_list li img,
.bz-mini-cart ul.product_list_widget li img,
.bz-mini-cart-item__img,
.bz-mini-cart-item__thumb img {
	display: block !important;
	float: none !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	object-fit: contain !important;
	object-position: center;
	box-shadow: none !important;
}

.bz-mini-cart-item__main {
	min-width: 0;
	display: grid;
	gap: 0.4rem;
}

.bz-mini-cart-item__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
}

.bz-mini-cart-item__name {
	display: block !important;
	flex: 1 1 auto;
	min-width: 0;
	color: var(--bz-black) !important;
	font-size: 0.92rem;
	font-weight: 700 !important;
	line-height: 1.3;
	text-decoration: none !important;
}

.bz-mini-cart-item__name:hover {
	color: var(--bz-red) !important;
}

.bz-mini-cart-item .variation,
.bz-mini-cart-item dl.variation {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	font-size: 0.78rem;
	line-height: 1.35;
	color: var(--bz-muted);
}

.bz-mini-cart-item .variation dt,
.bz-mini-cart-item .variation dd,
.bz-mini-cart-item dl.variation dt,
.bz-mini-cart-item dl.variation dd {
	display: inline !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.bz-mini-cart-item .variation dd {
	margin-right: 0.35rem !important;
}

.bz-mini-cart-item .variation dd p {
	display: inline;
	margin: 0;
}

.bz-mini-cart-item__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	margin-top: 0.15rem;
	flex-wrap: nowrap;
}

.bz-mini-cart-qty {
	display: inline-flex !important;
	align-items: stretch;
	flex: 0 0 auto;
	border: 1px solid var(--bz-border);
	border-radius: 4px;
	background: var(--bz-white);
	overflow: hidden;
}

.bz-mini-cart-qty.is-busy {
	opacity: 0.55;
	pointer-events: none;
}

.bz-mini-cart-qty__btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	min-width: 2.1rem;
	height: 2.1rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--bz-black);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.bz-mini-cart-qty__btn:hover {
	background: var(--bz-wash);
	color: var(--bz-red);
}

.bz-mini-cart-qty__input,
.bz-mini-cart .bz-mini-cart-qty__input.qty {
	display: block !important;
	width: 2.6rem !important;
	min-width: 2.6rem;
	max-width: 3rem;
	height: 2.1rem !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-left: 1px solid var(--bz-border) !important;
	border-right: 1px solid var(--bz-border) !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--bz-black) !important;
	font: inherit;
	font-size: 0.9rem !important;
	font-weight: 700 !important;
	line-height: 2.1rem;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
}

.bz-mini-cart-qty__input::-webkit-outer-spin-button,
.bz-mini-cart-qty__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.bz-mini-cart-item__line-total {
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--bz-black);
	white-space: nowrap;
	margin-left: auto;
}

.bz-mini-cart-item__line-total .woocommerce-Price-amount,
.bz-mini-cart-item__line-total .amount {
	font-weight: 800;
	color: inherit;
}

/* Override Woo a.remove { position:absolute; top:0; left:0 } */
.bz-mini-cart a.remove,
.bz-mini-cart a.remove_from_cart_button,
.bz-mini-cart-item__remove {
	position: static !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1.75rem !important;
	height: 1.75rem !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: var(--bz-muted) !important;
	font-size: 1.15rem !important;
	font-weight: 700;
	line-height: 1 !important;
	text-decoration: none !important;
	float: none !important;
}

.bz-mini-cart a.remove:hover,
.bz-mini-cart a.remove_from_cart_button:hover,
.bz-mini-cart-item__remove:hover {
	background: var(--bz-wash) !important;
	color: var(--bz-red) !important;
}

/* Body subtotal is duplicated in footer — hide the list one. */
.bz-mini-cart__body .woocommerce-mini-cart__total,
.bz-mini-cart__body .bz-mini-cart__total {
	display: none;
}

.bz-mini-cart__body .woocommerce-mini-cart__buttons {
	display: none;
}

.bz-mini-cart__foot {
	display: grid;
	gap: 0.85rem;
	padding: 1rem 1.25rem 1.35rem;
	border-top: 1px solid var(--bz-border);
	background: var(--bz-white);
	flex-shrink: 0;
}

.bz-mini-cart__totals {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.bz-mini-cart__totals[hidden] {
	display: none;
}

.bz-mini-cart__totals-label {
	font-size: 1rem;
	font-weight: 700;
	color: var(--bz-black);
}

.bz-mini-cart__totals-amount {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--bz-black);
	line-height: 1;
}

.bz-mini-cart__totals-amount .woocommerce-Price-amount,
.bz-mini-cart__totals-amount .amount {
	font-weight: 800;
	color: inherit;
}

.bz-mini-cart__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem;
}

.bz-mini-cart__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 0.65rem 0.75rem;
	text-align: center;
	text-decoration: none;
	font-size: 0.85rem;
}

.bz-mini-cart__btn.bz-btn--outline {
	border: 1px solid var(--bz-black);
	background: transparent;
	color: var(--bz-black);
}

.bz-mini-cart__btn.bz-btn--outline:hover {
	background: var(--bz-wash);
	color: var(--bz-black);
}

.bz-mini-cart__btn.bz-btn--primary {
	background: var(--bz-red);
	border: 1px solid var(--bz-red);
	color: var(--bz-white);
}

.bz-mini-cart__btn.bz-btn--primary:hover {
	background: var(--bz-red-dark, #86141b);
	border-color: var(--bz-red-dark, #86141b);
	color: var(--bz-white);
}

@media (min-width: 1024px) {
	.bz-nav {
		display: flex;
	}

	.bz-menu-toggle {
		display: none;
	}
}

@media (min-width: 1200px) {
	.bz-nav__item > a,
	.bz-nav__trigger {
		padding: 0.4rem 0.9rem;
		font-size: 0.84rem;
	}
}

@media (max-width: 1100px) {
	.bz-mega__inner {
		grid-template-columns: 1fr;
	}

	.bz-mega__feature-grid {
		grid-template-columns: 1fr;
	}

	.bz-mega__visual {
		min-height: 180px;
	}

	.bz-mega__visual img {
		min-height: 180px;
	}
}
/*bz-pad*/







