.pfl-categories{

    display:flex;
    justify-content:center;

    gap:16px;

    overflow-x:auto;

    padding:8px 0 28px;

    margin-bottom:20px;

    scrollbar-width:none;

}

.pfl-categories::-webkit-scrollbar{

    display:none;

}

.pfl-category{

    flex:0 0 auto;

    background:none;

    border:0;

    cursor:pointer;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

    min-width:72px;

    padding:0;

    outline:none;

    -webkit-tap-highlight-color:transparent;

}

.pfl-category:focus,
.pfl-category:focus-visible{

    outline:none;
    box-shadow:none;

}

.pfl-category__icon{

    width:56px;

    height:56px;

    border-radius:50%;

    border:1px solid #e6e6e6;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    transition:.2s;

}

.pfl-category__text{

    font-size:12px;

    line-height:1.3;

    text-align:center;

    color:#333;

}

.pfl-category:hover .pfl-category__icon{

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.pfl-category.is-active .pfl-category__icon{

    background:#ff6b00;
    color:#fff;
    border-color:#ff6b00;

}

@media (max-width:768px){

    .pfl-categories{

        justify-content:flex-start;

        gap:14px;

        padding-bottom:20px;

    }

    .pfl-category{

        min-width:68px;

    }

    .pfl-category__icon{

        width:52px;

        height:52px;

        font-size:22px;

    }

    .pfl-category__text{

        font-size:11px;

    }

}