#pageLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#pageLoader.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  animation: loader-pulse 1.4s ease-in-out infinite;
}

.loader__dots {
  display: flex;
  gap: 7px;
}

.loader__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0e0e0e;
  animation: loader-bounce 1.2s ease-in-out infinite;
}

.loader__dot:nth-child(2) { animation-delay: 0.15s; }
.loader__dot:nth-child(3) { animation-delay: 0.30s; }

@keyframes loader-pulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.4; transform: scale(0.92); }
}

@keyframes loader-bounce {
  0%, 80%, 100% { transform: translateY(0);    opacity: 0.3; }
  40%            { transform: translateY(-8px); opacity: 1;   }
}
