/* ── lb_product_video ── */

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

.lb-pv__thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.lb-pv__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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; }

/* Número sobre el play icon */
.lb-pv__thumb-num {
  position: absolute;
  bottom: 4px;
  right: 5px;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1;
}

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

.lb-pv__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  z-index: 5;
}
