
body {
    background: #e0e0e0;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
}

.wrapper {
    margin: auto;
}

.product {
    position: relative;
    width: 640px;
    background-color: #fff;
    margin: auto;
    overflow: hidden;
    margin-bottom: 20px;
}
.product > div {
    position: relative;
    z-index: 10;
}
.product .title {
    background-color: #333;
    color: #fff;
    padding: 10px;
    font-size: 18px;
    z-index: 20;
}
.product .text {
    text-align: left;
    width: 49.5%;
    display: inline-block;
    vertical-align: middle;
    color: #333;
    font-weight: 300;
    padding: 20px 0;
}
.product .text .code {
    padding: 0 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 5px;
}
.product .text .description {
    padding: 0 20px;
    margin-bottom: 10px;
    color: #757575;
}
.product .text .review {
    font-size: 12px;
    padding: 0 20px;
}
.product .text .review > span {
    vertical-align: middle;
}
.product .text .review > span.star-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}
.product .text .review .star-icon {
    background-image: url(https://cdn4.iconfinder.com/data/icons/small-n-flat/24/star-20.png);
}
.product .text .review .star-disable {
    opacity: 0.5;
}
.product .text .price {
    padding: 0 20px;
    font-size: 2.5em;
    margin-bottom: 10px;
}
.product .text .shop-actions {
    padding: 0 20px;
}
.product .text .shop-actions button {
    width: 100%;
    vertical-align: middle;
    background-color: #ffdd00;
    border: none;
    box-shadow: 0 5px 5px -2px rgba(0, 0, 0, 0.5);
    padding: 5px;
    font-size: 18px;
}
.product .preview {
    width: 49.5%;
    display: inline-block;
    vertical-align: middle;
    height: 240px;
}
.product .svg {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 0;
}


.image {
    width: 100%;
    height: 100%;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
}

.product:hover .preview .image {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}

