/* Sale price red */
.woocommerce div.product p.price ins .woocommerce-Price-amount,
.woocommerce div.product p.price ins,
.woocommerce ul.products li.product .price ins .woocommerce-Price-amount,
.woocommerce ul.products li.product .price ins {
	color: #d62727 !important;
	font-weight: 700;
}

/* Image swatches */
.py-swatch-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 10px 0;
}
.py-swatch {
	border: 2px solid #ddd;
	border-radius: 10px;
	padding: 2px;
	background: #fff;
	cursor: pointer;
	overflow: hidden;
	line-height: 0;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.py-swatch img {
	width: 54px;
	height: 54px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}
.py-swatch.py-swatch-text {
	line-height: 1.2;
	padding: 6px 10px;
	font-size: 13px;
}
.py-swatch.selected {
	border-color: #d62727;
	box-shadow: 0 0 0 2px #d62727;
}
