@keyframes loader {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(120%); }
  100% { transform: translateX(240%); }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes steam {
  0% {
    opacity: 0.45;
    transform: translateY(0) scale(0.98);
  }
  50% {
    opacity: 1;
    transform: translateY(-6px) scale(1.04);
  }
  100% {
    opacity: 0.45;
    transform: translateY(0) scale(0.98);
  }
}

@keyframes bounceSoft {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-2px); }
}

@keyframes pulseSoft {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.35); }
  70% { box-shadow: 0 0 0 18px rgba(255, 122, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0); }
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body {
  animation: pageIn 0.45s ease;
}

.steam-loop {
  animation: steam 2.2s ease-in-out infinite;
}

.floating-card {
  animation: floatCard 3.2s ease-in-out infinite;
}

.pulse-soft {
  animation: pulseSoft 2.8s infinite;
}

.offer-card,
.menu-card,
.metric-card,
.why-card,
.coupon-card,
.timeline-offer,
.festival-card,
.review-card {
  animation: fadeUp 0.45s ease both;
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 12%, transparent 13%) center/15000%;
  opacity: 0;
  transition: background-size 0.45s ease, opacity 0.45s ease;
}

.ripple:active::after {
  background-size: 100%;
  opacity: 1;
  transition: 0s;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.22), transparent 50%);
  animation: spinGlow 10s linear infinite;
}

.glow-card > * {
  position: relative;
  z-index: 1;
}

@keyframes spinGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
