/**
 * ACCESFY Header Builder – Premium Black / Gold / Pink
 */
:root {
	--ahb-bg: #000000;
	--ahb-surface: #0a0a0a;
	--ahb-border: rgba(255, 255, 255, 0.12);
	--ahb-gold: #c9a962;
	--ahb-gold-dim: rgba(201, 169, 98, 0.35);
	--ahb-text: #ffffff;
	--ahb-muted: rgba(255, 255, 255, 0.72);
	--ahb-hover: #ff4da6;
	--ahb-top-bg: #c9a962;
	--ahb-top-color: #0a0a0a;
	--ahb-logo-height: 80px;
}

.accesfy-hb-wrap {
	position: sticky;
	top: 0;
	z-index: 999999;
	width: 100%;
}

/* ─── Top Bar (Gold) ─── */
.accesfy-hb-topbar {
	background: linear-gradient(90deg, var(--ahb-top-bg), color-mix(in srgb, var(--ahb-top-bg) 85%, #fff), var(--ahb-top-bg));
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accesfy-hb-topbar__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 9px 20px;
	text-align: center;
}

.accesfy-hb-topbar__text {
	color: var(--ahb-top-color);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	transition: opacity 0.25s;
}

.accesfy-hb-topbar__text:hover {
	opacity: 0.85;
	color: var(--ahb-top-color);
}

/* ─── Main Header (Black) ─── */
.accesfy-hb {
	position: relative;
	width: 100%;
	background: var(--ahb-bg);
	border-bottom: 1px solid var(--ahb-border);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
	transition: box-shadow 0.3s ease;
}

.accesfy-hb__gold-line {
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--ahb-gold) 20%, var(--ahb-gold) 80%, transparent 100%);
	opacity: 0.9;
}

.accesfy-hb.is-shrunk {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
}

.accesfy-hb.is-shrunk .accesfy-hb__inner {
	padding-top: 10px;
	padding-bottom: 10px;
}

.accesfy-hb__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 12px 20px;
	position: relative;
}

.accesfy-hb__right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1;
	justify-content: flex-end;
	min-width: 0;
}

.accesfy-hb__left {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.accesfy-hb__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	background: transparent;
	border: 1px solid var(--ahb-border);
	border-radius: 10px;
	cursor: pointer;
	padding: 10px;
	transition: border-color 0.25s, box-shadow 0.25s;
}

.accesfy-hb__toggle span {
	display: block;
	height: 1.5px;
	background: var(--ahb-text);
	border-radius: 2px;
	transition: background 0.25s;
}

.accesfy-hb__toggle:hover {
	border-color: var(--ahb-hover);
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--ahb-hover) 30%, transparent);
}

.accesfy-hb__toggle:hover span {
	background: var(--ahb-hover);
}

/* ─── Logo – shared brand box (header, footer, auth) ─── */
.accesfy-hb__logo--mobile {
	display: none;
}

.accesfy-hb__logo--desktop {
	display: block;
}

.accesfy-hb__logo-brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.accesfy-hb__logo-brand:hover {
	border-color: rgba(201, 169, 98, 0.35);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.accesfy-hb__logo-brand--header .accesfy-hb__logo-img,
.accesfy-hb__logo-brand--header .custom-logo {
	max-height: var(--ahb-logo-height);
}

.accesfy-hb__logo-brand--footer .accesfy-hb__logo-img,
.accesfy-hb__logo-brand--footer .custom-logo {
	max-height: 76px;
}

.accesfy-hb__logo-brand--auth .accesfy-hb__logo-img,
.accesfy-hb__logo-brand--auth .custom-logo {
	max-height: 112px;
}

.accesfy-hb__logo-brand--auth {
	padding: 10px 16px;
	border-radius: 20px;
}

.accesfy-hb__logo-link,
.accesfy-hb__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	transition: transform 0.3s ease, filter 0.3s;
}

