#initial-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.25s ease-out;
}
#initial-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}
#initial-loader .loader-mark {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#initial-loader .loader-ring {
  position: absolute;
  inset: 0;
  border: 3px solid #f1f1f1;
  border-top-color: #f97316;
  border-radius: 50%;
  animation: initial-loader-spin 0.9s cubic-bezier(0.5, 0.05, 0.5, 0.95) infinite;
}
#initial-loader .loader-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  animation: initial-loader-pulse 1.6s ease-in-out infinite;
}
@keyframes initial-loader-spin {
  to { transform: rotate(360deg); }
}
@keyframes initial-loader-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  #initial-loader .loader-ring { animation: none; border-top-color: #f1f1f1; }
  #initial-loader .loader-logo { animation: none; }
}
