.producten {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	gap: 1em;
}

.product{
	border: 1px solid #bbb;
	width: 160px;
	height: 160px;
	max-width: 160px;
	max-height: 160px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	padding: 0.5em;
	display: flex;
	flex-direction: column; 
}

.product:hover{
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  opacity: 0.5; 
}

.image {
	display: flex;
    width: 100%;
	height: 116px;
    max-height: 10em; 
    overflow: hidden;
	align-items: center;
}

.image img{
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}

.webtitel{
	font-size: 0.7em;
	text-align: center;
	color: black;
}

.prijs{
	font-size: 1.6em;
	color: red;
	font-weight: bold;
	text-align: right;
}

.content {
	margin-top: auto;
}
