/* ===== 교환/환불 정책 페이지 전용 스타일 ===== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

:root {
  --primary:       #FF6B35;
  --primary-light: #FFF0EA;
  --text:          #1a1a1a;
  --text-muted:    #666;
  --border:        #e8e8e8;
  --bg:            #fafafa;
  --white:         #ffffff;
  --max-w:         430px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 100vh;
}

/* 헤더 */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-back {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: none; cursor: pointer;
  color: var(--text); font-size: 20px;
  border-radius: 50%;
  transition: background .15s;
}
.header-back:active { background: var(--border); }
.header-title { font-size: 16px; font-weight: 700; }

/* 브랜드 배너 */
.brand-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
  padding: 28px 24px 24px;
  color: white;
}
.brand-logo      { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 4px; }
.brand-doc-title { font-size: 13px; opacity: 0.85; font-weight: 300; }
.brand-date {
  margin-top: 12px;
  font-size: 11px; opacity: 0.7;
  background: rgba(255,255,255,0.15);
  display: inline-block;
  padding: 3px 10px; border-radius: 20px;
}

/* 섹션 카드 */
.section {
  background: var(--white);
  margin: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.section-header {
  padding: 16px 18px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.section-icon  { font-size: 18px; }
.section-title { font-size: 15px; font-weight: 700; color: var(--primary); }
.section-body  { padding: 16px 18px; }

/* 텍스트 */
.section-body p {
  font-size: 13px; color: #444;
  margin-bottom: 8px; line-height: 1.75;
}
.section-body p:last-child { margin-bottom: 0; }
.section-body ul {
  padding-left: 0; list-style: none; margin-top: 8px;
}
.section-body ul li {
  font-size: 13px; color: #444;
  padding: 5px 0 5px 18px;
  position: relative; line-height: 1.7;
  border-bottom: 1px solid #f5f5f5;
}
.section-body ul li:last-child { border-bottom: none; }
.section-body ul li::before {
  content: '•';
  position: absolute; left: 4px;
  color: var(--primary); font-size: 16px; line-height: 1.5;
}

/* 방법 박스 */
.method-box {
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
}
.method-box:last-child { margin-bottom: 0; }
.method-label {
  background: #f5f5f5;
  padding: 8px 14px;
  font-size: 12px; font-weight: 700;
  color: #555; letter-spacing: 0.3px;
}
.method-content {
  padding: 12px 14px;
  font-size: 13px; color: #444; line-height: 1.7;
}
.method-content .tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px; border-radius: 20px;
  margin-bottom: 6px;
}

/* 절차 스텝 */
.steps      { list-style: none; padding: 0; margin: 0; }
.step-item  {
  display: flex; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--primary); color: white;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-title {
  font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 3px;
}
.step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.65; }
.step-desc a        { color: var(--primary); text-decoration: none; }
.step-desc a:active { text-decoration: underline; }

/* 경고 박스 */
.warn-box {
  background: #FFF9E6;
  border: 1px solid #F59E0B;
  border-radius: 10px;
  padding: 14px 16px;
}
.warn-box p {
  font-size: 12px; color: #78450A;
  margin-bottom: 6px; line-height: 1.7;
  padding-left: 16px; position: relative;
}
.warn-box p:last-child { margin-bottom: 0; }
.warn-box p::before {
  content: '•';
  position: absolute; left: 3px;
  color: #F59E0B; font-size: 16px; line-height: 1.4;
}

/* 고객센터 박스 */
.cs-box {
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.cs-icon   { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.cs-label  { font-size: 11px; color: var(--primary); font-weight: 700; margin-bottom: 4px; }
.cs-row    { font-size: 13px; color: var(--text); margin-bottom: 3px; }
.cs-row:last-child { margin-bottom: 0; }
.cs-row a  { color: var(--primary); font-weight: 700; text-decoration: none; }
.cs-hours  { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* 법적 근거 */
.legal-note {
  text-align: center;
  font-size: 11px; color: #aaa;
  padding: 8px 16px 24px;
  line-height: 1.6;
}
