@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(198, 161, 91, 0.25);
  }
  50% {
    box-shadow: 0 0 24px rgba(198, 161, 91, 0.45);
  }
  100% {
    box-shadow: 0 0 0 rgba(198, 161, 91, 0.25);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fade-in {
  animation: fade-in 0.7s ease-out both;
}

.animate-slide-up {
  animation: slide-up 0.8s ease-out both;
}

.animate-glow {
  animation: glow 2.8s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

