/* ===== DHUMS HEADER ===== */

.dhums-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    border-bottom:1px solid #ececec;
}

.header-top{
    height:52px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.dhums-logo{
    text-decoration:none;
    color:#111;
    font-size:20px;
    font-weight:700;
}

.header-btn{
    width:34px;
    height:34px;
    border:none;
    background:none;
    cursor:pointer;
}

.header-btn i{
    font-size:22px;
}

.lang-btn{
    text-decoration:none;
    color:#111;
    font-size:13px;
    font-weight:700;
}

.header-right{
    display:flex;
    align-items:center;
    gap:12px;
}

/* ===== Overlay ===== */

.drawer-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;

}

.drawer-overlay.show{

    opacity:1;

    visibility:visible;

}

/* ===== Drawer ===== */

.mobile-drawer{

    position:fixed;

    top:0;

    left:-65%;

    width:65%;

    max-width:320px;

    height:100vh;

    background:#fff;

    transition:.3s ease;

    z-index:9999;

    overflow-y:auto;

    box-shadow:5px 0 25px rgba(0,0,0,.15);

}

.mobile-drawer.show{

    left:0;

}

.drawer-header{

    height:55px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 16px;

    border-bottom:1px solid #eee;

}

.drawer-header h5{

    margin:0;

    font-size:20px;

    font-weight:700;

}

.drawer-header button{

    border:none;

    background:none;

    font-size:22px;

}

/* ===== Menu ===== */

.drawer-menu{

    padding:10px 0;

}

.drawer-menu a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    color:#222;

    text-decoration:none;

    border-bottom:1px solid #f4f4f4;

    font-weight:500;

}

.drawer-menu a:hover{

    background:#f7f7f7;

    color:#d50000;

}