.woo-category-wrapper {
    width: 100%;
}

.woo-category-grid {
    display: grid;
    gap: 18px;
    width: 100%;
    align-items: start;

    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* TABLET */

@media(min-width:768px){

    .woo-category-grid{
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

}

/* DESKTOP */

@media(min-width:1200px){

    .woo-category-grid{
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
    .woo-category-image{
        width: 100px;
        height: 100px;
    }

    .woo-category-item span{
        font-size:15px;
        margin-top:12px;
    }

}
.woo-category-item {
    text-decoration: none;
    text-align: center;
    transition: .25s;
    min-width: 0;
    width: 100%;
}

.woo-category-item:hover {
    transform: translateY(-4px);
}

.woo-category-image {
    width: 72px;
    height: 72px;
    margin: auto;

    border-radius: 50%;
    overflow: hidden;

    background: #f5f5f5;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 15px rgba(0,0,0,.06);

    transition: .35s ease;
}

.woo-category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    display: block;
}

.woo-category-item span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #111;
    font-weight: 500;
}

/*
|----------------------------------------------------------
| MOBILE
| 4 × 2 = 8
|----------------------------------------------------------
*/

@media(max-width:768px){

    .woo-category-item:nth-child(n+9){
        display:none;
    }

    .woo-category-grid.show-all .woo-category-item{
        display:block;
    }

}

/*
|----------------------------------------------------------
| TABLET
| 6 × 2 = 12
|----------------------------------------------------------
*/

@media(min-width:768px) and (max-width:1199px){

    .woo-category-item{
        display:block;
    }

    .woo-category-item:nth-child(n+13){
        display:none;
    }

    .woo-category-grid.show-all .woo-category-item{
        display:block;
    }

}

/*
|----------------------------------------------------------
| DESKTOP
| 8 × 2 = 16
|----------------------------------------------------------
*/

@media(min-width:1200px){

    .woo-category-item{
        display:block;
    }

    .woo-category-item:nth-child(n+17){
        display:none;
    }

    .woo-category-grid.show-all .woo-category-item{
        display:block;
    }

}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/


@media(max-width:768px){

    .woo-category-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        align-items: start;
    }

    .woo-category-item {
        width: 100%;
        text-align: center;
        min-width: 0;
    }

    .woo-category-image {
        width: 60px;
        height: 60px;
        padding: 1px;
        margin: 0 auto;
    }

    .woo-category-item span {
        display: block;
        font-size: 11px;
        line-height: 1.25;
        margin-top: 6px;

        overflow: hidden;

        display: -webkit-box;
        -webkit-box-orient: vertical;

        min-height: 28px;
    }

}
.woo-category-item {
    min-width: 0;
}

.view-more-btn {
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: none;
    color: #111;

    padding: 2px 24px;
    border-radius: 999px;

    cursor: pointer;
    transition: .25s;

    font-size: 14px;
    font-weight: 500;
}

.view-more-btn i {
    font-size: 12px;
    transition: .25s;
}

.view-more-btn.active i {
    transform: rotate(180deg);
}

.view-more-btn:hover {
    transform: translateY(-2px);
}

.category-letter-icon {
    width: 100%;
    height: 100%;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 32px;
    font-weight: 700;

    text-transform: uppercase;
}

.live-category-image{
    transition:
        opacity .35s ease,
        transform 6s ease;
}

/* LIGHT FLOAT */

.live-category-image{
    animation:liveFloat 5s ease-in-out infinite;
}

@keyframes liveFloat{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.06);
    }

    100%{
        transform:scale(1);
    }

}