.product{
}

.product__figure{
    position: relative;
    overflow: hidden;
    display: block;
    width:100%;
}
.product__figure img{
    max-width: 100%;
    height: auto;
}

.product__caption{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background-color: #009bcf;
    background-color: rgba(0, 155, 207, 0.9);
    vertical-align: middle;
    text-align: center;
    transition: transform 400ms;
    transform: translateY(100%);

}

.product__caption a{
    color:#fff;
}

    .product__caption--outer{
        display: table;
        width: 100%;
        height: 100%;
    }

    .product__caption--inner{
        display:table-cell;
        vertical-align: middle;
    }

.product__figure:hover .product__caption{
    transform: translateY(0);
}

.product__info{
    padding:0;
    text-align: center;

}
.product__info__item{
    list-style: none;
}