/**
 * DDL Add-to-cart button error message styles
 */

.cart-error-message {
	background-color: #ffe0e0;
	color: #d32f2f;
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: center;
	font-weight: bold;
	animation: ddl-cart-fadeIn 0.3s ease-in-out;
}

@keyframes ddl-cart-fadeIn {
	from { opacity: 0; transform: translateY(-10px); }
	to   { opacity: 1; transform: translateY(0); }
}
