.product {
    background: #fff;
    border: 1px solid #e1e4e6;
/*box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 8px 15px rgba(0,0,0,.07);*/
    overflow: hidden;

 -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.product {
    margin-bottom: 30px;
}

.product:hover {
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
    border-color: transparent;
}

.product .product-thumbnail {
    background-color: #fff!important;
    height: 280px;
    background-size: contain!important;
    /*background-size: cover!important;*/
    border-bottom: 1px solid #e1e4e6;
    position: relative;
}


.product .product-thumbnail a {

}


.product .product-title {
    font-size: 14px;
    margin: 0;
    color: #3c3b3e;
    padding: 15px 10px;
}

.product .product-meta {
    border-top:  1px solid #e1e4e6;
    margin-top: 0;
    position: relative;
    padding: 15px 10px;
}

.product .product-meta-sale-price {}

.product .product-meta-info {
    font-size: 11px;
}

.product .btn-add-to-basket {
    position: absolute;
    right: 25px;
    top: 10px;
}

.product .product-meta-price {
    font-size: 16px;
}

.product .tag {
    display: block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;

    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 29;
}
.product .brand {
    display: block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    background: #fff;
    color: #3c3b3e;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0;

    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 29;
}

.product .brand-inline {
    display: block;
    font-size: 75%;
    color: #818a91!important;
}

.product .product-show-details-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    background: rgba(68, 52, 41, 0.75);
    line-height: 200px;
    color: #fff;
    opacity: 0;
 -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.product:hover .product-show-details-info {
    opacity: 1;
}


/** V2 PRODUCTS **/
.v2-product {
    border:  1px solid #eee;
    margin-bottom: 30px;
    border-radius: 5px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
}

.v2-product:hover {
    box-shadow: 0 0 11px rgba(33,33,33,.2);
}

.v2-product__body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.v2-product__image {
    width: 180px;
    padding: 16px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.v2-product__image img {
    max-width: 100%;
    height: auto;
}

.v2-product__content {
    flex: 1;
    display:  flex;
    flex-direction: column;
    padding: 20px 15px;
    padding-right: 25px;
    justify-content: center;
}

.v2-product__age {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
}

.v2-product__age img {
    width: 100%;
    max-height: auto;
}

.v2-product__productlink {
    display: block;
    position: absolute;
    text-indent: -999em;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.v2-product__title {
    font-size: 14px;
    font-weight: 600;
    display:  block;
    margin-bottom: 5px;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .v2-product__title {
        font-size: 16px;
    }
}

.v2-product__title-brand {
    font-size: 11px;
    font-weight: bold;
    display:  block;
    margin-bottom: 5px;
}
@media (min-width: 1024px) {
    .v2-product__title-brand {
        font-size: 13px;
    }
}

.v2-product__description {
    font-size: 11px;
    display: block;
    margin:  0;
}

@media (min-width: 1024px) {
    .v2-product__description {
        font-size: 13px;
    }
}

.v2-product__footer {
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.v2-product__priceinfo {
    font-weight: 600;
    line-height: 1;
    padding: 8px;
}
.v2-product__price-before {
    font-size: 10px;
    display: block;
    margin-bottom: 4px;
}

@media (min-width: 1024px) {
    .v2-product__price-before {
        font-size: 11px;
    }
}

.v2-product__price {}
@media (min-width: 1024px) {
    .v2-product__price {
        font-size: 16px;
    }
}

.v2-product__saleinfo {
    padding: 8px;
}
.v2-product__sale-badge {
    background-color: #E2001A;
    color: white;
    border-radius: 5px;
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
}

.v2-product__add-to-cart {
    display: block;
    background: #2D83BF;
    color: white;
    padding: 8px 16px;
    position: relative;
    font-size: 26px;
}

.v2-product__add-to-cart:hover {
    color: white;
}

.v2-product__add-to-cart span {
    display: block;
    position: absolute;
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #2D83BF;
    background-color: white;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    top: 12px;
    right: 10px;
}
