.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
}

.loading-overlay.active {
  visibility: visible;
}

.loading-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%; /* if logo is circular */
  animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(239, 108, 72, 0.6); /* use your brand color */
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
    box-shadow: 0 0 30px 15px rgba(239, 108, 72, 0.3);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(239, 108, 72, 0.6);
  }
}
