/**
 * SOROTECNO ANIMATIONS & TRANSITIONS
 */

@keyframes pulseDeal {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.pulse-deal-badge {
  animation: pulseDeal 2s infinite ease-in-out;
}

@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.25) rotate(-5deg); }
  60% { transform: scale(0.95) rotate(5deg); }
}

.cart-bouncing {
  animation: cartBounce 0.5s ease-in-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pdp-modal-card {
  animation: fadeInScale 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes liveDotGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-accent);
  display: inline-block;
  animation: liveDotGlow 1.8s infinite;
}
