.search-filters__link-as-button {
    display: inline-flex;
    background: rgb(var(--fdt-color-background-btn));
    border: 1px solid rgb(var(--fdt-color-border-btn));
    color: rgb(var(--fdt-color-text-btn));
    text-decoration: none;
    text-align: center;
    padding: 10px 15px;
    width: 200px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 18px;
}

.search-filters__product-list {
    display: flex;
    margin: 0;
    padding: 15px 0;
    flex-wrap: wrap;
}

.search-filters__product-list:has(.search-filters__no-search-result-page-empty) {
    justify-content: center;
}

.search-filters__product-item {
    margin: 0 4px 8px;
    justify-content: space-between;
    gap: 0;
}

.search-filters__no-search-result-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 74px;
}

.search-filters__no-search-result-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.search-filters__heading-no-result {
    font-size: 28px;
    font-weight: 700;
}

.search-filters__description-no-result {
    font-size: 18px;
}

.search-filters__no-search-result-wrapper--desktop {
    display: none;
}

.search-filters__no-search-result-wrapper--mobile {
    display: none;
}

.search-filters__heading-no-result--mobile,
.search-filters__description-no-result--mobile {
    font-size: 15px;
}

@media screen and (min-width: 768px) {
    .search-filters__no-search-result-wrapper--desktop {
        display: flex;
    }

    .search-filters__no-search-result-content {
        gap: 18px;
    }
}

@media screen and (max-width: 767px) {
    .search-filters__no-search-result-wrapper--mobile {
        display: flex;
    }
}
