/* Smart Price Display */
.product-price-display {
	display: flex;
	justify-content: center;
	font-weight: 100;
	font-size: 1.4rem;
	margin: 1rem 0 1.5rem 0;
}

.product-price-display .price-container {
	text-align: center;
}

/* Italic "from" text for configurable products */
.product-price-display i {
	margin-right: 0.3rem;
	font-style: italic;
}

/* Regular price styling */
.product-price-display .regular-price {
	display: block;
	color: #333;
}

/* Original price when there's a special price */
.product-price-display .original-price {
	display: block;
	text-decoration: line-through;
	color: #999;
}

/* Special price styling */
.product-price-display .special-price {
	display: block;
	font-weight: 600;
	color: #ff0000;
	margin-top: 5px;
}

/* Discount badge */
.product-price-display .discount-badge {
	display: inline-block;
	margin-top: 8px;
	background-color: #f7f6f0;
	color: #122C58;
	border-radius: 6px;
	padding: 2px 10px;
	font-size: 12px;
	font-weight: 500;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hide default Magento price on configurable products */
.configurable-product .product-info-price {
	display: none !important;
}

/* Responsive styles */
@media screen and (max-width: 767px) {
	.product-price-display {
		font-size: 1.2rem;
	}
	
	.product-price-display .discount-badge {
		font-size: 11px;
		padding: 2px 8px;
	}
}