.pnw-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 16px;
	box-sizing: border-box;
}

.pnw-overlay.pnw-visible {
	display: flex;
}

.pnw-modal {
	background: #fff;
	border-radius: 14px;
	max-width: 420px;
	width: 100%;
	padding: 32px 28px 28px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	animation: pnw-pop 0.25s ease;
}

@keyframes pnw-pop {
	from { transform: scale(0.92); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.pnw-close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #888;
	padding: 4px 8px;
}

.pnw-close:hover {
	color: #222;
}

.pnw-title {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
}

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

.pnw-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 14px;
	border-radius: 8px;
	border: none;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
	transition: opacity 0.15s ease;
}

.pnw-btn:hover {
	opacity: 0.9;
}

.pnw-btn-newsletter {
	background: #1a1a1a;
	color: #fff;
}

.pnw-btn-whatsapp {
	background: var(--pnw-accent, #25D366);
	color: #fff;
}

.pnw-divider {
	display: flex;
	align-items: center;
	text-align: center;
	color: #999;
	font-size: 12px;
	margin: 18px 0;
	text-transform: uppercase;
}

.pnw-divider::before,
.pnw-divider::after {
	content: "";
	flex: 1;
	border-bottom: 1px solid #eee;
}

.pnw-divider span {
	padding: 0 10px;
}

.pnw-donation {
	margin: 18px 0 0;
	font-size: 12px;
}

.pnw-donation a {
	color: #999;
	text-decoration: underline;
}

.pnw-donation a:hover {
	color: #666;
}

@media (max-width: 480px) {
	.pnw-modal {
		padding: 26px 20px 22px;
	}
}
