/**
 * Upsell page styles for Lite version
 */

.efp-upsell-wrap {
	position: relative;
	min-height: 75vh;
	overflow: hidden;
	border-radius: 8px;
	margin-top: 16px;
}

.efp-upsell-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	filter: blur(4px);
	opacity: 0.35;
	pointer-events: none;
	user-select: none;
}

.efp-upsell-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
	padding: 48px 56px;
	text-align: center;
	max-width: 480px;
	width: 90%;
}

.efp-upsell-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: #f7f7f7;
	border-radius: 50%;
}

.efp-upsell-icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: #ee443e;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.efp-upsell-overlay h2 {
	font-size: 22px;
	font-weight: 700;
	color: #0f0e15;
	margin: 0 0 10px;
	line-height: 1.3;
}

.efp-upsell-overlay p {
	font-size: 15px;
	color: #64748b;
	margin: 0 0 28px;
	line-height: 1.6;
}

.efp-upsell-btn {
	display: inline-block;
	padding: 12px 32px;
	background: #ee443e;
	color: #fff !important;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none !important;
	transition: background 0.15s ease;
	border: none;
	cursor: pointer;
}

.efp-upsell-btn:hover {
	background: #d63a35;
	color: #fff !important;
}

.efp-upsell-btn:focus {
	outline: 2px solid #ee443e;
	outline-offset: 2px;
}

/* Ensure WP admin notices don't render inside the upsell area */
.efp-upsell-wrap .notice,
.efp-upsell-wrap .updated,
.efp-upsell-wrap .error,
.efp-upsell-wrap .update-nag {
	display: none;
}

/* Responsive */
@media (max-width: 600px) {
	.efp-upsell-overlay {
		padding: 32px 24px;
	}

	.efp-upsell-overlay h2 {
		font-size: 18px;
	}

	.efp-upsell-overlay p {
		font-size: 14px;
	}
}
