/* =========================
   MOBILE DRAWER
========================= */

.mobile-drawer-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-drawer-overlay.show{
    opacity: 1;
    visibility: visible;
}

.mobile-drawer{
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 88%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.show{
    left: 0;
}

/* HEADER */

.drawer-header{
    padding: 18px 20px 10px;
    position: relative;
    text-align: center;
}

.drawer-title{
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.drawer-close{
    position: absolute;
    right: 18px;
    top: 15px;
    border: none;
    background: none;
    font-size: 20px;
    color: #000;
}

/* LOGIN */

.drawer-login{
    padding: 0 16px 18px;
}

.drawer-login-btn{
    width: 100%;
    border: none;
    background: #046b3d;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.drawer-login-btn:hover{
    background: #cb1d14;
}

/* MENU */

.drawer-menu{
    padding: 10px 0;
}

.drawer-item{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.drawer-item i{
    font-size: 22px;
}

.drawer-item:hover{
    background: #f7f7f7;
    color: #198754;
}

.drawer-item.active{
    color: #198754;
}

/* SUPPORT */

.drawer-support{
    margin-top: auto;
    padding: 20px 16px 30px;
}

.drawer-support h6{
    text-align: center;
    font-weight: 700;
    margin-bottom: 18px;
}

.support-btn{
    width: 100%;
    border: 2px solid #65b741;
    border-radius: 12px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #65b741;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 34px;
    transition: 0.3s;
}

.support-btn:hover{
    background: #65b741;
    color: #fff;
}

/* HIDE IN DESKTOP */

@media(min-width:992px){

    .mobile-drawer,
    .mobile-drawer-overlay{
        display: none;
    }

}