:root {
  --bg-radial: radial-gradient(circle at 10% 15%, rgba(220, 203, 139, 0.35), transparent 30%), radial-gradient(circle at 90% 10%, rgba(185, 155, 79, 0.2), transparent 32%);
}

.hero-pattern {
  background-image: var(--bg-radial);
}

.loader {
  width: 46px;
  height: 46px;
  border: 4px solid #e5e7eb;
  border-top-color: #b99b4f;
  border-radius: 9999px;
  animation: spin 0.8s linear infinite;
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-rise {
  animation: rise 0.65s ease-out both;
}

.animate-rise-delay {
  animation: rise 0.85s ease-out both;
}