/* Mobile Sidebar Styles */
.mobile-sidebar {
	position: fixed;
	top: 0; left: -300px; width: 300px; height: 100%;
	background: var(--dsp-bg);
	z-index: 2000;
	transition: 0.3s ease;
	box-shadow: 10px 0 30px rgba(0,0,0,0.1);
	padding: 25px;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active { left: 0; }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dsp-border);
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dsp-text);
    cursor: pointer;
}

.sidebar-overlay {
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 1999;
	display: none;
}
.sidebar-overlay.active { display: block; }

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dsp-text);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.mobile-menu-toggle span { 
    width: 25px; 
    height: 2px; 
    background: var(--dsp-text); 
    border-radius: 2px; 
}

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