/* Stili specifici per info_affiliazione: pop-up lenti sopra immagine */

.aff-pop { position: relative; }
.aff-pop .bubble {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 1200ms ease, transform 1200ms ease;
}
.aff-pop.in-view .bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delle transizioni per comparsa lenta */
.aff-pop.in-view .bubble:nth-child(1) { transition-delay: 100ms; }
.aff-pop.in-view .bubble:nth-child(2) { transition-delay: 300ms; }
.aff-pop.in-view .bubble:nth-child(3) { transition-delay: 500ms; }
.aff-pop.in-view .bubble:nth-child(4) { transition-delay: 700ms; }
.aff-pop.in-view .bubble:nth-child(5) { transition-delay: 900ms; }

/* Hover delicato (non invasivo) */
.aff-pop .bubble:hover {
  transform: translateY(0) scale(1.02);
}