/* ─── Page Loader ────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #f3fffc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

#page-loader img {
  width: clamp(80px, 15vw, 140px);
  height: auto;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.8;
  }
}

.loader-text {
  font-family: "AppleGaramond-Bold", Georgia, serif;
  color: #065f46;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 1px;
  margin: 0;
}

.loader-bar {
  width: clamp(160px, 30vw, 280px);
  height: 4px;
  background: #e5e7eb;
  border-radius: 50px;
  overflow: hidden;
}

.loader-bar-inner {
  height: 100%;
  width: 40%;
  border-radius: 50px;
  background: linear-gradient(90deg, #22c55e, #7c3aed);
  animation: slide 1.2s ease-in-out infinite;
}

@keyframes slide {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(400%);
  }
}
