.menu-btn{
    border: none;
    background: transparent;
    font-size: 34px;
    padding: 0;
    line-height: 1;
}

.logo-img{
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-text{
    color: green;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.search-box{
    height: 40px;
    border-radius: 20px;
    font-size: 14px;
    padding-left: 15px;
}

.mobile-btn{
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
}

.language-box{
    width: 95px;
    border-radius: 20px;
    font-size: 13px;
}

/* DESKTOP */
@media(min-width:992px){

    .navbar .container-fluid{
        flex-direction: row !important;
    }




    .logo-img{
        width: 60px;
        height: 60px;
    }

    .logo-text{
        font-size: 45px;
    }

    .search-box{
        height: 48px;
        font-size: 16px;
    }

}

/* ================= SIDEBAR ================= */

.side-menu{
    position: fixed;
    top: 0;
    left: -320px;   /* LEFT SIDE HIDDEN */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

/* OPEN */
.side-menu.active{
    left: 0;
}

/* CLOSE BUTTON */
.close-btn{
    border: none;
    background: transparent;
    font-size: 32px;
    float: right;
    cursor: pointer;
}

/* SEARCH INPUT */
.search-input{
    width: 100%;
    height: 42px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0 12px;
    margin: 20px 0;
}

/* MENU LIST */
.side-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu ul li{
    margin-bottom: 18px;
}

.side-menu ul li a{
    text-decoration: none;
    color: #222;
    font-size: 17px;
    font-weight: 500;
}

/* ================= OVERLAY ================= */

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

.overlay.active{
    display: block;
}
