/* BJIKS — fast page loader (hides when DOM ready) */
.bjiks-page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #002147;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.bjiks-page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bjiks-loader-logo {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.bjiks-loader-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(212, 175, 55, 0.25);
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: bjiks-spin 0.75s linear infinite;
}

.bjiks-loader-text {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes bjiks-spin {
  to { transform: rotate(360deg); }
}
