/* Product Price Styling */
table.price {
	width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse;
}

table.price th {
	color: #333;
	font-weight: 600;
	padding: 12px 15px;
	text-align: left;
	border: 1px solid #e9ecef;
	vertical-align: middle;
	width: 150px;
}

table.price td {
	padding: 12px 15px;
	border: 1px solid #e9ecef;
	vertical-align: middle;
}

.price-display {
	display: flex;
	align-items: center;
	gap: 10px;
}

.product-price {
	font-size: 24px;
	font-weight: 700;
	color: #e74c3c;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.price-note {
	font-size: 14px;
	color: #666;
	font-weight: normal;
}

/* Responsive design */
@media (max-width: 768px) {
	table.price th {
		width: 120px;
		font-size: 14px;
		padding: 10px 12px;
	}

	table.price td {
		padding: 10px 12px;
	}

	.product-price {
		font-size: 20px;
	}

	.price-note {
		font-size: 12px;
	}
}

/* Price highlighting animation */
.product-price {
	animation: priceGlow 2s ease-in-out;
}

@keyframes priceGlow {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
