/**
 * Drunel – Product Price styles.
 */

/* Wrapper */
.drunel-price {
	width: 100%;
	line-height: 1.4;
}

/* Row: prices + badge side by side */
.drunel-price__row {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

/* Prices container (original + current) */
.drunel-price__prices {
	display: inline-flex;
	flex-direction: row;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
}

/* Current / sale price */
.drunel-price__current {
	font-weight: 700;
	font-size: 24px;
	color: #333;
}

/* Original price (strikethrough) */
.drunel-price__original {
	text-decoration: line-through;
	font-size: 16px;
	color: #999;
}

/* "From" label */
.drunel-price__from {
	font-size: 14px;
	color: #777;
	font-weight: 400;
}

/* Discount badge */
.drunel-price__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	background-color: #e74c3c;
	color: #fff;
	padding: 2px 8px;
	border-radius: 4px;
}

/* Tax suffix */
.drunel-price__suffix {
	display: block;
	font-size: 12px;
	color: #999;
	margin-top: 2px;
}

/* Variable product: initial state hidden mode */
.drunel-price__initial--hidden {
	display: none;
}

/* Variable product: variation price container (hidden until JS reveals) */
.drunel-price__variation {
	display: none;
}

/* WC default price HTML reset inside our widget */
.drunel-price .woocommerce-Price-amount {
	font-size: inherit;
	color: inherit;
}

.drunel-price del {
	opacity: 1;
	color: inherit;
	font-size: inherit;
}

.drunel-price ins {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
}
