/* ==================================================================
   phone_v2.css — 휴대폰 상품 상세 페이지 리뉴얼 (product.html 전용)
   레이아웃: display:flex + flex-direction(row/column) + justify-content 중심
   섹션은 각자 고유 클래스, 공통 padding 20px
   색상: new_style.css 의 --ssadang-* 변수 사용 (로컬 색상변수 미정의)
   ================================================================== */

.pv2 {
  box-sizing: border-box;
  background: #fff;
  color: var(--ssadang-black);
}
.pv2 *,
.pv2 *::before,
.pv2 *::after { box-sizing: border-box; }

/* 본문 래퍼 — 모바일/데스크탑 동일 UI, 데스크탑 중앙 정렬 */
.pv2-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ───────────────────────── 헤더 ───────────────────────── */
.pv2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.pv2-header.scrolled { border-bottom-color: var(--ssadang-border-gray); }
.pv2-header-inner {
  position: relative;     /* absolute 자식(타이틀/온도체크)의 기준 */
  width: 100%;
  max-width: 680px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.pv2-header-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--ssadang-black);
}
/* 컴팩트 바: 스크롤 시 노출. 썸네일 + 모델명·용량 + 색상·통신사·가입유형.
   뒤로가기 다음 공간을 채우고, 우측 온도체크(absolute) 영역만큼 margin 확보 */
.pv2-header-compact {
  flex-grow: 1;
  min-width: 0;
  margin: 0 84px 0 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.pv2-header.scrolled .pv2-header-compact { opacity: 1; }
.pv2-hc-thumb {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: var(--ssadang-bg-gray);
  border-radius: 6px;
}
.pv2-hc-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.pv2-hc-name {
  max-width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--ssadang-black);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pv2-hc-tags {
  max-width: 100%;
  font-size: 12px;
  font-weight: 400;
  color: var(--ssadang-gray-4);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pv2-temp-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 32px;
  padding: 0 12px;
  border: none;
  border-radius: 20px;
  background: var(--ssadang-brand-bg);
  color: var(--ssadang-brand-2);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.pv2-temp-icon { font-size: 14px; line-height: 1; }

/* 헤더 높이만큼 본문 오프셋 */
.pv2-body { padding-top: 64px; }

/* 섹션 구분선 */
.pv2-section-divider { width: 100%; height: 14px; background: var(--ssadang-bg-gray); }

/* ═══════════════ 섹션 1: 상품 정보 ═══════════════ */
.pv2-sec-product {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
/* 이미지 박스: 이미지 실제 크기에 딱 맞게 shrink-wrap → 좌측 정렬 + 로고 위치 안정 */
.pv2-product-imgbox {
  position: relative;
  flex-shrink: 0;
  max-width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.pv2-product-img {
  width: auto;
  height: 170px;          /* 기존 160 → 190 (더 크게) */
  max-width: 100%;
  object-fit: contain;
  display: block;
}
/* 로고: 박스(=이미지) 우상단 모서리에 고정 (이미지 폭 변동과 무관하게 일정) */
.pv2-carrier-logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .14);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv2-carrier-logo img { width: 24px; height: 100%; object-fit: contain; }

.pv2-product-info {
  position: relative;        /* 가격 알림 벨(absolute) 기준 */
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  padding-top: 4px;
}
.pv2-model-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--ssadang-black);
  line-height: 1.3;
}
/* 할인율 + 최종가 래퍼: 모바일 세로(기본), 데스크탑 가로 */
.pv2-sec-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}
.pv2-discount-rate {
  font-size: 20px;
  font-weight: 600;
  color: var(--ssadang-variation-red-color);
}
.pv2-final-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--ssadang-black);
  line-height: 1.2;
}
.pv2-option-chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--ssadang-border-gray);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  color: var(--ssadang-black);
}
.pv2-chip-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  border: 1px solid rgba(0, 0, 0, .12);
}
.pv2-chip-divider { color: var(--ssadang-border-gray); }
.pv2-chip-storage { font-size: 14px; font-weight: 500; color: var(--ssadang-gray)}
.pv2-chip-caret { font-size: 11px; color: var(--ssadang-gray-2); }

