.body{
    display:flex;
    justify-content: space-between;
    flex-direction: column;
}

#goods{
    width:100%;
    margin-top:32px;
}

/* Категории-таблетки */
.cat-tabs{
    display:flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0 12px;
    margin: 0 0 4px;
}

.cat-tab{
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    font-family: 'MontserratBold', Montserrat, sans-serif;
    font-size: 14px;
    line-height: 40px;
    font-weight: bold;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.cat-tab:hover{
    background: #000;
    color: #fff;
}

.cat-tab.is-active{
    background: #000;
    color: #fff;
}

.cat-tab:focus{
    outline: none;
}

#show_more_goods{
    display:block;
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    color: #000;
    text-decoration: none;
    line-height: 40px;
    width: 276px;
    height: 40px;
    text-align: center;
    border: 1px solid #000;
    cursor:pointer;
    margin:0 auto 80px;
    padding:0;
    transition: all 0.3s;
}

#show_more_goods:hover{
    background: #000;
    color:#fff;
}

#goods .basket_empty{
    flex-shrink: 0;
    flex-basis: 100%;
    display:flex;
    justify-content: center;
    margin: 50px auto 150px;
    font-family: Montserrat;
    color: #acacac;
    font-size: 14px;
}

@media (max-width: 576px) {
    .cat-tabs{
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .cat-tabs::-webkit-scrollbar{
        height: 3px;
    }

    .cat-tabs::-webkit-scrollbar-thumb{
        background: #acacac;
    }

    .cat-tabs::-webkit-scrollbar-track{
        background: transparent;
    }

    .cat-tab{
        height: 36px;
        padding: 0 14px;
        font-size: 13px;
        line-height: 36px;
    }
}