.accesfy-hb__logo-link:hover,
.accesfy-hb__logo .custom-logo-link:hover {
	transform: scale(1.03);
	filter: drop-shadow(0 0 12px var(--ahb-gold-dim));
}

.accesfy-hb__logo-img,
.accesfy-hb__logo .custom-logo,
.accesfy-hb__logo-brand img {
	max-height: var(--ahb-logo-height);
	width: auto;
	display: block;
	border-radius: 12px;
}

.accesfy-hb__logo-text {
	color: var(--ahb-text);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-size: 15px;
	transition: color 0.25s;
}

.accesfy-hb__logo-text-link:hover .accesfy-hb__logo-text,
.accesfy-hb__logo-text:hover {
	color: var(--ahb-gold);
}

/* ─── Center Menu ─── */
.accesfy-hb__nav {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.accesfy-hb-menu {
	display: flex;
	align-items: stretch;
	list-style: none;
	margin: 0;
	padding: 0;
}

.accesfy-hb-menu > li {
	position: relative;
	display: flex;
	align-items: stretch;
}

.accesfy-hb-menu > li + li::before {
	content: '';
	width: 1px;
	background: rgba(255, 255, 255, 0.35);
	align-self: center;
	height: 18px;
	margin: 0 2px;
	flex-shrink: 0;
}

.accesfy-hb-menu > li > a {
	display: flex;
	align-items: center;
	padding: 12px 18px;
	color: var(--ahb-text);
	text-decoration: none;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
	position: relative;
	transition: color 0.28s ease, text-shadow 0.28s ease;
}

.accesfy-hb-menu > li > a::after {
	content: '';
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 8px;
	height: 2px;
	background: var(--ahb-hover);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accesfy-hb-menu > li:hover > a,
.accesfy-hb-menu > li.current-menu-item > a {
	color: var(--ahb-hover);
	text-shadow: 0 0 20px color-mix(in srgb, var(--ahb-hover) 40%, transparent);
}

.accesfy-hb-menu > li:hover > a::after,
.accesfy-hb-menu > li.current-menu-item > a::after {
	transform: scaleX(1);
}

/* Submenu */
.accesfy-hb-menu__sub {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 200px;
	background: #0a0a0a;
	border: 1px solid var(--ahb-border);
	border-top: 2px solid var(--ahb-gold);
	border-radius: 12px;
	list-style: none;
	margin: 0;
	padding: 6px 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.28s ease;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
	z-index: 10;
}

.accesfy-hb-menu > li:hover > .accesfy-hb-menu__sub {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%);
}

.accesfy-hb-menu__sub a {
	display: block;
	padding: 10px 16px;
	color: var(--ahb-muted);
	text-decoration: none;
	font-size: 13px;
	transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.accesfy-hb-menu__sub a:hover {
	color: var(--ahb-hover);
	background: rgba(255, 255, 255, 0.03);
	padding-left: 20px;
}

/* ─── Actions ─── */
.accesfy-hb__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-self: end;
}

.accesfy-hb__search {
	position: relative;
	display: none;
}

/* ─── Search strip below header ─── */
.accesfy-hb__search-strip {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.accesfy-hb__search-strip-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1440px;
	margin: 0 auto;
	padding: 5px 24px 7px;
}

.accesfy-hb__search-strip-group {
	display: flex;
	align-items: center;
	gap: 8px;
	width: min(460px, 100%);
}

.accesfy-hb__search-strip-field {
	flex: 1;
	min-width: 0;
	position: relative;
	z-index: 30;
}

.accesfy-hb__cart--strip,
.accesfy-hb__cart--drawer {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	min-height: 0;
	align-self: center;
	border-radius: 8px;
}

.accesfy-hb__cart--strip svg,
.accesfy-hb__cart--drawer svg {
	width: 14px;
	height: 14px;
}

.accesfy-hb__cart--drawer {
	width: 32px;
	height: 32px;
}

.accesfy-hb__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid var(--ahb-border);
	border-radius: 10px;
	color: var(--ahb-text);
	cursor: pointer;
	padding: 0;
	transition: border-color 0.25s, color 0.25s, box-shadow 0.25s, background 0.25s;
	text-decoration: none;
	position: relative;
}