/* 데스크탑(≥1024px): 상품 정보 세로·중앙 정렬 + 이미지 확대 */
@media (min-width: 1024px) {
  .pv2-sec-product {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .pv2-sec-product .pv2-product-imgbox { max-width: 100%; }
  .pv2-sec-product .pv2-product-img { height: 240px; }
  .pv2-sec-product .pv2-product-info { align-items: center; text-align: center; }
  /* 데스크탑: 할인율 + 최종가 가로 배치 (베이스라인 정렬) */
  .pv2-sec-product .pv2-sec-price-row {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
}

/* ═══════════════ 특별 이벤트 프로모 (뱃지 + 온누리상품권 안내) ═══════════════ */
.pv2-event-promo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;  
  padding: 0 20px 12px;  
  border-radius: 10px;
  background: #fff;
}
.pv2-event-promo-img {
  flex-shrink: 0;
  height: 24px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
.pv2-event-promo-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ssadang-black);
  line-height: 1.4;
  text-align: center;
}
.pv2-event-promo-text strong { color: #028BFF; font-size: 15px; font-weight: 700; }

/* ═══════════════ 섹션 2: 현재 통신사 ═══════════════ */
.pv2-sec-current {
  width: 100%;
  padding: 20px 20px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.pv2-current-carrier-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--ssadang-gray);  
  line-height: 1.14;
  padding: 0 14px;
  height: 36px;
  border: 1.5px solid var(--ssadang-border-gray);
  border-radius: 20px;
  height: 36px;
}
.pv2-cc-caret { font-size: 11px; color: var(--ssadang-gray-2); }
.pv2-cc-current-name { font-size: 14px; }
.pv2-cc-inner { font-size: 14px; font-weight: 600; color: var(--ssadang-black);}

/* ═══════════════ 섹션 3: 희망 통신사 카드 ═══════════════ */
.pv2-sec-carriers {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
}
.pv2-carrier-card {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 14px;  
  border-radius: 14px;
  background: var(--ssadang-bg-gray);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.pv2-carrier-card.active {
  border: 1.5px solid var(--ssadang-brand-2);
  background: #fff;
}
.pv2-cc-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ssadang-gray-2);
}
.pv2-carrier-card.active .pv2-cc-name { color: var(--ssadang-black); }
.pv2-cc-type { font-size: 16px; color: var(--ssadang-gray-2); font-weight: 600;}
.pv2-carrier-card.active .pv2-cc-type { color: var(--ssadang-black); }
.pv2-cc-discount {
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--ssadang-border-gray);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}
.pv2-carrier-card.active .pv2-cc-discount {
  background: var(--ssadang-variation-red-bg-color);
  color: var(--ssadang-variation-red-color);
}
.pv2-carrier-card.disabled { opacity: .45; pointer-events: none; }

/* ═══════════════ 섹션 4: 가격 내역 ═══════════════ */
.pv2-sec-price {
  width: 100%;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.pv2-price-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  
  overflow: hidden;
}
.pv2-discount-tabs {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 12px;
  gap: 6px;
  padding: 6px;
  background: var(--ssadang-bg-gray);
}
.pv2-discount-tab {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: var(--ssadang-gray-2);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.pv2-discount-tab.active {
  background: #fff;
  color: var(--ssadang-black);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}
.pv2-price-rows {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 18px 0;
}
.pv2-price-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}
.pv2-pr-label { font-size: 16px; font-weight: 500; color: var(--ssadang-gray-4); }
.pv2-pr-value { font-size: 16px; font-weight: 500; color: var(--ssadang-black); }
.pv2-pr-value.minus { }
.pv2-price-divider { height: 1px; background: var(--ssadang-gray-2); border: none; margin: 0; }
.pv2-price-total {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.pv2-pt-label,
.pv2-pt-value { font-size: 16px; font-weight: 600; color: var(--ssadang-black); }
.pv2-pt-value.payback { color: #e53935; }
.pv2-contract-note {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;  
  border-radius: 10px;  
  font-size: 13px;
  font-weight: 500;
  color: var(--ssadang-black);
}
.pv2-contract-note-text { font-size: 16px; font-weight: 500; color: var(--ssadang-black); }
.pv2-installment-line {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  font-size: 13px;
  color: var(--ssadang-gray);
}
.pv2-installment-line strong { font-size: 16px; color: var(--ssadang-black); }
.pv2-price-status {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  text-align: center;
  font-size: 14px;
  color: var(--ssadang-gray-2);
}

/* ═══════════════ 섹션 5: 부가서비스 ═══════════════ */
.pv2-sec-addons {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
.pv2-addons-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ssadang-black);
}
.pv2-addon-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.pv2-addon-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--ssadang-border-gray);
  border-radius: 14px;
  background: #fff;
  transition: background .25s ease, border-color .25s ease;
}
.pv2-addon-fadein { animation: pv2AddonFadeIn .25s ease; }
@keyframes pv2AddonFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pv2-addon-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.pv2-addon-name,
.pv2-addon-term { font-size: 16px; font-weight: 500; color: var(--ssadang-black); }
.pv2-addon-price { font-size: 16px; font-weight: 600; color: var(--ssadang-black); }
.pv2-addon-item.off .pv2-addon-name,
.pv2-addon-item.off .pv2-addon-term,
.pv2-addon-item.off .pv2-addon-price { opacity: 0.5; }

