/* Conteneur de l'image Raffy (widget Elementor) */
#raffy-card-img {
  position: relative;
  z-index: 20;
}

/* L'image elle-même */
#raffy-card-img img {
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
  transition: transform 0.4s ease;
}

/* Bulle de dialogue */
.raffy-bubble {
    
  position: absolute;
  top: 50%;
  right: -50px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 4px solid #4a9d92;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

/* Flèche de la bulle (pointe vers Raffy à gauche) */
.raffy-bubble::after {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-right: 25px solid #4a9d92;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

.raffy-bubble::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-right: 20px solid #ffffff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  z-index: 1;
}

.bubble-text {
  font-size: 20px;
  font-weight: 400!important;
  color: #2a4d47;
  text-align: center;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  line-height: 1.3;
  margin: 0;
}

/* Responsive */

@media (max-width: 1026px) {
  .raffy-bubble {
    top: 40%;
    right: -60px!important;
    padding: 12px 16px;
    min-width: 140px;
    max-width: 180px;
    border: 3px solid #4a9d92;
  }
}


@media (max-width: 768px) {
  .raffy-bubble {
    top: 40%;
    right: -120px!important;
  }
  
  .bubble-text {
    font-size: 14px;
  }
  
  .raffy-bubble::after {
    border-right-width: 20px;
    border-top-width: 15px;
    border-bottom-width: 15px;
    left: -17px;
  }
  
  .raffy-bubble::before {
    border-right-width: 16px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    left: -12px;
  }
}

@media (max-width: 500px) {
  .raffy-bubble {
    top: 30%;
    right: -100px !important;
    padding: 10px 14px;
    min-width: 120px;
    max-width: 150px;
    border: 2px solid #4a9d92;
  }
  
  .bubble-text {
    font-size: 14px;
  }
  
  .raffy-bubble::after {
    border-right-width: 15px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    left: -13px;
  }
  
  .raffy-bubble::before {
    border-right-width: 12px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    left: -9px;
  }
}
