#mps-coupon-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	opacity: 1;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mps-coupon-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	display: none;
}

.mps-coupon-card {
	position: relative;
	background: #ffffff;
	border-radius: 18px;
	padding: 32px;
	width: min(600px, calc(100% - 32px));
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.mps-coupon-card button {
	font-family: inherit;
}

#mps-coupon-close {
	position: absolute;
	border: none;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	top: 16px;
	right: 16px;
	cursor: pointer;
}

.mps-coupon-content h2 {
	font-size: 28px;
	margin: 0 0 12px;
	color: #011a4b;
}

.mps-coupon-content p {
	margin: 0 0 12px;
	color: #1d1d1d;
	line-height: 1.4;
}

	.mps-coupon-discount {
		display: flex;
		align-items: center;
		gap: 10px;
		margin: 20px 0 12px;
		font-size: 18px;
		color: #d60027;
	}

.mps-coupon-discount strong {
	display: inline-block;
	background: #fdecea;
	padding: 6px 12px;
	border-radius: 8px;
}

.mps-coupon-discount span {
	font-weight: 700;
	letter-spacing: 1px;
}

.mps-coupon-subtext {
	font-size: 14px;
	color: #444;
	margin-bottom: 24px;
}

.mps-coupon-form {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mps-coupon-form-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mps-coupon-form label {
	font-weight: 600;
	font-size: 14px;
	color: #002b7d;
}

.mps-coupon-form input {
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid #dedeed;
	font-size: 16px;
	width: 100%;
	box-sizing: border-box;
}

.mps-coupon-form button {
	margin-top: 4px;
	border: none;
	border-radius: 12px;
	padding: 12px 16px;
	background: #002b7d;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mps-coupon-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 43, 125, 0.4);
}

.mps-coupon-status {
	margin-top: 6px;
	min-height: 22px;
	font-size: 14px;
}

.mps-coupon-success {
	color: #0b8b4f;
}

.mps-coupon-error {
	color: #dc1f2d;
}

.mps-coupon-success-screen {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	text-align: center;
	padding: 28px 20px;
	font-size: 16px;
	color: #002b7d;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
	width: 100%;
	max-width: 460px;
	margin: 28px auto 0;
}

.mps-coupon-card.mps-success-mode {
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.mps-coupon-card.mps-success-mode .mps-coupon-content,
.mps-coupon-card.mps-success-mode .mps-coupon-form {
	display: none;
}

.mps-coupon-success-screen.mps-coupon-hidden {
	display: none;
}

.mps-coupon-success-screen h3 {
	margin: 0;
	font-size: 22px;
}

.mps-coupon-success-close {
	border: none;
	background: #002b7d;
	color: #fff;
	padding: 12px 30px;
	border-radius: 16px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
}

/* Email coupon highlight (injected via HTML template) */
.email-coupon-code {
	display: inline-block;
	margin: 18px 0;
	padding: 12px 16px;
	background: #f1f5ff;
	border: 1px dashed #002b7d;
	border-radius: 14px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #002b7d;
}

.mps-coupon-success-message {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
	color: #0f275a;
}

.mps-coupon-success-badge {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: #fde9ee;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d60027;
	font-size: 36px;
	font-weight: 700;
	box-shadow: 0 10px 25px rgba(214, 0, 39, 0.3);
}

@media (min-width: 900px) {
	.mps-coupon-card {
		width: 480px;
	}

	.mps-coupon-content h2 {
		font-size: 26px;
	}
}

@media (max-width: 600px) {
	.mps-coupon-card {
		width: calc(100% - 32px);
		padding: 24px;
		border-radius: 16px;
	}

	.mps-coupon-content h2 {
		font-size: 22px;
	}
}
