.filters-container {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .filters-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filters-type {
        min-width: 100%;
    }

    .filters-clear-container {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (min-width: 769px) {
    .filters-row {
        display: flex;
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .filters-type {
        flex: 1 0 160px;
        min-width: 140px;
        max-width: 200px;
    }

    .filters-clear-container {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
}

.filters-label {
    display: block;
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 0.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.filters-select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 7.599L10.293 3.3l.707.707L6 9.007 1.707 4.7l.707-.7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.8em auto;
    box-sizing: border-box;
    min-height: 2.5rem;
    line-height: 1.2;
}

.filters-select:focus {
    outline: none;
    border-color: #727276;
    box-shadow: 0 0 0 2px rgba(114, 114, 118, 0.3);
}

.filter-btn-clear {
    padding: 10px 16px;
    background-color: #7C8189;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1;
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    transition: background-color 0.2s ease-in-out;
}

.filter-btn-clear:hover {
    background-color: #6a6e75;
}

.filters-select:hover {
    border-color: #adb5bd;
}

.filters-select:disabled {
    background-color: #f1f1f1;
    color: #aaa;
}