@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap");

html,
.wp-theme-bws-base {
	margin-top: 0 !important;
}

.bws-header,
.bws-mega-menu {
	--bws-header-height: 106px;
	--bws-header-padding: clamp(28px, 4.8vw, 72px);
	--bws-logo-width: min(270px, 42vw);
	--bws-logo-height: 70px;
}

.bws-header {
	--bws-header-color: #fff;
	--bws-header-bg: transparent;
	background: var(--bws-header-bg);
	color: var(--bws-header-color);
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateY(0);
	transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 220ms ease;
	z-index: 900;
}

.bws-header,
.bws-header *,
.bws-mega-menu,
.bws-mega-menu *,
.bws-destinations-popup,
.bws-destinations-popup *,
.bws-contact-popup,
.bws-contact-popup * {
	box-sizing: border-box;
}

.bws-header.is-solid {
	--bws-header-bg: #fff;
	--bws-header-color: #01274f;
	box-shadow: 0 1px 18px rgba(0, 0, 0, 0.08);
}

.bws-header.is-hidden {
	transform: translateY(-100%);
}

.bws-header__inner {
	align-items: center;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	min-height: var(--bws-header-height);
	padding: 10px var(--bws-header-padding) 0;
}

.bws-header__side {
	align-items: center;
	display: flex;
	gap: 18px;
}

.bws-header__side--right {
	justify-content: flex-end;
}

.bws-header__brand {
	display: inline-flex;
	line-height: 0;
}

.bws-header__logo {
	height: auto;
	max-height: var(--bws-logo-height);
	width: var(--bws-logo-width);
}

.bws-header__logo--dark,
.bws-header.is-solid .bws-header__logo--light {
	display: none;
}

.bws-header.is-solid .bws-header__logo--dark {
	display: block;
}

.bws-header__menu-button,
.bws-header__contact,
.bws-mega-menu__close,
.bws-destinations-popup__close {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	font: inherit;
	padding: 0;
}

.bws-header__menu-button {
	align-items: center;
	display: inline-flex;
	gap: 12px;
	height: 44px;
	justify-content: center;
	width: auto;
}

.bws-header__menu-icon,
.bws-header__menu-icon::before,
.bws-header__menu-icon::after {
	background: currentColor;
	content: "";
	display: block;
	height: 2px;
	width: 28px;
}

.bws-header__menu-icon {
	position: relative;
}

