.custom-attribute-filter {
    background: #3c3c3c;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: center;
    overflow-x: auto;
}

.custom-attribute-filter select {
    padding: 8px;
    min-width: 150px;
    margin-bottom: 0;
    border-radius: 5px;
}

.custom-attribute-filter button {
    background: #ffffff;
    color: #3d483b;
    font-weight: 700;
    font-size: 16px;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* --- Мобильная адаптация --- */
@media (max-width: 768px) {
    .custom-attribute-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        overflow-x: visible;
    }

    .custom-attribute-filter select,
    .custom-attribute-filter button {
        width: 100%;
        min-width: unset;
    }
}
