/* Container overlay */
.bc-fvi-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  z-index: 99999;
  touch-action: pinch-zoom;
}
.bc-fvi-overlay.active { display: block; }
.bc-fvi-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
#bc-fvi-target {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: manipulation;
}
.bc-fvi-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 32px;
  color: #fff;
  background: rgba(0,0,0,0.35);
  border: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 8px;
}
.bc-fvi-wrap .bc-fvi-btn {
  position: absolute;
  right: 6px;
  bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.bc-fvi-wrap .bc-fvi-btn .bc-fvi-label { padding-top: 1px; }
@media (min-width: 769px){ .bc-fvi-wrap .bc-fvi-btn { display: none; } }
.bc-fvi-wrap img { display: block; width: 100%; height: auto; }
.bc-fvi-icon svg path { fill: currentColor; }
