/* Amazon-style product gallery hover zoom */
.product-gallery-wrapper {
    position: relative;
    z-index: 2;
    overflow: visible;
}

.product-gallery-wrapper .woocommerce-product-gallery {
    position: relative;
}

.product-gallery-wrapper .woocommerce-product-gallery__image a {
    cursor: crosshair;
}

.khushboo-zoom-lens {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(0, 120, 215, 0.85);
    background: rgba(0, 120, 215, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    pointer-events: none;
    z-index: 15;
    display: none;
}

.khushboo-zoom-result {
    display: none;
    position: absolute;
    top: 0;
    left: calc(100% + 24px);
    width: min(100%, 520px);
    height: 600px;
    background: #fff;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.khushboo-zoom-result.is-visible {
    display: block;
}

.khushboo-zoom-result-inner {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-color: #fff;
}

@media (max-width: 1024px) {
    .khushboo-zoom-lens,
    .khushboo-zoom-result {
        display: none !important;
    }

    .product-gallery-wrapper .woocommerce-product-gallery__image a {
        cursor: pointer;
    }
}
