.custom-shop-cats {
    display: flex;
    justify-content: center;
    gap: 65px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.custom-shop-cat-item {
    width: 170px;
    text-align: center;
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 700;
}

.custom-shop-cat-img {
    width: 170px;
    height: 170px;
    background: #efede9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    overflow: hidden;
}

.custom-shop-cat-img img {
    width: 145px;
    height: 145px;
    object-fit: contain;
}

.custom-shop-cat-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .custom-shop-cats {
        gap: 25px;
    }

    .custom-shop-cat-item {
        width: 135px;
    }

    .custom-shop-cat-img {
        width: 135px;
        height: 135px;
    }

    .custom-shop-cat-img img {
        width: 115px;
        height: 115px;
    }

    .custom-shop-cat-title {
        font-size: 15px;
    }
}