/* Mobile Bottom Navigation - REMOVED COMPLETELY */

@media (max-width: 768px) {
    /* Force hide mobile bottom nav */
    .mobile-bottom-nav {
        display: none !important;
    }
    
    /* Remove body padding that was added for bottom nav */
    body {
        padding-bottom: 0 !important;
    }
}

/* Ensure desktop doesn't show mobile nav */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}