 /* 1. Hides the toggle button on desktop */
    @media (min-width: 768px) {
        #mobile-menu-button {
            display: none !important;
        }
        #mobile-menu {
            display: none !important;
        }
    }

    /* 2. Forces solid background on mobile to prevent transparency issues */
    @media (max-width: 767px) {
        .mobile-solid-bg {
            background-color: #ffffff !important;
            opacity: 1 !important;
            backdrop-filter: none !important;
        }
    }