.accesfy-hb__icon-btn:hover {
	border-color: var(--ahb-hover);
	color: var(--ahb-hover);
	box-shadow: 0 0 16px color-mix(in srgb, var(--ahb-hover) 25%, transparent);
	background: rgba(255, 77, 166, 0.06);
}

.accesfy-hb__cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	background: var(--ahb-hover);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accesfy-hb__cart-count.is-empty {
	opacity: 0;
	transform: scale(0.4);
	pointer-events: none;
}

.accesfy-hb__cart-count.is-bump {
	animation: accesfyHbCartBump 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes accesfyHbCartBump {
	0% { transform: scale(1); }
	40% { transform: scale(1.35); }
	100% { transform: scale(1); }
}

.accesfy-hb__cart.is-pulse {
	animation: accesfyHbCartPulse 0.55s ease;
}

@keyframes accesfyHbCartPulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 77, 166, 0.45); }
	70% { box-shadow: 0 0 0 10px rgba(255, 77, 166, 0); }
	100% { box-shadow: none; }
}

/* Cart add notification near header icon */
.accesfy-hb-cart-notice {
	position: fixed;
	top: calc(var(--accesfy-hb-notice-top, 72px));
	right: 16px;
	z-index: 100150;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: #111;
	border: 1px solid #c9a962;
	border-radius: 12px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
	opacity: 0;
	transform: translateY(-8px) scale(0.96);
	pointer-events: none;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.accesfy-hb-cart-notice.is-show {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.accesfy-hb-cart-notice__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(74, 222, 128, 0.15);
	color: #4ade80;
	flex-shrink: 0;
}

.accesfy-hb-cart-notice__count {
	color: #c9a962;
	font-weight: 700;
}

.accesfy-hb__search-panel {
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	width: 340px;
	background: var(--ahb-surface);
	border: 1px solid var(--ahb-border);
	border-top: 2px solid var(--ahb-gold);
	border-radius: 14px;
	padding: 14px;
	animation: ahbFadeIn 0.28s ease;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
	z-index: 20;
}

.accesfy-hb__search-panel[hidden] {
	display: none !important;
}

.accesfy-hb__search-fallback input[type="search"] {
	width: 100%;
	background: #000;
	border: 1px solid var(--ahb-border);
	color: #fff;
	border-radius: 8px;
	padding: 10px 12px;
}

@keyframes ahbFadeIn {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: none; }
}

.accesfy-hb__account {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ahb-muted);
	text-decoration: none;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 8px 12px;
	border-radius: 10px;
	border: 1px solid transparent;
	transition: color 0.25s, border-color 0.25s;
}

.accesfy-hb__account:hover {
	color: var(--ahb-hover);
	border-color: color-mix(in srgb, var(--ahb-hover) 35%, transparent);
}

.accesfy-hb__login {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border: 1px solid var(--ahb-gold);
	border-radius: 999px;
	color: var(--ahb-text);
	text-decoration: none;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
	line-height: 1;
}

.accesfy-hb__login-icon {
	flex-shrink: 0;
	opacity: 0.9;
}

.accesfy-hb__login:hover {
	background: var(--ahb-gold);
	color: #000;
	box-shadow: 0 0 16px var(--ahb-gold-dim);
}

.accesfy-hb__login--guest {
	background: rgba(201, 169, 98, 0.06);
}

