.loaderOverlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(239, 230, 221, 0.8); /* beige tone */
  backdrop-filter: blur(2px);
  z-index: 1000;
  animation: fadeIn 0.3s ease-in;
}

.loaderContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.horseshoe {
  width: 64px;
  height: 64px;
  border: 6px solid transparent;
  border-top: 6px solid #3f2d23; /* dark saddle brown */
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  position: relative;
  margin-bottom: 10px;
}

.horseshoe::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 8%;
  background-color: #3f2d23;
  top: 18%;
  left: 30%;
  border-radius: 1px;
  opacity: 0.9;
}

.text {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: #3f2d23;
  letter-spacing: 0.1rem;
  display: flex;
}

.dot {
  font-size: 2rem;
  animation: wave 1.2s infinite ease-in-out;
  color: #6e5b4b;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes wave {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
