.gc-sticky__bar{
    display: none !important; /* Hide by default */
}
/************************************************************************/
/* Show the top bar on mobile */
/* Show on small screens */
    @media (max-width: 768px) {
/* MAIN CONTAINER STRUCTURE */

.gc-sticky__bar{
    display: flex !important; /* Show the sticky bar */
    background:#F5F8FC !important; /* Light blue background */
    border:0px !important;
    box-shadow:none !important;
}
.gc-sticky__bar--above-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    border:0px !important;
}

.gc-header__wrapper{
        border:0px !important;
        box-shadow:none !important;

}

/* FLEX CONTAINER HIERARCHY */
.gc-sticky__bar--above-header .gc-widgets,
.gc-sticky__bar--above-header .gc-widgets__inner,
.gc-sticky__bar--above-header .gc-widgets__grid {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* INJECTED LOGO USING PSEUDO-ELEMENT */
.gc-sticky__bar--above-header .gc-widgets__grid::before {
    content: "" !important;
    display: block !important;
    flex-shrink: 0 !important;
    width: 115px !important; /* Logo container width */
    height: 100% !important;
    background-image: url('https://www.crewonthemove.com/wp-content/uploads/logo_crewonthemove.com_.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 76% 40% !important; /* Smaller than container to create space */
    padding: 5px !important; /* Creates space around the image */
    margin-right: 1px !important;
    box-sizing: border-box !important; /* Ensures padding is included in width */
    position:relative !important;
    top:-4px;
}

/* WIDGET CONTAINERS */
.gc-sticky__bar--above-header .widget.widget_nav_menu, 
.gc-sticky__bar--above-header .gc-widget.widget_nav_menu {
    flex-grow: 1 !important;
    min-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* MENU CONTAINER (Middle Section) */
.menu-mobile-top-bar-container {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
}

/* MENU LIST */
#menu-mobile-top-bar {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    justify-content: space-around !important;
}

/* MENU ITEMS - FULLY CLICKABLE */
#menu-mobile-top-bar > li {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    flex-grow: 1 !important;
    min-width: 0 !important;
    margin-right: 1px !important;
    position: relative !important;
    padding: 0 !important;
    cursor: pointer !important;
}

#menu-mobile-top-bar > li {
    font-size:16px;
}

#menu-mobile-top-bar > li:hover {
   
}

/* MENU LINKS & CLICKABLE AREA */
#menu-mobile-top-bar > li > a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    color: var(--text-color) !important;
    font-family: 'Arial', sans-serif !important;
    font-size: 10px !important;
    padding-top:3px !important;
    text-align: center !important;
    text-decoration: none !important;
    position: static !important;
}

#menu-mobile-top-bar > li > a::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1 !important;
     padding-top: 0px !important;
}

/* MENU CONTENT (wrapped in span) */
#menu-mobile-top-bar > li > a > span {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    width: 100% !important;
    padding: 5px 10px !important;
}

/* USERBAR (Right Section) */
#menu-mobile-top-bar .extendedwopts-sidebar-wrapper {
    margin-left: auto !important;
    flex-shrink: 0 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.gc-sticky__bar--above-header .psw-userbar {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 10px !important;
    border-radius: 0px !important;
    position: relative !important;
    top:-5px;
}

/* Ensure userbar elements don't wrap */
.gc-sticky__bar--above-header .psw-userbar__inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    height: 100% !important;
}

.gc-sticky__bar--above-header .ps-dropdown__menu{
    position:absolute !important;
    top:80px;
    left:-250px !important;
    width:300px !important;
}

.gc-sticky__bar--above-header .gci-angle-down{
    font-size: 30px !important;
    color: #4a4a4a !important;
    margin-left: 5px !important;
    cursor: pointer !important;
}
    }