.accesfy-hb__login--account {
	border-color: rgba(201, 169, 98, 0.5);
	background: linear-gradient(135deg, rgba(201, 169, 98, 0.12), rgba(255, 255, 255, 0.04));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.accesfy-hb__login--account:hover {
	border-color: var(--ahb-gold);
	background: var(--ahb-gold);
	color: #000;
	box-shadow: 0 0 18px var(--ahb-gold-dim);
}

.accesfy-hb__login-text--short {
	display: none;
}

.accesfy-hb__profile {
	display: inline-flex;
	border: 1px solid var(--ahb-border);
	border-radius: 50%;
	padding: 2px;
	transition: border-color 0.25s, box-shadow 0.25s;
}

.accesfy-hb__profile:hover {
	border-color: var(--ahb-hover);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--ahb-hover) 30%, transparent);
}

.accesfy-hb__profile .accesfy-hb__avatar,
.accesfy-hb__profile img {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

/* ─── Drawer (Mobile) ─── */
.accesfy-hb-drawer {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	pointer-events: none;
}

.accesfy-hb-drawer.is-open {
	pointer-events: auto;
}

.accesfy-hb-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	transition: opacity 0.3s;
}

.accesfy-hb-drawer.is-open .accesfy-hb-drawer__backdrop {
	opacity: 1;
}

.accesfy-hb-drawer__panel {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: min(92vw, 400px);
	background: #000;
	border-right: 2px solid var(--ahb-gold);
	transform: translateX(-100%);
	transition: transform 0.35s ease;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.accesfy-hb-drawer.is-open .accesfy-hb-drawer__panel {
	transform: none;
}

.accesfy-hb-drawer__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 20px;
	border-bottom: 1px solid var(--ahb-border);
	color: var(--ahb-text);
}

.accesfy-hb-drawer__head strong {
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 12px;
	color: var(--ahb-gold);
}

.accesfy-hb-drawer__head button {
	background: none;
	border: none;
	color: var(--ahb-hover);
	font-size: 28px;
	cursor: pointer;
	line-height: 1;
}

.accesfy-hb-drawer__nav {
	flex: 1;
	overflow-y: auto;
}

.accesfy-hb-drawer__nav .accesfy-hb-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	padding: 14px;
	align-items: stretch;
}

.accesfy-hb-drawer__nav .accesfy-hb-menu > li + li::before {
	display: none;
}

.accesfy-hb-drawer__nav .accesfy-hb-menu > li {
	border: 1px solid var(--ahb-border);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	overflow: hidden;
}

.accesfy-hb-drawer__nav .accesfy-hb-menu > li > a {
	padding: 14px 10px;
	font-size: 10px;
	text-align: center;
	justify-content: center;
	white-space: normal;
	line-height: 1.35;
	min-height: 52px;
}

.accesfy-hb-drawer__nav .accesfy-hb-menu > li > a::after {
	display: none;
}

.accesfy-hb-drawer__nav .accesfy-hb-menu > li:hover > a {
	background: rgba(255, 77, 166, 0.08);
}

.accesfy-hb-drawer__nav .accesfy-hb-menu__sub {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	border: none;
	background: transparent;
	padding-left: 12px;
	box-shadow: none;
}

.accesfy-hb-drawer__footer {
	flex-shrink: 0;
	padding: 16px 14px 18px;
	border-top: 1px solid var(--ahb-border);
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
	position: relative;
	z-index: 5;
	overflow: visible;
}

.accesfy-hb-drawer__logo {
	display: flex;
	justify-content: center;
	margin-bottom: 14px;
}

.accesfy-hb-drawer__logo .accesfy-hb__logo-brand--header {
	padding: 10px 16px;
	border-radius: 18px;
}

.accesfy-hb-drawer__logo .accesfy-hb__logo-img,
.accesfy-hb-drawer__logo .custom-logo {
	max-height: 80px;
}

.accesfy-hb-drawer__toolbar {
	display: flex;
	align-items: stretch;
	gap: 10px;
}

.accesfy-hb-drawer__search {
	flex: 1;
	min-width: 0;
	position: relative;
}

.accesfy-hb-drawer__search .accesfy-search__dropdown {
	top: auto;
	bottom: calc(100% + 8px);
}

