/* поле фильтра */
.filter-wrapper {
    margin-bottom: 1.8rem;
}
.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #1e2f3e;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: -0.2px;
}
.filter-label svg {
    opacity: 0.7;
}
.filter-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border: 1px solid #cfdfed;
    border-radius: 20px;
    background: #ffffff;
    transition: 0.2s;
    outline: none;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.filter-input:focus {
    border-color: #2c7da0;
    box-shadow: 0 0 0 3px rgba(44,125,160,0.2);
}
/* блок цен */
.price-main-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.no-results {
    text-align: center;
    padding: 2.5rem 1rem;
    background: #fafcfd;
    border-radius: 28px;
    color: #5a6e7c;
    font-weight: 500;
    margin-top: 0.5rem;
    border: 1px dashed #bfd6e5;
}
/* счётчик результатов */
.result-stats {
    font-size: 0.85rem;
    color: #4a6f86;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 450;
}

@media (max-width: 550px) {

}