.catalog-section-card-holder {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 80px 20px;
}

.label-box {
    position: absolute;
    top: 0px;
    left: 15px;
    z-index: 15;
}

.label-box__new,
.label-box__hit {
    font-family: var(--main-font-medium);
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    padding: 4px 12px;
    margin: 0 0 6px 0;
    border-radius: 20px;
    text-align: center;
}

.label-box__new {
    color: #000;
    background-color:#FFF040;  
}

.label-box__hit {
    color: #fff;
    background-color:#131313;
}

.catalog-section-card-slider-holder {
    position: relative;
}

.catalog-section-slider-next,
.catalog-section-slider-prev {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 1px solid #131313;
    border-radius: 50%;
    background: #fff;
}

.catalog-section-slider-next {
    top: calc(50% - 20px);
    right: -20px;
    
}

.catalog-section-slider-prev {
    top: calc(50% - 20px);
    left: -20px;
    transform: rotate(180deg);  
}

.catalog-section-slider-next.swiper-button-disabled,
.catalog-section-slider-prev.swiper-button-disabled {
    display: none;
}