/* Container for the video layout overlaying the image */
.woo-product-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.woo-product-video-overlay iframe,
.woo-product-video-overlay video {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    object-fit: contain;
    /* Ensure clicks hit the video */
    pointer-events: auto;
}

/* Ensure the wrapper is relative so the absolute overlay is bounded precisely by the native image layout */
.woocommerce-product-gallery__image {
    position: relative !important;
}

.woocommerce-product-gallery__image[data-thumb] {
    position: relative;
}
