/* 배송대행 신청 - 모던 라이트 테마
   전 연령층이 쉽게 쓰도록: 큰 글자, 큰 터치 영역, 또렷한 대비, 차분한 색감 */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --text: #14161b;
  --muted: #3d4452;
  --hint: #4f5765;
  --line: #e6e8ee;
  --line-strong: #c9ced9;

  --primary: #2f6bf0;
  --primary-strong: #1f51c4;
  --primary-soft: #eaf1fe;

  --food: #c47a0a;
  --food-soft: #fdf1dd;
  --food-line: #f1cf95;

  --danger: #d23b3b;
  --danger-soft: #fdecec;
  --success: #1c9b6b;

  --radius: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;

  --shadow: 0 1px 2px rgba(20, 30, 50, .04), 0 8px 24px rgba(20, 30, 50, .06);
  --ring: 0 0 0 4px rgba(47, 107, 240, .18);
  --font: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
          "Malgun Gothic", "맑은 고딕", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 28px 18px 64px;
}

/* 헤더 */
.hero { text-align: center; margin: 8px 0 22px; }
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-strong);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .01em;
}
.hero h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 14px 0 6px;
  letter-spacing: -.01em;
}
.hero-sub { color: var(--muted); font-size: 15px; margin: 0; }
.hero-sub strong { color: var(--text); font-weight: 600; }

/* 카드 */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.block { padding: 6px 0; }
.block + .block { margin-top: 8px; border-top: 1px solid var(--line); padding-top: 22px; }
.block-title { font-size: 17px; font-weight: 700; margin: 0 0 4px; }
.block-help { color: var(--muted); font-size: 14px; margin: 0 0 16px; }

/* 입력 필드 */
.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .grid-2 { grid-template-columns: 1fr; } }

.label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.req { color: var(--primary); font-style: normal; }

input[type="text"], input[type="tel"], input[type="number"], select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  font-family: inherit;
  font-size: 17px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
