.wpcf-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(20, 20, 20, 0.65);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	padding: 16px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.wpcf-popup-overlay[hidden] {
	display: none;
}

.wpcf-popup-overlay.wpcf-is-open {
	opacity: 1;
}

.wpcf-popup {
	position: relative;
	background: #fff;
	border-radius: 14px;
	max-width: 460px;
	width: 100%;
	padding: 36px 28px 28px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	transform: translateY(16px) scale(0.98);
	transition: transform 0.25s ease;
}

.wpcf-popup-overlay.wpcf-is-open .wpcf-popup {
	transform: translateY(0) scale(1);
}

.wpcf-popup-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f4f4f5;
	border: none;
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	color: #666;
	transition: background 0.15s ease, color 0.15s ease;
}

.wpcf-popup-close:hover {
	background: #e5e5e7;
	color: #222;
}

.wpcf-popup-image {
	display: block;
	width: 108px;
	height: 108px;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 auto 18px;
	border: 3px solid #fdece9;
	box-shadow: 0 4px 14px rgba(217, 83, 79, 0.25);
}

.wpcf-popup h2 {
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1.35;
	color: #1a1a1a;
}

.wpcf-popup-text {
	margin-bottom: 22px;
	color: #4a4a4a;
	text-align: left;
	font-size: 14px;
	line-height: 1.6;
	max-height: 220px;
	overflow-y: auto;
}

.wpcf-popup-text p {
	margin: 0 0 12px;
}

.wpcf-popup-text p:last-child {
	margin-bottom: 0;
}

.wpcf-popup-button,
.wpcf-campaign-link {
	display: inline-block;
	padding: 13px 32px;
	background: #e2574c;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.2px;
	box-shadow: 0 6px 16px rgba(226, 87, 76, 0.35);
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.wpcf-popup-button:hover,
.wpcf-campaign-link:hover {
	background: #cf483e;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(226, 87, 76, 0.4);
}

.wpcf-heart {
	position: fixed;
	pointer-events: none;
	z-index: 100001;
	font-size: 20px;
	color: #e2574c;
	transform: translate(-50%, 0);
	animation: wpcf-heart-float 1.2s ease-out forwards;
}

@keyframes wpcf-heart-float {
	0% {
		opacity: 1;
		transform: translate(-50%, 0) scale(0.8);
	}
	100% {
		opacity: 0;
		transform: translate(calc(-50% + var(--wpcf-drift, 0px)), -110px) scale(1.1);
	}
}
