product grid style : demo 172

HTML

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

CSS

(Fonts required : Montserrat)
                        .product-grid{
                            background: #fff;
                            font-family: 'Montserrat', sans-serif;
                            text-align: center;
                            box-shadow: 0 0 15px rgba(0,0,0,0.05);
                        }
                        .product-grid .product-image{
                            overflow: hidden;
                            position: relative;
                        }
                        .product-grid .product-image a.image{ display: block; }
                        .product-grid .product-image img{
                            width: 100%;
                            height: auto;
                        }
                        .product-grid .product-image .pic-1{ transition: all 0.5s ease 0s; }
                        .product-grid:hover .product-image .pic-1{
                            opacity: 0;
                            transform: scaleX(1.5);
                        }
                        .product-grid .product-image .pic-2{
                            width: 100%;
                            height: 100%;
                            opacity: 0;
                            transform: rotateY(-90deg);
                            position: absolute;
                            top: 0;
                            left: 0;
                            transition: all 0.5s ease 0s;
                        }
                        .product-grid:hover .product-image .pic-2{
                            opacity: 1;
                            transform: rotateY(0);
                        }
                        .product-grid .product-new-label{
                            color: #fff;
                            background: #2f2f2b;
                            font-size: 13px;
                            font-weight: 600;
                            text-transform: capitalize;
                            padding: 3px 7px;
                            position: absolute;
                            top: 7px;
                            left: 7px;
                        }
                        .product-grid .product-view{
                            color: #444;
                            background: #fff;
                            font-size: 18px;
                            line-height: 40px;
                            width: 40px;
                            height: 40px;
                            opacity: 0;
                            position: absolute;
                            bottom: 9px;
                            right: 10px;
                            transition: all 0.3s ease 0s;
                        }
                        .product-grid:hover .product-view{ opacity: 1; }
                        .product-grid .product-view:hover{
                            color: #fff;
                            background: #c81f3e;
                        }
                        .product-grid .product-content{
                            text-align: left;
                            padding: 15px 15px 0;
                        }
                        .product-grid .title{
                            font-size: 15px;
                            font-weight: 600;
                            text-transform: capitalize;
                            letter-spacing: 0.5px;
                            margin: 0 0 12px;
                        }
                        .product-grid .title a{
                            color: #2f2f2b;
                            transition: all 0.3s ease 0s;
                        }
                        .product-grid .title a:hover{ color: #c81f3e; }
                        .product-grid .price{
                            color: #c81f3e;
                            font-size: 16px;
                            font-weight: 600;
                            width: calc(100% - 89px);
                            margin: 0 0 12px;
                            display: inline-block;
                        }
                        .product-grid .rating{
                            color: #2f2f2b;
                            font-size: 12px;
                            width: 85px;
                            padding: 0;
                            margin: 0;
                            list-style: none;
                            display: inline-block;
                        }
                        .product-grid .product-links{
                            font-size: 0;
                            padding: 0;
                            margin: 0 -15px;
                            list-style: none;
                            border-top: 1px solid #e7e7e7;
                            transition: all 0.3s ease 0s;
                        }
                        .product-grid .product-links li{
                            width: 38px;
                            margin: 0;
                            display: inline-block;
                        }
                        .product-grid .product-links li a{
                            color: #777;
                            background: #fff;
                            font-size: 14px;
                            text-transform: uppercase;
                            text-align: center;
                            line-height: 39px;
                            height: 38px;
                            display: block;
                            transition: all 0.2s ease-out;
                        }
                        .product-grid .product-links li a:hover{
                            color: #fff;
                            background-color: #c81f3e;
                        }
                        .product-grid .product-links li:nth-child(2){
                            width: calc(100% - 76px);
                            border-left: 1px solid #e7e7e7;
                            border-right: 1px solid #e7e7e7;
                        }
                        @media screen and (max-width: 990px){
                            .product-grid{ margin: 0 0 30px; }
                        }
                    
License Terms