
#products_container{
	width:100%;
	padding:0 2em;
}

.card{
	text-align: center;
	/*height: 600px;*/
	width: 600px;	
	border-radius: var(--border_radius);
	padding: 1em 0;
	margin:2em 1em;	
	background-color:#FFFFFFe0;
	filter: drop-shadow(4px 2px 6px #00000080);
	transition: box-shadow 0.3s, border 0.3s;
}

.card:hover .info .title, .card:hover .price{
	color:var(--links);
}

.product{
	display: flex;
	align-items: center;
	justify-content: center;
}

.product img{
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: contain;
	z-index: 2;
	transition: all 0.75s ease-out;
	margin:1em 0;
}

.price{
	display: block;
	margin:auto;
	font-size: 2em;
	margin-bottom:1.38rem;
	position: relative;
	color:var(--text);
}

.euro{
	position: absolute;
	top:-.2em;
}

.info .title
{
	font-size: 1.6em;
	text-align: center;
	color:var(--text);
	margin-bottom:1.38rem;
}
.info .title:hover{

}
@media only screen and (max-width: 780px) 
{
	#products_container {
		padding: 0;
	}


}

@media only screen and (max-width: 600px) 
{
	#products_container {
		padding: 0;
	}

	.card {
		margin-right: 0;
		margin-left: 0;
		width: 100%;
	    height: auto;
	}

	.product img{
		height: auto;
    	max-height: 300px;
	}
}
