#custom-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  will-change: opacity;
}

.dot {
  width: 12px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
  animation: pulse 1s infinite ease-in-out;
  display: inline-block;
}

/* Dăm delay fiecărui punct */
.dot1 { animation-delay: 0s; background: #4b18a3; }   /* Violet ShopTastic */
.dot2 { animation-delay: 0.2s; background: #ffb929; } /* Galben ShopTastic */
.dot3 { animation-delay: 0.4s; background: #000000; } /* Negru ShopTastic */

/* Noua animație continuă fără blocaj */
@keyframes pulse {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1.4); opacity: 1; }
}

/* Reduce motion dacă utilizatorul are preferință (accesibilitate + viteză) */
@media (prefers-reduced-motion: reduce) {
  .dot {
    animation: none !important;
  }
}
