/**
 * Bongoto Seller - Safe Product Video
 * Frontend styles.
 *
 * These styles are intentionally minimal so they do not fight with the theme.
 */

.bongoto-seller-product-video-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.bongoto-seller-product-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 640px;
    background: #000;
    outline: none;
    border: none;
}

.bongoto-seller-product-video::-webkit-media-controls-enclosure {
    border-radius: 0;
}

/* Loop video in product lists (shop/archive). */
.bongoto-seller-loop-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    background: #000;
    object-fit: cover;
    border-radius: 8px;
}

/* Optional helper for hover play (if used later via JS) */
.bongoto-seller-loop-video[data-hover-play="1"] {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bongoto-seller-loop-video[data-hover-play="1"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

/* Make sure WooCommerce gallery spacing does not break the layout. */
.woocommerce div.product .bongoto-seller-product-video-wrapper {
    margin-bottom: 1.5em;
}

/* Small screens */
@media (max-width: 600px) {
    .bongoto-seller-product-video {
        max-height: 420px;
    }

    .bongoto-seller-loop-video {
        max-height: 220px;
    }
}
