/* Micro Interactions CSS – Phase 2 */

/* Ripple effect for .btn-primary elements */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Pulse animation for delivery-option active once on load */
.pulse-once {
  animation: pulse 0.8s ease-out 1;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(41,197,27,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(41,197,27,0); }
  100% { box-shadow: 0 0 0 0 rgba(41,197,27,0); }
}