/* 필수 부가 */
.pv2-addon-req-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  padding: 1px 7px;
  border-radius: 6px;
  background: var(--ssadang-brand-bg);
  color: var(--ssadang-brand-2);
  font-size: 11px;
  font-weight: 500;
  vertical-align: middle;
}
.pv2-addon-note { font-weight: 400; color: var(--ssadang-gray-2); font-size: 12px; }
.pv2-toggle input:disabled + .pv2-toggle-track { opacity: .55; cursor: default; }

/* 토글 스위치 */
.pv2-toggle {
  position: relative;
  width: 46px;
  height: 28px;
  flex-shrink: 0;
}
.pv2-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.pv2-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: #d8d8d8;
  cursor: pointer;
  transition: background .25s ease;
}
.pv2-toggle-track::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pv2-toggle input:checked + .pv2-toggle-track { background: var(--ssadang-brand-2); }
.pv2-toggle input:checked + .pv2-toggle-track::before { transform: translateX(18px); }

/* ═══════════════ 하단 고정 상담 버튼 ═══════════════ */
.pv2-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  background: #fff;
}
.pv2-cta-btn {
  width: 100%;
  max-width: 440px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 24px;
  background: var(--ssadang-brand-2);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* ═══════════════ 가격 변동 알림 토스트 (cta-bar 위) ═══════════════ */
.pv2-notify-toast {
  position: fixed;
  left: 50%;
  bottom: calc(78px + env(safe-area-inset-bottom, 0px) + 10px);  /* cta-bar 살짝 위 */
  transform: translateX(-50%) translateY(8px);
  z-index: 3;
  width: calc(100% - 32px);
  max-width: 300px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 1px 5px 2px rgb(0 0 0 / 9%);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
}
.pv2-notify-toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.pv2-notify-toast-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FEE500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv2-notify-toast-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ssadang-gray);
  white-space: nowrap;
}
.pv2-notify-toast-close {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-left: 4px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  color: var(--ssadang-gray-2);
}

/* 옵션칩 + 알림 벨 한 행 */
.pv2-chip-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

/* 가격 알림 벨 (옵션칩 오른쪽) — 모바일: 등록 시에만 노출 / 데스크탑: 항상 표시 */
.pv2-notify-bell {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin-top: 8px;       /* 옵션칩 margin-top과 맞춤 */
  display: none;         /* 기본 숨김 (모바일·미등록) */
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: none;
  color: var(--ssadang-brand-2);
  font-size: 16px;
  cursor: pointer;
}
.pv2-notify-bell.is-registered { display: flex; }   /* 등록됨 → 노출(브랜드색) */

