#customCursorRightCol {
  /* Positionnement de base */
  position: fixed;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;

  /* Visuel */
  background: linear-gradient(135deg, #9b59b6, #6a1b9a);
  border: 2px solid #9b59b6;
  border-radius: 50%;

  /* --- CRUCIAL POUR EVITER LE CLIGNOTEMENT --- */
  pointer-events: none !important;
  /* ------------------------------------------ */

  /* Z-Index extrême pour passer au dessus d'Elementor */
  z-index: 2147483647 !important;

  /* Flexbox pour centrer le texte */
  display: flex; /* On le laisse en flex, on gère la visibilité avec l'opacité */
  justify-content: center;
  align-items: center;
  text-align: center;

  /* Centrage du point d'ancrage */
  transform: translate(-50%, -50%) scale(0.5); /* Part petit */

  /* Typographie */
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #fff;
  font-family: "Montserrat", sans-serif;

  /* Transitions */
  opacity: 0; /* Invisible par défaut */
  visibility: hidden; /* Caché pour le lecteur d'écran */

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition:
    opacity 0.2s ease,
    transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    /* Effet rebond */ width 0.2s ease,
    height 0.2s ease;
}

#customCursorRightCol span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

/* --- CLASSE D'AFFICHAGE --- */
#customCursorRightCol.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) scale(1); /* Taille normale */
}

/* --- ACTIF (CLIC) --- */
#customCursorRightCol.active {
  transform: translate(-50%, -50%) scale(0.85);
}

/* --- CONTEXT (CLIC DROIT) --- */
#customCursorRightCol.context {
  width: 14px !important;
  height: 14px !important;
  border: none !important;
  box-shadow: none !important;
}
#customCursorRightCol.context span {
  display: none;
}
