﻿/********************* shopping Demo-1 **********************/
.product-group-title {
    border-bottom: 1px solid #ef5777;
    margin-bottom: 20px;
}

.product-grid {
    font-family: Raleway,sans-serif;
    text-align: center;
    padding: 0 0 10px;
    border: 1px solid rgba(0,0,0,.1);
    z-index: 1;
    margin-bottom: 30px;
}

    .product-grid .product-image {
        position: relative;
        transition: all .3s ease 0s;
        min-height: 250px;
        max-height: 250px;
        overflow: hidden;
    }

        .product-grid .product-image a {
            display: block
        }

        .product-grid .product-image img {
            width: 100%;
            height: auto
        }

    .product-grid .pic-1 {
        opacity: 1;
        transition: all .3s ease-out 0s
    }

    .product-grid:hover .pic-1 {
        opacity: 1
    }

    .product-grid .pic-2 {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transition: all .3s ease-out 0s
    }

    .product-grid:hover .pic-2 {
        opacity: 1
    }

    .product-grid .social {
        width: 150px;
        padding: 0;
        margin: 0;
        list-style: none;
        opacity: 0;
        transform: translateY(-50%) translateX(-50%);
        position: absolute;
        top: 60%;
        left: 50%;
        z-index: 1;
        transition: all .3s ease 0s
    }

    .product-grid:hover .social {
        opacity: 1;
        top: 50%
    }

    .product-grid .social li {
        display: inline-block
    }

        .product-grid .social li a {
            color: #fff;
            background-color: #333;
            font-size: 16px;
            line-height: 40px;
            text-align: center;
            height: 40px;
            width: 40px;
            margin: 0 2px;
            display: block;
            position: relative;
            transition: all .3s ease-in-out
        }

            .product-grid .social li a:hover {
                color: #fff;
                background-color: #ef5777
            }

            .product-grid .social li a:after, .product-grid .social li a:before {
                content: attr(data-tip);
                color: #fff;
                background-color: #000;
                font-size: 12px;
                letter-spacing: 1px;
                line-height: 20px;
                padding: 1px 5px;
                white-space: nowrap;
                opacity: 0;
                transform: translateX(-50%);
                position: absolute;
                left: 50%;
                top: -30px
            }

            .product-grid .social li a:after {
                content: '';
                height: 15px;
                width: 15px;
                border-radius: 0;
                transform: translateX(-50%) rotate(45deg);
                top: -20px;
                z-index: -1
            }

            .product-grid .social li a:hover:after, .product-grid .social li a:hover:before {
                opacity: 1
            }

    .product-grid .product-discount-label, .product-grid .product-new-label {
        color: #fff;
        background-color: #ef5777;
        font-size: 12px;
        text-transform: uppercase;
        padding: 2px 7px;
        display: block;
        position: absolute;
        top: 10px;
        left: 0
    }

    .product-grid .product-discount-label {
        background-color: #333;
        left: auto;
        right: 0
    }

    .product-grid .rating {
        color: #FFD200;
        font-size: 12px;
        padding: 10px 0 10px;
        margin: 0;
        list-style: none;
        position: relative;
        z-index: -1
    }

        .product-grid .rating li.disable {
            color: rgba(0,0,0,.2)
        }

    .product-grid .product-content {
        background-color: #fff;
        text-align: center;
        padding: 9px 0;
        margin: 0 auto;
        z-index: 1;
        transition: all .3s
    }

    .product-grid:hover .product-content {
        bottom: 0
    }

    .product-grid:hover .product-image img {
        transform: scale(1.1)
    }

    .product-grid .title {
        min-height: 30px;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: .5px;
        margin: 0 0 10px;
        transition: all .3s ease 0s
    }

        .product-grid .title a {
            color: #ef5777
        }

            .product-grid .title a:hover, .product-grid:hover .title a {
                color: #ef5777
            }

    .product-grid .price {
        color: red;
        font-size: 17px;
        font-family: Montserrat,sans-serif;
        font-weight: 700;
        letter-spacing: .6px;
        margin-bottom: 8px;
        text-align: center;
        transition: all .3s
    }

        .product-grid .price span {
            color: #999;
            font-size: 13px;
            font-weight: 400;
            text-decoration: line-through;
            margin-left: 3px;
            display: inline-block
        }

    .product-grid .add-to-cart {
        color: #000;
        font-size: 13px;
        font-weight: 600;
        border: 1px solid green;
        padding: 10px;
        border-radius: 26px;
    }

@media only screen and (max-width:990px) {
    .product-row {
        margin: 0px -20px;
    }

    .product-grid {
        margin: 5px;
    }

        .product-grid .product-image {
            max-height: 150px;
        }
}
