.categories-section{
    min-height: 800px;
    padding-top: 30px;
}

.categoryWrapper{

}

/* pagination start */

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    color: #fff;
    background-color: #858585;
    border-color: #858585;
}
.pagination>li>a, .pagination>li>span {
    color: #858585;
    padding: 2px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    font-weight: bold;
    font-size: 1.3em;
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
    color: #ffffff;
    background-color: rgba(134, 153, 97, 0.76);
    border-color: rgba(134, 153, 97, 0.76);
}
.pagination>li:last-child>a, .pagination>li:last-child>span,
.pagination>li:first-child>a, .pagination>li:first-child>span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    font-size: 1.3em;
}
.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover {
    color: #ccc;
    background-color: #ddd;
    border-color: #ddd;
    cursor: not-allowed;
}
/* pagination end */

.categories-section{
    padding: 30px 0 ;
    /*background: #eeeeee;*/
}
.product-list{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-table;
}
.product-preview{
    float: left;
    width: calc(33.3% - 16px);
    height: 460px;
    margin: 8px;
    background-color: #f5f5f5;
    padding: 15px;
    position: relative;
}

.product-preview .product-img-wrapper{
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}
.product-preview .product-detail-wrapper{
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}
.product-preview .product-view{
    width: 100%;
    height: 50px;
    position: relative;
    overflow: hidden;
    background-color: #f1833b;
    color: white;
    text-align: center;
    padding: 10px 4px;
    border-radius: 12px;
}
.product-preview .product-view:hover{
    width: 100%;
    height: 50px;
    position: relative;
    overflow: hidden;
    background-color: #ffa54a;
    color: white;
    text-align: center;
    padding: 10px 4px;
    border-radius: 12px;
    cursor: pointer;
}
.product-preview .product-view .pd-detail-span{
    vertical-align: middle;
    margin-right: 12px;
    line-height: 1;
    font-size: 18px;
    font-weight: bold;
    height: 100%;
    display: inline-block;
}
.product-preview .product-actions i{
    display: inline-block;
    vertical-align: middle;
    line-height: 30px;
    margin: 0 12px;
    color: white;
}
/*.product-preview .product-actions a:hover{
    text-decoration: none;
    color: #442511;
}*/
.product-preview .product-img-wrapper>img{
    position: absolute;
    top: 50%;
    left: 0;
    animation: bgZoomOut .2s;
    transform: scale(1) translate(0, -50%);
}
.product-preview .product-img-wrapper:hover > .product-img{
    cursor: pointer;
    animation: bgZoomin .2s;
    transform: scale(1.2) translate(0, -40%);
}
@keyframes bgZoomin {
    0%{
        transform: scale(1) translate(0, -50%);
    }
    100%{
        transform: scale(1.2) translate(0, -40%);
    }
}
@keyframes bgZoomOut {
    0%{
        transform: scale(1.2) translate(0, -40%);
    }
    100%{
        transform: scale(1) translate(0, -50%);
    }
}
.title-link:hover{
    text-decoration: none;
}
.pd-name{
    margin-top: 10px;
    margin-bottom: 8px;
}
.title-link:hover .pd-name{
    color: #f1833b;
}
.pd-price{
    margin-top: 10px;
    margin-bottom: 8px;
    padding-right: 1em;
    text-align: right;
}
.save-date{
    color: #5b5b5b;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
}
.pd-desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
}
.button-more-wrapper{
    min-height: 60px;
    position: relative;
}

@media (max-width: 991px){
    .product-preview{
        width: calc(50% - 16px);
    }
}

@media (max-width: 500px){
    .product-preview{
        width: calc(100% - 16px);
    }
}