/* ==========================================================================
   ZEVARIKA - LUXURY ANIMATIONS & KEYFRAMES
   ========================================================================== */

/* Shimmer & Sheen Effect for Gold Accents */
@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.gold-shimmer-text {
  background: linear-gradient(
    120deg,
    #8a6729 0%,
    #b89758 25%,
    #745136 50%,
    #a8863a 75%,
    #8a6729 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s linear infinite;
  font-weight: 700;
}

[data-theme="dark"] .gold-shimmer-text {
  background: linear-gradient(
    120deg,
    #e5c158 0%,
    #fff3cb 25%,
    #f0d085 50%,
    #c4a15a 75%,
    #fff3cb 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ambient Floating Animation */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

@keyframes floatReverse {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(8px) rotate(-0.5deg);
  }
}

.float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

.float-reverse {
  animation: floatReverse 7s ease-in-out infinite;
}

/* Gentle Pulse for Badges & Buttons */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), 0 0 30px rgba(212, 175, 55, 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.45), 0 0 45px rgba(212, 175, 55, 0.2);
  }
}

.pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Countdown Card Flip / Pulse */
@keyframes countTick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.count-tick {
  animation: countTick 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Modal and Reveal Fade-in */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Rotating Mandala / Ornament */
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spin-slow {
  animation: spinSlow 40s linear infinite;
}

/* Sparkle twinkle */
@keyframes twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.sparkle-icon {
  display: inline-block;
  animation: twinkle 2.5s ease-in-out infinite;
}

/* Coupon Reveal Glow */
@keyframes couponGlow {
  0%, 100% {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  }
  50% {
    border-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  }
}

.coupon-glow {
  animation: couponGlow 2s infinite ease-in-out;
}