/* 데스크탑: 벨 항상 표시, 미등록은 그레이 처리 (클릭 시 등록 모달) */
@media (min-width: 1024px) {
  .pv2-notify-bell { display: flex; }
  .pv2-notify-bell:not(.is-registered) { color: #ccc; }
}

/* 알림 등록 모달 - 모델/통신사 강조 텍스트 */
.pv2-notify-modal-meta {
  color: var(--ssadang-brand-2);
  font-size: 16px;
  font-weight: 600;
}

/* 알림 등록 모달 버튼 */
.pv2-notify-register-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 12px;
  background: var(--ssadang-brand-2);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* ═══════════════ 바텀시트 (공용) ═══════════════ */
.pv2-sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.pv2-sheet-overlay.open { opacity: 1; visibility: visible; }
.pv2-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 0 calc(24px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-radius: 22px 22px 0 0;
  transform: translateY(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.pv2-sheet-overlay.open .pv2-sheet { transform: translateY(0); }
.pv2-sheet-handle {
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: #ddd;
  margin: 12px auto 14px;
}
.pv2-sheet-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 14px;
}
.pv2-sheet-title { font-size: 16px; font-weight: 600; color: var(--ssadang-black); }
.pv2-sheet-close {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--ssadang-gray-2);
  padding: 4px;
}
.pv2-sheet-body {
  padding: 0 20px;
  max-height: 64vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}
.pv2-opt-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;        /* 내부 버튼 컨테이너 풀너비 */
  justify-content: flex-start;
  gap: 10px;
}
.pv2-opt-group-label { font-size: 14px; font-weight: 600; color: var(--ssadang-gray-4); }
.pv2-opt-chips {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.pv2-opt-color-list { width: 100%; }
.pv2-opt-chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1.5px solid var(--ssadang-border-gray);
  border-radius: 22px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  color: var(--ssadang-black);
  transition: border-color .15s, background .15s;
}
.pv2-opt-chip.active {
  border-color: var(--ssadang-brand-2);
  background: var(--ssadang-brand-bg);  
  font-weight: 500;
}
.pv2-opt-chip.disabled { opacity: .4; pointer-events: none; }
/* 용량: 한 줄에 균등 분할(여러 줄 금지) — 버튼들이 전체 폭을 나눠 채움 */
#pv2StorageChips { flex-direction: row; flex-wrap: nowrap; gap: 8px; }
#pv2StorageChips .pv2-opt-chip {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  border-radius: 12px;
  padding: 13px;
  font-size: 16px;
  font-weight: 500;
}
.pv2-opt-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .14);
  flex-shrink: 0;
}
/* 색상: 한 줄에 1개 (세로 리스트) */
.pv2-opt-color-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.pv2-color-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border: 1.5px solid var(--ssadang-border-gray);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ssadang-black);
  transition: border-color .15s, background .15s;
}
.pv2-color-row.active { border-color: var(--ssadang-brand-2); background: var(--ssadang-brand-bg); }
.pv2-color-name { flex-grow: 1; min-width: 0; font-size: 16px; font-weight: 500;}
.pv2-color-oos {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--ssadang-variation-red-bg-color);
  color: var(--ssadang-variation-red-color);
  font-size: 12px;
  font-weight: 600;
}
.pv2-carrier-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.pv2-carrier-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border: 1.5px solid var(--ssadang-border-gray);
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--ssadang-black);
  transition: border-color .15s, background .15s;
}
.pv2-carrier-list-name { font-size: 14px; }
.pv2-check { color: var(--ssadang-brand-2); font-weight: 800; visibility: hidden; }
.pv2-carrier-list-item.active .pv2-check { visibility: visible; }
.pv2-carrier-list-item.active {
  border-color: var(--ssadang-brand-2);
  background: var(--ssadang-brand-bg);
  font-weight: 700;
}

/* 로딩 */
.pv2-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  color: var(--ssadang-gray-2);
  font-size: 14px;
}

/* ═══════════════ 섹션 6: 정보 탭 (요금제/필독/구매후기) ═══════════════ */
.pv2-sec-info {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}
.pv2-info-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;  
}
.pv2-info-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ssadang-gray-2);
  cursor: pointer;  
  margin-bottom: -1px;
}
.pv2-info-tab.active { color: var(--ssadang-black);  }
.pv2-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}
.pv2-info-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  color: var(--ssadang-gray-2);
  font-size: 14px;
}

/* 요금제 패널 */
.pv2-plan-head { font-size: 18px; font-weight: 600; color: var(--ssadang-black); line-height: 1.5; }
.pv2-plan-name { color: var(--ssadang-brand-2); font-size: 18px; font-weight: 600; }
.pv2-plan-duration { font-size: 18px; font-weight: 600; }
.pv2-plan-rows {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding-top: 4px;
}
.pv2-plan-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}
.pv2-plan-label { color: var(--ssadang-gray-4); font-size: 16px; font-weight: 500;}
.pv2-plan-value { color: var(--ssadang-black); font-size: 16px; font-weight: 500; }
.pv2-plan-note {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding-top: 4px;  
  font-size: 14px;
  color: var(--ssadang-gray-2);
}

/* 필독 패널 */
.pv2-must-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
.pv2-must-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.pv2-must-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--ssadang-gray);
  font-size: 12px;
  font-weight: 700;
}
.pv2-must-text { font-size: 16px; font-weight: 500; color: var(--ssadang-black); line-height: 1.5; padding-top: 1px; }

