.logo img {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    outline: none;
    touch-action: manipulation;
}


.menu-container {
    position: absolute;
    top: 0;
    right: -100%; /* Прячем за экраном */
    width: 300px;
    height: 100vh;
    background: white;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
}

.menu-container.active {
    right: 0;
}

.searchinput {
    margin-top: 20px; /* Поднимет элемент вверх */
}




