/* Боковое меню */
.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: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
}

.sidebar.active {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close-btn:hover {
    color: #007bff;
}

.menu {
    list-style: none;
    padding: 60px 20px 20px;
	font-size: 20px;
	font-family: 'MuseoSansCyrl500';
}

.menu ul {
    padding-left: 0px;
}

.menu li {
    margin-bottom: 4px;
	padding-bottom: 0px;
}

.menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.menu a:hover {
    background: #f8f9fa;
    color: #007bff;
}

/* Адаптивность для планшетов */
@media (min-width: 600px) {
	
.menu ul {
    padding-left: 0px;
}

.menu li {
    margin-bottom: 4px;
	padding-bottom: 0px;
}

.menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.menu a:hover {
    background: #f8f9fa;
    color: #007bff;
}
	
}

/* Адаптивность для десктопов */
@media (min-width: 1200px) {
	
.menu ul {
    padding-left: 0px;
}

.menu li {
    margin-bottom: 2px;
	padding-bottom: 0px;
}

.menu a {
    display: block;
    padding: 6px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.menu a:hover {
    background: #f8f9fa;
    color: #007bff;
}
	