/* Pop-card overlay styles */
#popcard-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.pop-card {
	background: #090909;
	border-radius: 14px;
	max-width: 440px;
	width: 92%;
	padding: 18px;
	box-shadow: 0 20px 50px rgba(2,6,23,0.35);
	text-align: center;
	position: relative;
}

.pop-image {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
	margin-bottom: 12px;
}

.pop-close {
	position: absolute;
	right: 10px;
	top: 8px;
	background: transparent;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.pop-title {
	font-size: 18px;
	font-weight: 700;
	margin: 6px 0 4px;
}

.pop-desc {
	font-size: 14px;
	color: #5b6b7a;
	margin-bottom: 12px;
}

.btn-whatsapp {
	display: inline-block;
	background: #25D366;
	color: #fff;
	padding: 10px 16px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
}

.hidden { display: none; }

@media (prefers-color-scheme: dark) {
	.pop-card { background: #0f1724; color: #e6eef8; }
	.pop-desc { color: #9aa8b8; }
}
