body,
div {
	margin: 0;
	box-sizing: border-box;
	font: 16px 'Arial', sans-serif;
}

.product {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.product__item {
	width: 270px;
	margin: 15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product__title {
	display: flex;
	height: 60px;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 0 30px;
	border-bottom: 1px solid #eee;
	font-weight: 700;
}

.product__img {
	margin-bottom: 30px;
	text-align: center;
	padding: 0 15px;
}

.product__img img {
	max-width: 100%;
}

.product__button-wrapper {
	width: 100%;
	padding: 15px;
	border-top: 1px solid #eee;
}

.product__button {
	background: #2ecc71;
	border-radius: 3px;
	border: none;
	width: 100%;
	height: 40px;
	color: #fff;
	font: 700 1rem 'Arial', sans-serif;
	transition: .3s;
	cursor: pointer;
	outline: none;
}

.product__button:hover {
	background: #27ae60;
	transition: .3s;
}

.product__price {
	display: flex;
	height: 60px;
	justify-content: center;
	align-items: center;
	width: 100%;
	border-top: 1px solid #eee;
	font: 700 1.125rem 'Arial', sans-serif;
}

.product__price-number {
	margin-right: 5px;
}

.some-form {
	box-sizing: border-box;
	width: 100%;
	max-width: 870px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 15px;
	background: #eee;
}

.some-form__input {
	border: 2px solid #eee;
	width: 290px;
	background: #f9f9f9;
	height: 50px;
	padding: 0 15px;
}