.plazma-coupon-sale-container {
	max-width: 600px;
	margin: 40px auto;
	padding: 30px;
	text-align: center;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.plazma-coupon-image {
	margin-bottom: 30px;
}

.plazma-coupon-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.plazma-coupon-description {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	text-align: left;
}

.plazma-coupon-description p {
	margin: 0;
}

.plazma-coupon-button {
	margin-top: 30px;
}

.plazma-buy-button {
	display: inline-block;
	padding: 15px 40px;
	background: #d32f2f;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-size: 18px;
	font-weight: bold;
	transition: background 0.3s ease;
}

.plazma-buy-button:hover {
	background: #b71c1c;
	color: #fff;
	text-decoration: none;
}

.plazma-buy-button:active {
	background: #8b0000;
}

/* Success/Error messages */
.plazma-coupon-message {
	padding: 15px;
	margin: 20px 0;
	border-radius: 5px;
}

.plazma-coupon-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.plazma-coupon-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

