/* ── LOADING AMSTEL ── */

.map-location-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(48px, 8vh, 80px);
  opacity: 1;
  transition: opacity 0.28s ease;
}

.map-location-loading.saindo {
  opacity: 0;
  pointer-events: none;
}

.map-location-loading.hidden {
  display: none;
}

.map-location-loading__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.map-location-loading__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  z-index: 1;
}

.map-location-loading__text {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading, 'Anton', sans-serif);
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  letter-spacing: 0.08em;
  color: rgba(255, 242, 210, 0.96);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  text-align: center;
  text-transform: none;
  width: min(90%, 480px);
}

.map-location-loading__error {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  width: min(90%, 380px);
}

.map-location-loading__error-text {
  font-family: var(--font-body, sans-serif);
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  color: rgba(255, 242, 210, 0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,.65);
  line-height: 1.5;
}

.map-location-loading__error-btn {
  background: var(--amstel-red, #C8102E);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 32px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .05em;
}

.map-location-loading__error-btn:active {
  background: #a50d26;
}