/**
 * AltCtrl single product — Amazon-style hover zoom (desktop).
 */

@media (min-width: 992px) {
	body.altctrl-single-product-page.single-product .altctrl-zoom-stage {
		width: 100%;
	}

	body.altctrl-single-product-page.single-product .altctrl-zoom-stage .techmarket-single-product-gallery,
	body.altctrl-single-product-page.single-product .altctrl-zoom-stage .woocommerce-product-gallery {
		background-color: #f5f5f5;
		border: 1px solid #ececec;
		border-radius: 4px;
	}

	body.altctrl-single-product-page.single-product .altctrl-zoom-stage.is-zoom-enabled .woocommerce-product-gallery__image:has(img) {
		position: relative;
		cursor: crosshair;
	}

	body.altctrl-single-product-page.single-product .altctrl-zoom-stage.is-zoom-disabled .woocommerce-product-gallery__image,
	body.altctrl-single-product-page.single-product .altctrl-zoom-stage.is-zoom-disabled .woocommerce-product-gallery__image:has(video),
	body.altctrl-single-product-page.single-product .altctrl-zoom-stage.is-zoom-disabled .woocommerce-product-gallery__image:has(iframe) {
		cursor: default;
	}

	body.altctrl-single-product-page.single-product .altctrl-zoom-lens {
		position: absolute;
		top: 0;
		left: 0;
		width: 150px;
		height: 150px;
		border: 1px solid rgba(0, 0, 0, 0.12);
		background: rgba(255, 255, 255, 0.35);
		box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
		pointer-events: none;
		opacity: 0;
		transition: none;
		z-index: 6;
	}

	body.altctrl-single-product-page.single-product .altctrl-zoom-stage.is-zoom-enabled.is-hovering .altctrl-zoom-lens,
	body.altctrl-single-product-page.single-product .altctrl-zoom-stage.is-zoom-enabled:hover .altctrl-zoom-lens {
		opacity: 1;
	}

	body.altctrl-single-product-page.single-product .altctrl-zoom-stage.is-zoom-disabled .altctrl-zoom-lens,
	body.altctrl-single-product-page.single-product .altctrl-zoom-stage.is-zoom-disabled:hover .altctrl-zoom-lens {
		display: none !important;
		opacity: 0 !important;
	}

	body.altctrl-single-product-page.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
		display: none;
	}

	body.altctrl-single-product-page.single-product .techmarket-single-product-gallery-images .slick-track,
	body.altctrl-single-product-page.single-product .techmarket-single-product-gallery-images .slick-slide {
		transition: none !important;
	}
}

.altctrl-zoom-pane {
	display: none;
	position: fixed;
	z-index: 99999;
	background-color: #fff;
	background-repeat: no-repeat;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	pointer-events: none;
	transition: none;
	animation: none;
}

.altctrl-zoom-pane.is-visible {
	display: block;
}

@media (max-width: 991px) {
	body.altctrl-single-product-page.single-product .altctrl-zoom-lens,
	body.altctrl-single-product-page.single-product .altctrl-zoom-pane {
		display: none !important;
	}
}