/* 구매후기 패널 */
.pv2-review-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
.pv2-review-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ssadang-border-gray);
}
.pv2-review-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.pv2-review-name { font-size: 16px; font-weight: 500; color: var(--ssadang-black); }
.pv2-review-stars { font-size: 14px; color: var(--ssadang-variation-kakao-bg-color); letter-spacing: 1px; }
.pv2-star-empty { color: #ddd; }
.pv2-review-hidden { display: none; }
.pv2-review-text { font-size: 16px; font-weight: 400; color: var(--ssadang-gray); line-height: 1.55; }
.pv2-review-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 12px;
  background: var(--ssadang-bg-gray);
  color: var(--ssadang-gray-4);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ═══════════════ 섹션 7: 유의사항 아코디언 ═══════════════ */
.pv2-sec-notice {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}
.pv2-notice-title { font-size: 20px; font-weight: 600; color: var(--ssadang-black); }
.pv2-accordion {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.pv2-acc-item { }
.pv2-acc-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 2px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  color: var(--ssadang-black);
  text-align: left;
}
.pv2-acc-title { font-size: 16px; font-weight: 500;}
.pv2-acc-caret {
  font-size: 12px;
  color: var(--ssadang-gray-2);
  transition: transform .2s;
}
.pv2-acc-item.open .pv2-acc-caret { transform: rotate(180deg); }
.pv2-acc-body {
  display: none;
  padding: 0 2px 16px;
}
.pv2-acc-item.open .pv2-acc-body { display: block; }
.pv2-acc-body p { margin: 0; font-size: 14px; color: var(--ssadang-gray); line-height: 1.6; }
.pv2-acc-list {
  margin: 0;
  padding: 8px 12px;
  background: var(--ssadang-bg-gray);
  border-radius: 8px;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.pv2-acc-list li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  color: var(--ssadang-gray);
  line-height: 1.6;
}
.pv2-acc-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ssadang-gray-2);
}

/* ═══════════════ 기종 선택 리스트 페이지 (price.html) ═══════════════ */
.pv2-list-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.pv2-list-topbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
.pv2-list-provider-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border: 1.5px solid var(--ssadang-border-gray);
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--ssadang-black);
  white-space: nowrap;
}
.pv2-list-provider-btn i { font-size: 11px; color: var(--ssadang-gray-2); }
.pv2-provider-btn-text { font-size: 14px; }
.pv2-list-head {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pv2-list-provider-btn { flex-shrink: 0; }
.pv2-list-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ssadang-black);
}
.pv2-list-tabs { padding: 0 20px 4px; }
.pv2-list-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px 20px;
}
.pv2-list-card {
  flex: 0 0 calc((100% - 12px) / 2);   /* 모바일: 한 줄에 2개 */
  max-width: calc((100% - 12px) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 24px 12px 20px;
  border-radius: 16px;
  background: var(--ssadang-bg-gray);
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
}
.pv2-list-card-img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}
.pv2-list-card-noimg { background: #fff; border-radius: 12px; }
.pv2-list-card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ssadang-black);
  text-align: center;
  line-height: 1.3;
}
.pv2-list-empty {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  color: var(--ssadang-gray-2);
  font-size: 14px;
}
/* 데스크탑: 한 줄에 3개 */
@media (min-width: 600px) {
  .pv2-list-card {
    flex-basis: calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
  }
}

