/* ═══ PhotoSwipe Lightbox — Minimal CSS ═══ */

.pswp {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10000;
  display: none;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pswp.active { display: flex; align-items: center; justify-content: center; }

.pswp-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--glow-cyan);
  transition: opacity 0.3s;
}

.pswp-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 10001;
}

.pswp-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(10, 15, 26, 0.9);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pswp-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.pswp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
}

.pswp-nav.prev { left: 16px; }
.pswp-nav.next { right: 16px; }

.pswp-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  z-index: 10001;
}

@media (max-width: 600px) {
  .pswp-nav { display: none; }
  .pswp-img {
    max-width: 95vw;
    max-height: 80vh;
  }
}
