/* app/static/css/accessibility-reduced-motion.css
   prefers-reduced-motion (reduce) tercihi etkinse uygulama genelinde
   animasyonları/transisyonları devre dışı bırakır.
   Bu dosya küçük ve spesifik; ana CSS'ye eklemek yerine ayrı tutulabilir.
*/

@media (prefers-reduced-motion: reduce) {
  /* Genel: animasyon ve transition'ları kapat, scroll-behavior'ı otomatik yap */
  *, *::before, *::after {
    animation: none !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-property: none !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }

  /* panel toggle pulse'ı tamamen devre dışı bırak */
  .panel-toggle-pulse {
    animation: none !important;
    box-shadow: none !important;
  }
}