/* ═══════════════ 전역 레이아웃 오버라이드 ═══════════════ */
body.pv2-page .main-header { display: none !important; }
body.pv2-page .main-content { padding-top: 0 !important; }
body.pv2-page .main-footer { display: none !important; }
body.pv2-page #floating-action,
body.pv2-page .ndc-fab,
body.pv2-page .floating-buttons { display: none !important; }
body.pv2-page { background: #fff; }


/* ==================================================================
   온도체크 뱃지 + 시세 온도 모달 — new_phones.css 5582-5943 이식
   (price-check-card / pct-* / pc-* 기본 스타일은 new_style.css 전역 로드 사용)
   ================================================================== */
.pr-img-temp-badge-float {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 8px;
    bottom: 21%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    z-index: 1;
    transition: opacity 0.2s;
}
.pr-img-temp-badge-float:active {
    opacity: 0.7;
}
.pr-img-temp-badge-float.pr-img-temp-badge--loading {
    pointer-events: none;
    cursor: default;
    animation: pr-badge-pulse 1.6s ease-in-out infinite;
}

/* 말풍선 툴팁 */
.pr-badge-tooltip {
    display: block;
    background: var(--ssadang-variation-blue-bg-color);
    color: var(--ssadang-variation-blue-color);;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.2px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    position: relative;
}
/* 말풍선 꼬리 (아래 삼각형) */

/* 로딩 중: 툴팁 숨김 */
.pr-img-temp-badge-float.pr-img-temp-badge--loading .pr-badge-tooltip {
    visibility: hidden;
}

/* 모바일 전용 title-section 알림 버튼 */
.title-notification-btn {
    display: none; /* 데스크탑: 숨김 */
}

@media (max-width: 767px) {
    /* 원본 텍스트 배지: 모바일에서 숨김 */
    .pr-img-temp-badge {
        display: none !important;
    }
    /* 모바일 title-section 알림 버튼 */
    .title-notification-btn {
        display: flex;
        position: absolute;
        right: 6px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;        
        background: #fff;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: none;
        border-radius: 50%;        
        cursor: pointer;
        padding: 0;
        font-family: inherit;
        transition: box-shadow 0.2s;
    }
    .title-notification-btn i {
        font-size: 18px;
        color: var(--ssadang-gray);
        transition: color 0.2s;
    }
    .title-notification-btn.active i {
        color: #2e7d32;
    }
    .title-notification-btn:active {
        box-shadow: 0 1px 4px rgba(0, 0, 0, .14);
    }
    /* 컴팩트 바: 오른쪽 여백을 뱃지 너비만큼 확보 */
    .title-compact-bar {
        right: 30px;
    }    
}

.pr-img-temp-badge {
    display: flex;        /* 항상 공간 확보 — 레이아웃 시프트 방지 */
    width: auto;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none;
    border-radius: 20px;
    padding: 8px 12px;
    margin: 0 auto;
    box-shadow: 0 1px 5.2px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
    font-family: inherit;
    transition: box-shadow 0.2s;
}
.pr-img-temp-badge:active { box-shadow: 0 1px 4px rgba(0,0,0,.14); }

.pr-img-badge-thermo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 14px;
    height: 22px;
    position: relative;
}
.pr-img-badge-thermo::before {
    /* 온도계 tube 배경 (회색) */
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 14px;
    background: #e0e0e0;
    border-radius: 3px 3px 0 0;
}
.pr-img-badge-tube-fill {
    /* 온도계 tube fill — 바닥에서 위로 차오름, JS에서 height / background-color 직접 제어 */
    position: absolute;
    bottom: 10px; /* 구슬 바로 위 */
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    max-height: 14px;
    border-radius: 2px 2px 0 0;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;
    z-index: 1;
}
.pr-img-badge-bulb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: background 0.3s;
}
.pr-img-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--badge-color, #333);
    white-space: nowrap;
}

/* ── 로딩 상태 ── */
.pr-img-temp-badge--loading {
    pointer-events: none;
    cursor: default;
    animation: pr-badge-pulse 1.6s ease-in-out infinite;
}
.pr-img-temp-badge--loading .pr-img-badge-text {
    color: #aaa;
    font-weight: 500;
}
.pr-img-temp-badge--loading .pr-img-badge-bulb {
    background: #ccc !important;
}
.pr-img-temp-badge--loading .pr-img-badge-tube-fill {
    background: #ccc !important;
    height: 0 !important;
}
@keyframes pr-badge-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.55; }
}
/* 점 애니메이션 ("...") */
.pr-img-badge-dots::after {
    content: '';
    display: inline-block;
    animation: pr-badge-dots 1.4s steps(4, end) infinite;
}
@keyframes pr-badge-dots {
    0%   { content: ''; }
    25%  { content: '.'; }
    50%  { content: '..'; }
    75%  { content: '...'; }
    100% { content: ''; }
}

/* ════════════════════════════════════════════
   시세 온도체크 모달
   - 모바일 : 전체화면, transform 슬라이드 (display:block 항상 유지)
   - 데스크탑: 중앙 다이얼로그, visibility+opacity fade
════════════════════════════════════════════ */

/* ── 공통 기반 ── */
.pr-temp-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9990;
}

