/* ==========================================
   DHUMS HEADER v2
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.dhums-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    border-bottom:1px solid #ececec;
}

.header-inner{
    max-width:1400px;
    margin:auto;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
}

.logo{
    text-decoration:none;
    font-size:28px;
    font-weight:700;
    color:#111;
    letter-spacing:.5px;
}

.menu-btn,
.search-btn{
    width:40px;
    height:40px;
    border:none;
    background:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menu-btn i,
.search-btn i{
    font-size:25px;
}

.right-menu{
    display:flex;
    align-items:center;
    gap:15px;
}

.lang{
    text-decoration:none;
    color:#111;
    font-size:13px;
    font-weight:700;
}

/* ===========================
   Desktop Menu
=========================== */

.desktop-menu{
    display:none;
}

.desktop-menu a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:600;
}

/* ===========================
   Overlay
=========================== */

.drawer-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.25s;
    z-index:9998;
}

.drawer-overlay.show{
    opacity:1;
    visibility:visible;
}

/* ===========================
   Drawer
=========================== */

.mobile-drawer{
    position:fixed;
    top:0;
    left:-82%;
    width:82%;
    max-width:380px;
    height:100vh;
    background:#fff;
    transition:.25s;
    z-index:9999;
    overflow-y:auto;
    box-shadow:5px 0 25px rgba(0,0,0,.18);
}

.mobile-drawer.show{
    left:0;
}

.drawer-top{
    height:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    border-bottom:1px solid #ececec;
}

.drawer-top strong{
    font-size:24px;
}

.drawer-top button{
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
}

.drawer-links{
    padding:8px 0;
}

.drawer-links a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 20px;
    border-bottom:1px solid #f3f3f3;
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:500;
}

.drawer-links i{
    width:20px;
    font-size:18px;
}

.drawer-links a:hover{
    background:#f8f8f8;
    color:#d50000;
}

