/**
 * 🔧 EMOCARD - CSS de correction pour le bouton son
 * Force l'affichage de l'icône SVG avec priorité absolue
 */

/* 🎯 CORRECTION ULTRA-SPÉCIFIQUE : Force l'affichage du SVG */
#testimonial-video-container .video-sound-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

#testimonial-video-container .video-sound-button svg,
#testimonial-video-container .video-sound-button .sound-icon {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
  flex-shrink: 0 !important;
}

#testimonial-video-container .video-sound-button svg path {
  stroke: #aa7b4c !important;
  fill: none !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 🔍 DEBUG : Bordure rouge pour visualiser le SVG */
#testimonial-video-container .video-sound-button.debug-mode svg {
  outline: 2px solid red !important;
}

#testimonial-video-container .video-sound-button.debug-mode svg path {
  outline: 1px solid blue !important;
}
