.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.shake {
    animation: shake 0.4s ease-in-out;
}

@keyframes myBounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  .fa-bounce-custom {
    animation: myBounce 1s infinite;
  }
  

  .shipping-icon {
    animation: moveIcon 4.5s infinite alternate;
  }

  .status-text {
    animation: glow 4.5s infinite alternate;
  }

  @keyframes glow {
    0% { color: #000000; }
    50% { color: #ffc107; } /* İkon sağda olacak */
    80% { color: #000000; }
  }

  @keyframes moveIcon {
    0%, 100% { transform: translateX(0); } /* İkon solda */
    50% { transform: translateX(10px); }   /* İkon sağda */
  }