/* Mobile Filter Bar Styles */

.mobile-filter-bar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .mobile-filter-bar {
        display: block;
    }
}

.mobile-filter-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-filter-bar__info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.mobile-filter-bar__icon {
    color: #9ca3af;
}

.mobile-filter-bar__text {
    font-weight: 500;
}

.mobile-filter-bar__actions {
    display: flex;
    gap: 0.5rem;
}

.mobile-filter-bar__button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: #f3f4f6;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-filter-bar__button:hover {
    background: #e5e7eb;
}

.mobile-filter-bar__button--primary {
    background: #0284c7;
    color: white;
}

.mobile-filter-bar__button--primary:hover {
    background: #0369a1;
}

.mobile-filter-bar__button svg {
    flex-shrink: 0;
}

.mobile-filter-bar__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: #ef4444;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 9999px;
}

.mobile-filter-bar__button--primary .mobile-filter-bar__badge {
    background: white;
    color: #0284c7;
}
