.cats-list-v2 .root-cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.cats-list-v2 .root-cat-title {
    font-size: 24px;
    font-weight: bold;
}

.cats-list-v2 .to-go {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cats-list-v2 .to-go a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #e0f2f1;
    border-radius: 50%;
    text-decoration: none;
    color: #26a69a;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.cats-list-v2 .to-go a:hover {
    background-color: #26a69a;
    color: white;
}

.cats-list-v2 .sub-cats {
    padding-top: 20px;
}

.cats-list-v2 .sub-cat {
    background: #f6f5fa;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 25px;
    overflow: hidden;
}

.cats-list-v2 .sub-cat-image {
    width: 100%;
    height: 110px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 5px;
    border-top-left-radius: 25px; 
    border-top-right-radius: 25px;
}

.cats-list-v2 .sub-cat-title {
    font-size: 14px;
    color: #333;
    padding: 10px;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.cats-list-v2 .sub-cat-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1em;
    font-size: 14px;
    max-height: 4.2em;
    font-weight: 700;
}

.cats-list-v2  .sub-cats .row {
    margin: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.cats-list-v2  .sub-cats .row > .col, .cats-list-v2  .sub-cats .row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}