/* Mobile Menu Styles */

.mobile-menu-toggle {
	display: none;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10000;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-panel {
	position: fixed;
	top: 0;
	left: -85%;
	width: 85%;
	max-width: 85%;
	height: 100%;
	background: white;
	transition: right 0.3s ease;
	z-index: 10001;
	overflow-y: auto;
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-panel.active {
	right: 0;
}

.mobile-menu-content {
	padding: 20px;
}

.mobile-menu-header {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.mobile-menu-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	order: 5;
}

.mobile-menu-close svg {
	display: block;
}

#mobile-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-nav-list li {
	border-bottom: 1px solid #eee;
}

.mobile-nav-list a {
	display: block;
	padding: 15px 0;
	color: #1A1A1A;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.3s;
}

.mobile-nav-list a:hover {
	color: #FF6A00;
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}
}

