/* FITmedia Reels styles */
.fitmr-wrap{
  width:min(100%, var(--fitmr-maxw, 420px));
  margin:auto;
  overflow:visible;
}

.fitmr-reel-feed .swiper-wrapper{ gap: var(--fitmr-space,16px); }

.fitmr-reel-slide{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Video box s bielym pozadím + aspect-ratio */
.fitmr-video-box{
  width:100%;
  aspect-ratio: var(--fitmr-ratio, 1 / 1);
  background:#fff;
  border-radius:16px;
  overflow:hidden;
}
.fitmr-video-box video{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* Tlačidlá POD videom (bez overlay) */
.fitmr-controls{
  display:flex; justify-content:space-between; align-items:center;
}
.fitmr-controls button{
  display:flex; align-items:center; justify-content:center;
  width:48px; height:48px; border:1px solid #d0d0d0; border-radius:12px;
  background:#f7f7f7; cursor:pointer; font-size:28px; line-height:1;
}
.fitmr-controls button:active{ transform:scale(0.96); }

/* Loader/info slide (ak by si chcel zobraziť) */
.fitmr-loading{
  display:flex; justify-content:center; align-items:center;
  height:48px; color:#666; font-size:14px;
}
