/* 1. Reset button styles to blend with your theme */
#native-share-btn{
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Adjust gap between icon and text */
  color: inherit; /* Inherit text color from your theme */
  opacity: 0.85;
  transition: opacity 300ms ease-out;
}
#native-share-btn:hover{
  opacity: 1;
}

/* 2. Define the animation */
@keyframes fill-white-pulse {
  0% { fill: transparent; }
  50% { fill: var(--basic); } /* The "Flash" color */
  100% { fill: transparent; }
}

/* 3. Apply animation ONLY on hover */
#native-share-btn:hover .share-icon circle {
  animation: fill-white-pulse 1s infinite;
}

/* 4. Stagger the animation so they light up one by one */
/* Top-right circle (First in the sequence visual logic, but SVG order matters) */
#native-share-btn:hover .share-icon circle:nth-child(1) {
  animation-delay: 0s;
}

/* Left circle (Middle) */
#native-share-btn:hover .share-icon circle:nth-child(2) {
  animation-delay: 0.2s;
}

/* Bottom-right circle (Last) */
#native-share-btn:hover .share-icon circle:nth-child(3) {
  animation-delay: 0.4s;
}