product grid style : demo 101

HTML

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

CSS

(Fonts required : Alatsi)
                        .product-grid{ font-family: 'Alatsi', sans-serif; }
                        .product-grid .product-image{
                            position: relative;
                            overflow: hidden;
                        }
                        .product-grid .product-image a.image{ display: block; }
                        .product-grid .product-image img{
                            width: 100%;
                            height: auto;
                        }
                        .product-image .pic-1{
                            backface-visibility: hidden;
                            transition: all .5s ease 0s;
                        }
                        .product-grid .product-image:hover .pic-1{
                            opacity: 0;
                            transform: rotateY(-50deg);
                            transform-origin: top center;
                        }
                        .product-image .pic-2{
                            width: 100%;
                            height: 100%;
                            backface-visibility: hidden;
                            opacity: 0;
                            transform: rotateY(50deg);
                            transform-origin: top center;
                            position: absolute;
                            top: 0;
                            left: 0;
                            transition: all .5s ease 0s;
                        }
                        .product-grid .product-image:hover .pic-2{
                            opacity: 1;
                            transform: rotateY(0);
                        }
                        .product-grid .social{
                            padding: 0;
                            margin: 0;
                            list-style: none;
                            position: absolute;
                            top: 7px;
                            right: 7px;
                        }
                        .product-grid .social li a{
                            color: #999;
                            font-size: 16px;
                            text-align: center;
                            line-height: 31px;
                            height: 33px;
                            width: 33px;
                            margin: 0 0 7px;
                            border: 1px solid rgba(0,0,0,0.1);
                            border-radius: 50%;
                            display: block;
                            transform: rotateX(90deg);
                            transition: all 0.3s;
                        }
                        .product-grid .social li a:hover{
                            color: #fff;
                            background-color: #ff7b08;
                            border-color: #ff7b08;
                        }
                        .product-grid:hover .social li a{ transform: rotateX(0); }
                        .product-grid .product-content{
                            padding: 10px 0 0;
                            text-align: center;
                        }
                        .product-grid .rating{
                            font-size: 13px;
                            color: #f6bb43;
                            padding: 0;
                            margin: 0 0 7px;
                            list-style: none;
                        }
                        .product-grid .title{
                            font-size: 17px;
                            font-weight: 500;
                            text-transform: capitalize;
                            margin: 0 0 5px;
                        }
                        .product-grid .title a{
                            color: #333;
                            transition: all 0.5s ease;
                        }
                        .product-grid .title a:hover{ color: #ff7b08; }
                        .product-grid .price{
                            color: #333;
                            font-size: 16px;
                        }
                        @media screen and (max-width:990px){
                            .product-grid{ margin: 0 0 30px; }
                        }
                    
License Terms