/* Reel video standing in for the product thumbnail in WooCommerce loops. */
.saskreels-loopvid-wrap {
    position: relative;
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}
.saskreels-loopvid {
    width: 100%;
    aspect-ratio: 2 / 3; /* matches the store product thumbnail (300x450) */
    object-fit: cover;
    display: block;
    background: #000;
    cursor: pointer;
}
.saskreels-loopvid-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}
.saskreels-loopvid-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #fff;
}