/* ─── Search Overlay (legacy – hidden) ─── */
.accesfy-hb-search-overlay {
	display: none !important;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
	.accesfy-hb-menu > li > a {
		padding: 10px 12px;
		font-size: 10px;
	}
}

@media (max-width: 1024px) {
	.accesfy-hb-topbar {
		border-bottom: none;
	}

	.accesfy-hb-topbar__inner {
		padding: 2px 10px;
		line-height: 1;
	}

	.accesfy-hb-topbar__text {
		font-size: 8px;
		font-weight: 500;
		letter-spacing: 0.06em;
		line-height: 1.15;
	}

	.accesfy-hb__inner {
		display: grid;
		grid-template-columns: 40px minmax(0, 1fr) auto;
		grid-template-areas: 'toggle logo actions';
		padding: 10px 12px;
		gap: 8px;
		align-items: center;
	}

	.accesfy-hb__right {
		grid-area: actions;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		flex: none;
		gap: 0;
		min-width: 0;
	}

	.accesfy-hb__actions--header {
		display: flex;
		flex-shrink: 0;
	}

	.accesfy-hb__toggle {
		display: inline-flex;
		grid-area: toggle;
		width: 38px;
		height: 38px;
		padding: 8px;
		flex-shrink: 0;
	}

	.accesfy-hb__nav {
		display: none;
	}

	.accesfy-hb__left {
		grid-area: toggle;
		width: 38px;
		min-width: 38px;
		gap: 0;
	}

	.accesfy-hb__logo--desktop {
		display: none;
	}

	.accesfy-hb__logo--mobile {
		grid-area: logo;
		display: flex;
		justify-content: center;
		align-items: center;
		justify-self: center;
		position: static;
		transform: none;
		min-width: 0;
		max-width: 100%;
		pointer-events: auto;
	}

	.accesfy-hb__logo--mobile .accesfy-hb__logo-brand {
		padding: 6px 12px;
		border-radius: 12px;
		max-width: 100%;
	}

	.accesfy-hb__logo--mobile .accesfy-hb__logo-img,
	.accesfy-hb__logo--mobile .custom-logo {
		max-height: 64px !important;
	}

	.accesfy-hb__search-strip-inner {
		justify-content: stretch;
		padding: 4px 12px 6px;
	}

	.accesfy-hb__search-strip-group {
		width: 100%;
		gap: 6px;
	}

	.accesfy-hb__cart--strip {
		display: none;
	}

	.accesfy-hb__login {
		padding: 6px 10px;
		font-size: 9px;
		gap: 5px;
	}

	.accesfy-hb__login-text--full {
		display: none;
	}

	.accesfy-hb__login-text--short {
		display: inline;
	}
}

@media (min-width: 1025px) {
	.accesfy-hb-topbar__inner {
		padding: 0 24px;
		line-height: 1.2;
	}

	.accesfy-hb-topbar__text {
		line-height: 1.2;
	}

	.accesfy-hb__inner {
		display: grid;
		grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
		align-items: center;
		gap: 20px;
		padding: 2px 24px;
	}

	.accesfy-hb.is-shrunk .accesfy-hb__inner {
		padding-top: 2px;
		padding-bottom: 2px;
	}

	.accesfy-hb__left {
		grid-column: 1;
		justify-self: start;
		flex-shrink: 0;
	}

	.accesfy-hb__logo--desktop .accesfy-hb__logo-brand {
		padding: 8px 12px;
		border-radius: 16px;
	}

	.accesfy-hb__logo--desktop .accesfy-hb__logo-img,
	.accesfy-hb__logo--desktop .custom-logo {
		max-height: var(--ahb-logo-height);
	}

	.accesfy-hb__right {
		display: contents;
	}

	.accesfy-hb__nav {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
		justify-content: center;
	}

	.accesfy-hb__actions--header {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	.accesfy-hb-drawer {
		display: none !important;
	}

	.accesfy-hb__toggle {
		display: none !important;
	}
}
