@mixin woolook-layout-2 {

    .woolook-layout-2{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        font-size: 16px;
        padding: 2em 0;
    
        .woolook-container{
            margin: 0 auto;
            padding: 0 15px;
            max-width: 100%;
        }
    
        .woolook-row{
            margin-left: -15px;
            margin-right: -15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
    
        .woolook-item-reviews{
        
            .star-rating{
                overflow: hidden;
                position: relative;
                height: 1em;
                line-height: 1;
                font-size: 12px;
                width: 5.4em;
                font-family: star;
    
                &:before {
                    content: '\53\53\53\53\53';
                    opacity: 1;
                    float: left;
                    top: 0;
                    left: 0;
                    position: absolute;
                    color: rgba( 0, 0, 0, 0.16 );
                }
    
                span {
                    float: left;
                    left: 0;
                    overflow: hidden;
                    padding-top: 1.5em;
                    position: absolute;
                    top: 0;
    
                    &:before {
                        content: '\53\53\53\53\53';
                        top: 0;
                        position: absolute;
                        left: 0;
                        color: rgba( 0, 0, 0, 0.5 );
                    }
                }
            }
    
        }
    
        .woolook-title,
        .woolook-subtitle{
            font-size: 1.7em;
            margin: 0 0 0 0;
            padding: 0;
            line-height: 1.4;
            display: block;
            
            &:before, &:after{
                display: none;
            }
        }
    
        .woolook-subtitle{
            font-size: 1.2em;
            margin: 0 0 1.5em 0;
        }
    
        // Products
        .woolook-item{
            padding: 0 15px;
            margin-bottom: 30px;
            flex: 1;
            position: relative;
        }
    
        .woolook-item-thumbnail{
            margin-bottom: 1.4em;
            position: relative;
            
            > a {
                display: block;
                text-decoration: none !important;
                border: 0 !important;
                outline: 0 !important;
            }
    
            img{
                display: block;
                max-width: 100%;
                border: none !important;
                transition: all 200ms;
            }

            &:hover .woolook-item-addtocart-container{
                opacity: 1;
                visibility: visible;

                .woolook-item-addtocart{
                    margin-top: 0;
                }
            }
        }
    
        .woolook-item-reviews{
            position: absolute;
            top: 15px;
            left: 30px;
            margin-bottom: 0.5em;
            
            .star-rating{
                margin: 0 auto;
            }
        }
    
        .woolook-item-title{
            font-size: 1.1em;
            font-weight: normal;
            margin: 0 0 0.3em 0;
            line-height: 1.4;
            color: #212121;
    
            > a {
                display: block;
                color: inherit !important;
                text-decoration: none !important;
                border: 0 !important;
            }
    
            &:hover > a{
                opacity: 0.7;
                color: inherit !important;
            }
        }
    
        .woolook-item-desc{
            font-size: 0.9em;
            margin: 0 0 10px 0;
            line-height: 1.4;
            margin-bottom: 0.5em;
        }
    
        .woolook-item-price{
            margin-bottom: 1em;
            line-height: 1.1;
            font-size: 1em;
            font-family: inherit;
    
            del{
                background: transparent;
                font-size: 0.85em;
                margin: 0 0.2em;
            }
    
            ins{
                background: transparent;
                text-decoration: none;
                color: red;
            }
        }
    
        .woolook-item-addtocart-container{
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: rgba( 0, 0, 0, 0.1 );
            opacity: 0;
            visibility: hidden;
            transition: all 200ms ease;

            .added_to_cart.wc-forward{
                color: white !important;
                fill: white !important;
                background: transparent !important;
                border: 0 !important;
                box-shadow: none !important;
                outline: 0 !important;
                padding: 0 !important;
                margin: 15px 0 0 !important;
            }

        }

        .woolook-item-addtocart{
            display: inline-block;
            border: 0;
            outline: 0 !important;
            font-size: 0.8em;
            line-height: 1.2 !important;
            padding: 1em 1.2em !important;
            margin-top: -50%;
            text-transform: uppercase;
            text-decoration: none !important;
            transition: all 200ms;
            color: white;
            background: #000;
            box-shadow: 2px 2px 10px rgba( 255, 255, 255, 0.1 );
            transition: all 200ms ease;
        }
    
    }
    
}