/* =============================================================
   Facebook Group Popup
   ============================================================= */
.hb-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: hb-popup-fade-in 0.25s ease;
}

@keyframes hb-popup-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.hb-popup-container {
	position: relative;
	max-width: 480px;
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
	animation: hb-popup-scale-in 0.3s ease;
	cursor: pointer;
}

@keyframes hb-popup-scale-in {
	from { opacity: 0; transform: scale(0.9); }
	to   { opacity: 1; transform: scale(1); }
}

.hb-popup-container img {
	display: block;
	width: 100%;
	height: auto;
}

.hb-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease;
	z-index: 2;
}

.hb-popup-close:hover { background: rgba(0, 0, 0, 0.7); }

.hb-popup-close svg {
	width: 14px;
	height: 14px;
	stroke: #ffffff;
	stroke-width: 2.5;
}

/* Mobile */
@media (max-width: 480px) {
	.hb-popup-container {
		max-width: 92vw;
		border-radius: 10px;
	}

	.hb-popup-close {
		top: 8px;
		right: 8px;
		width: 28px;
		height: 28px;
	}

	.hb-popup-close svg {
		width: 12px;
		height: 12px;
	}
}
