.mme-menu {
	--mme-accent: #0f6e56;
	--mme-duration: 320ms;
	--mme-breakpoint: 1024px;
	position: relative;
}

.mme-burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}
.mme-burger span {
	display: block;
	height: 2px;
	width: 24px;
	background: currentColor;
	margin: 0 auto;
}

.mme-menu.mme-is-desktop .mme-burger,
.mme-menu.mme-is-desktop .mme-mobile {
	display: none;
}
.mme-menu.mme-is-mobile .mme-desktop {
	display: none;
}

/* ---------- MOBILE ---------- */
.mme-mobile {
	position: fixed;
	inset: 0;
	z-index: 9999;
	visibility: hidden;
}
.mme-mobile.mme-open {
	visibility: visible;
}
.mme-mobile-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	transition: opacity var(--mme-duration) ease;
}
.mme-mobile.mme-open .mme-mobile-overlay {
	opacity: 1;
}
.mme-mobile-inner {
	position: absolute;
	top: 0;
	right: 0;
	width: min(360px, 100%);
	height: 100%;
	background: var(--mme-panel-bg, #fff);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform var(--mme-duration) ease;
}
.mme-mobile.mme-open .mme-mobile-inner {
	transform: translateX(0);
}
.mme-close {
	align-self: flex-end;
	margin: 8px 12px;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: none;
	background: var(--mme-accent);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}
.mme-panels {
	position: relative;
	flex: 1;
	overflow: hidden;
}
.mme-panel {
	position: absolute;
	inset: 0;
	overflow-y: auto;
	transition: transform var(--mme-duration) ease;
	background: var(--mme-panel-bg, #fff);
}
.mme-back {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	text-align: left;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--mme-border, #eee);
	padding: 14px 16px;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
	color: inherit;
}
.mme-back-arrow {
	width: 8px;
	height: 8px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}
.mme-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mme-row {
	border-bottom: 1px solid var(--mme-border, #eee);
}
.mme-row a,
.mme-row-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	text-align: left;
	background: transparent;
	border: none;
	padding: 14px 16px;
	font-size: 15px;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}
.mme-caret {
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	transform: rotate(45deg);
	flex-shrink: 0;
}
.mme-cta {
	display: block;
	text-align: center;
	padding: 14px 16px;
	font-weight: 500;
	text-decoration: none;
	background: var(--mme-accent);
	color: #fff;
}

/* ---------- DESKTOP ---------- */
.mme-desktop-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 28px;
}
.mme-desktop-item {
	position: relative;
}
.mme-desktop-item > a {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: inherit;
	padding: 12px 0;
}
.mme-desktop-item:hover > a,
.mme-desktop-item.mme-open > a {
	color: var(--mme-accent);
}
.mme-mega-panel {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	flex-wrap: wrap;
	gap: 32px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	padding: 20px 24px;
	min-width: 480px;
	z-index: 100;
}
.mme-desktop-item:hover .mme-mega-panel,
.mme-desktop-item.mme-open .mme-mega-panel {
	display: flex;
}
.mme-mega-col {
	min-width: 160px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.mme-col-head {
	font-weight: 500;
	text-decoration: none;
	color: inherit;
	margin-bottom: 4px;
}
.mme-col-head:hover {
	color: var(--mme-accent);
}
.mme-col-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.mme-col-list a {
	text-decoration: none;
	color: var(--mme-text-secondary, #666);
	font-size: 14px;
}
.mme-col-list a:hover {
	color: var(--mme-accent);
}
