/* ── TOPBAR ───────────────────────────── */
.mh-topbar {
	background: var(--mh-navy);
	padding: 7px 40px;
	font-size: 10px;
	letter-spacing: 2px;
	text-align: center;
	color: rgba(255,255,255,0.6);
	text-transform: uppercase;
}

/* ── HEADER ───────────────────────────── */
.mh-header {
	background: #fff;
	border-bottom: 1px solid var(--mh-border);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
	transition: transform 0.3s;
}
.mh-header-spacer {
	height: 68px;
}
.mh-header__inner {
	max-width: var(--mh-container);
	margin: 0 auto;
	padding: 0 40px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.mh-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.mh-header__logo img { height: 32px; width: auto; }
.mh-header__logo-text { font-family: var(--mh-font); font-size: 22px; color: var(--mh-navy); letter-spacing: -0.5px; text-transform: none; font-weight: 700; }

/* Nav */
.mh-header__nav { flex: 1; display: flex; justify-content: center; }
.mh-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; }
.mh-nav__list li a {
	color: #555;
	font-size: 14px;
	letter-spacing: 0;
	text-transform: none;
	text-decoration: none;
	transition: color 0.15s;
	font-weight: 500;
}
.mh-nav__list li a:hover,
.mh-nav__list li.current-menu-item > a { color: var(--mh-navy); }

/* Right side */
.mh-header__right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.mh-header__lang {
	font-size: 12px;
	display: flex;
	gap: 0;
	border: 1px solid var(--mh-border);
	border-radius: 4px;
	overflow: hidden;
}
.mh-header__lang-link {
	color: var(--mh-muted);
	text-decoration: none;
	transition: all 0.15s;
	font-weight: 600;
	letter-spacing: 0;
	padding: 5px 9px;
	border-right: 1px solid var(--mh-border);
}
.mh-header__lang-link:last-of-type { border-right: none; }
.mh-header__lang-link:hover { color: var(--mh-navy); background: var(--mh-bg); }
.mh-header__lang-link--active { color: #fff; background: var(--mh-navy); font-weight: 600; }
.mh-header__lang-sep { display: none; }

.mh-header__cart {
	position: relative;
	display: flex;
	align-items: center;
	color: #777;
	text-decoration: none;
	transition: color 0.2s;
}
.mh-header__cart:hover { color: var(--mh-navy); }
.mh-header__cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	background: var(--mh-accent);
	color: #fff;
	font-size: 9px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mh-header__shop-btn { padding: 8px 20px !important; font-size: 13px !important; font-weight: 600 !important; }

/* Burger (mobile) */
.mh-header__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.mh-header__burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--mh-navy);
	border-radius: 2px;
	transition: all 0.2s;
}

