/* MEGA MENU */

.mega-menu-overlay {
	display: none;
	position: fixed;
	z-index: 9999;
	width: 900px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 28px 24px;
	pointer-events: auto;
}

.mega-menu-overlay.is-open {
	display: block;
	animation: megaFadeUp 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes megaFadeUp {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0);   }
}

.mega-menu-heading {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ad843a;
	margin: 0 0 14px 0;
	padding-bottom: 8px;
}

.mega-menu-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 4px 20px;
}

.mega-menu-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 8px;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s ease;
	margin-bottom: 6px;
}

.mega-menu-item:hover {
	background: rgba(162, 26, 40, 0.06);
}

.mega-menu-item__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(162, 26, 40, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease;
}

.mega-menu-item:hover .mega-menu-item__icon {
	background: #a21a28;
}

.mega-menu-item__icon svg {
	width: 18px;
	height: 18px;
	stroke: #a21a28;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke 0.15s ease;
}

.mega-menu-item:hover .mega-menu-item__icon svg {
	stroke: #ffffff;
}

.mega-menu-item__text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.mega-menu-item__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #1d1922;
	line-height: 1.3;
}

.mega-menu-item__desc {
	font-size: 13px;
	line-height: 1.55;
	color: #666;
	margin: 0;
}

.mega-menu-backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9998;
	background: transparent;
	cursor: default;
}

.mega-menu-backdrop.is-open {
	display: block;
}

.menu-item--mega-active > .menu-link,
.menu-item--mega-active > a {
	color: #a21a28 !important;
}

.destinations-menu > a {
	display: inline-flex !important;
	align-items: center;
	gap: 5px;
}

.destinations-menu > a::after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(-45deg) translate(-1px, 0);
	transition: transform 0.2s ease;
}

.destinations-menu:hover > a::after,
.destinations-menu.menu-item--mega-active > a::after {
	transform: rotate(45deg) translate(0, -2px);
}

@media (max-width: 768px) {
	.mega-menu-overlay,
	.mega-menu-backdrop {
		display: none !important;
	}
}