/* ==========================================================================
   РИБА І ВЕСЛО — Keyframe Animations (Refined for Professional Look)
   ========================================================================== */

/* Removed cheap pulse and float animations to make it look like a real brand */

.btn-pulse {
  /* No constant pulse, just a clean hover state handled in style.css */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-pulse:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 27, 27, 0.4);
}

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

.gold-shimmer {
  /* Kept shimmer but made it very subtle */
  background: linear-gradient(
    90deg,
    rgba(200, 155, 60, 0) 0%,
    rgba(252, 224, 150, 0.15) 50%,
    rgba(200, 155, 60, 0) 100%
  );
  background-size: 200% 100%;
  animation: gold-shine 4s infinite linear;
}
