.bk-site-header {
	position: relative;
	z-index: 250;
	background: #fff;
}

.bk-site-header.is-sticky {
	position: sticky;
	top: 0;
}

.admin-bar .bk-site-header.is-sticky {
	top: 32px;
}

.bk-site-header svg,
.bk-mobile-drawer svg,
.bk-cart-drawer svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bk-topbar {
	min-height: 38px;
	border-bottom: 1px solid #edf1f7;
	background: #f7f9fc;
	color: #263955;
	font-size: 12px;
}

.bk-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 38px;
}

.bk-topbar__social,
.bk-topbar__contact,
.bk-topbar__contact a,
.bk-topbar__item {
	display: flex;
	align-items: center;
	gap: 9px;
}

.bk-topbar__contact {
	gap: 20px;
}

.bk-topbar a,
.bk-topbar__item {
	color: #263955;
	white-space: nowrap;
}

.bk-topbar svg {
	width: 17px;
	height: 17px;
}

.bk-topbar__social a {
	display: inline-grid;
	place-items: center;
}

.bk-mainbar {
	background: #fff;
}

.bk-mainbar__inner {
	display: grid;
	grid-template-columns: 190px minmax(320px, 1fr) 210px;
	align-items: center;
	gap: 34px;
	min-height: 112px;
}

.bk-mainbar__brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.bk-mainbar__brand .custom-logo-link {
	display: flex;
	align-items: center;
}

.bk-mainbar__brand .custom-logo {
	display: block;
	width: auto;
	max-width: 160px;
	max-height: var(--bk-logo-height, 92px);
	object-fit: contain;
}

.bk-brand-name {
	color: var(--bk-navy);
	font-size: 24px;
	font-weight: 900;
}

.bk-product-search form {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 56px;
	overflow: hidden;
	border: 1px solid #e5e9f0;
	border-radius: 28px;
	background: #fff;
}

.bk-product-search input[type="search"] {
	width: 100%;
	min-width: 0;
	height: 54px;
	padding: 0 28px 0 72px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--bk-navy);
}

.bk-product-search input[type="search"]::placeholder {
	color: #808a99;
}

.bk-product-search button {
	position: absolute;
	left: 6px;
	width: 46px;
	height: 46px;
	min-height: 46px;
	padding: 0;
	border-radius: 50%;
}

.bk-mainbar__account > a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	color: var(--bk-navy);
}

.bk-mainbar__account-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid #e3e8ef;
	border-radius: 50%;
	background: #fff;
}

.bk-mainbar__account-text {
	display: grid;
	line-height: 1.5;
}

.bk-mainbar__account-text small {
	color: var(--bk-muted);
	font-size: 11px;
}

.bk-mainbar__account-text strong {
	max-width: 145px;
	overflow: hidden;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bk-mobile-menu-button,
.bk-mobile-cart-button {
	display: none;
}

.bk-navrow {
	border-top: 1px solid #edf2fb;
	border-bottom: 1px solid #d9e6f8;
	background: #eaf2ff;
	box-shadow: 0 8px 20px rgba(11, 40, 85, .04);
}

.bk-navrow__inner {
	position: relative;
	display: grid;
	grid-template-columns: 285px minmax(0, 1fr) auto;
	align-items: stretch;
	min-height: 68px;
}

.bk-category-navigation {
	position: relative;
	z-index: 30;
}

.bk-category-button {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 20px;
	align-items: center;
	gap: 10px;
	width: 100%;
	height: 100%;
	min-height: 68px;
	padding: 0 22px;
	border-radius: 0;
	background: var(--bk-blue);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
}

.bk-category-button__chevron {
	transition: transform .2s ease;
}

.bk-category-navigation.is-open .bk-category-button__chevron {
	transform: rotate(180deg);
}

.bk-primary-navigation {
	display: flex;
	align-items: center;
	min-width: 0;
	padding-inline: 24px;
}

.bk-primary-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bk-primary-menu > li {
	position: relative;
}

.bk-primary-menu a {
	display: flex;
	align-items: center;
	min-height: 67px;
	color: #23354f;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.bk-primary-menu a:hover,
.bk-primary-menu .current-menu-item > a {
	color: var(--bk-blue);
}

.bk-primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 50;
	display: none;
	min-width: 220px;
	margin: 0;
	padding: 10px;
	border: 1px solid var(--bk-border);
	border-radius: 14px;
	background: #fff;
	box-shadow: var(--bk-shadow);
	list-style: none;
}

.bk-primary-menu li:hover > .sub-menu,
.bk-primary-menu li:focus-within > .sub-menu {
	display: block;
}

.bk-primary-menu .sub-menu a {
	min-height: 40px;
	padding: 5px 10px;
	border-radius: 9px;
}

.bk-primary-menu .sub-menu a:hover {
	background: var(--bk-soft);
}

.bk-nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-inline-start: 12px;
}

