/* Custom Header Static CSS */

body.mobile-menu-open {
    overflow: hidden;
}

.custom-header-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.mobile-menu-open .custom-header-mobile-overlay {
    opacity: 1;
    visibility: visible;
}

