.hw-modern-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid #e5e7eb;
	backdrop-filter: blur(14px);
	transition: box-shadow 180ms ease, border-color 180ms ease;
}

.hw-modern-header.is-sticky {
	border-color: rgba(15, 23, 42, 0.1);
	box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
}

.hw-modern-header__inner {
	width: min(100% - 28px, 1480px);
	min-height: 82px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(240px, 330px) minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	transition: min-height 180ms ease;
}

.hw-modern-header.is-sticky .hw-modern-header__inner {
	min-height: 64px;
}

.hw-modern-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.hw-modern-header .hw-standalone-logo {
	display: inline-flex;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	overflow: hidden;
}

.hw-modern-header.is-sticky .hw-standalone-logo {
	width: 46px;
	height: 46px;
	flex-basis: 46px;
}

.hw-modern-header .hw-standalone-logo__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.hw-modern-header__brand-copy {
	min-width: 0;
}

.hw-modern-header__title {
	display: block;
	color: #0f172a;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.15;
	text-decoration: none;
}

.hw-modern-header__brand-copy p {
	margin: 3px 0 0;
	color: #64748b;
	font-size: 13px;
	line-height: 1.35;
}

.hw-modern-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1px;
	min-width: 0;
	overflow: visible;
}

.hw-modern-nav__item {
	position: relative;
}

.hw-modern-nav__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 10px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: #0f172a;
	font: inherit;
	font-size: 13px;
	font-weight: 760;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.hw-modern-nav__link::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 5px;
	height: 2px;
	border-radius: 999px;
	background: #0d6b5e;
	opacity: 0;
	transform: scaleX(0.3);
	transition: opacity 170ms ease, transform 170ms ease;
}

.hw-modern-nav__link:hover,
.hw-modern-nav__link:focus-visible,
.hw-modern-nav__link.is-current,
.hw-modern-nav__item.is-open > .hw-modern-nav__link {
	background: #ecfdf5;
	color: #0d6b5e;
	outline: 0;
}

.hw-modern-nav__link:hover::after,
.hw-modern-nav__link:focus-visible::after,
.hw-modern-nav__link.is-current::after,
.hw-modern-nav__item.is-open > .hw-modern-nav__link::after {
	opacity: 1;
	transform: scaleX(1);
}

.hw-modern-nav__chevron {
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 170ms ease;
}

.hw-modern-nav__item.is-open .hw-modern-nav__chevron {
	transform: rotate(225deg) translateY(-1px);
}

.hw-mega {
	position: fixed;
	top: calc(var(--hw-header-bottom, 82px) - 1px);
	left: 50%;
	width: min(calc(100vw - 40px), 1220px);
	padding: 22px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 10px);
	transition: opacity 170ms ease, transform 170ms ease;
}

.hw-mega::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 20px;
}

.hw-modern-nav__item.is-open .hw-mega {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.hw-mega__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.hw-mega__group {
	min-width: 0;
	padding: 14px;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hw-mega__title {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #0f172a;
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
}

.hw-mega__icon {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	border: 1px solid rgba(13, 107, 94, 0.25);
	border-radius: 8px;
	background: #ecfdf5;
	position: relative;
}

.hw-mega__icon::before {
	content: "";
	position: absolute;
	inset: 7px;
	border: 2px solid #0d6b5e;
	border-top: 0;
	border-radius: 2px;
}

.hw-mega__group ul {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.hw-mega__group li + li {
	margin-top: 7px;
}

.hw-mega__group li a {
	color: #475569;
	font-size: 13px;
	line-height: 1.3;
	text-decoration: none;
}

.hw-mega__group li a:hover,
.hw-mega__group li a:focus-visible,
.hw-mega__title:hover,
.hw-mega__title:focus-visible {
	color: #0d6b5e;
	outline: 0;
}

.hw-mega__cta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.hw-mega__cta a {
	display: grid;
	gap: 3px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	color: #0f172a;
	text-decoration: none;
	transition: transform 170ms ease, border-color 170ms ease, background-color 170ms ease;
}

.hw-mega__cta a:hover,
.hw-mega__cta a:focus-visible {
	background: #ecfdf5;
	border-color: rgba(13, 107, 94, 0.3);
	transform: translateY(-1px);
	outline: 0;
}

.hw-mega__cta span {
	color: #64748b;
	font-size: 13px;
}

.hw-modern-actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	min-width: 0;
}

.hw-modern-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.hw-modern-btn:hover,
.hw-modern-btn:focus-visible {
	outline: 0;
	transform: translateY(-1px);
}

.hw-modern-btn--primary {
	background: #064e3b;
	color: #fff;
	box-shadow: 0 10px 24px rgba(6, 78, 59, 0.2);
}

.hw-modern-btn--primary:hover,
.hw-modern-btn--primary:focus-visible {
	background: #04392c;
	box-shadow: 0 14px 30px rgba(6, 78, 59, 0.26);
}

.hw-modern-btn--login {
	background: #fff;
	color: #0f172a;
	border-color: #cbd5e1;
}

.hw-modern-btn--login:hover,
.hw-modern-btn--login:focus-visible {
	background: #ecfdf5;
	border-color: #0d6b5e;
	color: #0d6b5e;
}

.hw-modern-btn--account {
	background: #fffaf0;
	color: #7c4a03;
	border-color: rgba(200, 148, 69, 0.55);
}

.hw-modern-btn--account:hover,
.hw-modern-btn--account:focus-visible {
	background: #fef3c7;
	border-color: #c89445;
	color: #623b06;
}

body #gt-wrapper-31528560,
body .gt_switcher_wrapper {
	position: fixed !important;
	top: 92px !important;
	right: 18px !important;
	left: auto !important;
	z-index: 850 !important;
	max-width: calc(100vw - 36px);
}

body.admin-bar #gt-wrapper-31528560,
body.admin-bar .gt_switcher_wrapper {
	top: 124px !important;
}

body #gt-wrapper-31528560 img,
body .gt_switcher_wrapper img {
	max-width: 32px;
	height: auto;
}

.hw-modern-burger {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
}

.hw-modern-burger span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: #0f172a;
}

.hw-mobile-backdrop {
	position: fixed;
	inset: 0;
	z-index: 998;
	background: rgba(15, 23, 42, 0.42);
}

.hw-mobile-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	width: min(420px, 100vw);
	height: 100dvh;
	padding: 20px;
	background: #fff;
	box-shadow: -18px 0 60px rgba(15, 23, 42, 0.18);
	overflow: auto;
}

