.marketplace-content {
    width: 100%;
}

.filter-bar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.filter-bar-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 180px;
}

.filter-item-price {
    flex: 1.5;
    min-width: 250px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-label i {
    color: #667eea;
    font-size: 0.9rem;
}

.filter-input {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: #ffffff;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-input-small {
    padding: 0.75rem 0.85rem;
}

.price-range-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-separator {
    color: #94a3b8;
    font-weight: 600;
    font-size: 1.1rem;
}

.filter-actions-inline {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.btn-filter-apply-inline,
.btn-filter-reset-inline {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-filter-apply-inline {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.btn-filter-apply-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.btn-filter-reset-inline {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.75rem 1rem;
}

.btn-filter-reset-inline:hover {
    background: #e2e8f0;
    color: #1a1a2e;
}

.pulse-animation {
    animation: pulse 0.3s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 1200px) {
    .filter-item {
        min-width: 150px;
    }
    
    .filter-item-price {
        min-width: 220px;
    }
}

@media (max-width: 992px) {
    .filter-bar-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-item,
    .filter-item-price {
        width: 100%;
        min-width: 100%;
    }
    
    .filter-actions-inline {
        width: 100%;
    }
    
    .btn-filter-apply-inline,
    .btn-filter-reset-inline {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .filter-bar {
        padding: 1rem;
    }
    
    .filter-label span {
        font-size: 0.75rem;
    }
    
    .filter-input {
        font-size: 0.9rem;
        padding: 0.65rem 0.85rem;
    }
    
    .btn-filter-apply-inline,
    .btn-filter-reset-inline {
        font-size: 0.85rem;
        padding: 0.65rem 1rem;
    }
}
