/* Cart Recovery Suite — popups */

.crwc-popup {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999999;
}

.crwc-popup.crwc-popup-open {
	display: block;
}

.crwc-popup-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.crwc-popup-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 12px;
	padding: 36px 32px 32px;
	max-width: 420px;
	width: calc(100% - 40px);
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.crwc-popup-box h2 {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.3;
}

.crwc-popup-box p {
	margin: 0 0 18px;
	font-size: 15px;
	color: #555;
}

.crwc-popup-close {
	position: absolute;
	top: 10px;
	right: 14px;
	border: 0;
	background: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #999;
	padding: 4px;
}

.crwc-popup-close:hover {
	color: #333;
}

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

.crwc-popup-form button[type="submit"] {
	width: 100%;
	padding: 13px;
	font-size: 16px;
	border: 0;
	border-radius: 8px;
	background: #222;
	color: #fff;
	cursor: pointer;
}

.crwc-popup-form button[type="submit"]:hover {
	background: #000;
}

.crwc-popup-success {
	font-weight: 600;
	color: #2e7d32;
}
