/* Автобус36 — оверлей загрузки фото на главном изображении карточки */
.a36-upload-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 0.5rem; /* как rounded-lg */
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.a36-upload-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.a36-spinner {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 2px solid #E5E7EB;      /* светло-серый хвост */
  border-top-color: #EC782B;       /* фирменный оранжевый */
  animation: a36-spin 0.9s linear infinite;
}

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

/* скрытый текст для screen readers */
.a36-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
