.viewer-wrapper {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
}

#viewer-container {
	position: relative;
	max-width: 90%;
	max-height: 85vh;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 50px rgba(0,0,0,0.8);
}

#main-img {
	display: block;
	max-width: 100%;
	max-height: 85vh;
	margin: auto;
	transition: opacity 0.2s ease-in-out;
}

.click-zone {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
	z-index: 10;
	cursor: pointer;
}

#zone-left {
	left: 0;
}

#zone-right {
	right: 0;
}

#zone-left:hover {
	background: linear-gradient(to right, rgba(255,255,255,0.05), transparent);
}

#zone-right:hover {
	background: linear-gradient(to left, rgba(255,255,255,0.05), transparent);
}

#zoom-lens {
	position: fixed; /* Changed from absolute */
	border: 3px solid #fff;
	border-radius: 50%;
	width: 300px;
	height: 300px;
	display: none;
	z-index: 9999; /* Higher than everything */
	pointer-events: none;
	box-shadow: 0 0 15px rgba(0,0,0,0.8);
	background-repeat: no-repeat;
}

#image-counter {
	position: absolute;
	top: 10px;
	right: 15px;
	color: #fff;
	background: rgba(0,0,0,0.6);
	padding: 2px 10px;
	border-radius: 15px;
	z-index: 20;
	font-family: sans-serif;
	font-size: 14px;
	pointer-events: none;
}