/* ── FOOTER ───────────────────────────── */
.mh-footer {
	background: var(--mh-navy);
	border-top: none;
}
.mh-footer__inner {
	max-width: var(--mh-container);
	margin: 0 auto;
	padding: 52px 40px 40px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
}
.mh-footer__logo { display: inline-block; margin-bottom: 14px; }
.mh-footer__logo img { height: 26px; width: auto; }
.mh-footer__desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.9; margin: 0; }
.mh-footer__social { margin-top: 18px; display: flex; gap: 10px; }
.mh-footer__social-icon {
	width: 36px; height: 36px;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: var(--mh-radius);
	display: flex; align-items: center; justify-content: center;
	color: rgba(255,255,255,0.45);
	text-decoration: none;
	transition: all 0.3s;
}
.mh-footer__social-icon:hover { border-color: var(--mh-accent); color: var(--mh-accent); background: rgba(214,58,46,0.06); }
.mh-footer__col-title {
	font-size: 12px;
	color: var(--mh-accent);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin: 0 0 12px;
	font-weight: 700;
}
.mh-footer__links { list-style: none; margin: 0; padding: 0; }
.mh-footer__links li { line-height: 2.4; }
.mh-footer__links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.mh-footer__links a:hover { color: #ccc; }

.mh-footer__bottom {
	max-width: var(--mh-container);
	margin: 0 auto;
	padding: 14px 40px;
	border-top: 1px solid rgba(255,255,255,0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mh-footer__bottom span { font-size: 11px; color: rgba(255,255,255,0.3); }
.mh-footer__bottom-links { display: flex; gap: 20px; }
.mh-footer__bottom-links a { font-size: 11px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.mh-footer__bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── MOBILE NAV PANEL ─────────────────── */

/* Mobile-only elements — hidden on desktop */
.mh-nav__mobile-header,
.mh-nav__mobile-lang {
	display: none;
}

@media ( max-width: 1024px ) {
	.mh-header__nav {
		display: none !important;
		position: fixed !important;
		top: 0 !important;
		right: 0 !important;
		width: 300px !important;
		height: 100vh !important;
		height: 100dvh !important;
		background: #fff !important;
		box-shadow: -4px 0 24px rgba(30,49,88,0.15) !important;
		z-index: 99999 !important;
		padding: 0 !important;
		flex-direction: column !important;
		flex: none !important;
		justify-content: flex-start !important;
		overflow-y: auto !important;
	}
	.mh-header__nav.mh-nav--open {
		display: flex !important;
		pointer-events: all !important;
		background: #ffffff !important;
		-webkit-backdrop-filter: none !important;
		backdrop-filter: none !important;
	}

	/* Mobile nav header — brand */
	.mh-nav__mobile-header {
		display: flex !important;
		flex-direction: column;
		padding: 24px 28px 16px;
		border-bottom: 1px solid #f0f0f0;
	}
	.mh-nav__mobile-brand {
		font-family: var(--mh-font);
		font-size: 20px;
		font-weight: 800;
		color: var(--mh-accent);
		letter-spacing: -0.5px;
	}
	.mh-nav__mobile-sub {
		font-size: 11px;
		color: var(--mh-muted);
		margin-top: 2px;
	}

	/* Menu links */
	.mh-nav__list {
		flex-direction: column !important;
		gap: 0 !important;
		width: 100% !important;
		pointer-events: all !important;
		padding: 8px 0 !important;
	}
	.mh-nav__list li {
		width: 100% !important;
		pointer-events: all !important;
	}
	.mh-nav__list li a {
		display: block !important;
		padding: 14px 28px !important;
		font-size: 15px !important;
		letter-spacing: 0 !important;
		text-transform: none !important;
		font-weight: 500 !important;
		border-bottom: none !important;
		color: var(--mh-navy) !important;
		pointer-events: all !important;
		cursor: pointer !important;
		-webkit-tap-highlight-color: rgba(0,0,0,0.05) !important;
		transition: background 0.15s !important;
	}
	.mh-nav__list li a:hover { background: var(--mh-bg) !important; }
	.mh-nav__list li.current-menu-item > a { color: var(--mh-accent) !important; font-weight: 600 !important; }

	/* Mobile language switcher */
	.mh-nav__mobile-lang {
		display: flex !important;
		gap: 0;
		margin-top: auto;
		padding: 16px 28px 24px;
		border-top: 1px solid #f0f0f0;
	}
	.mh-nav__mobile-lang-link {
		flex: 1;
		text-align: center;
		padding: 10px 8px;
		font-size: 13px;
		font-weight: 600;
		color: var(--mh-muted);
		text-decoration: none;
		border: 1px solid var(--mh-border);
		margin-right: -1px;
		transition: all 0.15s;
	}
	.mh-nav__mobile-lang-link:first-child { border-radius: 4px 0 0 4px; }
	.mh-nav__mobile-lang-link:last-child { border-radius: 0 4px 4px 0; margin-right: 0; }
	.mh-nav__mobile-lang-link--active {
		background: var(--mh-navy);
		color: #fff;
		border-color: var(--mh-navy);
		z-index: 1;
		position: relative;
	}

	/* Hide desktop lang + shop btn on mobile */
	.mh-header__lang { display: none !important; }
	.mh-header__shop-btn { display: none !important; }
	.mh-header__burger { display: flex !important; z-index: 100000 !important; position: relative !important; }

	/* Burger X animation */
	.mh-burger--open span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}
	.mh-burger--open span:nth-child(2) {
		opacity: 0;
	}
	.mh-burger--open span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	/* Footer */
	.mh-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media ( max-width: 640px ) {
	.mh-topbar { font-size: 8px; padding: 6px 16px; letter-spacing: 1px; }
	.mh-header__inner { padding: 0 20px; height: 60px; }
	.mh-header__logo img { height: 26px; }
	.mh-header-spacer { height: 60px; }
	.mh-footer__inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
	.mh-footer__bottom { flex-direction: column; gap: 8px; text-align: center; padding: 12px 24px; }
}