/* DF Product Video: play badge + modal */
.df-video-thumb { position: relative; cursor: pointer; }
.df-video-thumb img { display: block; border-radius: 6px; }
.df-video-play {
  position: absolute; inset: auto auto 8px 8px;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.df-video-play svg { width: 16px; height: 16px; display:block; }

/* Modal */
#dfpv-modal { position: fixed; inset: 0; display: none; z-index: 999999; }
#dfpv-modal.open { display: block; }
#dfpv-modal .dfpv-backdrop { position:absolute; inset:0; background: rgba(0,0,0,.8); }
#dfpv-modal .dfpv-inner {
  position:absolute; left:50%; top:50%; transform: translate(-50%, -50%);
  width: min(100%, 980px); aspect-ratio: 16 / 9; background:#000;
}
#dfpv-modal iframe, #dfpv-modal video { width:100%; height:100%; border:0; display:block; background:#000; }
#dfpv-modal .dfpv-close {
  position:absolute; top:-44px; right:0; color:#fff; font-size:28px; line-height:1;
  background: transparent; border: 0; cursor: pointer;
}