/* L1 Menu Bar — frosted glass, 1200px content, no desktop side padding */

.elementor-widget-l1_menu_bar,
.elementor-widget-l1_menu_bar > .elementor-widget-container {
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.l1-mb {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 100;
	background: transparent;
	--l1-mb-purple: #3d1f5c;
}

.l1-mb.is-sticky {
	position: sticky;
	top: 0;
}

.l1-mb__glass {
	width: 100%;
	background: rgba(255, 255, 255, 0.55);
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	box-shadow: 0 1px 0 rgba(61, 31, 92, 0.04);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	backdrop-filter: blur(14px) saturate(160%);
}

.l1-mb__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 0;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 24px;
}

.l1-mb__logo {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.l1-mb__logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.l1-mb__logo-link img {
	display: block;
	height: auto;
	max-height: 80px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

.l1-mb__nav {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	justify-content: center;
}

.l1-mb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.l1-mb__item {
	margin: 0;
	padding: 0;
}

.l1-mb__link {
	display: inline-block;
	padding: 6px 0;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	color: #1a1a1a;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.l1-mb__link:hover,
.l1-mb__link.is-active {
	color: var(--l1-mb-purple);
}

.l1-mb__cta {
	flex: 0 0 auto;
}

.l1-mb__cta--mobile {
	display: none;
}

.l1-mb__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 11px 18px;
	border: 0;
	border-radius: 5px;
	background: var(--l1-mb-purple);
	color: #ffffff;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.l1-mb__btn:hover {
	opacity: 0.92;
	color: #ffffff;
	transform: translateY(-1px);
}

.l1-mb__btn-icon {
	display: block;
	flex: 0 0 auto;
}

.l1-mb__toggle {
	display: none;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	color: #1a1a1a;
}

.l1-mb__toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.l1-mb.is-open .l1-mb__toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.l1-mb.is-open .l1-mb__toggle-bar:nth-child(2) {
	opacity: 0;
}

.l1-mb.is-open .l1-mb__toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
	.l1-mb__list {
		gap: 4px 12px;
	}

	.l1-mb__link {
		font-size: 13px;
	}
}

@media (max-width: 991px) {
	.elementor-widget-l1_menu_bar > .elementor-widget-container {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.l1-mb__inner {
		padding-left: 20px;
		padding-right: 20px;
		position: relative;
		gap: 12px;
	}

	.l1-mb__toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.l1-mb__cta--desktop {
		display: none;
	}

	.l1-mb__nav {
		position: absolute;
		top: calc(100% + 1px);
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		padding: 12px 20px 20px;
		background: rgba(255, 255, 255, 0.92);
		-webkit-backdrop-filter: blur(14px) saturate(160%);
		backdrop-filter: blur(14px) saturate(160%);
		border-bottom: 1px solid rgba(61, 31, 92, 0.08);
		box-shadow: 0 12px 24px rgba(26, 26, 26, 0.08);
	}

	.l1-mb.is-open .l1-mb__nav {
		display: flex;
	}

	.l1-mb__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}

	.l1-mb__item {
		width: 100%;
		border-bottom: 1px solid rgba(61, 31, 92, 0.08);
	}

	.l1-mb__link {
		display: block;
		width: 100%;
		padding: 12px 0;
		font-size: 15px;
	}

	.l1-mb__cta--mobile {
		display: block;
		margin-top: 16px;
	}

	.l1-mb__cta--mobile .l1-mb__btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.elementor-widget-l1_menu_bar > .elementor-widget-container {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.l1-mb__inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.l1-mb__logo-link img {
		max-height: 80px;
	}
}
