/**
 * 9XO Core — product image placeholder fallback.
 * Keeps Motta products-listing image boxes sized when the WC placeholder is used.
 */

.motta-products-listing__image.nxo-product-image-fallback {
	display: block;
	width: 112px;
	height: 112px;
	flex-shrink: 0;
	object-fit: cover;
	object-position: center;
	background-color: #f7f6f9;
}

/* Defensive: if markup still lacks an image, reserve the box space. */
.motta-products-listing__box:not(:has(.motta-products-listing__image))::before {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 112px;
	height: 112px;
	margin-right: 20px;
	border-radius: 6px;
	background-color: #f7f6f9;
}
