.zoom-container {
	position: relative;
	overflow: hidden;
	cursor: crosshair;
}

.zoom-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-repeat: no-repeat;
	background-size: 250%;
	background-position: center center;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 10;
}