/* ============================================================
   GTAdrenaline — visionneuse plein ecran pour les photos de fiche
   ============================================================
   S'applique a toute image .shop-card__photo ou .lieu-card__photo,
   sur n'importe quelle page, y compris celles generees par
   lieux-render.js (delegation d'evenement, pas d'ecoute directe).
   ============================================================ */

.shop-card__photo, .lieu-card__photo { cursor: zoom-in; }

.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(6, 8, 20, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease;
}
.lightbox-overlay.is-open { opacity: 1; visibility: visible; }

.lightbox-overlay img {
  max-width: 100%; max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  cursor: zoom-out;
}

.lightbox-close {
  position: fixed; top: max(16px, env(safe-area-inset-top, 0px)); right: 16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(18, 22, 58, 0.85); border: 1px solid rgba(247, 236, 221, 0.2);
  color: #F7ECDD; font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(35, 230, 192, 0.2); }

@media (prefers-reduced-motion: reduce) {
  .lightbox-overlay { transition: none; }
}
