.discount-popup {
	position: fixed;
	inset: 0;
	z-index: 9998;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.discount-popup.is-open { display: flex; }
body.discount-popup-open { overflow: hidden; }

.discount-popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 26, 36, 0.55);
}

.discount-popup-card {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 20px;
	max-width: 420px;
	width: 100%;
	padding: 36px 32px 32px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(15, 26, 36, 0.25);
}

.discount-popup-close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: none;
	border: 0;
	color: rgba(51, 85, 114, 0.5);
	cursor: pointer;
	padding: 6px;
	line-height: 0;
}
.discount-popup-close:hover { color: #335572; }

.discount-popup-body h2,
.discount-popup-success h2 {
	font-size: 24px;
	font-weight: 500;
	color: #335572;
	margin: 0 0 10px;
}
.discount-popup-body p,
.discount-popup-success p {
	font-size: 14px;
	color: rgba(51, 85, 114, 0.7);
	margin: 0 0 20px;
	line-height: 1.5;
}

.discount-popup-body form { display: flex; flex-direction: column; gap: 10px; }
.discount-popup-body input[type="email"] {
	padding: 13px 16px;
	border-radius: 10px;
	border: 1.5px solid rgba(51, 85, 114, 0.2);
	font-size: 15px;
	font-family: inherit;
	color: #335572;
}
.discount-popup-body input[type="email"]:focus { outline: none; border-color: #335572; }
.discount-popup-body button[type="submit"] {
	padding: 13px 16px;
	border-radius: 10px;
	border: 0;
	background: #335572;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s;
}
.discount-popup-body button[type="submit"]:hover { background: #294560; }
.discount-popup-body button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }

.discount-popup-error {
	color: #c0392b;
	font-size: 13px;
	margin-top: 12px !important;
	margin-bottom: 0 !important;
}

.discount-popup-code {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #335572;
	background: rgba(51, 85, 114, 0.06);
	border-radius: 10px;
	padding: 12px;
	margin: 0 !important;
}

@media (max-width: 480px) {
	.discount-popup-card { padding: 30px 22px 26px; }
}
