/* ===========================
   PHOTO SELECT 사진 선택 화면
   =========================== */

.photo-select-screen {
  background: #ffffff;
}

/* 메인 레이아웃 */
.photo-select-main {
  flex: 1 1 0;
  padding: 5.15cqw;
  gap: 3.43cqw;
  min-height: 0;
  overflow: hidden;
}

/* 타이틀 */
.photo-select-title {
  font-weight: 700;
  font-size: 5.15cqw;
  line-height: 6.87cqw;
  text-align: center;
  color: #222222;
  margin: 0;
}

/* 서브타이틀 */
.photo-select-subtitle {
  font-weight: 500;
  font-size: 3.43cqw;
  text-align: center;
  color: #999999;
  margin: 0;
}

/* 2x2 그리드 */
.photo-select-grid {
  flex: 1 1 0;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.43cqw;
}

/* 개별 사진 아이템 */
.photo-select-item {
  position: relative;
  border: 0.43cqw solid #e0e0e0;
  border-radius: 4.29cqw;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
  padding: 0;
  transition: transform 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.photo-select-item:active {
  transform: scale(0.97);
}
.photo-select-item.selected {
  border-color: #222222;
  border-width: 0.86cqw;
}

/* 사진 이미지 */
.photo-select-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 선택 순서 배지 */
.photo-select-badge {
  position: absolute;
  top: 2.15cqw;
  right: 2.15cqw;
  width: 7.72cqw;
  height: 7.72cqw;
  background: #222222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3.86cqw;
  color: #ffffff;
  box-shadow: 0 0.43cqw 1.72cqw rgba(0, 0, 0, 0.3);
}

/* 딤 오버레이 (미선택 + 2개 선택 완료 시) */
.photo-select-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3.86cqw;
}

/* 버튼 컨테이너 */
.photo-select-buttons {
  display: flex;
  gap: 5.15cqw;
  flex-shrink: 0;
}

/* 버튼 공통 */
.photo-select-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4.29cqw 6.87cqw;
  gap: 1.72cqw;
  background: #222222;
  border-radius: 4.29cqw;
  border: none;
  cursor: pointer;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 4.29cqw;
  line-height: 5.15cqw;
  text-align: center;
  color: #ffffff;
  transition: transform 0.2s, opacity 0.2s;
}
.photo-select-btn:active {
  transform: scale(0.95);
}
.photo-select-btn:disabled {
  opacity: 0.35;
}
.photo-select-btn--secondary {
  background: #666666;
}
