/* Orbit Gallery FX — fullscreen viewer chrome */
.gallery-fx-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.gallery-fx-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.gallery-fx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.gallery-fx-chrome {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px;
  pointer-events: none;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #f2ede2;
}
.gallery-fx-title {
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.gallery-fx-title h2 {
  margin: 0 0 4px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.gallery-fx-title p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.72;
}
.gallery-fx-presets {
  align-self: center;
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.55);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}
.gallery-fx-presets button {
  font: 600 0.78rem system-ui, sans-serif;
  color: rgba(242, 237, 226, 0.7);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.gallery-fx-presets button:hover {
  color: #fff;
}
.gallery-fx-presets button.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.gallery-fx-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 10, 14, 0.55);
  color: #f2ede2;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  transition: background 0.15s;
}
.gallery-fx-close:hover {
  background: rgba(255, 255, 255, 0.18);
}
body.gallery-fx-open {
  overflow: hidden;
}
