.wcssp-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

button#wcssp-close {
    padding: 10px;
}

.wcssp-popup {
	background: #ffffff;
	max-width: 620px;
	width: 100%;
	border-radius: 10px;
	padding: 36px 30px 30px;
	position: relative;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	animation: wcssp-fade-in 0.25s ease-out;
}

@keyframes wcssp-fade-in {
	from { opacity: 0; transform: translateY(-10px); }
	to   { opacity: 1; transform: translateY(0); }
}

.wcssp-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #999;
}
.wcssp-close:hover {
	color: #333;
}

.wcssp-heading {
	font-size: 22px;
	margin: 0 0 10px;
	color: #222;
}

.wcssp-text {
	font-size: 14px;
	color: #555;
	margin: 0 0 20px;
	line-height: 1.5;
}

#wcssp-form input[type="email"] {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
	margin-bottom: 12px;
}

.wcssp-submit {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	font-weight: 600;
	background: #d63638;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s ease;
}
.wcssp-submit:hover {
	background: #b32d2e;
}
.wcssp-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.wcssp-error {
	color: #d63638;
	font-size: 13px;
	margin-top: 10px;
}

.wcssp-coupon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 2px dashed #d63638;
	border-radius: 6px;
	padding: 12px 16px;
	margin-bottom: 10px;
}

#wcssp-coupon-code {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #222;
}

.wcssp-copy-btn {
	padding: 6px 12px;
	font-size: 13px;
	border: none;
	border-radius: 4px;
	background: #222;
	color: #fff;
	cursor: pointer;
}
.wcssp-copy-btn:hover {
	background: #444;
}

.wcssp-copied-msg {
	color: #2e7d32;
	font-size: 13px;
	font-weight: 600;
}

@media (max-width: 480px) {
	.wcssp-popup {
		padding: 28px 20px 24px;
	}
	.wcssp-heading {
		font-size: 19px;
	}
}
