.vb-site-header {
	--vb-text: #111827;
	--vb-muted: #6b7280;
	--vb-border: #e5e7eb;
	--vb-accent: #0f172a;
	--vb-bg: #ffffff;
	position: relative;
	z-index: 100;
	background: var(--vb-bg);
	box-shadow: 0 1px 0 var(--vb-border);
	contain: layout style;
}

.vb-container {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.vb-header-inner {
	display: grid;
	grid-template-columns: auto minmax(360px, 1fr);
	align-items: center;
	column-gap: clamp(1rem, 2vw, 2rem);
	padding: 1rem 0 0.75rem;
	width: 100%;
}

.vb-brand {
	flex: 0 0 auto;
	line-height: 0;
	justify-self: start;
	margin-right: 0;
}

.vb-search-wrap {
	position: relative;
	width: 100%;
	max-width: clamp(360px, 55vw, 640px);
	margin: 0 0 0 auto;
}

.vb-header-actions {
	display: none;
	align-items: center;
	justify-self: end;
	gap: 0.75rem;
	flex: 0 0 auto;
	align-self: center;
	padding: 0;
}

.vb-brand__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	gap: 0.5rem;
	line-height: 0;
}

.vb-brand__link img,
.vb-brand__link svg {
	display: block;
	max-height: 48px;
	height: auto;
	width: auto;
}

.vb-search-slot {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-self: stretch;
}

.vb-search-slot:empty {
	display: none;
	flex: 0 0 auto;
}

.vb-brand__text {
	padding-left: 0.25rem;
	padding-right: 0.25rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--vb-text);
}

.vb-search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.1rem 0.5rem;
	border-radius: 999px;
	border: 1px solid rgb(217 217 217 / 55%);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(240, 247, 255, 0.35));
	box-shadow: 0 3px 18px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.vb-search::before {
	content: '';
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	background: linear-gradient(125deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 255, 0.25));
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	z-index: 0;
}

.vb-search::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(circle at 75% 0%, rgba(255, 255, 255, 0.6), transparent 55%);
	pointer-events: none;
	z-index: 0;
}

.vb-search > * {
	position: relative;
	z-index: 1;
}

.vb-search input[type="search"] {
	border: 0;
	background: transparent;
	font-size: 0.8rem;
	padding: 0.4rem 0.5rem;
	width: 100%;
	color: var(--vb-text);
	outline: none;
	min-width: 0;
	font-weight: 500;
}

.vb-search input::placeholder {
	color: rgba(71, 85, 105, 0.75);
	font-weight: 500;
	letter-spacing: 0.01em;
}

.vb-search__submit {
	border: 0;
	background: transparent;
	box-shadow: none;
	color: #0b1220;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.15rem 0.2rem;
	cursor: pointer;
	border-radius: 0;
}

.vb-search__submit svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: rgb(173 173 173);
	stroke-width: 1;
}

.vb-search__submit:hover,
.vb-search__submit:focus,
.vb-search__submit:active {
	background: transparent;
	box-shadow: none;
	color: #0b1220;
}

.vb-search-suggestions {
	position: absolute;
	top: calc(100% + 0.45rem);
	left: 0;
	right: 0;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(232, 240, 255, 0.65));
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 1.35rem;
	padding: 0.9rem 0;
	display: none;
	z-index: 30;
	box-shadow: 0 28px 55px rgba(15, 23, 42, 0.15);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
}

.vb-search-suggestions.is-visible {
	display: block;
}

