/* Add this to ensure fixed header doesn't cause horizontal scroll */
html, body {
    overflow-x: hidden;
}

/* Ensure mobile menu stays above the fixed header */
.mobile-menu-panel {
    z-index: 60; /* Higher than header's z-index */
    top: 0;
}