/* Price Categories */

.price-categories {
    background: url(../img/wave.svg) center 126% / 3772px 124px no-repeat, var(--base-bg-beige);
    padding: 34px 0 140px;
}

.price-categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.price-categories-list__item {
    width: 380px;
    height: 80px;
    background: url(../img/bg-border.png) center / cover;
}

.price-categories-list__link {
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--base-color-beige);
}

@media(max-width: 1024px) {
    /* Price Categories */
    .price-categories-list__item {
        width: 360px;
        background: url(../img/bg-border.png) center / contain;
    }
}


@media(max-width: 767px) {
    .price-categories {
        background: url(../img/wave.svg) center 145% / 3772px 61px no-repeat, var(--base-bg-beige);
        padding: 40px 0 50px;
    }

    .price-categories-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: scroll;
        gap: 11px;
        padding: 0 15px;
    }

    .price-categories-list__item {
        flex-shrink: 0;
        width: 206px;
        height: 70px;
        background: url(../img/bg-border-mob.png) center / cover;
    }

    .price-categories-list__link {
        font-size: 16px;
        text-align: center;
        padding:  0 10px;
    }
}