.bk-nav-action {
	position: relative;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid #e1e8f3;
	border-radius: 50%;
	background: #fff;
	color: #111b28;
}

.bk-nav-action:hover {
	border-color: #bfd4f4;
	color: var(--bk-blue);
}

.bk-cart-button {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 170px;
	min-height: 48px;
	padding: 4px 8px 4px 18px;
	border: 2px solid var(--bk-blue);
	border-radius: 28px;
	background: var(--bk-blue);
	color: #fff;
}

.bk-cart-button__amount {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.bk-cart-button__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	color: #111b28;
}

.bk-cart-count {
	position: absolute;
	top: -8px;
	right: -6px;
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border: 2px solid #fff;
	border-radius: 10px;
	background: #fff;
	color: var(--bk-blue);
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 3px 8px rgba(11, 40, 85, .12);
}

.bk-cart-total .amount {
	color: inherit;
}

.bk-category-mega {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 120;
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	width: min(1380px, calc(100vw - 32px));
	max-height: min(var(--bk-mega-max-height, 560px), calc(100vh - 180px));
	overflow: hidden;
	border: 1px solid #e0e8f3;
	border-radius: 0 0 20px 20px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(11, 40, 85, .17);
	transform-origin: top right;
}

.bk-category-mega[hidden] {
	display: none;
}

.bk-category-navigation.is-open .bk-category-mega {
	animation: bk-mega-in .16s ease-out both;
}

@keyframes bk-mega-in {
	from {
		opacity: 0;
		transform: translateY(-5px) scale(.995);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.bk-category-mega__sidebar {
	overflow-y: auto;
	border-left: 1px solid #e9eef5;
	background: #f8fafd;
	scrollbar-width: thin;
}

.bk-category-mega__tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 58px;
	padding: 10px 20px;
	border: 0;
	border-bottom: 1px solid #e9eef5;
	border-radius: 0;
	background: transparent;
	color: #24354c;
	font-size: 14px;
	font-weight: 750;
	text-align: right;
	transition: background-color .14s ease, color .14s ease, padding .14s ease;
}

.bk-category-mega__tab::before {
	position: absolute;
	top: 12px;
	right: 0;
	bottom: 12px;
	width: 3px;
	border-radius: 3px 0 0 3px;
	background: var(--bk-blue);
	content: '';
	opacity: 0;
	transform: scaleY(.35);
	transition: opacity .14s ease, transform .14s ease;
}

.bk-category-mega__tab:hover,
.bk-category-mega__tab.is-active,
.bk-category-mega__tab:focus-visible {
	padding-right: 24px;
	background: #fff;
	color: var(--bk-blue);
	outline: 0;
}

.bk-category-mega__tab.is-active::before,
.bk-category-mega__tab:focus-visible::before {
	opacity: 1;
	transform: scaleY(1);
}

.bk-category-mega__tab svg {
	width: 16px;
	height: 16px;
	transform: rotate(90deg);
}

.bk-category-mega__content {
	min-width: 0;
	overflow-y: auto;
	background:
		radial-gradient(circle at 12% 10%, rgba(23, 101, 220, .045), transparent 30%),
		#fff;
	scrollbar-width: thin;
}

.bk-category-mega__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(210px, 270px);
	align-items: stretch;
	gap: 28px;
	min-height: 0;
	padding: 28px 32px;
}

.bk-category-mega__panel[hidden] {
	display: none;
}

.bk-category-mega__groups {
	display: grid;
	grid-template-columns: repeat(var(--bk-mega-columns, 4), minmax(155px, 1fr));
	align-content: start;
	gap: 22px 28px;
	min-width: 0;
}

.bk-category-group {
	min-width: 0;
	padding-inline-start: 18px;
	border-inline-start: 1px solid #dce3ed;
}

.bk-category-group__title {
	display: block;
	margin-bottom: 11px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--bk-blue);
	color: #1b2f4c;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.7;
}

.bk-category-group ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bk-category-group li + li {
	margin-top: 4px;
}

.bk-category-group li a {
	display: inline-block;
	padding-block: 2px;
	color: #647187;
	font-size: 12.5px;
	line-height: 1.75;
	transition: color .14s ease, transform .14s ease;
}

.bk-category-group li a:hover,
.bk-category-group li a:focus-visible {
	color: var(--bk-blue);
	outline: 0;
	transform: translateX(-2px);
}

.bk-category-group__all {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 11px;
	color: var(--bk-blue);
	font-size: 12px;
	font-weight: 850;
}

