.mobile-header-glass {
	position: fixed;
	left: 50%;
	top: calc(10px + env(safe-area-inset-top));
	transform: translateX(-50%);
	width: calc(100% - 28px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-radius: 28px;
	border: 1px solid #e9e9eb;
	box-shadow:
		0 10px 35px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
	z-index: 9999;
	font-family: "Montserrat", sans-serif;
	box-sizing: border-box;
}
.mobile-header-glass__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #292929;
	line-height: 1;
}
.mobile-header-glass__logo img {
	width: auto;
	display: block;
}
.mobile-header-glass__menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #002e5b;
	opacity: 0.85;
	transition: all 0.25s ease;
	text-decoration: none;
}
.mobile-header-glass__menu-btn svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}
.mobile-header-glass__menu-btn:hover {
	opacity: 1;
}
.mobile-header-glass__menu-btn:active {
	transform: scale(0.92);
}

/* Editor preview override — no fixed positioning inside Elementor */
.mobile-header-glass--editor-preview {
	position: relative;
	left: auto;
	top: auto;
	transform: none;
}