/* ========= /css/mobile-menu.css ========= */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0,0,0,0.1);
    padding: 32px 20px;
    overflow-y: auto;
}
.mobile-menu.active {
    left: 0;
}
.mobile-menu__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
}
.mobile-menu__logo {
    max-width: 120px;
    margin-bottom: 40px;
    margin-top: 20px;
}
.mobile-menu__list {
    list-style: none;
}
.mobile-menu__list li {
    margin-bottom: 20px;
}
.mobile-menu__list a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray);
}
.mobile-menu__contacts {
    margin-top: 40px;
    color: var(--secondary);
}
.overlay.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 900;
}