@charset "utf-8";
/* ============================================================
   세라메디온 CS 커스텀 스타일
   (테마 기본 CSS 위에 덮어쓰는 전용 파일)
   ============================================================ */

/* ---------- 헤더 로고 ---------- */
#header h1 .logo_link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

#header h1 .logo_link img {
  height: 3.2rem;
  width: auto;
}

#header h1 .logo_sfx {
  display: inline-flex;
  align-items: center;
  height: 2.2rem;
  padding: 0 0.8rem;
  border-radius: 1.1rem;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  #header h1 .logo_link img { height: 2.8rem; }
}

/* ---------- 공통 : 안내 페이지 ---------- */
.cs_sec { margin-top: 8rem; }
.cs_sec:first-child { margin-top: 0; }

.cs_sec > h4 {
  position: relative;
  margin-bottom: 2.4rem;
  padding-left: 1.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.cs_sec > h4::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.4rem;
  height: 2.4rem;
  background: var(--primary-color);
}

.cs_sec > h4 small {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #6b7280;
}

.cs_note {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs_note > li {
  position: relative;
  padding-left: 1.6rem;
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.65;
}

.cs_note > li::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--darkgray-color);
}

.cs_lead {
  font-size: 1.7rem;
  line-height: 1.7;
  color: #4b5563;
}

/* ---------- A/S 절차 스텝 ---------- */
.cs_steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.cs_steps .stp {
  position: relative;
  padding: 3.2rem 2.4rem 2.8rem;
  border: 1px solid var(--line-color);
  border-radius: 1.2rem;
  background: var(--white-color);
  transition: 0.25s;
}

.cs_steps .stp:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0.8rem 2.4rem rgba(68, 83, 106, 0.12);
  transform: translateY(-0.4rem);
}

.cs_steps .stp .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
}

.cs_steps .stp strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
}

.cs_steps .stp p {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #4b5563;
}

/* ---------- 표 ---------- */
.cs_table_wrap { overflow-x: auto; }

table.cs_table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border-top: 2px solid var(--primary-color);
  font-size: 1.6rem;
}

table.cs_table th,
table.cs_table td {
  padding: 1.6rem 1.6rem;
  border-bottom: 1px solid var(--line-color);
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
}

table.cs_table thead th {
  background: var(--lightgray-color);
  font-weight: 700;
  white-space: nowrap;
}

table.cs_table tbody th {
  width: 20%;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
}

table.cs_table td.res {
  width: 26%;
  font-weight: 600;
}

/* ---------- 강조 박스 ---------- */
.cs_callout {
  margin-top: 2.4rem;
  padding: 2.4rem;
  border-radius: 1.2rem;
  background: var(--lightgray-color);
  border: 1px solid var(--line-color);
}

.cs_callout strong { display: block; margin-bottom: 0.8rem; font-size: 1.7rem; }

.cs_callout.warn {
  background: #fff7ed;
  border-color: #fed7aa;
}

/* ---------- 처리상태 뱃지 ---------- */
.as_state {
  display: inline-flex;
  align-items: center;
  height: 2.4rem;
  padding: 0 1rem;
  margin-right: 0.8rem;
  border-radius: 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  vertical-align: 1px;
}

