product grid style : demo 198

HTML

(Icon Fonts Used : Fontawesome & CSS Framwork: Bootstrap)

CSS

(Fonts required : Poppins)
                    .product-grid{ font-family: 'Poppins', sans-serif; }
                    .product-grid .product-image{
                        overflow: hidden;
                        position: relative;
                        z-index: 1;
                    }
                    .product-grid .product-image a.image{display: block; }
                    .product-grid .product-image img{
                        width: 100%;
                        height: auto;
                    }
                    .product-grid .product-links{
                        font-size: 0;
                        width: 100%;
                        padding: 0 15px;
                        margin: 0;
                        list-style: none;
                        opacity: 0;
                        transform: translateY(-50%);
                        position: absolute;
                        top: 50%;
                        right: 0;
                        z-index: 1;
                        transition: all 0.3s ease 0s;
                    }
                    .product-grid:hover .product-links{ opacity: 1; }
                    .product-grid .product-links li{
                        width: 50%;
                        margin: 5px 0; 
                        display: inline-block;
                        transform: translateX(-50px);
                        transition: all 0.3s ease 0s;
                    }
                    .product-grid .product-links li:nth-child(even){
                        text-align: right;
                        transform: translateX(50px);
                    }
                    .product-grid:hover .product-links li{ transform: translateX(0); }
                    .product-grid .product-links li a{
                        color: #fff;
                        background-color: #8b4513;
                        font-size: 13px;
                        text-align: center;
                        line-height: 35px;
                        width: 35px;
                        height: 35px;
                        border-radius: 50%;
                        display: inline-block;
                        transition: all 0.4s ease;
                    }
                    .product-grid .product-links li a:hover{
                        color: #8b4513;
                        background-color: #fff;
                        box-shadow: 0 0 0 3px #8b4513,0 0 12px #8b4513;
                    }
                    .product-grid .product-content{
                        text-align: center;
                        padding: 15px 15px 5px;
                    }
                    .product-grid .title{
                        font-size: 17px;
                        font-weight: 400;
                        text-transform: capitalize;
                        margin: 0 0 10px;
                    }
                    .product-grid .title a{
                        color: #333;
                        transition: all 0.3s ease 0s;
                    }
                    .product-grid .title a:hover{ color: #8b4513; }
                    .product-grid .price{
                        color: #333;
                        font-size: 15px;
                        font-weight: 600;
                        text-align: left;
                        width: calc(100% - 94px);
                        display: inline-block;
                    }
                    .product-grid .rating{
                        color: #8b4513;
                        font-size: 12px;
                        width: 90px;
                        padding: 0;
                        margin: 0;
                        list-style: none;
                        display: inline-block;
                        vertical-align: top;
                    }
                    @media screen and (max-width: 990px){
                        .product-grid{ margin-bottom: 30px; }
                    }
                    
License Terms