.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	font-size: 30px;
	color: #333;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.popup-close:hover {
	background: #fff;
	transform: rotate(90deg);
}

.popup-image-container {
	max-width: 90%;
	max-height: 90vh;
	animation: zoomIn 0.3s ease-in-out;
}

@keyframes zoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.popup-image-container img {
	max-width: 100%;
	max-height: 90vh;
	display: block;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
	.popup-close {
		width: 35px;
		height: 35px;
		font-size: 24px;
		top: 10px;
		right: 10px;
	}

	.popup-image-container {
		max-width: 95%;
		max-height: 95vh;
	}

	.popup-image-container img {
		max-height: 95vh;
	}
}