/* ===== PLUZZPAY PRELOADER ===== */
#pluzz-preloader {
  position: fixed; inset: 0;
  background: var(--brand-blue);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#pluzz-preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  width: 72px; height: 72px;
  background: white;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
.preloader-logo img { width: 52px; height: 52px; object-fit: contain; }
.preloader-name {
  color: white; font-size: 20px; font-weight: 700;
  letter-spacing: 2px; margin-bottom: 24px;
}
.preloader-dots { display: flex; gap: 8px; }
.preloader-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: dotBounce 1.2s ease-in-out infinite;
}
.preloader-dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes preloaderPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
@keyframes dotBounce {
  0%,80%,100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-10px); opacity: 1; background: white; }
}
