/* ===== Fullscreen Camera Overlay ===== */
.fullscreen-camera {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  touch-action: none;
}

.fullscreen-camera__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

.fullscreen-camera__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.fullscreen-camera__btn {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.fullscreen-camera__btn--shutter {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid rgba(255,255,255,0.4);
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.fullscreen-camera__btn--shutter:active {
  transform: scale(0.88);
  background: #ddd;
}

.fullscreen-camera__btn--close,
.fullscreen-camera__btn--flip {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  font-size: 26px;
  color: #fff;
}

.fullscreen-camera__btn--close:active,
.fullscreen-camera__btn--flip:active {
  background: rgba(255,255,255,0.35);
}
