/* ===========================
   PROCESSING 처리 중 화면
   =========================== */

.processing-screen {
  background: #ffffff;
}

/* 중앙 컨테이너 */
.processing-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.15cqw;
}

/* 로딩 스피너 — border 방식 (conic-gradient+mask 대비 10배 가벼움) */
.processing-spinner {
  width: 17.17cqw;
  height: 17.17cqw;
  border-radius: 50%;
  border: 1.07cqw solid #d9d9d9;
  border-top-color: #222222;
  animation: spin 0.8s linear infinite;
  will-change: transform;
}

/* 텍스트 컨테이너 */
.processing-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.72cqw;
}

/* 메인 텍스트 */
.processing-title {
  font-weight: 700;
  font-size: 6.87cqw;
  line-height: 8.58cqw;
  text-align: center;
  color: #222222;
  margin: 0;
}

/* 서브 텍스트 */
.processing-desc {
  font-weight: 500;
  font-size: 3.43cqw;
  line-height: 5.15cqw;
  text-align: center;
  color: #666666;
  margin: 0;
}
