/* ============================================================
   J.art Visual Panel - Diaporama plein ecran
   ============================================================ */
#jart-visual-panel {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: #050505;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
  pointer-events: none;
  overflow: hidden;
}
#jart-visual-panel.ouvert {
  opacity: 0.95;
  visibility: visible;
  pointer-events: auto;
}
#jart-visual-panel .jvp-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
#jart-visual-panel .jvp-slide.active { opacity: 1; }
#jart-visual-panel .jvp-voile {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
#jart-visual-panel .jvp-entete {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 22px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(212,175,55,.5);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
#jart-visual-panel .jvp-titre {
  color: #d4af37;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
#jart-visual-panel .jvp-fermer {
  background: transparent;
  border: 1px solid rgba(212,175,55,.6);
  color: #d4af37;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
#jart-visual-panel .jvp-fermer:hover {
  background: #d4af37;
  color: #000;
}
#jart-visual-panel .jvp-pied {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(212,175,55,.7);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: .95rem;
  letter-spacing: .15em;
  z-index: 2;
}
body.jvp-actif .chat-photo-bubbles {
  opacity: 0 !important;
  pointer-events: none !important;
}
.chat-photo-bubbles { transition: opacity .5s ease; }
.chat-fenetre { z-index: 9995 !important; }
.chat-bulle { z-index: 9996 !important; }
@media (max-width: 768px) {
  #jart-visual-panel .jvp-titre { font-size: .95rem; }
  #jart-visual-panel .jvp-entete { top: 16px; padding: 8px 16px; }
}
