.product-card {
	display: flex;
	flex-direction: column;
}

.product-anchor {
	flex: 1; 
	display: flex; 
	flex-direction: column; 
	justify-content: space-between;
}

.product-anchor:hover {
	text-decoration: none;
}

.product-card-images {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
	align-items: center;
}

.product-card-images-full-size{
	height: 300px;
}

.product-card-images img {
	/*
	display: block;
	height: 100%;
	transition: opacity 0.3s ease;
	max-height: 300px;
	*/
	display: block;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.product-card-image-hover {
	position: absolute;
	inset: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

.product-card-images:hover .product-card-image-hover {
	opacity: 1;
}

.product-card-images:hover .product-card-image-default {
	opacity: 0;
}

.product-card-image-small {
	max-height: 135px !important;
}

.product-card-description {
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.75px;
	color: #181818;	
	font-size: 15px;
	line-height: 20px;
	left: 0;
	right: 0;
	text-align: center;
	padding-top: 15px;
	border-top: 1px solid #DDD;
}