#av-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.92);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#av-popup-overlay.actif {
  display: flex;
}

#av-popup-overlay img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border: 1px solid #c8bfaa;
  cursor: default;
}

#av-popup-fermer {
  position: fixed;
  top: 24px;
  right: 32px;
  font-family: 'Georgia', serif;
  font-size: 28px;
  color: #f0ece3;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

#av-popup-fermer:hover {
  opacity: 1;
}