/* ─── Overlay ─────────────────────────────────────────────────────────────── */

#emp-overlay {
	position: fixed;
	inset: 0;                       /* top/right/bottom/left: 0 */
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	/* padding keeps the popup away from viewport edges on small screens */
	padding: 16px;
	box-sizing: border-box;
}

#emp-overlay[hidden] {
	display: none !important;
}

#emp-overlay.emp-visible {
	opacity: 1;
}

/* ─── Backdrop ────────────────────────────────────────────────────────────── */

#emp-backdrop {
	position: absolute;
	inset: 0;
	/* background-color is set via JS from admin config */
	cursor: pointer;
}

/* ─── Popup container ─────────────────────────────────────────────────────── */

#emp-popup {
	position: relative;
	z-index: 1;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
	max-height: 90vh;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	transform: translateY(20px);
	transition: transform 0.3s ease;

	/* max-width is set per breakpoint via inline CSS from admin settings */
	width: 100%;
	max-width: 900px; /* default fallback */
}

#emp-overlay.emp-visible #emp-popup {
	transform: translateY(0);
}

/* ─── Close button ────────────────────────────────────────────────────────── */

#emp-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	color: #ffffff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

#emp-close:hover,
#emp-close:focus {
	background: rgba(0, 0, 0, 0.8);
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

/* ─── Content area ────────────────────────────────────────────────────────── */

#emp-content {
	width: 100%;
}

/* Strip top/bottom margin from the cloned Divi section so it fits cleanly */
#emp-content > .et_pb_section {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */

/* Mobile */
@media (max-width: 767px) {
	#emp-overlay {
		align-items: center;
		padding: 12px;
	}

	#emp-popup {
		width: 100%;
		border-radius: 8px;
		max-height: 90vh;
		/* max-width override applied via inline CSS from admin settings */
	}

	#emp-close {
		top: 10px;
		right: 10px;
	}
}
