.foto-stage {
  width: min(72vw, 280px);
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(circle at 50% 35%, #2a3a62 0%, #111827 70%);
}

.foto-stage__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foto-extra-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}

.foto-extra {
  width: 100%;
  border: 1px solid #d6deea;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.foto-loading {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 20, 74, 0.72);
}

.foto-loading__box {
  text-align: center;
  color: #fff;
  padding: 1.4rem 1.6rem;
  max-width: 280px;
}

.foto-loading__spin {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 0.85rem;
  border: 4px solid rgba(198, 234, 28, 0.25);
  border-top-color: #c6ea1c;
  border-radius: 50%;
  animation: foto-spin 0.8s linear infinite;
}

.foto-loading__box p {
  font-weight: 800;
  font-size: 0.95rem;
}

.foto-loading__box small {
  display: block;
  margin-top: 0.35rem;
  opacity: 0.8;
}

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