input::placeholder { color: var(--hint); }
input:hover, select:hover { border-color: #b8c1d2; }
input:focus, select:focus { border-color: var(--primary); box-shadow: var(--ring); }
input.invalid { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(210, 59, 59, .14); }

textarea { width: 100%; min-height: 90px; padding: 12px 15px; font-family: inherit; font-size: 17px; line-height: 1.6; color: var(--text); background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); outline: none; resize: vertical; transition: border-color .15s, box-shadow .15s; }
textarea::placeholder { color: var(--hint); }
textarea:hover { border-color: #b8c1d2; }
textarea:focus { border-color: var(--primary); box-shadow: var(--ring); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* 세그먼트(선택 버튼) */
.seg { display: flex; gap: 8px; }
.seg-btn {
  flex: 1;
  height: 48px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .14s;
}
.seg-btn:hover { border-color: #b8c1d2; background: var(--surface-soft); }
.seg-btn.is-on {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(47, 107, 240, .25);
}
.seg-food .seg-btn.is-on {
  color: #fff;
  background: var(--food);
  border-color: var(--food);
  box-shadow: 0 2px 6px rgba(196, 122, 10, .25);
}
.seg-btn:focus-visible { outline: none; box-shadow: var(--ring); }

/* 박스 */
.box {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}
.box-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.box-title { font-size: 15px; font-weight: 700; }
.box .label { margin-top: 2px; }

.items { margin-bottom: 8px; }
.irow { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.irow .f-name { flex: 1; }
.irow .f-qty { width: 76px; text-align: center; }
.times { color: var(--hint); font-size: 16px; }

/* 아이콘 버튼(삭제) */
.icon-btn {
  width: 42px; height: 42px;
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .14s;
}
.icon-btn:hover { color: var(--danger); border-color: var(--danger); background: var(--danger-soft); }
.icon-btn:focus-visible { outline: none; box-shadow: var(--ring); }

/* 버튼 */
.btn {
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .14s;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
}
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn:active { transform: translateY(1px); }
.btn-block { width: 100%; }
.btn-lg { height: 56px; font-size: 17px; }
.btn-sm { height: 44px; font-size: 14px; }

.btn-add {
  height: 48px;
  color: var(--primary-strong);
  background: var(--primary-soft);
  border: 1px dashed var(--primary);
}
.btn-add:hover { background: #e0ebfe; }
.btn-add .i { font-weight: 700; margin-right: 4px; }

.btn-primary {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  margin-top: 18px;
}
.btn-primary:hover { background: var(--primary-strong); border-color: var(--primary-strong); }
.btn-primary:disabled { opacity: .55; cursor: default; transform: none; }

.form-foot { text-align: center; color: var(--hint); font-size: 13px; margin: 12px 0 0; }

/* 메시지 */
.message { display: none; margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm); font-size: 14px; }
.message.show { display: block; }
.message.error { color: #9a2a2a; background: var(--danger-soft); border: 1px solid #f3c9c9; }

/* 완료 화면 */
.done { text-align: center; }
.done-icon {
  width: 62px; height: 62px; margin: 4px auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: #fff; background: var(--success);
  border-radius: 50%;
}
.done h2 { font-size: 21px; font-weight: 700; margin: 0 0 6px; }
.done-sub { font-size: 16px; color: var(--text); margin: 0 0 4px; }
.done-sub strong { color: var(--primary-strong); letter-spacing: .04em; }
.done-note { color: var(--muted); font-size: 14px; margin: 0 0 20px; }

.page-foot { text-align: center; color: var(--hint); font-size: 13px; margin-top: 26px; }

/* 허니팟(화면에서 숨김) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===== 홈페이지(원페이지) 추가 스타일 ===== */
html { scroll-behavior: smooth; }
.page { max-width: 760px; }
section[id], #top { scroll-margin-top: 72px; }

/* 상단 내비게이션 */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(180%) blur(8px); backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 760px; margin: 0 auto; height: 58px; padding: 0 18px;
  display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 17px; color: var(--text); text-decoration: none; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px;
  border-radius: 9px; background: var(--primary); color: #fff; font-size: 13px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600; padding: 8px 10px; border-radius: 8px; }
.nav-links a:hover { color: var(--text); background: var(--surface-soft); }
.nav-cta { color: #fff !important; background: var(--primary); }
.nav-cta:hover { background: var(--primary-strong) !important; color: #fff !important; }
@media (max-width: 460px) { .nav-links a:not(.nav-cta) { display: none; } }

/* 소개 배너 */
.hero { padding: 40px 0 26px; }
.hero h1 { font-size: 32px; line-height: 1.25; color: var(--text); }
@media (max-width: 460px) { .hero h1 { font-size: 26px; } }
.hero-cta { display: inline-block; width: auto; height: 64px; line-height: 64px; padding: 0 52px;
  font-size: 19px; text-decoration: none; margin-top: 12px; }
@media (max-width: 460px) { .hero-cta { display: block; width: 100%; padding: 0; } }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px; padding: 0; margin: 20px 0 0; }
.hero-trust li { font-size: 13px; color: var(--muted); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; }

/* 섹션 공통 */
.sec { padding: 32px 0; border-top: 1px solid var(--line); }
.sec-title { font-size: 22px; font-weight: 700; margin: 0 0 6px; text-align: center; }
.sec-sub { color: var(--muted); font-size: 15px; margin: 0 0 22px; text-align: center; }
.sec-sub strong { color: var(--text); }

/* 이용안내 스텝 */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px; }
.step-no { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-strong); font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.step h3 { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* 요금표 */
.table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden; }
.price-table th, .price-table td { padding: 13px 14px; font-size: 15px; text-align: center; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--surface-soft); font-weight: 700; }
.price-table tbody th { text-align: center; color: var(--muted); font-weight: 600; background: var(--surface-soft); white-space: nowrap; }
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: none; }
.price-note { color: var(--muted); font-size: 13px; margin: 12px 0 0; line-height: 1.7; }
.price-note strong { color: var(--text); font-weight: 600; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 2px 16px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 15px 26px 15px 0; font-size: 15px; font-weight: 600; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 2px; top: 13px; font-size: 20px; color: var(--muted); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-a { color: var(--muted); font-size: 14px; padding: 0 0 15px; line-height: 1.75; }

/* 문의처 */
.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 520px) { .contact { grid-template-columns: 1fr; } }
.contact-card { display: flex; flex-direction: column; gap: 4px; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px; transition: all .14s; }
.contact-card:hover { border-color: var(--primary); background: var(--primary-soft); }
.contact-ic { align-self: flex-start; font-size: 12px; font-weight: 700; color: var(--primary-strong);
  background: var(--primary-soft); border-radius: 8px; padding: 4px 10px; }
.contact-card:hover .contact-ic { background: #fff; }
.contact-t { font-size: 15px; font-weight: 700; color: var(--text); margin-top: 6px; }
.contact-v { font-size: 13px; color: var(--muted); }

/* 픽업 배송비 안내 */
.pickup-fee { margin: 9px 0 0; padding: 9px 12px; font-size: 14px; font-weight: 600;
  color: var(--primary-strong); background: var(--primary-soft); border-radius: var(--radius-sm); }
.pickup-fee:empty { display: none; }

/* 카카오톡 문의 */
.contact-kakao { text-align: center; }
.kakao-btn { display: inline-flex; align-items: center; gap: 9px; height: 56px; padding: 0 30px;
  background: #FEE500; color: #3C1E1E; font-size: 16px; font-weight: 700; text-decoration: none;
  border: 1px solid #f4dc00; border-radius: var(--radius-sm); transition: background .14s; }
.kakao-btn:hover { background: #f5dd00; }
.kakao-btn:focus-visible { outline: none; box-shadow: var(--ring); }
.kakao-ic { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px;
  border-radius: 7px; background: #3C1E1E; color: #FEE500; font-size: 11px; font-weight: 700; }
.kakao-name { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.kakao-name strong { color: var(--text); }

/* 요금표 셀 보조 문구 */
.cell-note { display: block; margin-top: 5px; font-size: 12.5px; font-weight: 400; color: var(--muted); line-height: 1.5; }

/* 신청 페이지: 상단 첫 섹션 여백 */
.sec-first { border-top: none; padding-top: 26px; }

/* 적용 요금 표시 박스 */
.rate-box { display: none; align-items: baseline; justify-content: space-between; gap: 10px;
  margin: 2px 0 16px; padding: 14px 16px; background: var(--primary-soft);
  border: 1px solid #cfe0fd; border-radius: var(--radius-sm); }
.rate-box.show { display: flex; }
.rate-label { font-size: 14px; font-weight: 600; color: var(--primary-strong); }
.rate-amount { font-size: 22px; font-weight: 700; color: var(--primary-strong); }
.rate-unit { font-size: 13px; font-weight: 600; }

/* 할증/안내 문구 */
.surcharge-note { margin: 0 0 16px; padding: 11px 14px; font-size: 13px; line-height: 1.6;
  color: var(--muted); background: var(--surface-soft); border: 1px solid var(--line);
  border-radius: var(--radius-sm); }
.surcharge-note strong { color: var(--text); font-weight: 600; }
.lab-note { font-size: 12px; font-weight: 400; color: var(--hint); }

/* 확인(리뷰) 화면 */
.review-title { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.rv-sec { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; margin: 14px 0 12px; }
.rv-row { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.rv-row:last-child { border-bottom: none; }
.rv-k { flex: 0 0 76px; font-size: 13px; font-weight: 600; color: var(--muted); }
.rv-v { flex: 1; font-size: 15px; color: var(--text); word-break: break-word; }
.rv-chip { display: inline-block; font-size: 14px; font-weight: 700; padding: 5px 13px; border-radius: 999px; }
.rv-blue { background: var(--primary); color: #fff; }
.rv-amber { background: var(--food); color: #fff; }
.rv-gray { background: var(--surface-soft); color: var(--muted); border: 1px solid var(--line-strong); }
.rv-rate { font-size: 18px; font-weight: 700; color: var(--primary-strong); }
.rv-box { background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 12px 14px; margin-bottom: 10px; }
.rv-box-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.rv-box-t { font-size: 15px; font-weight: 700; }
.rv-bline { font-size: 14px; color: var(--text); margin-bottom: 8px; }
.rv-bk { font-size: 13px; font-weight: 600; color: var(--muted); margin-right: 8px; }
.rv-items { display: flex; flex-direction: column; gap: 5px; }
.rv-item { font-size: 15px; }
.rv-item b { color: var(--primary-strong); font-weight: 700; }
.review-q { text-align: center; font-size: 16px; font-weight: 600; margin: 18px 0 12px; }
.review-actions { display: flex; gap: 10px; }
.review-actions .btn { flex: 1; height: 54px; font-size: 16px; }
.review-actions .btn-primary { flex: 1.6; margin-top: 0; }

/* 통관비 안내 (물품금액 $1,000 이상) */
.customs-hint { margin-top: 8px; padding: 10px 12px; border-radius: 8px; background: var(--food-soft); border: 1px solid var(--food-line); color: var(--food); font-size: 13px; line-height: 1.55; }

/* 직접드랍 안내 (송장번호 칸 대신 표시) */
.drop-note { margin: 0 0 16px; padding: 11px 13px; border-radius: 9px; background: var(--primary-soft); border: 1px solid #cbdcfb; color: var(--primary-strong); font-size: 13px; line-height: 1.5; }

/* 식품 선택 시 할증 안내 */
.food-fee { margin: 9px 0 0; padding: 9px 12px; font-size: 13px; line-height: 1.5;
  color: var(--food); background: var(--food-soft); border: 1px solid var(--food-line);
  border-radius: var(--radius-sm); }
.food-fee[hidden] { display: none; }
.food-fee strong { font-weight: 700; }

/* 선택한 버튼에 체크 표시 (PC·모바일 공통으로 선택값 강조) */
.seg-btn.is-on::before { content: "\2713"; margin-right: 6px; font-weight: 700; }

/* ===== 홈: 서비스 선택 카드(배송대행/구매대행) ===== */
.pick { display: flex; flex-direction: column; gap: 10px; max-width: 470px; margin: 20px auto 0; }
.pick-card { display: flex; align-items: center; gap: 14px; text-align: left; padding: 18px;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-md);
  text-decoration: none; color: var(--text); transition: all .14s; }
.pick-card:hover { border-color: var(--primary); background: var(--primary-soft); }
.pick-ic { flex: 0 0 auto; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--primary-soft); color: var(--primary-strong); font-size: 22px; }
.pick-tx { display: flex; flex-direction: column; }
.pick-t { font-size: 17px; font-weight: 700; }
.pick-d { font-size: 13.5px; color: var(--muted); }
.pick-go { margin-left: auto; color: var(--primary); font-size: 24px; font-weight: 700; line-height: 1; }

/* 직배송 주소 거리 안내 */
.dist-msg { margin-top: 8px; padding: 10px 12px; border-radius: 10px; font-size: 13.5px; line-height: 1.55; }
.dist-msg.checking { background: #f1f0ec; color: #6b6b6b; }
.dist-msg.ok { background: #e7f6ec; color: #1a7a3c; }
.dist-msg.warn { background: #fef3d6; color: #8a5a00; }
.dist-msg .dist-title { font-weight: 700; }

/* 연락처: '02' 고정 접두 + 뒷번호 입력 */
.phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  transition: border-color .15s, box-shadow .15s;
}
.phone-wrap:focus-within { border-color: var(--primary); box-shadow: var(--ring); }
.phone-wrap.invalid { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(210,59,59,.14); }
.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 50px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  border-right: 1px solid var(--line);
  user-select: none;
}
.phone-wrap input[type="tel"] {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* 접수 확인 화면: 직배송 지방배송 안내 */
.rv-jibang {
  margin: 10px 0 4px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--food-soft);
  border: 1px solid var(--food-line);
  color: var(--food);
  font-size: 13.5px;
  line-height: 1.65;
}
.rv-jibang .rv-jibang-t { display: block; font-weight: 700; margin-bottom: 4px; }

/* 언어 전환 버튼 (한국어 / EN) — 모바일에서도 항상 보이도록 유지 */
.lang-switch { display: inline-flex; margin-left: 6px; border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden; }
.lang-btn { appearance: none; -webkit-appearance: none; border: 0; background: transparent; color: var(--muted); font: inherit; font-size: 13px; font-weight: 700; padding: 6px 11px; cursor: pointer; line-height: 1; }
.lang-btn.is-on { background: var(--primary); color: #fff; }
.lang-btn:not(.is-on):hover { color: var(--text); background: var(--surface-soft); }

/* 예상 배송비 계산기 (홈) */
.calc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px; }
.calc-card .field { margin-bottom: 14px; }
.calc-dims { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.calc-dims .field { margin-bottom: 14px; }
.calc-out { background: var(--surface-soft); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin-top: 2px; font-size: 14px; color: var(--text); }
.calc-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 4px 0; }
.calc-basis { color: var(--muted); font-size: 12.5px; }
.calc-charge { font-weight: 600; }
.calc-div { border-top: 1px dashed var(--line-strong); margin: 8px 0; }
.calc-total > span:first-child { font-weight: 700; }
#calc-o-cost { font-size: 20px; font-weight: 700; color: var(--primary); }
.calc-note { font-size: 11px; color: var(--muted); font-weight: 400; }
.calc-warn { margin: 14px 0 0; padding: 11px 13px; border-radius: 9px; background: #fdecec; color: #d92d20; font-size: 13px; font-weight: 600; line-height: 1.55; }
.calc-warn u { text-underline-offset: 2px; }
.calc-image { margin-top: 14px; }
.calc-image img { width: 100%; border-radius: 10px; display: block; }
.calc-image-ph { text-align: center; color: var(--muted); font-size: 12.5px; padding: 22px; border: 1px dashed var(--line-strong); border-radius: 10px; }
