/* SALE */

.old_price{
	text-decoration: line-through;
	margin-right: 7px;
	font-size:12px;
	min-width: max-content;
	margin-bottom: -5px;
}

.sale .product_card_price{
	color: #db3636;
}

.prices{
	display:flex;
	flex-direction:column;
	line-height: normal;
	align-items: baseline;
}

.prices--row {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 6px;
}

.prices--row .product_card_price {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	color: var(--vm-navy, #0e1a32);
}

html.dark .prices--row .product_card_price {
	color: var(--vm-lime, #9edc2a);
}

.prices--row .product_card_price.new_price {
	color: #db3636;
}

html.dark .prices--row .product_card_price.new_price {
	color: #f87171;
}

.prices--row .old_price {
	margin: 0;
	font-size: 0.78rem;
}

.prices__discount {
	display: inline-flex;
	align-items: center;
	padding: 1px 6px;
	border-radius: 6px;
	font-size: 0.72rem;
	font-weight: 600;
	color: #db3636;
	background: color-mix(in srgb, #db3636 10%, transparent);
}

.in_cart .prices{
	flex-direction: row;
}

.product_card_price, 
.product_card_sale_price {
	min-width:max-content;
}
