

.catalog-category-item {
    background: var(--bg-gray);
    border-radius: var(--border-radius-little);
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--text-main);
}
.catalog-category-item:hover{
    color: var(--accent-hover);
}

.catalog-category-item__img {
    display: flex;
    height: 170px;
    padding-top: 10px;
    justify-content: center;
    align-items: center;
}

.catalog-category-item__img img {
    max-height: 150px;
    transition: all 0.3s;
}

.catalog-category-item__info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 74px;
    justify-content: flex-end;
    padding: 26px 20px;
}

.catalog-category-item__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.22;
}

.catalog-category-item__description {
    font-size: 16px;
    margin-top: 15px;
}

.catalog-category-item:hover .catalog-category-item__img img {
    transform: scale(1.1);
}

@media screen and (max-width: 992px){
    .populars-slider .swiper-slide{
        flex: none;
        width: 300px;
    }
    .catalog-category-item{
        width: 300px;
    }

}
@media screen and (max-width: 768px){
    .slider-holder .slider-nav-prev.popular-prev,
    .slider-holder .slider-nav-next.popular-next
    {
        display: none;
    }
    .popular-categories .slider-holder{
        padding-top: 0;
    }
}
@media screen and (max-width: 576px){
    .populars-slider .swiper-slide,
    .catalog-category-item{
        width: 118px;
    }

    .catalog-category-item__img {
        height: 70px;
        padding-top: 5px;
    }

    .catalog-category-item__img img {
        max-height: 60px;
    }
    .catalog-category-item__info {
        padding: 10px;
        min-height: auto;
    }

    .catalog-category-item__title {
        font-size: 12px;
    }
}