/**
 * Catalog out-of-stock + product card image sizing.
 * Plain CSS so it ships without a Vite rebuild.
 */

/* Catalog cards: status badge only (no similar-product block). */
.product-oos--card .product-oos__related {
	display: none !important;
}

/* Square, slightly larger catalog images. */
.product-card {
	grid-template-rows: auto 1fr;
	min-height: 0;
}

.product-card__image-link {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	min-height: 0;
	max-height: none;
	overflow: hidden;
	background: #f2f0e9;
}

.product-card__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
}