.hw-mobile-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.hw-mobile-drawer__top strong {
	color: #0f172a;
	font-size: 18px;
}

.hw-mobile-drawer__top button {
	width: 42px;
	height: 42px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.hw-mobile-drawer__top button::before,
.hw-mobile-drawer__top button::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	top: 20px;
	height: 2px;
	border-radius: 999px;
	background: #0f172a;
}

.hw-mobile-drawer__top button::before {
	transform: rotate(45deg);
}

.hw-mobile-drawer__top button::after {
	transform: rotate(-45deg);
}

.hw-mobile-nav {
	display: grid;
	gap: 8px;
}

.hw-mobile-nav__link {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 13px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	background: #fff;
	color: #0f172a;
	font: inherit;
	font-weight: 800;
	text-align: left;
	text-decoration: none;
}

.hw-mobile-nav__link:hover,
.hw-mobile-nav__link:focus-visible {
	background: #ecfdf5;
	border-color: rgba(13, 107, 94, 0.25);
	color: #0d6b5e;
	outline: 0;
}

.hw-mobile-nav__link span {
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 170ms ease;
}

.hw-mobile-nav__link[aria-expanded="true"] span {
	transform: rotate(225deg);
}

.hw-mobile-nav__sub {
	display: grid;
	gap: 4px;
	padding: 6px 0 4px 14px;
}

.hw-mobile-nav__sub a {
	padding: 9px 12px;
	border-radius: 10px;
	color: #475569;
	text-decoration: none;
}

.hw-mobile-nav__sub a:hover,
.hw-mobile-nav__sub a:focus-visible {
	background: #f8fafc;
	color: #0d6b5e;
	outline: 0;
}

.hw-mobile-drawer__actions {
	display: grid;
	gap: 10px;
	margin-top: 20px;
}

body.hw-mobile-menu-open {
	overflow: hidden;
}

@media (max-width: 1500px) {
	.hw-modern-header__inner {
		grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) auto;
		gap: 10px;
	}

	.hw-modern-nav__link {
		padding-inline: 8px;
		font-size: 12.5px;
	}

	.hw-modern-actions .hw-modern-btn--account {
		display: none;
	}
}

@media (max-width: 1360px) {
	.hw-modern-actions .hw-modern-btn--login {
		display: none;
	}
}

@media (max-width: 1240px) {
	.hw-modern-header__inner {
		display: flex;
		min-height: 72px;
		justify-content: space-between;
	}

	body #gt-wrapper-31528560,
	body .gt_switcher_wrapper {
		top: 82px !important;
		right: 12px !important;
	}

	.hw-modern-nav,
	.hw-modern-actions {
		display: none;
	}

	.hw-modern-burger {
		display: inline-flex;
	}

	.hw-modern-header__brand-copy p {
		display: none;
	}
}

@media (max-width: 640px) {
	.hw-modern-header__inner {
		width: min(100% - 20px, 1380px);
		min-height: 66px;
	}

	.hw-modern-header .hw-standalone-logo {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
	}

	.hw-modern-header__title {
		max-width: 210px;
		font-size: 14px;
	}

	.hw-mobile-drawer {
		width: 100vw;
	}
}
