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

  .animate-bounce-short {
    animation: bounceShort 0.6s ease-in-out;
  }
}