/* ── 모바일: transform으로만 제어, display는 항상 block ── */
@media (max-width: 767px) {
    .pr-temp-modal {
        display: block;
        background: #fff;
        overflow: hidden;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .pr-temp-modal--open { transform: translateX(0); }
    .pr-temp-modal .pr-temp-modal-inner {
        height: 100%;
        overflow-y: auto;
        padding: 16px 16px 80px;
    }
    .pr-temp-modal .pr-temp-modal-close-btn { display: none; }
}

/* ── 데스크탑: visibility+opacity로 fade, 항상 flex ── */
@media (min-width: 768px) {
    .pr-temp-modal {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s, background-color 0.25s, visibility 0s 0.25s;
    }
    .pr-temp-modal--open {
        background: rgba(0, 0, 0, 0.45);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition: opacity 0.25s, background-color 0.25s, visibility 0s 0s;
    }
    .pr-temp-modal .pr-temp-modal-inner {
        width: 100%;
        max-width: 880px;
        max-height: 85vh;
        overflow-y: auto;
        background: #fff;
        border-radius: 20px;
        padding: 20px 20px 32px;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
        transform: scale(0.96);
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .pr-temp-modal--open .pr-temp-modal-inner { transform: scale(1); }
    .pr-temp-modal .pr-temp-modal-back { display: none; }
    .pr-temp-modal .pr-temp-modal-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: none;
        border: none;
        font-size: 16px;
        color: var(--ssadang-black);
        cursor: pointer;
        flex-shrink: 0;
    }
}

/* ── 헤더 (공통) ── */
.pr-temp-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 14px;    
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.pr-temp-modal-back {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--ssadang-black);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}
.pr-temp-modal-back:active { background: #f0f0f0; }
.pr-temp-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ssadang-black);
}

/* ── 내부 공통 (overflow-y는 미디어쿼리에서도 정의되지만 fallback) ── */
.pr-temp-modal .pr-temp-modal-inner {
    overflow-y: auto;
}

/* pct-detail-popup의 offset parent를 카드로 고정 */
.pr-temp-modal .price-check-card {
    position: relative;
}

/* 모달 내 차트 가로 스크롤 */
.pr-temp-modal .pc-scroll-area--chart {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
}
.pr-temp-modal .pc-scroll-area--chart::-webkit-scrollbar { display: none; }

/* ── 특별 이벤트 상세 배지 (삼성 전용, JS로 삽입) ── */
.pr-img-badge-wrap {
    position: relative;
    display: inline-block;
    line-height: 0; /* img 아래 여백 제거 */
}
.pr-img-badge-wrap .pr-event-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    max-width: 66%;
    max-height: 50%;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}
.pr-temp-modal #prPcChart { min-width: 480px; }

/* ── 헤더 온도체크 float 뱃지: 정적 배치 + 말풍선 좌측 ── */
.pv2-header-temp.pr-img-temp-badge-float {
  position: absolute;     /* 흐름에서 빠져 공간 차지 X → 타이틀 정중앙 유지 */
  right: 20px;
  top: 50%;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  flex-direction: row;
  align-items: center;
  gap: 7px;
  z-index: 2;
}
/* 헤더에서는 로딩 중에도 말풍선 표시 */
.pv2-header-temp.pr-img-temp-badge--loading .pr-badge-tooltip { visibility: visible; }
/* 말풍선 꼬리: 오른쪽(온도계 방향) 화살표 */

/* ═══════════════ 로그인 필요 모달 (new_price_result 스타일) ═══════════════ */
.phone-login-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, .7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity .3s ease;
}
.phone-login-modal.active { display: flex; opacity: 1; }
.phone-login-modal-content {
  position: relative;
  width: 88%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: 40px 24px 24px;
  text-align: center;
  transform: translateY(20px);
  transition: transform .3s ease;
}
.phone-login-modal.active .phone-login-modal-content { transform: translateY(0); }
.phone-login-modal-header { margin-bottom: 28px; }
.phone-login-modal-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ssadang-black);
  margin: 0 0 12px;
  line-height: 1.4;
}
.phone-login-modal-header p { font-size: 16px; color: var(--ssadang-gray); margin: 0; }
.phone-login-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--ssadang-gray-2);
}
.phone-kakao-login-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background-color: #FEE500;
  color: #000;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.phone-kakao-login-btn svg { margin-right: 8px; flex-shrink: 0; }

