.burger {
    cursor: pointer;
    z-index: 1000; 
}
.burger svg{
    width: 35px;
    height: 35px;
}


.burger-menu {
    position: fixed;
    top: 0;
    right: -150px; 
    width: 150px;
    height: 100%;
    background-color: var(--main-color);
    color: var(--secondary-color);
    transition: right 0.5s ease;
    z-index: 999; 
}

.burger-menu ul {
    list-style: none;
    margin-top: 60px;
    padding-inline: 0px;
    margin-inline: 30px !important;
    width: 100px;
    line-height: 21px;
}

.burger-menu li {
    margin: 10px 0;
}

.burger-menu a {
    color: var(--button-text-color);
    font-size: 12px;
}

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

.burger-btn{
    width: 100px;
    height: 30px;
    font-size: 12px;
    color: var(--button-text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    margin: auto;
    margin-top: 30px;
}

.burger-btn img{
    width: 14px;
    height: 15px;

}

.nav-logo-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 120px;
}