@media (max-width: 5440px){
    .product-item{
        width:33.33%;
    }
    .product-addcart{
        opacity: 0;
    }
}

@media (max-width: 850px){
    .product-item{
        width:50%;
    }
    .product-addcart{
        opacity: 1;
    }
}

@media (max-width: 600px){
    .product-item{
        width:100%;
    }
}

.product-list{
    display: flex;
    flex-wrap: wrap;
}
.product-item{
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}
.product-item-inner{
    padding: 1px;
    transition: box-shadow ease-in-out .15s;
}
.product-item-inner:hover{
    box-shadow: 0px 1px 10px rgba(0, 0, 0, .1);
}
.product-item-loading{
    animation: background-pulse 1.5s infinite;
}
.product-thumbnail{
    display: flex;
    justify-content: center;
    height: 254px;
}
.product-img{
    width:250px;
}
.product-title{
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 16px;
    height:32px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}
.product-title-a{
    white-space: normal;
}
.product-title-a:hover{
    text-decoration: underline;
}
.product-stock{
    font-size: 13px;
    color: #999;
    line-height: 20px;
}
.product-stock-status{
    font-weight: 500;
}
.product-price{
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
}
.product-price-numeric{
    color:#cb2245
}
.product-price-numeric2{
    color:#b2b2b2;
    font-size: 0.85em;
    text-decoration: line-through;
}
.product-addcart{
    margin: 10px auto;
    transition: opacity ease-in-out .15s;
}
.product-item:hover .product-addcart{
    opacity: 1;
}
#productshowmore{
    text-align: center;
    line-height: 40px;
    margin-top: 20px;
    font-size: 14px;
}