/* ═══════════════ 정보 확인 모달 ═══════════════ */
.pv2-info-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .55);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}
.pv2-info-modal.active { display: flex; opacity: 1; }
.pv2-info-modal-content {
  position: relative;
  width: 88%;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateY(20px);
  transition: transform .25s ease;
}
.pv2-info-modal.active .pv2-info-modal-content { transform: translateY(0); }
.pv2-info-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ssadang-gray-2);
}
.pv2-info-modal-head { text-align: center; margin-bottom: 24px; }
.pv2-info-modal-title { font-size: 24px; font-weight: 700; color: var(--ssadang-black); margin: 0 0 8px; }
.pv2-info-modal-sub { font-size: 16px; color: var(--ssadang-black); margin: 0; }
.pv2-info-fields {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  background: #f7f7f9;
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 24px;
}
.pv2-info-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.pv2-info-label { flex-shrink: 0; width: 64px; font-size: 16px; color: var(--ssadang-gray-4); }
.pv2-info-input-wrap {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
.pv2-info-input {
  flex: 0 0 auto;          /* 값 너비만큼만 — 연필이 바로 옆에 */
  width: auto;
  max-width: 100%;
  border: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--ssadang-black);
  padding: 2px 0;
}
.pv2-info-input[readonly] { text-decoration: underline; text-underline-offset: 3px; }
.pv2-info-input:not([readonly]) { border-bottom-color: var(--ssadang-brand-2); }
.pv2-info-edit {
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ssadang-gray-2);
  font-size: 13px;
  padding: 4px;
}
.pv2-info-coupon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  cursor: pointer;
  user-select: none;
}
.pv2-info-coupon input { position: absolute; opacity: 0; width: 0; height: 0; }
.pv2-info-coupon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--ssadang-gray-2);
  color: #fff;
  font-size: 10px;
  transition: background .15s, border-color .15s;
}
.pv2-info-coupon-box i { opacity: 0; transition: opacity .15s; }
.pv2-info-coupon input:checked + .pv2-info-coupon-box { background: var(--ssadang-brand-2); border-color: var(--ssadang-brand-2); }
.pv2-info-coupon input:checked + .pv2-info-coupon-box i { opacity: 1; }
.pv2-info-coupon-text { font-size: 14px; color: var(--ssadang-black); }
.pv2-info-coupon-label { font-size: 14px; }
.pv2-info-coupon-note { color: var(--ssadang-gray-4); font-size: 14px; font-weight: 400; }
.pv2-info-submit {
  width: 100%;
  height: 54px;
  border: none;  
  border-radius: 14px;
  background: var(--ssadang-brand-2);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* ═══════════════ 신청 완료 화면 ═══════════════ */
.pv2-complete {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: #f5f5f5;
  display: none;
  overflow-y: auto;
}
.pv2-complete.active { display: block; }
.pv2c-inner {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 56px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
}
.pv2c-check {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ssadang-brand-2);
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
}
.pv2c-title { text-align: center; font-size: 20px; font-weight: 600; color: var(--ssadang-black); margin: 0; }
.pv2c-sub { text-align: center; font-size: 16px; font-weight: 500; color: var(--ssadang-gray-4); margin: 0 0 12px; }
.pv2c-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
}
.pv2c-card-title { font-size: 20px; font-weight: 600; color: var(--ssadang-black); margin-bottom: 2px; }
.pv2c-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
}
.pv2c-label { font-size: 16px; font-weight: 500; color: var(--ssadang-gray-4); }
.pv2c-val {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-weight: 500;
  font-size: 16px;
  color: var(--ssadang-black);
  text-align: right;
}
.pv2c-arrow { color: var(--ssadang-gray-2); font-weight: 400; }
.pv2c-to { color: var(--ssadang-brand-2); font-size: 16px; }
.pv2c-final { flex-direction: column; align-items: flex-end; gap: 2px; color: var(--ssadang-black); font-size: 16px; font-weight: 600; }
.pv2c-coupon-note { font-size: 12px; font-weight: 500; color: var(--ssadang-brand-2); background: var(--ssadang-brand-bg); padding: 4px 8px; border-radius: 8px; }
.pv2c-kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FEE500;
  color: #3C1E1E;
  font-size: 9px;
}
.pv2c-name { font-size: 16px; }
.pv2c-count { font-size: 16px; }
.pv2c-redirect { text-align: center; font-size: 14px; color: var(--ssadang-gray-2); margin: 8px 0 0; }

/* ═══════════════ 조회수 토스트 배지 (new_price_result 동일) ═══════════════ */
.phone-consult-count-badge {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-110%);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--ssadang-black);
  border: none;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}
.phone-consult-count-badge::before {
  content: '👀';
  font-size: 15px;
  flex-shrink: 0;
}
.phone-consult-count-badge.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.phone-consult-count-badge.hide {
  transform: translateX(-50%) translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.consult-count-text { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.4; }
