/* NON-CRITICAL CSS - Loaded asynchronously after FCP */
/* Animations, scrollbar styles, and interactive elements */

/* ANIMATIONS - Load after FCP */
@keyframes loader {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.animate-loader {
  animation: loader 1.4s infinite ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out forwards;
}

/* SCROLLBAR UTILITIES */
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.no-scrollbar::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

.no-scrollbar::-webkit-scrollbar-thumb {
  background: transparent !important;
}

.no-scrollbar::-webkit-scrollbar-track {
  background: transparent !important;
}

@media (min-width: 768px) {
  .no-scrollbar {
    -ms-overflow-style: auto;
    scrollbar-width: auto;
  }
  .no-scrollbar::-webkit-scrollbar {
    display: initial;
    width: initial;
    height: initial;
  }
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