.vb-search-suggestions ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vb-search-suggestions li {
	border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.vb-search-suggestions li:last-child {
	border-bottom: 0;
}

.vb-search-suggestions a {
	display: flex;
	flex-direction: column;
	padding: 0.65rem 1rem;
	text-decoration: none;
	color: var(--vb-text);
	transition: background 0.2s ease, box-shadow 0.2s ease;
	border-radius: 0.75rem;
}

.vb-search-suggestions a span {
	font-size: 0.8rem;
	color: var(--vb-muted);
}

.vb-search-suggestions a:hover {
	background: rgba(248, 250, 252, 0.85);
	box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.vb-search-suggestions__empty {
	margin: 0;
	padding: 0.6rem 1rem;
	font-size: 0.85rem;
	color: var(--vb-muted);
}

.vb-header-toggle {
	border: 1px solid var(--vb-border);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 244, 250, 0.9));
	padding: 0.5rem 1.1rem;
	border-radius: 32px;
	display: none;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	font-weight: 600;
	color: var(--vb-text);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vb-header-toggle__icon {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.vb-header-toggle__icon .vb-header-toggle__line {
	display: block;
	width: 18px;
	height: 1.2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.25s ease, opacity 0.2s ease;
	transform-origin: center;
}

.vb-header-toggle:hover,
.vb-header-toggle:focus,
.vb-header-toggle:active {
	background: linear-gradient(135deg, #ffffff, rgba(236, 244, 255, 0.9)) !important;
	color: var(--vb-text) !important;
	border-color: var(--vb-border) !important;
	box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
	transform: translateY(-1px);
}

.vb-header-toggle.is-active .vb-header-toggle__icon .vb-header-toggle__line:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

.vb-header-toggle.is-active .vb-header-toggle__icon .vb-header-toggle__line:nth-child(2) {
	opacity: 0;
}

.vb-header-toggle.is-active .vb-header-toggle__icon .vb-header-toggle__line:nth-child(3) {
	transform: translateY(-5px) rotate(-45deg);
}

.vb-nav-container {
	border-top: 1px solid var(--vb-border);
	padding: 0.3rem 0;
	margin-top: 0.35rem;
	min-height: 52px;
}

.vb-nav-mobile-search {
	display: none;
}

.vb-main-nav {
	padding: 0;
}

.vb-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	column-gap: clamp(0.8rem, 1.8vw, 1.4rem);
	row-gap: 0.4rem;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.vb-nav-item {
	position: relative;
	padding-bottom: 0;
}

.vb-nav-link-wrap {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.vb-nav-link {
	position: relative;
	text-decoration: none;
	font-weight: 600;
	color: var(--vb-text);
	padding: 0.9rem 0.6rem 1rem;
	display: inline-flex;
	align-items: center;
	transition: color 0.2s ease;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

.vb-nav-link::after {
	content: '';
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0.35rem;
	height: 2px;
	background: transparent;
	transition: background 0.2s ease;
}

.vb-nav-link:hover,
.vb-nav-item:hover > .vb-nav-link,
.vb-nav-item:focus-within > .vb-nav-link {
	color: var(--vb-text);
}

.vb-nav-item:hover > .vb-nav-link::after,
.vb-nav-item:focus-within > .vb-nav-link::after {
	background: var(--vb-text);
}

.vb-nav-link:focus {
	outline: none;
}

.vb-nav-item.has-children::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 16px;
}

.vb-nav-dropdown {
	--vb-dropdown-shift: 0px;
	position: absolute;
	left: 50%;
	top: calc(100% + 16px);
	transform: translateX(calc(-50% + var(--vb-dropdown-shift)));
	background: #fff;
	border: 1px solid var(--vb-border);
	border-radius: 1rem;
	padding: 1.25rem;
	box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
	display: none;
	min-width: 420px;
	max-width: 1100px;
	width: clamp(420px, 58vw, 1100px);
	z-index: 20;
	contain: layout;
}

@media (min-width: 1081px) {
	.vb-nav-item.has-children.is-open > .vb-nav-dropdown {
		display: block;
	}
}

.vb-nav-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.5rem;
}
.vb-nav-columns--grouped {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.75rem;
}

.vb-nav-subgroup__list--grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.35rem 1rem;
}

.vb-nav-subgroup__list--grid li {
	margin: 0;
}

.vb-nav-subgroup__list--grid a {
	display: block;
	padding: 0.35rem 0;
}

.vb-nav-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.vb-nav-dropdown a {
	text-decoration: none;
	color: var(--vb-text);
	font-weight: 500;
}

.vb-nav-dropdown a:hover {
	color: var(--vb-text);
	background: #f8fafc;
	border-radius: 0.35rem;
}

.vb-nav-dropdown--tabs {
	padding: 1.25rem 1.5rem;
}

.vb-nav-dropdown--tabs .vb-nav-columns {
	display: none;
}

.vb-nav-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin: 0;
	padding: 0 0 0.6rem;
	border-bottom: 1px solid var(--vb-border);
}

.vb-nav-tab {
	border: 0;
	background: none;
	background-color: transparent;
	border-radius: 0;
	padding: 0.35rem 0;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	color: #1f2933;
	position: relative;
	transition: color 0.2s ease;
	outline: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.vb-nav-tab::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.35rem;
	height: 2px;
	background: transparent;
	transition: background 0.2s ease, transform 0.2s ease;
	transform-origin: center;
}

.vb-nav-tab.is-active {
	color: var(--vb-text);
}

.vb-nav-tab.is-active::after {
	background: var(--vb-text);
	transform: scaleX(1);
}

.vb-nav-tab:not(.is-active)::after {
	transform: scaleX(0);
}

.vb-nav-tab:hover,
.vb-nav-tab:focus,
.vb-nav-tab:active {
	background: transparent;
	color: #0f172a;
	outline: none;
	box-shadow: none;
}

.vb-nav-tabpanes {
	padding-top: 0.4rem;
}

.vb-nav-tabpane {
	display: none;
	animation: vbTabFade 0.25s ease;
	padding-top: 0.4rem;
}

.vb-nav-tabpane__heading {
	display: none;
}

.vb-nav-tabpane.is-active {
	display: block;
}

.vb-nav-single-link {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	text-decoration: none;
	color: var(--vb-text);
	padding: 0.25rem 0;
}

@keyframes vbTabFade {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.vb-nav-subgroup {
	margin-bottom: 0.6rem;
}

.vb-nav-subgroup__title {
	display: block;
	font-weight: 700;
	color: var(--vb-text);
	margin-bottom: 0.35rem;
}

.vb-nav-subgroup__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.vb-nav-dropdown--tabs .vb-nav-subgroup__list {
	margin-top: 0.25rem;
}

.vb-nav-subgroup__list li a {
	font-weight: 500;
	color: var(--vb-text);
	text-decoration: none;
}

@media (max-width: 1280px) {
	.vb-nav-list {
		justify-content: flex-start;
	}

	.vb-nav-link {
		padding: 0.75rem 0.45rem 0.9rem;
	}
}

.vb-site-header.is-nav-open .vb-main-nav {
	display: block;
}

@media (max-width: 1080px) {
	.vb-brand__link img,
	.vb-brand__link svg {
		max-height: 38px;
	}

	.vb-search-slot {
		display: none !important;
	}

	.vb-nav-mobile-search {
		display: none;
		width: 100%;
	}

	.vb-site-header.is-nav-open .vb-nav-mobile-search {
		display: block !important;
		padding: 0;
	}

	.vb-nav-mobile-search .vb-search-wrap {
		margin-bottom: 1rem;
		width: 100%;
		display: block !important;
	}

	.vb-nav-mobile-search .vb-search {
		width: 100%;
	}

	.vb-header-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 1rem clamp(1rem, 3vw, 2.5rem) 0.75rem;
		gap: 0.75rem;
	}

	.vb-brand {
		flex: 0 0 auto;
	}

	.vb-header-actions {
		display: inline-flex;
		flex: 0 0 auto;
		padding-left: clamp(0.5rem, 1vw, 1rem);
		padding-right: clamp(0.25rem, 1vw, 1rem);
	}

	.vb-header-toggle {
		display: inline-flex;
	}

	.vb-nav-container {
		display: block;
		border-top: 0;
		padding: 0;
		margin: 0;
	}

	.vb-nav-container[data-collapsible="true"] {
		min-height: 0;
	}

	.vb-nav-container:not([data-collapsible="true"]) {
		padding: 0.5rem 1rem 1rem;
		margin-top: 0.5rem;
	}

	.vb-js .vb-nav-container[data-collapsible="true"] {
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		transition: max-height 0.35s ease, opacity 0.25s ease;
	}

	.vb-js .vb-site-header.is-nav-open .vb-nav-container[data-collapsible="true"] {
		max-height: var(--vb-mobile-nav-max-height, min(80vh, calc(100vh - 110px)));
		opacity: 1;
		pointer-events: auto;
		padding: 0.5rem 1rem 1.5rem;
		margin-top: 0.5rem;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}

	.vb-main-nav {
		padding: 0;
	}

	.vb-nav-list {
		flex-direction: column;
		gap: 0;
		border-top: 1px solid var(--vb-border);
		justify-content: flex-start;
		align-items: stretch;
		width: 100%;
	}

	.vb-nav-item {
		position: relative;
		width: 100%;
	}

	.vb-nav-item::before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 1px;
		background: var(--vb-border);
		pointer-events: none;
	}

	.vb-nav-item.has-children::after {
		display: none;
	}

	.vb-nav-link {
		padding: 1rem 0;
		display: block;
		border-bottom: 0;
		width: 100%;
		text-align: left;
		line-height: 1.5;
	}

	.vb-nav-item.has-children .vb-nav-link-wrap {
		display: block;
		position: relative;
		cursor: pointer;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
		padding: 1rem 2.75rem 1rem 0;
		min-height: 48px;
	}

	.vb-nav-item.has-children .vb-nav-link-wrap:active {
		background-color: rgba(0, 0, 0, 0.03);
	}

	.vb-nav-item.has-children .vb-nav-link {
		padding: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		pointer-events: none;
		display: block;
	}

	.vb-nav-item.has-children .vb-nav-link-wrap::after {
		content: '';
		position: absolute;
		right: 0.75rem;
		top: 50%;
		transform: translateY(-50%);
		width: 22px;
		height: 22px;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' fill='%23f3f4f6'/%3E%3Cpath d='M10 9l3 3-3 3' stroke='%23374151' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		opacity: 0.8;
		pointer-events: none;
	}

	.vb-nav-item.has-children.is-open .vb-nav-link-wrap::after {
		transform: translateY(-50%) rotate(90deg);
		opacity: 1;
	}

	@media (hover: none) {
		.vb-nav-item.has-children:active .vb-nav-link-wrap::after {
			opacity: 1;
			transform: translateY(-50%) scale(0.9);
		}
	}

	.vb-nav-link-wrap {
		display: flex;
		width: 100%;
	}

	.vb-nav-dropdown--tabs {
		padding: 1rem 0;
	}

	.vb-nav-dropdown--tabs .vb-nav-tabs {
		display: none;
	}

	.vb-nav-dropdown--tabs .vb-nav-tabpane {
		display: block !important;
		padding-top: 0.25rem;
	}

	.vb-nav-tabpanes {
		padding-top: 0;
	}

	.vb-nav-tabpane__heading {
		display: block;
		margin: 0.5rem 0 0.35rem;
		font-size: 0.95rem;
		font-weight: 700;
		color: var(--vb-text);
	}

	.vb-nav-list::before {
		content: '';
		display: block;
		margin-bottom: 1rem;
	}

	.vb-nav-item.is-open > .vb-nav-dropdown {
		display: block;
		position: static;
		padding: 0.5rem 0 1rem;
		box-shadow: none;
		border: 0;
		min-width: 0;
		width: 100%;
		transform: none;
		--vb-dropdown-shift: 0px;
		left: auto;
		right: auto;
		max-width: 100%;
	}

	.vb-nav-columns {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	.vb-nav-column ul {
		gap: 0.3rem;
	}

	.vb-nav-column {
		margin-bottom: 0.75rem;
	}

	.vb-nav-subgroup__title {
		font-size: 0.95rem;
		margin-bottom: 0.2rem;
	}

	.vb-nav-subgroup__list--grid {
		display: block;
	}

	.vb-nav-dropdown ul {
		padding-bottom: 0.5rem;
	}

	html.vb-lock-scroll,
	body.vb-lock-scroll {
		overflow: hidden;
		height: 100%;
	}

	.vb-search-suggestions {
		position: static;
		box-shadow: none;
		border-radius: 0.75rem;
		margin-top: 0.35rem;
		border: 1px solid var(--vb-border);
	}
}

