.tire-filters-container {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    margin: 20px 0;
    flex-wrap: wrap;
}

.tire-filter-group {
    flex: 1;
    min-width: 150px;
}

.tire-filter-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
}

.tire-attribute-filter {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

.tire-attribute-filter:disabled {
    opacity: 0.7;
    background-color: #f5f5f5;
}

.tire-filter-button {
    padding: 10px 25px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    height: 40px;
}

@media (max-width: 768px) {
    .tire-filter-group {
        min-width: calc(50% - 8px);
    }
}

@media (max-width: 480px) {
    .tire-filter-group {
        min-width: 100%;
    }
}