/*===================================================== 
HIDE THEME HEADER (THIS IS THE KILLLER HEADER HIDING BLOCK
======================================================*/
        .site-header, /*THE KILLER IS THIS BLOCK */
        #masthead,
        .site-branding,
        header:not(.cs-mobile-header),
        .cs-dashboard ~ header,
        body > header:not(.cs-mobile-header) {
            display: none !important;
        }

/* ==================================
FORCE MOBILE SHEL TO TOP IMPORTANT
=====================================*/ 
.cs-mobile-header { 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0a0a0a;
    height: 60px; /* adjust as needed */
}

/* Hide theme header on dashboard */
body.page-template-template-artist-dashboard .site-header,
body.page-template-template-artist-dashboard #masthead,
body.page-template-template-artist-dashboard .site-branding {
    display: none !important;
}




✅    Mobile Header (Glass Bar)
.cs-mobile-nav{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:65px;

background:rgba(15,10,26,0.75);
backdrop-filter:blur(12px);

border-bottom:1px solid rgba(245,179,1,0.2);

z-index:999;

align-items:center;
justify-content:center;
}