/* Multi-State completion popup */

.ece-mc-popup-backdrop {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(15, 23, 42, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: ece-mc-fade 200ms ease-out;
}
@keyframes ece-mc-fade { from { opacity: 0; } to { opacity: 1; } }

.ece-mc-popup {
	position: relative;
	background: #ffffff;
	max-width: 520px;
	width: 100%;
	border-radius: 14px;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
	padding: 32px 28px 24px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ece-mc-popup-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: transparent;
	border: 0;
	font-size: 28px;
	line-height: 1;
	color: #6a7178;
	cursor: pointer;
	padding: 4px 8px;
}
.ece-mc-popup-close:hover { color: #1e293b; }

.ece-mc-popup-head { text-align: center; margin-bottom: 18px; }
.ece-mc-popup-icon { font-size: 44px; line-height: 1; margin-bottom: 8px; }
.ece-mc-popup-head h2 {
	margin: 0 0 6px;
	font-size: 24px;
	color: #1e293b;
	font-weight: 700;
}
.ece-mc-popup-sub { margin: 0; color: #475569; font-size: 14px; }

.ece-mc-popup-list {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
	background: #f8fafc;
	border-radius: 8px;
	padding: 12px 16px;
}
.ece-mc-popup-list li {
	display: flex;
	align-items: center;
	padding: 6px 0;
	color: #1e293b;
	font-size: 15px;
}
.ece-mc-popup-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #22c55e;
	color: #ffffff;
	font-weight: 700;
	font-size: 13px;
	margin-right: 12px;
	flex-shrink: 0;
}
.ece-mc-popup-state-name { font-weight: 500; }

.ece-mc-popup-cta-row { text-align: center; }
.ece-mc-popup-cta {
	display: inline-block;
	background: #f59e0b;
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	padding: 12px 28px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 150ms ease;
}
.ece-mc-popup-cta:hover { background: #d97706; color: #ffffff; }

