/* =========================================================
TOP BAR
========================================================= */

.dxb-topbar{

    background:#fff;

    border-bottom:1px solid rgba(0,0,0,.06);

    padding:10px 0;

}

.dxb-topbar-inner{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:20px;

    align-items:center;

}

.dxb-top-item{

    display:flex;

    flex-direction:column;

    gap:4px;

    min-width:0;
}

.dxb-top-item strong{

    font-size:15px;

    font-weight:700;

    color:#111827;

}

.dxb-top-item span{

    font-size:12px;

    color:#6B7280;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

}

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

.dxb-header{

    position:sticky;

    top:0;

    z-index:9999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.06);

}

/* =========================================================
HEADER INNER
========================================================= */

.dxb-header-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    padding:18px 0;

}

/* =========================================================
LOGO
========================================================= */

.dxb-logo{
    flex-shrink:0;
}

.dxb-logo a{

    display:flex;

    flex-direction:column;

    gap:4px;

}

.dxb-logo h1{

    font-size:64px;

    line-height:1;

    letter-spacing:-3px;

    font-weight:900;

    color:#111827;

}

.dxb-logo span{

    font-size:10px;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#6B7280;

}

/* =========================================================
NAVIGATION
========================================================= */

.dxb-nav{

    flex:1;

    display:flex;

    justify-content:center;

}

.dxb-menu{

    display:flex;

    align-items:center;

    gap:28px;

}

.dxb-menu li{

    position:relative;

}

.dxb-menu li a{

    position:relative;

    font-size:14px;

    font-weight:700;

    color:#111827;

    transition:.3s ease;

    padding:6px 0;

}

.dxb-menu li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#d9a441;

    transition:.3s ease;

}

.dxb-menu li a:hover{

    color:#d9a441;

}

.dxb-menu li a:hover::after{

    width:100%;

}

/* =========================================================
HEADER ACTIONS
========================================================= */

.dxb-actions{

    display:flex;

    align-items:center;

    gap:12px;

}

.dxb-actions button{

    width:44px;

    height:44px;

    border-radius:50%;

    border:1px solid rgba(0,0,0,.08);

    background:#fff;

    cursor:pointer;

    transition:.3s ease;

    color:#111827;

}

.dxb-actions button:hover{

    background:#111827;

    color:#fff;

    transform:translateY(-2px);

}

/* =========================================================
MOBILE BUTTON
========================================================= */

.dxb-mobile-btn{

    display:none;

}

/* =========================================================
TABLET
========================================================= */

@media(max-width:1200px){

    .dxb-topbar-inner{

        grid-template-columns:
        repeat(3,1fr);

    }

}

/* =========================================================
TABLET SMALL
========================================================= */

@media(max-width:992px){

    .dxb-header-inner{

        gap:20px;

    }

    .dxb-nav{

        display:none;

    }

    .dxb-mobile-btn{

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .dxb-logo h1{

        font-size:54px;

    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    .dxb-topbar{

        display:none;

    }

    .dxb-header-inner{

        padding:16px 0;

    }

    .dxb-logo h1{

        font-size:42px;

        letter-spacing:-2px;

    }

    .dxb-logo span{

        font-size:9px;

        letter-spacing:2px;

    }

    .dxb-actions{

        gap:8px;

    }

    .dxb-actions button{

        width:40px;

        height:40px;

    }

}

/* =========================================================
SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .dxb-logo h1{

        font-size:34px;

    }

    .dxb-logo span{

        display:none;

    }

}