/* ================= GLOBAL LOADER ================= */
/* 
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f3efe7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}


.pulse-loader {
  display: flex;
  gap: 6px;
}

.pulse-loader span {
  width: 4px;
  height: 20px;
  background: #ff7a00; 
  border-radius: 2px;
  animation: pulse 1s infinite ease-in-out;
}

.pulse-loader span:nth-child(1) { animation-delay: 0s; }
.pulse-loader span:nth-child(2) { animation-delay: 0.1s; }
.pulse-loader span:nth-child(3) { animation-delay: 0.2s; }
.pulse-loader span:nth-child(4) { animation-delay: 0.3s; }
.pulse-loader span:nth-child(5) { animation-delay: 0.4s; }

@keyframes pulse {
  0%, 100% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.5);
    opacity: 1;
  }
}

.loader-overlay.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
} */