/* Final minimal product-card layout. */
.c-product-card--showcase .c-product-card__body {
	display: flex;
	min-height: 126px;
	align-items: stretch;
	justify-content: flex-start;
	flex-direction: column;
	gap: 7px;
}

.c-product-card--showcase .c-product-card__title {
	min-height: 0;
	font-size: 18px;
}

.c-product-card__price {
	width: 100%;
	min-height: 25px;
	color: var(--calora-primary);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.7;
	text-align: center;
}

.c-product-card__price .amount,
.c-product-card__price bdi {
	white-space: nowrap;
}

.c-product-card__price .woocommerce-Price-currencySymbol {
	display: inline-block;
	padding-inline-start: 4px;
}

.c-product-card__price del {
	margin-inline-end: 5px;
	color: var(--calora-text-muted);
	font-size: .78em;
	font-weight: 500;
	opacity: .7;
}

.c-product-card__price ins {
	text-decoration: none;
}

.c-product-card__price-range {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	gap: 3px 5px;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.c-product-card__price-range small {
	color: var(--calora-text-muted);
	font-size: 10px;
	font-weight: 700;
}

.c-product-card--showcase .c-product-card__footer {
	width: 100%;
	margin-top: auto;
}

.c-product-card--showcase .c-product-card__action {
	display: inline-flex;
	width: 100%;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 7px 12px;
	border: 1px solid #d8d1c8;
	border-radius: 11px;
	background: #fff;
	color: #3f3933;
	font-size: 13px;
	font-weight: 800;
}

.c-product-card--showcase .c-product-card__action:hover {
	border-color: var(--calora-accent);
	background: var(--calora-accent-light);
	color: var(--calora-accent);
	transform: none;
}

@media (max-width: 767px) {
	.c-product-card--showcase .c-product-card__body {
		min-height: 108px;
		gap: 5px;
	}

	.c-product-card__price {
		min-height: 21px;
		font-size: 11.5px;
	}

	.c-product-card--showcase .c-product-card__title {
		font-size: 14px;
	}

	.c-product-card__price-range {
		gap: 3px 5px;
	}

	.c-product-card__price-range small {
		font-size: 7.5px;
	}

	.c-product-card--showcase .c-product-card__action {
		min-height: 38px;
		padding: 6px 9px;
		border-radius: 9px;
		font-size: 11px;
	}
}
