.plw-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999998;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.plw-popup-overlay.plw-active {
	display: flex;
	animation: plw-fade-in 0.25s ease;
}

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

.plw-popup-box {
	position: relative;
	background: #fff;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	animation: plw-pop-in 0.25s ease;
}

@keyframes plw-pop-in {
	from { transform: translateY(20px); opacity: 0; }
	to   { transform: translateY(0); opacity: 1; }
}

.plw-popup-close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: transparent;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #333;
	z-index: 2;
	padding: 4px 8px;
}

.plw-popup-close:hover {
	color: #000;
}

.plw-popup-content {
	padding: 30px;
}

.plw-popup-content > *:last-child {
	margin-bottom: 0;
}
