/* Shop polish base - safe */
.woocommerce ul.products li.product {
	transition: transform 0.22s ease;
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-2px);
}

.chc-product-card__images {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #fff;
}

.chc-product-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.35s ease;
}

.woocommerce ul.products li.product:hover .chc-product-card__image {
	transform: scale(1.03);
}