.bk-category-mega__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 265px;
	padding: 16px;
	overflow: hidden;
	border: 1px solid #e8eef7;
	border-radius: 20px;
	background: linear-gradient(145deg, #f3f7fd, #fff);
}

.bk-category-mega__visual img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 260px;
	object-fit: contain;
	filter: drop-shadow(0 14px 22px rgba(11, 40, 85, .10));
}

.bk-category-mega__placeholder {
	display: grid;
	place-items: center;
	gap: 14px;
	width: 100%;
	min-height: 230px;
	color: var(--bk-navy);
	text-align: center;
}

.bk-category-mega__placeholder svg {
	width: 58px;
	height: 58px;
	color: var(--bk-blue);
	stroke-width: 1.25;
}

@media (prefers-reduced-motion: reduce) {
	.bk-category-navigation.is-open .bk-category-mega {
		animation: none;
	}
}

.bk-global-overlay {
	position: fixed;
	inset: 0;
	z-index: 400;
	background: rgba(5, 20, 42, .48);
	backdrop-filter: blur(2px);
}

.bk-global-overlay[hidden] {
	display: none;
}

.bk-mobile-drawer,
.bk-cart-drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 450;
	width: min(390px, calc(100vw - 34px));
	overflow-y: auto;
	background: #fff;
	box-shadow: 0 0 50px rgba(5, 20, 42, .22);
	transition: transform .25s ease;
}

.bk-mobile-drawer {
	right: 0;
	transform: translateX(105%);
}

.bk-cart-drawer {
	left: 0;
	transform: translateX(-105%);
}

.bk-mobile-drawer.is-open,
.bk-cart-drawer.is-open {
	transform: translateX(0);
}

.bk-drawer__head {
	position: sticky;
	top: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 68px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--bk-border);
	background: #fff;
}

.bk-drawer__head strong {
	color: var(--bk-navy);
	font-size: 16px;
}

.bk-drawer__head button {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	min-height: 40px;
	padding: 0;
	border-radius: 50%;
	background: var(--bk-soft);
	color: var(--bk-navy);
}

.bk-mobile-search {
	position: relative;
	margin: 16px;
}

.bk-mobile-search input {
	width: 100%;
	height: 48px;
	padding: 0 16px 0 52px;
	border: 1px solid var(--bk-border);
	border-radius: 14px;
	outline: none;
}

.bk-mobile-search button {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 40px;
	height: 40px;
	min-height: 40px;
	padding: 0;
	border-radius: 11px;
}

.bk-mobile-menu,
.bk-mobile-categories ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bk-mobile-navigation {
	padding: 0 16px;
}

.bk-mobile-menu > li {
	border-bottom: 1px solid #edf0f4;
}

.bk-mobile-menu a {
	display: flex;
	align-items: center;
	min-height: 50px;
	color: #24354c;
	font-weight: 700;
}

.bk-mobile-menu .sub-menu {
	margin: 0 14px 10px;
	padding: 0;
	list-style: none;
}

.bk-mobile-menu .sub-menu a {
	min-height: 42px;
	color: #667389;
	font-size: 13px;
}

.bk-mobile-categories {
	margin: 18px 16px 30px;
	padding: 18px;
	border-radius: 18px;
	background: var(--bk-soft);
}

.bk-mobile-categories h2 {
	margin: 0 0 12px;
	color: var(--bk-navy);
	font-size: 15px;
}

.bk-mobile-categories li + li {
	border-top: 1px solid #dfe8f5;
}

.bk-mobile-categories a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 46px;
	color: #34445b;
	font-size: 13px;
	font-weight: 700;
}

.bk-mobile-categories a span {
	color: var(--bk-muted);
	font-size: 11px;
}

.bk-cart-drawer {
	padding-bottom: 24px;
}

.bk-cart-drawer .widget_shopping_cart_content {
	padding: 16px;
}

.bk-cart-drawer .woocommerce-mini-cart {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bk-cart-drawer .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 12px;
	min-height: 84px;
	padding: 10px 22px 10px 0;
	border-bottom: 1px solid var(--bk-border);
}

.bk-cart-drawer .woocommerce-mini-cart-item img {
	grid-column: 1;
	width: 64px;
	height: 64px;
	border-radius: 10px;
	object-fit: cover;
}

.bk-cart-drawer .remove {
	position: absolute;
	top: 12px;
	right: 0;
	color: #d53d4f;
}

.bk-cart-drawer .woocommerce-mini-cart__total,
.bk-cart-drawer .woocommerce-mini-cart__buttons {
	margin: 18px 0 0;
}

.bk-cart-drawer .woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.bk-cart-drawer .woocommerce-mini-cart__buttons a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 12px;
	background: var(--bk-navy);
	color: #fff;
	font-weight: 800;
}

