
.swiper-products{
    margin-top: 25px;
}
.swiper-products > h3{
    color: #333;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}
.swiper-products .item-stock{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    color: #333;
    padding: 16px;
    transition: box-shadow .3s;
    position: relative;
    text-decoration: none;
}
.swiper-products .swiper-wrapper{
    align-items: stretch;
}
.swiper-products .item-stock:after {
    content: "";
    background-color: #d2d2d2;
    width: 1px;
    position: absolute;
    top: 0;
    right: -.5px;
    bottom: 0;
    display: block;
    transition: .3s;
}
.swiper-products .item-stock .badgeContainer{
    position: absolute;
    top: 4px;
    left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.swiper-products .item-stock .badgeContainer span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}
.swiper-products .item-stock .badgeContainer span.stock{
    color: #000;
    background-color: #fde12c;
}
.swiper-products .item-stock .badgeContainer span.hit{
    color: #fff;
    background-color: #e9242e;
}
.swiper-products .item-stock > .item-stock__img{
    width: 100%;
    position: relative;
}
.swiper-products .item-stock > .item-stock__img img{
    object-fit: contain;
    width: 100%;
    height: 220px;
}
.swiper-products .item-stock > .item-stock__rating{
    margin-top: 12px;
    min-height: 16px;
}
.swiper-products .item-stock > .item-stock__rating > .rating-wrap{
    display: flex;
    align-items: center;
    gap: 6px;
}
.swiper-products .item-stock > .item-stock__rating > .rating-wrap > i{
    color: #f5d400;
}

.swiper-products .item-stock > .item-stock__name{
    height: 64px;
    overflow: hidden;
}
.swiper-products .item-stock > .item-stock__name h4{
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
    font-weight: bold;
    color: #333;
    margin: 5px 0 0;
}

.swiper-products .item-stock > .item-stock__price{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto;
}
.swiper-products .item-stock > .item-stock__price > small{
    display: inline-block;
    position: relative;
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}
.swiper-products .item-stock > .item-stock__price > small::after{
    position: absolute;
    content: "";
    left: 2px;
    top: 50%;
    right: 0;
    border-top: 2px solid #3a3a3a;
    transform: rotate(-5deg);
}
.swiper-products .item-stock > .item-stock__price > .price-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    margin-top: auto;
}
.swiper-products .item-stock > .item-stock__price > .price-wrapper > strong{
    font-size: 22px;
    font-weight: 700;
}
.swiper-products .item-stock > .item-stock__price > .price-wrapper > span{
    height: 32px;
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: #fee956;
    color: #333;
    font-size: 14px;
    border-radius: 12px;
    z-index: 10;
    flex-direction: column;
    line-height: 1;
    padding: 2px 35px;
}

.swiper-products .item-stock > .item-stock__price.stock > .price-wrapper > strong{
    color: var(--red);
}
.swiper-products .item-stock > .item-stock__price.megastock > .price-wrapper{
    padding: 1px;
    background-color: #e9242e;
    border-radius: 13px;
}
.swiper-products .item-stock > .item-stock__price.megastock > .price-wrapper > span{
    font-weight: 700;
}
.swiper-products .item-stock > .item-stock__price.megastock > .price-wrapper > strong{
    color: #FFFFFF;
}

.swiper-products .item-stock > .item-stock__btn{
    margin-top: 12px;
    font-weight: 600;
    min-width: 160px;
}

@media (max-width: 991px) {
    .swiper-products > h3{
        text-align: center;
    }
}