.as_state.s_recv { background: #eef2f7; color: #44536a; }
.as_state.s_prog { background: #fff1e2; color: #c2610a; }
.as_state.s_done { background: #e6f4ea; color: #1a7f37; }

/* ---------- 메인 바로가기 ---------- */
.cs_quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
}

.cs_quick .itm {
  display: block;
  padding: 4rem 3.2rem;
  border: 1px solid var(--line-color);
  border-radius: 1.6rem;
  background: var(--white-color);
  transition: 0.25s;
}

.cs_quick .itm:hover {
  border-color: var(--primary-color);
  box-shadow: 0 1.2rem 3.2rem rgba(68, 83, 106, 0.14);
  transform: translateY(-0.6rem);
}

.cs_quick .itm .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 2rem;
  border-radius: 1.2rem;
  background: var(--secondary-color);
  color: var(--primary-color);
}

.cs_quick .itm .ico .icon { width: 2.6rem; height: 2.6rem; }

.cs_quick .itm strong { display: block; font-size: 2.2rem; font-weight: 700; }
.cs_quick .itm em {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.3rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--point-color);
  text-transform: uppercase;
}
.cs_quick .itm p { margin-top: 1.2rem; font-size: 1.5rem; color: #4b5563; line-height: 1.6; }

/* ---------- A/S 접수 폼 ---------- */
.as_form { margin-bottom: 2.4rem; }

.as_form .as_row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.as_form .as_fld { flex: 1 1 280px; min-width: 0; }
.as_form .as_fld.full { flex: 1 1 100%; }

.as_form .as_fld label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.as_form .as_fld label em {
  color: var(--tertiary-color);
  font-style: normal;
}

.as_form .as_fld .as_opt {
  margin-left: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: 1px;
}

.as_form .as_fld .frm_input,
.as_form .as_fld select {
  width: 100%;
  height: 4.8rem;
  padding: 0 1.4rem;
  border: 1px solid var(--line-color);
  border-radius: 0.6rem;
  background: var(--white-color);
  font-size: 1.5rem;
}

.as_form .as_fld .frm_input:focus,
.as_form .as_fld select:focus {
  border-color: var(--primary-color);
  outline: none;
}

.as_form .as_addr { display: flex; gap: 0.8rem; }
.as_form .as_addr .frm_input { flex: 1 1 auto; }

.as_form .as_addr_btn {
  flex: 0 0 auto;
  height: 4.8rem;
  padding: 0 1.8rem;
  border: 1px solid var(--primary-color);
  border-radius: 0.6rem;
  background: var(--white-color);
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.as_form .as_addr_btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* ---------- A/S 보기 : 접수정보 ---------- */
.as_view_info { margin: 0 0 4rem; }

.as_view_info h3 {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
}

table.as_info_tbl { min-width: 560px; font-size: 1.5rem; }
table.as_info_tbl th { width: 14%; background: var(--lightgray-color); color: var(--body-color); }
table.as_info_tbl td { width: 36%; }

@media (max-width: 480px) {
  .as_form .as_row { gap: 1.2rem; }
  .as_form .as_addr { flex-wrap: wrap; }
  .as_form .as_addr_btn { width: 100%; }
}

/* ---------- 목록 : 상태 컬럼 ---------- */
.tbl_head01 td.td_state { text-align: center; white-space: nowrap; }

.as_file_tit { margin-top: 2.4rem; margin-bottom: 1.2rem; }
.as_file_tit strong { font-size: 1.6rem; font-weight: 700; margin-right: 0.8rem; }
.as_file_tit span { font-size: 1.4rem; color: #6b7280; }

/* ============================================================
   결제(영카트) 페이지 - 세라메디온 CS 통합 스타일
   ============================================================ */
/* 쇼핑몰 폭을 사이트 본문 폭에 맞춤 */
#container { width: 100%; max-width: 1336px; padding: 0 1.6rem; }
#container .shop-content { width: 100%; }
/* 상품분류 사이드바를 없앴으므로 좌측 여백 제거 */
#container .is_index { margin-left: 0; }

.pay_page { width: 100%; margin: 0 auto; padding: 6.4rem 0 10rem; }

.pay_head { margin-bottom: 4.8rem; text-align: center; }
.pay_head h2 { font-size: 3.6rem; font-weight: 700; }
.pay_head p { margin-top: 1.2rem; font-size: 1.6rem; color: #4b5563; }

.pay_items { margin-bottom: 0; }
.pay_items .sct { margin-left: 0 !important; margin-right: 0 !important; }
.pay_items > header { margin-bottom: 2.4rem; padding-bottom: 1.6rem; border-bottom: 2px solid var(--primary-color); }
.pay_items > header h2 { font-size: 2.2rem; font-weight: 700; }
.pay_items > header h2 .cnt {
  margin-left: 0.8rem;
  padding: 0.2rem 1rem;
  border-radius: 1.2rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.4rem;
}

.pay_empty {
  padding: 8rem 2.4rem;
  border: 1px dashed var(--line-color);
  border-radius: 1.6rem;
  background: var(--lightgray-color);
  text-align: center;
}
.pay_empty strong { display: block; font-size: 2rem; font-weight: 700; }
.pay_empty p { margin: 1.2rem 0 2.8rem; font-size: 1.6rem; color: #4b5563; line-height: 1.7; }

.pay_guide_wrap { margin-top: 8rem; padding-top: 6.4rem; border-top: 1px solid var(--line-color); }

.pay_guide_wrap > h3 {
  margin-bottom: 3.2rem;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

.pay_guide_wrap > h3 em {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--point-color);
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.pay_guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 4rem;
  border-radius: 1.6rem;
  background: var(--lightgray-color);
}
.pay_guide .itm { text-align: center; }
.pay_guide .itm .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 1.4rem;
  font-weight: 800;
}
.pay_guide .itm strong { display: block; font-size: 1.8rem; font-weight: 700; }
.pay_guide .itm p { margin-top: 0.6rem; font-size: 1.5rem; color: #4b5563; }

.pay_note { margin-top: 2.4rem; text-align: center; font-size: 1.5rem; color: #6b7280; }
.pay_note a { text-decoration: underline; }

@media (max-width: 768px) {
  .pay_page { padding: 4rem 1.6rem 6.4rem; }
  .pay_head h2 { font-size: 2.6rem; }
  .pay_guide { padding: 2.4rem; }
}

/* ---------- PC 전용 줄바꿈 ---------- */
.pc_br { display: inline; }
@media (max-width: 768px) {
  .pc_br { display: none; }
}

/* ---------- 결제 안내문 ---------- */
.pay_notice {
  max-width: 92rem;
  margin: 0 auto 6.4rem;
  padding: 3.2rem 3.6rem;
  border: 1px solid var(--line-color);
  border-radius: 1.6rem;
  background: var(--lightgray-color);
  text-align: center;
}
.pay_notice p { font-size: 1.6rem; line-height: 1.8; color: #4b5563; }
.pay_notice p + p { margin-top: 1.2rem; }

@media (max-width: 768px) {
  .pay_notice { padding: 2.4rem 2rem; margin-bottom: 4rem; }
}

/* ---------- 회원가입 완료 ---------- */
#reg_result .reg_result_p { text-align: center; }
#reg_result .reg_check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
}
#reg_result .result_txt,
#reg_result #result_email,
#reg_result > p { text-align: center; }

/* 가입완료 안내문 중앙정렬 (회원 스킨 style.css 의 text-align:left 를 덮어씀) */
#reg_result p.result_txt,
#reg_result p { text-align: center; }
#reg_result #result_email { text-align: center; }

/* ---------- 서브 배너 : 밝은 제품 이미지용 ---------- */
/* 흰 제품컷 위에서는 흰 제목이 안 보이므로 어두운 제목 + 오버레이 제거 */
.sub_title.is_light::before {
  background: none;
}

.sub_title.is_light .title h2 {
  color: var(--primary-color);
  text-shadow: none;
}

.sub_title.is_light .title p {
  color: var(--body-color);
}
