.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 9999;
}

.loader-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 125px;
}

.loader-circle {
  position: absolute;
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #000000;
  /* Branded Mambo Mia Gold/Brown */
  width: 100%;
  height: 100%;
  animation: spin 1s linear infinite;
}

.loader-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Fallback UI when JavaScript is disabled */

.noscript-fallback {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background: #ffffff;
  color: #1a1a1a;
}

.noscript-fallback img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.noscript-fallback h1 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.noscript-fallback p {
  margin: 0 0 1rem;
  max-width: 28rem;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #444;
}

.noscript-fallback .noscript-accent {
  color: #6b5a2e;
  font-size: 0.875rem;
}
