@keyframes soft-breath {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.breath-on-hover:hover .breath-dot {
  animation: soft-breath 1.8s ease-in-out infinite;
}