.choose-category {
    position: relative;
    background: #c41d34;
    padding: 103px 0 134px;
    overflow: hidden;
}

.choose-category__ornament {
    position: absolute;
    width: 162px;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.choose-category__ornament--tl { top: 23px;    left: 23px; }
.choose-category__ornament--tr { top: 23px;    right: 23px; }
.choose-category__ornament--bl { bottom: 29px; left: 23px; }
.choose-category__ornament--br { bottom: 29px; right: 23px; }

.choose-category__inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.choose-category__title {
    font-family: 'Rousseau Deco', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin: 0 0 40px;
}

.choose-category__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 14px;
    column-gap: 9px;
    max-width: 1109px;
    margin: 0 auto;
}

.choose-category__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #fff;
    border-radius: 999px;
    font-family: 'Rousseau Deco', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: #000;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.choose-category__pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
}

@media (max-width: 767px) {
    .choose-category {
        padding: 30px 0 36px;
    }

    .choose-category__ornament {
        display: none;
    }

    .choose-category__inner {
        padding: 0 20px;
    }

    .choose-category__title {
        font-size: 31px;
        margin: 0 0 20px;
    }

    .choose-category__pills {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        row-gap: 10px;
        column-gap: 0;
        max-width: 100%;
    }

    .choose-category__pill {
        padding: 4px 12px;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        line-height: 1;
    }

    .choose-category__pill:hover {
        transform: none;
        box-shadow: none;
    }
}
