/* WC Embed Video Gallery - LITE UI */
.woocommerce div.product div.images .woocommerce-product-gallery__image.wcvg-video,
.woocommerce div.product .wcvg-video{
  border-radius: var(--wcvg-radius, 14px);
  overflow: hidden;
}

/* Poster + Play button */
.wcvg-lite-btn{
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background-size: cover;
  background-position: center;
  background-color: #000;
  border: 0;
  cursor: pointer;
  border-radius: var(--wcvg-radius, 14px);
  outline: none;
}
.wcvg-lite-noimg{ background-image: none; background-color:#000; }

.wcvg-lite-play{
  position: absolute; inset: 0; margin: auto;
  width: 68px; height: 68px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.wcvg-lite-play:before{
  content: "";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-42%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #000;
}

/* Responsive embed container */
.wcvg-video .wcvg-embed,
.wcvg-video .wcvg-embed iframe,
.wcvg-video .wcvg-embed video{
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.wcvg-video .wcvg-embed{
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--wcvg-radius, 14px);
}
.wcvg-video .wcvg-embed iframe,
.wcvg-video .wcvg-embed video{
  position: absolute;
  inset: 0;
  border-radius: var(--wcvg-radius, 14px);
}

/* Thumbs */
.wcvg-thumb{ width: 100%; height: auto; display: block; border-radius: 8px; }