.bws-header__menu-text {
	font-size: 14px;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.bws-header__menu-icon::before,
.bws-header__menu-icon::after {
	left: 0;
	position: absolute;
}

.bws-header__menu-icon::before {
	top: -8px;
}

.bws-header__menu-icon::after {
	top: 8px;
}

.bws-header__language {
	background: transparent;
	border: 0;
	color: inherit;
	font: inherit;
	font-size: 14px;
	letter-spacing: 0.04em;
	outline-offset: 4px;
	text-transform: uppercase;
}

.bws-header__language option {
	color: #111;
}

.bws-header__contact {
	font-size: 14px;
	letter-spacing: 0.04em;
	text-decoration: none;
}

.bws-header__contact-wrap {
	position: relative;
}

.bws-mega-menu {
	background: #01274f;
	color: #071f3f;
	inset: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease, visibility 180ms ease;
	visibility: hidden;
	z-index: 1000;
}

.bws-mega-menu.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.bws-mega-menu__shell {
	display: grid;
	grid-template-columns: minmax(520px, 38vw) minmax(0, 1fr);
	min-height: 100vh;
	min-height: 100dvh;
}

.bws-mega-menu__panel {
	background: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
	overflow-y: auto;
	position: relative;
	z-index: 2;
}

.bws-mega-menu__topbar {
	align-items: center;
	border-bottom: 1px solid rgba(7, 31, 63, 0.1);
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	min-height: clamp(112px, 16vh, 146px);
	min-height: clamp(112px, 16dvh, 146px);
	padding: clamp(20px, 3vh, 28px) clamp(48px, 5vw, 72px);
	padding: clamp(20px, 3dvh, 28px) clamp(48px, 5vw, 72px);
}

.bws-mega-menu__topbar::before {
	content: "";
	display: block;
	height: 44px;
	width: 44px;
}

.bws-mega-menu__logo {
	aspect-ratio: 4.85 / 1;
	grid-column: 2;
	height: auto;
	justify-self: center;
	max-height: clamp(52px, 7vh, 64px);
	max-height: clamp(52px, 7dvh, 64px);
	object-fit: contain;
	width: min(280px, 100%);
}

.bws-mega-menu__close {
	align-items: center;
	color: #071f3f;
	display: inline-flex;
	flex: 0 0 auto;
	grid-column: 3;
	height: 44px;
	justify-content: center;
	justify-self: end;
	position: relative;
	width: 44px;
}

.bws-mega-menu__close::before,
.bws-mega-menu__close::after {
	background: currentColor;
	content: "";
	height: 2px;
	left: 8px;
	position: absolute;
	top: 21px;
	width: 30px;
}

.bws-mega-menu__close::before {
	transform: rotate(45deg);
}

.bws-mega-menu__close::after {
	transform: rotate(-45deg);
}

.bws-mega-menu__mobile-return {
	-webkit-appearance: none;
	appearance: none;
	background: #f1f3f6;
	border: 0;
	color: #071f3f;
	cursor: pointer;
	display: none;
	font: inherit;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 400;
	gap: 12px;
	line-height: 1;
	padding: 0;
	text-align: left;
}

.bws-mega-menu__mobile-return-arrow {
	border-bottom: 1.5px solid currentColor;
	border-left: 1.5px solid currentColor;
	display: block;
	height: 10px;
	transform: rotate(45deg);
	width: 10px;
}

.bws-mega-menu__nav {
	display: flex;
	flex-direction: column;
	padding: clamp(22px, 4.2vh, 38px) clamp(42px, 4.6vw, 66px) clamp(18px, 3vh, 28px);
	padding: clamp(22px, 4.2dvh, 38px) clamp(42px, 4.6vw, 66px) clamp(18px, 3dvh, 28px);
}

.bws-mega-menu__link {
	-webkit-appearance: none;
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(7, 31, 63, 0.11);
	color: #071f3f;
	cursor: pointer;
	display: grid;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(19px, min(1.55vw, 3.1vh), 27px);
	font-size: clamp(19px, min(1.55vw, 3.1dvh), 27px);
	font-weight: 400;
	gap: clamp(16px, 2.8vh, 24px);
	gap: clamp(16px, 2.8dvh, 24px);
	grid-template-columns: clamp(30px, 4.6vh, 36px) minmax(0, 1fr) 16px;
	grid-template-columns: clamp(30px, 4.6dvh, 36px) minmax(0, 1fr) 16px;
	letter-spacing: 0;
	line-height: 1.14;
	min-height: clamp(58px, 9.4vh, 82px);
	min-height: clamp(58px, 9.4dvh, 82px);
	padding: 0;
	position: relative;
	text-align: left;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
	width: 100%;
}

.bws-mega-menu__link:first-child {
	border-top: 1px solid rgba(7, 31, 63, 0.11);
}

.bws-mega-menu__link:hover,
.bws-mega-menu__link:focus {
	background: rgba(1, 39, 79, 0.035);
	color: #01274f;
	transform: translateX(6px);
}

.bws-mega-menu__link-icon {
	align-items: center;
	color: currentColor;
	display: inline-flex;
	height: clamp(28px, 4.6vh, 34px);
	height: clamp(28px, 4.6dvh, 34px);
	justify-content: center;
	width: clamp(28px, 4.6vh, 34px);
	width: clamp(28px, 4.6dvh, 34px);
}

.bws-mega-menu__link-icon svg {
	display: block;
	height: clamp(25px, 4vh, 30px);
	height: clamp(25px, 4dvh, 30px);
	width: clamp(25px, 4vh, 30px);
	width: clamp(25px, 4dvh, 30px);
}

.bws-mega-menu__link-label {
	min-width: 0;
}

.bws-mega-menu__link-chevron {
	border-right: 1.6px solid currentColor;
	border-top: 1.6px solid currentColor;
	display: block;
	height: 13px;
	justify-self: end;
	transform: rotate(45deg);
	width: 13px;
}

.bws-mega-menu__actions {
	border-top: 1px solid rgba(7, 31, 63, 0.1);
	display: grid;
	gap: clamp(10px, 2.2vh, 16px);
	gap: clamp(10px, 2.2dvh, 16px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: auto clamp(42px, 4.6vw, 66px) 0;
	padding: clamp(22px, 5vh, 48px) 0 clamp(24px, 5.8vh, 56px);
	padding: clamp(22px, 5dvh, 48px) 0 clamp(24px, 5.8dvh, 56px);
}

.bws-mega-menu__action {
	align-items: center;
	color: #071f3f;
	display: flex;
	flex-direction: column;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(11px, 1.7vh, 12px);
	font-size: clamp(11px, 1.7dvh, 12px);
	font-weight: 400;
	gap: clamp(8px, 1.7vh, 12px);
	gap: clamp(8px, 1.7dvh, 12px);
	justify-content: flex-start;
	letter-spacing: 0.11em;
	line-height: 1.18;
	text-align: center;
	text-decoration: none;
}

.bws-mega-menu.has-dense-nav .bws-mega-menu__topbar {
	min-height: clamp(94px, 11vh, 126px);
	min-height: clamp(94px, 11dvh, 126px);
	padding-bottom: clamp(14px, 2vh, 22px);
	padding-bottom: clamp(14px, 2dvh, 22px);
	padding-top: clamp(16px, 2.4vh, 24px);
	padding-top: clamp(16px, 2.4dvh, 24px);
}

.bws-mega-menu.has-dense-nav .bws-mega-menu__logo {
	max-height: clamp(44px, 5.6vh, 56px);
	max-height: clamp(44px, 5.6dvh, 56px);
	width: min(260px, 100%);
}

.bws-mega-menu.has-dense-nav .bws-mega-menu__nav {
	padding-bottom: clamp(10px, 1.8vh, 16px);
	padding-bottom: clamp(10px, 1.8dvh, 16px);
	padding-top: clamp(12px, 2vh, 22px);
	padding-top: clamp(12px, 2dvh, 22px);
}

.bws-mega-menu.has-dense-nav .bws-mega-menu__link {
	font-size: clamp(18px, min(1.34vw, 2.45vh), 24px);
	font-size: clamp(18px, min(1.34vw, 2.45dvh), 24px);
	gap: clamp(12px, 1.8vh, 18px);
	gap: clamp(12px, 1.8dvh, 18px);
	grid-template-columns: clamp(24px, 3.2vh, 30px) minmax(0, 1fr) 12px;
	grid-template-columns: clamp(24px, 3.2dvh, 30px) minmax(0, 1fr) 12px;
	min-height: clamp(44px, 5.8vh, 56px);
	min-height: clamp(44px, 5.8dvh, 56px);
}

.bws-mega-menu.has-dense-nav .bws-mega-menu__link-icon,
.bws-mega-menu.has-dense-nav .bws-mega-menu__link-icon svg {
	height: clamp(22px, 2.8vh, 27px);
	height: clamp(22px, 2.8dvh, 27px);
	width: clamp(22px, 2.8vh, 27px);
	width: clamp(22px, 2.8dvh, 27px);
}

.bws-mega-menu.has-dense-nav .bws-mega-menu__actions {
	padding-top: clamp(14px, 2.4vh, 24px);
	padding-top: clamp(14px, 2.4dvh, 24px);
}

@media (max-height: 620px) and (min-width: 701px) {
	.bws-mega-menu__topbar {
		min-height: 80px;
		padding-bottom: 12px;
		padding-top: 12px;
	}

	.bws-mega-menu__logo {
		max-height: 42px;
		width: min(220px, 100%);
	}

	.bws-mega-menu__nav {
		padding-bottom: 8px;
		padding-top: 8px;
	}

	.bws-mega-menu__link {
		font-size: 17px;
		gap: 12px;
		grid-template-columns: 24px minmax(0, 1fr) 12px;
		min-height: 44px;
	}

	.bws-mega-menu__link-icon,
	.bws-mega-menu__link-icon svg {
		height: 21px;
		width: 21px;
	}

	.bws-mega-menu__actions {
		gap: 8px;
		padding-bottom: 16px;
		padding-top: 12px;
	}

	.bws-mega-menu__action {
		font-size: 10.5px;
		gap: 7px;
	}

	.bws-mega-menu__action-icon,
	.bws-mega-menu__action-icon svg {
		height: 28px;
		width: 36px;
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__topbar {
		min-height: 58px;
		padding-bottom: 8px;
		padding-top: 8px;
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__logo {
		max-height: 34px;
		width: min(180px, 100%);
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__nav {
		padding-bottom: 4px;
		padding-top: 4px;
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__link {
		font-size: 15px;
		gap: 8px;
		grid-template-columns: 20px minmax(0, 1fr) 10px;
		min-height: 34px;
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__link-icon,
	.bws-mega-menu.has-dense-nav .bws-mega-menu__link-icon svg {
		height: 17px;
		width: 17px;
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__actions {
		padding-bottom: 12px;
		padding-top: 8px;
	}
}

.bws-mega-menu__action:hover,
.bws-mega-menu__action:focus {
	color: #01274f;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.bws-mega-menu__action-icon {
	align-items: center;
	display: inline-flex;
	height: 34px;
	justify-content: center;
	width: 42px;
}

.bws-mega-menu__action-icon svg {
	display: block;
	height: 34px;
	width: 42px;
}

.bws-mega-menu__language {
	display: none;
}

.bws-mega-menu__language-select {
	background: transparent;
	border: 0;
	color: #071f3f;
	font: inherit;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	letter-spacing: 0.12em;
	outline-offset: 4px;
	text-transform: uppercase;
}

.bws-mega-menu__visual {
	align-items: center;
	background: #01274f;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	min-height: 100dvh;
	overflow: hidden;
}

.bws-mega-menu__visual-mark {
	background: url("https://www.moonsail.com.tr/wp-content/uploads/2026/06/moonsail-just-icon-light.png") center center / contain no-repeat;
	height: min(560px, 54vw);
	opacity: 0.13;
	width: min(560px, 54vw);
}

.bws-destinations-popup {
	background: #fff;
	color: #01274f;
	inset: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease;
	visibility: hidden;
	z-index: 100100;
}

.bws-destinations-popup.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.bws-destinations-popup__dialog {
	background: #fff;
	height: 100vh;
	height: 100dvh;
	overflow-y: auto;
	overscroll-behavior: contain;
	position: relative;
	width: 100%;
}

.bws-destinations-popup__content {
	min-height: 100%;
	padding-top: clamp(72px, 7vw, 92px);
}

.bws-destinations-popup__close {
	align-items: center;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(1, 39, 79, 0.18);
	border-radius: 50%;
	color: #01274f;
	cursor: pointer;
	display: inline-flex;
	height: 48px;
	justify-content: center;
	position: fixed;
	right: clamp(18px, 3vw, 42px);
	top: clamp(18px, 3vw, 34px);
	transition: background-color 160ms ease, border-color 160ms ease;
	width: 48px;
	z-index: 2;
}

.bws-destinations-popup__close:hover,
.bws-destinations-popup__close:focus-visible {
	background: #f1f5f7;
	border-color: rgba(1, 39, 79, 0.38);
}

.bws-destinations-popup__close:focus-visible {
	outline: 2px solid #01274f;
	outline-offset: 3px;
}

.bws-destinations-popup__close::before,
.bws-destinations-popup__close::after {
	background: currentColor;
	content: "";
	height: 1.5px;
	position: absolute;
	width: 24px;
}

.bws-destinations-popup__close::before {
	transform: rotate(45deg);
}

.bws-destinations-popup__close::after {
	transform: rotate(-45deg);
}

.bws-contact-popup {
	opacity: 0;
	padding-top: 16px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 100%;
	transform: translateY(-6px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	visibility: hidden;
	width: min(280px, calc(100vw - 44px));
	z-index: 920;
}

.bws-header__contact-wrap:hover .bws-contact-popup,
.bws-header__contact-wrap:focus-within .bws-contact-popup,
.bws-contact-popup.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.bws-contact-popup__dialog {
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.34);
	border: 1px solid rgba(255, 255, 255, 0.44);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
	color: #111;
	position: relative;
	width: 100%;
	z-index: 1;
}

.bws-contact-popup__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 22px;
}

.bws-contact-popup__link {
	color: inherit;
	font-size: 13px;
	line-height: 1.35;
	text-decoration: none;
}

.bws-contact-popup__link:hover,
.bws-contact-popup__link:focus {
	color: #002444;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.bws-lock-scroll {
	overflow: hidden;
}

@media (max-width: 700px) {
	.bws-header,
	.bws-mega-menu {
		--bws-header-height: 88px;
		--bws-header-padding: 22px;
		--bws-logo-width: min(220px, 46vw);
		--bws-logo-height: 56px;
	}

	.bws-header__inner {
		gap: 12px;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	}

	.bws-header__side {
		gap: 10px;
	}

	.bws-header__side--left {
		grid-column: 1;
		grid-row: 1;
		justify-content: flex-start;
	}

	.bws-header__brand {
		grid-column: 2;
		grid-row: 1;
	}

	.bws-header__side--right {
		display: none;
	}

	.bws-header__menu-button {
		gap: 0;
		height: 44px;
		width: 44px;
	}

	.bws-header__menu-text {
		display: none;
	}

	.bws-mega-menu {
		background: #fff;
		overflow-y: auto;
	}

	.bws-mega-menu__shell {
		display: flex;
		flex-direction: column;
		min-height: 100vh;
		min-height: 100dvh;
	}

	.bws-mega-menu__panel {
		min-height: auto;
		overflow: visible;
	}

	.bws-mega-menu__topbar {
		border-bottom: 0;
		display: flex;
		justify-content: center;
		min-height: clamp(112px, 19vh, 168px);
		min-height: clamp(112px, 19dvh, 168px);
		padding: clamp(24px, 5vh, 34px) 28px clamp(16px, 3vh, 22px);
		padding: clamp(24px, 5dvh, 34px) 28px clamp(16px, 3dvh, 22px);
	}

	.bws-mega-menu__topbar::before {
		display: none;
	}

	.bws-mega-menu__logo {
		max-height: clamp(52px, 8vh, 70px);
		max-height: clamp(52px, 8dvh, 70px);
		width: min(240px, 64vw);
	}

	.bws-mega-menu__close {
		display: none;
	}

	.bws-mega-menu__mobile-return {
		align-items: center;
		display: flex;
		min-height: clamp(48px, 7vh, 64px);
		min-height: clamp(48px, 7dvh, 64px);
		padding: 0 40px;
		width: 100%;
	}

	.bws-mega-menu__nav {
		padding: clamp(18px, 3.5vh, 30px) 40px clamp(10px, 2.2vh, 18px);
		padding: clamp(18px, 3.5dvh, 30px) 40px clamp(10px, 2.2dvh, 18px);
	}

	.bws-mega-menu__link {
		font-size: clamp(18px, min(5.6vw, 3.8vh), 26px);
		font-size: clamp(18px, min(5.6vw, 3.8dvh), 26px);
		gap: clamp(16px, 3vh, 22px);
		gap: clamp(16px, 3dvh, 22px);
		grid-template-columns: clamp(32px, 6vh, 40px) minmax(0, 1fr) 16px;
		grid-template-columns: clamp(32px, 6dvh, 40px) minmax(0, 1fr) 16px;
		min-height: clamp(64px, 10vh, 92px);
		min-height: clamp(64px, 10dvh, 92px);
	}

	.bws-mega-menu__link-icon {
		height: clamp(28px, 5vh, 36px);
		height: clamp(28px, 5dvh, 36px);
		width: clamp(28px, 5vh, 36px);
		width: clamp(28px, 5dvh, 36px);
	}

	.bws-mega-menu__link-icon svg {
		height: clamp(25px, 4.5vh, 32px);
		height: clamp(25px, 4.5dvh, 32px);
		width: clamp(25px, 4.5vh, 32px);
		width: clamp(25px, 4.5dvh, 32px);
	}

	.bws-mega-menu__actions {
		border-top: 0;
		display: flex;
		flex-direction: column;
		gap: clamp(16px, 3vh, 24px);
		gap: clamp(16px, 3dvh, 24px);
		margin: 0;
		padding: clamp(4px, 1.2vh, 8px) 40px clamp(22px, 4vh, 34px);
		padding: clamp(4px, 1.2dvh, 8px) 40px clamp(22px, 4dvh, 34px);
	}

	.bws-mega-menu__action {
		flex-direction: row;
		font-size: clamp(13px, 2.2vh, 15px);
		font-size: clamp(13px, 2.2dvh, 15px);
		gap: clamp(16px, 3vh, 24px);
		gap: clamp(16px, 3dvh, 24px);
		letter-spacing: 0.14em;
		text-align: left;
	}

	.bws-mega-menu__language {
		align-items: center;
		border-top: 1px solid rgba(7, 31, 63, 0.08);
		display: flex;
		min-height: clamp(64px, 10vh, 92px);
		min-height: clamp(64px, 10dvh, 92px);
		padding: 0 40px;
	}

	.bws-mega-menu__visual {
		flex: 0 0 auto;
		min-height: clamp(120px, 20vh, 184px);
		min-height: clamp(120px, 20dvh, 184px);
		width: 100%;
	}

	.bws-mega-menu__visual-mark {
		height: clamp(78px, 12vh, 98px);
		height: clamp(78px, 12dvh, 98px);
		opacity: 1;
		width: clamp(78px, 12vh, 98px);
		width: clamp(78px, 12dvh, 98px);
	}

	.bws-destinations-popup__content {
		padding-top: 64px;
	}

	.bws-destinations-popup__close {
		height: 44px;
		right: 14px;
		top: 14px;
		width: 44px;
	}
}

@media (max-width: 700px) and (max-height: 720px) {
	.bws-mega-menu__topbar {
		min-height: 96px;
		padding-bottom: 12px;
		padding-top: 20px;
	}

	.bws-mega-menu__logo {
		max-height: 46px;
		width: min(210px, 58vw);
	}

	.bws-mega-menu__mobile-return {
		min-height: 44px;
	}

	.bws-mega-menu__nav {
		padding-bottom: 8px;
		padding-top: 8px;
	}

	.bws-mega-menu__link {
		font-size: 17px;
		gap: 14px;
		grid-template-columns: 28px minmax(0, 1fr) 14px;
		min-height: 52px;
	}

	.bws-mega-menu__link-icon,
	.bws-mega-menu__link-icon svg {
		height: 23px;
		width: 23px;
	}

	.bws-mega-menu__actions {
		gap: 12px;
		padding-bottom: 18px;
	}

	.bws-mega-menu__action {
		font-size: 12px;
		gap: 14px;
	}

	.bws-mega-menu__action-icon,
	.bws-mega-menu__action-icon svg {
		height: 26px;
		width: 34px;
	}

	.bws-mega-menu__language {
		min-height: 56px;
	}

	.bws-mega-menu__visual {
		min-height: 104px;
	}

	.bws-mega-menu__visual-mark {
		height: 72px;
		width: 72px;
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__topbar {
		min-height: 72px;
		padding-bottom: 8px;
		padding-top: 14px;
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__logo {
		max-height: 38px;
		width: min(180px, 54vw);
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__mobile-return {
		min-height: 40px;
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__nav {
		padding-bottom: 4px;
		padding-top: 4px;
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__link {
		font-size: 15px;
		gap: 10px;
		grid-template-columns: 22px minmax(0, 1fr) 10px;
		min-height: 36px;
	}

	.bws-mega-menu.has-dense-nav .bws-mega-menu__link-icon,
	.bws-mega-menu.has-dense-nav .bws-mega-menu__link-icon svg {
		height: 18px;
		width: 18px;
	}
}
