* {
	box-sizing: border-box;
}
.product-item {
	width: 300px;
	text-align: center;
	border-bottom: 2px solid #F5F5F5;
	background: rgba(255, 255, 255, 0.500);
	font-family: "Open Sans";
	transition: .3s ease-in;
	margin: 5px 5px 5px 5px;
	border-radius: 5px;
}
.product-item:hover {
	border-bottom: 2px solid blueviolet;
}
.product-item img {
	display: block;
	width: 100%;
	border-radius: 5px;
}
.product-list {
	background: rgba(255, 255, 255, 0);
	padding: 15px 0;
	border-radius: 5px;
}
.product-list h3 {
	font-size: 18px;
	font-weight: 400;
	color: #444444;
	margin: 0 0 10px 0;
}
.price {
	font-size: 25px;
	color: blueviolet;
	display: block;
	margin-bottom: 12px;
}
.button {
	text-decoration: none;
	display: inline-block;
	padding: 0 12px;
	background: purple;
	color: white;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 28px;
	transition: .3s ease-in;
}
.product-item:hover .button {
	background: blueviolet;
}

@media (max-width:375px) {						/*=== Телефон ===*/
	.price {
		font-size: 17px;
	}
	.card button {
		font-size: 13;
	}
}