/* Force mobile dropdown to work */
@media (max-width: 991px) {
    /* Force display for mobile dropdown */
    .nav-item.dropdown.show-dropdown .dropdown-content {
        display: block !important;
        max-height: none !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Hide by default */
    .nav-item.dropdown .dropdown-content {
        display: none !important;
        max-height: 0 !important;
        height: 0 !important;
    }
    
    /* Improve tap targets */
    .nav-item.dropdown .nav-link,
    .dropdown-item {
        min-height: 44px;
    }
    
    /* Product categories specific */
    #product-categories-dropdown .dropdown-content {
        border-left: 4px solid #3498db;
        background-color: #f0f0f0 !important;
    }
    
    /* Prevent default hover behavior on mobile */
    .nav-item:hover .dropdown-content {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }
}
