/* Frontend styles for product price shortcode */

.dz-product-price-wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	direction: rtl;
	width: 100%;
}

.dz-product-price-wrapper.dz-is-on-sale {
	justify-content: space-between;
}

.dz-discount-badge {
	background-color: #F01B31;
	color: #fff;
	border-radius: 20px;
	padding: 4px;
	display: flex;
	align-items: center;
	gap: 2px;
	font-weight: bold;
	font-size: 14px;
	line-height: 10px;
	box-shadow: 0 0 32px #f01b311a;
}

.dz-discount-badge svg {
	width: 16px;
	height: 16px;
	display: flex;
}

.dz-price-details {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.dz-main-price-row {
	display: flex;
	align-items: center;
	gap: 4px;
	font-weight: bold;
	font-size: 18px;
	line-height: 16px;
	color: #56585B;
}

.dz-currency-icon {
	display: flex;
	align-items: center;
}

.dz-regular-price-row {
	font-size: 14px;
	line-height: 10px;
	color: #999;
	text-decoration: line-through;
}