/* Additional Mobile Navigation Improvements */
@media (max-width: 991px) {
    /* Better grouping and visual separation */
    .dropdown-item {
        margin: 0 10px;
        border-radius: 4px;
    }
    
    /* Last item in dropdown doesn't need border */
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    /* Add subtle hover effect */
    .dropdown-item:hover {
        background-color: rgba(52, 152, 219, 0.05);
    }
    
    /* Category header styling */
    .nav-item.dropdown > .nav-link {
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    /* Improve icon visibility */
    .dropdown-item i {
        opacity: 0.8;
    }
    
    /* Add subtle depth to the dropdown */
    .nav-item.show-dropdown .dropdown-content {
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
    }
    
    /* Make tap targets more obvious */
    .dropdown-item:after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 15px;
        font-size: 12px;
        color: #999;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Counter for visual organization */
    .dropdown-content {
        counter-reset: item-counter;
    }
    
    .dropdown-item {
        counter-increment: item-counter;
        position: relative;
    }
    
    /* Visual grouping with numbers */
    .dropdown-item:before {
        content: counter(item-counter);
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
        background-color: rgba(52, 152, 219, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: #3498db;
    }
    
    /* Adjust padding to accommodate the number */
    .dropdown-item {
        padding-left: 52px;
    }
    
    .dropdown-item i {
        margin-right: 8px;
    }
}