.bk-cart-drawer .woocommerce-mini-cart__buttons .checkout {
	background: var(--bk-blue);
}

body.bk-drawer-open {
	overflow: hidden;
}

.bk-site-header.is-compact .bk-topbar {
	display: none;
}

.bk-site-header.is-compact .bk-mainbar__inner {
	min-height: 82px;
}

.bk-site-header.is-compact .bk-mainbar__brand .custom-logo {
	max-height: 64px;
}

@media (max-width: 1280px) {
	.bk-mainbar__inner {
		grid-template-columns: 160px minmax(280px, 1fr) 180px;
		gap: 22px;
	}

	.bk-navrow__inner {
		grid-template-columns: 250px minmax(0, 1fr) auto;
	}

	.bk-primary-menu {
		gap: 19px;
	}

	.bk-primary-menu a {
		font-size: 12px;
	}

	.bk-cart-button {
		min-width: 145px;
	}
}

@media (max-width: 1024px) {
	.bk-topbar__address {
		display: none;
	}

	.bk-mainbar__inner {
		grid-template-columns: 54px minmax(0, 1fr) 54px;
		gap: 12px;
		min-height: 78px;
	}

	.bk-mainbar__brand {
		justify-content: center;
	}

	.bk-mainbar__brand .custom-logo {
		max-width: 125px;
		max-height: 66px;
	}

	.bk-product-search,
	.bk-mainbar__account,
	.bk-navrow {
		display: none;
	}

	.bk-mobile-menu-button,
	.bk-mobile-cart-button {
		position: relative;
		display: grid;
		place-items: center;
		width: 46px;
		height: 46px;
		min-height: 46px;
		padding: 0;
		border: 1px solid #e1e8f3;
		border-radius: 50%;
		background: #fff;
		color: var(--bk-navy);
	}

	.bk-mobile-cart-button .bk-cart-count {
		top: -5px;
		right: -5px;
	}
}

@media (max-width: 782px) {
	.admin-bar .bk-site-header.is-sticky {
		top: 46px;
	}
}

@media (max-width: 767px) {
	.bk-topbar {
		display: none;
	}

	.bk-mainbar__inner {
		min-height: 68px;
	}

	.bk-mainbar__brand .custom-logo {
		max-width: 108px;
		max-height: 56px;
	}

	.bk-site-header.is-compact .bk-mainbar__inner {
		min-height: 64px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bk-mobile-drawer,
	.bk-cart-drawer,
	.bk-category-button__chevron {
		transition: none;
	}
}


/* 0.2.2 — adaptive mega menu */
.bk-category-mega.is-layout-minimal {
	width: min(760px, calc(100vw - 32px));
}

.bk-category-mega.is-layout-compact {
	width: min(1080px, calc(100vw - 32px));
}

.bk-category-mega.is-layout-balanced {
	width: min(1240px, calc(100vw - 32px));
}

.bk-category-mega.is-layout-full {
	width: min(1380px, calc(100vw - 32px));
}

.bk-category-mega__panel.is-layout-minimal,
.bk-category-mega__panel.is-layout-compact {
	gap: 22px;
	padding: 24px 28px;
}

.bk-category-mega__panel.is-layout-minimal.no-visual,
.bk-category-mega__panel.is-layout-compact.no-visual,
.bk-category-mega__panel.is-layout-balanced.no-visual,
.bk-category-mega__panel.is-layout-full.no-visual {
	grid-template-columns: minmax(0, 1fr);
}

.bk-category-mega__panel.is-layout-minimal.has-visual {
	grid-template-columns: minmax(0, 1fr) 190px;
}

.bk-category-mega__panel.is-layout-compact.has-visual {
	grid-template-columns: minmax(0, 1fr) minmax(190px, 235px);
}

.bk-category-mega__panel.is-layout-balanced.has-visual {
	grid-template-columns: minmax(0, 1fr) minmax(210px, 255px);
}

.bk-category-mega__panel.is-layout-full.has-visual {
	grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
}

.bk-category-mega__panel.is-layout-minimal .bk-category-mega__visual,
.bk-category-mega__panel.is-layout-compact .bk-category-mega__visual {
	min-height: 210px;
	padding: 12px;
}

.bk-category-mega__panel.is-layout-minimal .bk-category-mega__visual img,
.bk-category-mega__panel.is-layout-compact .bk-category-mega__visual img {
	max-height: 205px;
}

.bk-category-mega__groups {
	align-self: start;
}

.bk-mobile-drawer__logo img {
	display: block;
	width: auto;
	max-width: 135px;
	max-height: 48px;
	object-fit: contain;
}
