/* Elementor Mobile Hamburger Menu - base styles */

.emm-mobile-menu-wrapper {
	position: relative;
	display: none; /* revealed by JS below the chosen breakpoint */
	line-height: 0;
}

.emm-mobile-menu-wrapper.emm-visible {
	display: inline-block;
}
.dark-mode .emm-mobile-menu-wrapper{
	color: #000000 !important;
}

/* Hamburger button */
.emm-hamburger {
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 28px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
	z-index: 10;
}

.emm-hamburger span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: #222;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.emm-hamburger.is-active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.emm-hamburger.is-active span:nth-child(2) { opacity: 0; }
.emm-hamburger.is-active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* Overlay */
.emm-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
	z-index: 998;
}

.emm-mobile-menu-wrapper.is-open .emm-overlay {
	opacity: 1;
	visibility: visible;
}

/* Slide-out panel */
.emm-panel {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 280px;
	max-width: 85vw;
	background: #fff;
	z-index: 999;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: calc(env(safe-area-inset-top, 0px) + 60px) 0 40px;
	transition: transform 0.3s ease;
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
	line-height: normal;
}

.emm-panel-left  { left: 0;  transform: translateX(-100%); }
.emm-panel-right { right: 0; transform: translateX(100%); }
.emm-panel-top {
	left: 0; right: 0; top: 0; bottom: auto;
	width: 100%; max-width: 100%;
	transform: translateY(-100%);
}

.emm-mobile-menu-wrapper.is-open .emm-panel {
	transform: translateX(0) translateY(0);
}

.emm-close {
	position: absolute;
	top: calc(env(safe-area-inset-top, 0px) + 16px);
	right: 20px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #222;
	z-index: 2;
}

/* ---------------- Menu list / accordion structure ---------------- */

.emm-panel ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.emm-menu-list > li {
	border-bottom: 1px solid #eeeeee;
}

.emm-menu-list li {
	position: relative;
}

.emm-item-row {
	position: relative;
}

.emm-menu-list a {
	display: block;
	text-decoration: none;
	font-size: 16px;
	color: #000000;
}

.emm-menu-list > li > .emm-item-row > a {
	padding: 14px 56px 14px 24px;
	color: #000000;
	font-weight: 600;
}

.emm-item-label {
	pointer-events: none;
}

/* Nested submenus: collapsed by default, expand via JS toggling .emm-submenu-open */
.emm-submenu {
	background: #f7f7f7;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.emm-submenu a {
	padding: 12px 24px 12px 40px;
	color: #000000;
	font-size: 14.5px;
}

.emm-submenu .emm-submenu a {
	padding-left: 56px;
	font-size: 14px;
	color: #000000;
}

.emm-has-children.emm-submenu-open > .emm-submenu {
	max-height: 2000px;
}

/* ---------------- Dropdown toggle button ---------------- */

.emm-submenu-toggle {
	position: absolute;
	top: 0;
	right: 0;
	width: 52px;
	height: 100%;
	min-height: 48px;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.emm-toggle-icon {
	position: relative;
	width: 12px;
	height: 12px;
	display: block;
	transition: transform 0.25s ease;
}

/* Chevron style (default) */
.emm-icon-chevron .emm-toggle-icon::before,
.emm-icon-chevron .emm-toggle-icon::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 2px;
	background-color: #1a1a1a;
	top: 50%;
	border-radius: 1px;
}
.emm-icon-chevron .emm-toggle-icon::before {
	left: 0;
	transform: rotate(45deg);
}
.emm-icon-chevron .emm-toggle-icon::after {
	right: 0;
	transform: rotate(-45deg);
}
.emm-icon-chevron .emm-has-children.emm-submenu-open > .emm-item-row > .emm-submenu-toggle .emm-toggle-icon {
	transform: rotate(180deg);
}

/* Plus / minus style */
.emm-icon-plus .emm-toggle-icon::before,
.emm-icon-plus .emm-toggle-icon::after {
	content: "";
	position: absolute;
	background-color: #1a1a1a;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.emm-icon-plus .emm-toggle-icon::before {
	width: 12px;
	height: 2px;
}
.emm-icon-plus .emm-toggle-icon::after {
	width: 2px;
	height: 12px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.emm-icon-plus .emm-has-children.emm-submenu-open > .emm-item-row > .emm-submenu-toggle .emm-toggle-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

/* Arrow style */
.emm-icon-arrow .emm-toggle-icon {
	width: 10px;
	height: 10px;
	border-right: 2px solid #1a1a1a;
	border-bottom: 2px solid #1a1a1a;
	transform: rotate(45deg);
	margin-top: -4px;
}
.emm-icon-arrow .emm-has-children.emm-submenu-open > .emm-item-row > .emm-submenu-toggle .emm-toggle-icon {
	transform: rotate(-135deg);
	margin-top: 2px;
}

.emm-notice {
	padding: 10px;
	background: #fff3cd;
	border: 1px solid #ffe69c;
	color: #664d03;
	font-size: 13px;
}
.emm-hamburger {
    width: 20px;
    height: 25px;
}