* {box-sizing: border-box;}

.product-all {
	display: table;
}
.product-all .product-item {
	width: 300px;
	float: left;
	text-align: center;
	margin: 0 25px 25px 0;
	border-bottom: 2px solid #F5F5F5;
	background: white;
	font-family: "Open Sans";
	transition: .3s ease-in;
}
.product-all .product-item:nth-child(3n) {
	margin-right: 0;
}
.product-item:hover {border-bottom: 2px solid #fc5a5a;}
.product-item img {
	display: block;
	width: 100%;
}
.product-list {
	background: #fafafa;
	padding: 15px 0;
}
.product-list h3 {
	font-size: 18px;
	font-weight: 400;
	color: #444444;
	margin: 0 0 10px 0;
	height: 36px;
}
.price {
	font-size: 20px;
	color: #fc5a5a;
	display: block;
	margin-bottom: 0;
}
.button {
	text-decoration: none;
	display: inline-block;
	padding: 0 12px;
	background: #cccccc;
	color: white;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 28px;
	transition: .3s ease-in;
}
.product-item:hover .button {background: #fc5a5a;}