/* Mobile Menu Hamburger Fix */
.mobile-menu-toggle {
    display: flex !important;
    background: var(--bg-overlay-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    order: 3;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(114, 66, 0, 0.2);
    transform: translateY(-1px);
}

/* Hide on desktop, show on mobile */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-bottom {
        display: none;
    }
}