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

.lightbox-overlay.is-open {
	display: flex;
}

.lightbox-image {
	max-width: 100%;
	max-height: 100%;
	border-radius: 8px;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.lightbox-close:hover {
	background: rgba(255, 255, 255, 0.3);
}

body.lightbox-open {
	overflow: hidden;
}

.js-lightbox {
	cursor: zoom-in;
}
