/* ── lb_product_video ── */

/* ── Thumbnail de vídeo ─────────────────────────────────────────────── */

/* Hereda dimensiones del .lb-gallery__thumb (72 × 96 px, flex col) */
.lb-pv__thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* sin border propio — se usa el .is-active del tema */
}

/* Imagen de preview: rellena el botón igual que las fotos */
.lb-pv__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Capa semitransparente + icono play */
.lb-pv__thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  transition: background 0.2s;
}

.lb-pv__thumb:hover .lb-pv__thumb-overlay,
.lb-pv__thumb:focus .lb-pv__thumb-overlay {
  background: rgba(0, 0, 0, 0.32);
}

.lb-pv__thumb:focus {
  outline: none;
}

/* ── Player de vídeo ─────────────────────────────────────────────────── */

/* Se monta dentro de .lb-gallery__main (ya position:relative, overflow:hidden) */
.lb-pv__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;   /* fondo blanco = igual que la imagen con letterbox */
  z-index: 5;
}
