.loader-overlay {
  position: fixed;
  inset: 0;
  background: #FAFFF9;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 24px;
}

.loader-logo {
  display: flex;
  align-items: center;
  width: 10rem;
}

.loader-logo-box {
  width: 52px;
  height: 52px;
  background: #005426;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo-box svg {
  width: 30px;
  height: 30px;
  fill: #A8D5B5;
}

.loader-logo-name {
  font-size: 26px;
  font-weight: 700;
  color: #1A2B22;
  letter-spacing: 3px;
}

.loader-bar-track {
  width: 200px;
  height: 4px;
  background: #EAF5EE;
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: #005426;
  border-radius: 99px;
  animation: barFill 1.8s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes barFill {
  0% {
    width: 0%;
  }
  60% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}

.loader-dots {
  display: flex;
  gap: 8px;
}

.loader-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: dotPulse 1.2s ease-in-out infinite;
}

.loader-dot:nth-child(1) {
  background: #005426;
  animation-delay: 0s;
}

.loader-dot:nth-child(2) {
  background: #289C5E;
  animation-delay: .2s;
}

.loader-dot:nth-child(3) {
  background: #A8D5B5;
  animation-delay: .4s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    transform: scale(1);
    opacity: .5;
  }
  40% {
    transform: scale(1.4);
    opacity: 1;
  }
}

.loader-label {
  font-size: 13px;
  color: #3E5646;
  letter-spacing: 0.4px;
}

