@charset "utf-8";
/* ══════════════════════════════════════════════════════════════════════
   MORRO 모로 — 프리미엄 반려 라이프스타일 숍
   토큰 정본: 05-data/design-tokens.json · 레이아웃 정본: 01-reference-screens/hq
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --ink: #171817;
  --ivory: #f3efe6;
  --paper: #fbf9f4;
  --fern: #6e8065;
  --fern-deep: #435240;
  --clay: #c77758;
  --lemon: #e7d35d;
  --line: #d8d2c7;
  --line-2: #e6e1d6;
  --muted: #77786f;
  --error: #b44336;
  --success: #4c6b4b;

  --f-sans: "Pretendard Variable", Pretendard, -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --f-serif: "Noto Serif KR", "Nanum Myeongjo", Batang, serif;
  --f-disp: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --wrap: 1320px;
  --gut: 24px;
  --an-h: 42px;
  --hd-h: 106px;
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--ivory); color: var(--ink);
  font-family: var(--f-sans); font-size: 16px; line-height: 1.55;
  letter-spacing: -.02em; -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -.035em; }
p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
table { border-collapse: collapse; }

.wrap { width: min(var(--wrap), calc(100% - 48px)); margin: 0 auto; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 99; background: var(--ink); color: #fff; padding: 10px 16px; }
.skip:focus { left: 12px; top: 12px; }
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--fern); outline-offset: 2px;
}
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── 공지 바 ─────────────────────────────────────────────────────────── */
.announce {
  position: relative; height: var(--an-h); background: var(--fern); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.announce p { font-size: 12.5px; letter-spacing: -.01em; text-align: center; }
.an-x { position: absolute; right: 22px; border: 0; background: transparent; color: rgba(255,255,255,.85); padding: 4px; line-height: 0; }
.an-x svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.5; }

/* ── 헤더 ────────────────────────────────────────────────────────────── */
.hd { height: var(--hd-h); background: var(--paper); border-bottom: 1px solid var(--line); }
.hd-in { height: 100%; display: flex; align-items: center; gap: 40px; }
.mark { font-family: var(--f-disp); font-size: 33px; font-weight: 600; letter-spacing: .06em; line-height: 1; }
.hd-nav { display: flex; gap: 38px; margin-left: 26px; }
.hd-nav a {
  position: relative; font-size: 13.5px; font-weight: 600; letter-spacing: .05em;
  padding: 6px 0; color: var(--ink);
}
.hd-nav a[aria-current="page"] { color: var(--fern-deep); }
.hd-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; border-bottom: 1.5px solid var(--fern);
}
.hd-ico { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.hd-ico a { position: relative; line-height: 0; }
.hd-ico svg { width: 21px; height: 21px; fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.hd-bag i {
  position: absolute; top: -5px; right: -6px; min-width: 15px; height: 15px; padding: 0 4px;
  border-radius: 999px; background: var(--fern); color: #fff;
  font-style: normal; font-size: 9.5px; font-weight: 700; line-height: 15px; text-align: center;
}

/* ── 버튼 ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 26px; border: 0; border-radius: var(--r-xs);
  font-size: 14px; font-weight: 600; letter-spacing: -.01em; white-space: nowrap;
}
.btn-fern { background: var(--fern); color: #fff; }
.btn-fern:hover { background: var(--fern-deep); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.btn-line:hover { background: rgba(23,24,23,.05); }
.btn-soft { background: var(--paper); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-soft:hover { box-shadow: inset 0 0 0 1px var(--muted); }
.btn-pay { background: var(--fern); color: #fff; }
.btn-pay2 { background: var(--lemon); color: var(--ink); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 12.5px; }
.btn-lg { height: 56px; font-size: 15px; }
.btn-full { width: 100%; }

/* ── 공통 조각 ───────────────────────────────────────────────────────── */
.disp { font-family: var(--f-disp); font-weight: 500; letter-spacing: .01em; line-height: 1.05; }
.kser { font-family: var(--f-serif); font-weight: 500; }
.eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; color: var(--muted); }
.sec-h { font-size: 24px; font-weight: 700; letter-spacing: -.045em; }
.dim { color: var(--muted); }
.more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink); }
.more svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

.badge { display: inline-block; padding: 4px 9px; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.badge.new { background: var(--fern); color: #fff; }
.badge.best { background: var(--lemon); color: var(--ink); }
.badge.today { background: var(--fern); color: #fff; }
.badge.sale { background: var(--clay); color: #fff; }

/* 상품 카드 */
.pcard { position: relative; }
.pcard .thumb { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--paper); }
.pcard .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pcard .badge { position: absolute; left: 10px; top: 10px; z-index: 2; }
.pcard .wish {
  position: absolute; right: 10px; top: 10px; z-index: 2; border: 0; background: transparent; padding: 2px; line-height: 0;
}
.pcard .wish svg { width: 19px; height: 19px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.pcard h3 { margin-top: 22px; font-size: 14px; font-weight: 500; letter-spacing: -.03em; }
.pcard .sub { margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.pcard .price { margin-top: 16px; font-size: 14.5px; font-weight: 700; }
.pcard .price:has(.off) { color: var(--error); }
.pcard .price .off { color: var(--error); margin-right: 6px; }
.pcard .price del { margin-left: 6px; font-weight: 400; font-size: 12.5px; color: var(--muted); }
.swatch { display: flex; gap: 7px; margin-top: 11px; }
.swatch i { width: 13px; height: 13px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(23,24,23,.16); }
.sizes { display: flex; gap: 9px; margin-top: 9px; font-size: 11.5px; color: var(--muted); }

/* ── 푸터 ────────────────────────────────────────────────────────────── */
.ft { background: var(--paper); border-top: 1px solid var(--line); padding: 22px 0 0; margin-top: 0; }
.ft-in { display: grid; grid-template-columns: 250px repeat(4, 1fr); gap: 24px; }
.ft-brand .mark { font-size: 27px; }
.ft-brand p { margin-top: 11px; font-size: 12px; line-height: 1.65; color: var(--muted); }
.ft-soc { display: flex; gap: 10px; margin-top: 16px; }
.ft-soc a { width: 30px; height: 30px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; }
.ft-soc svg { width: 15px; height: 15px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.ft h3 { font-size: 12.5px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 9px; }
.ft ul li { font-size: 12px; line-height: 1.7; color: var(--muted); }
.ft ul li a:hover { color: var(--ink); }
.ft-tel { font-size: 16px; font-weight: 700; letter-spacing: -.03em; }
.ft-hours { margin: 5px 0 7px; }
.ft-hours li { line-height: 1.6; }
.ft-biz div { display: flex; gap: 10px; font-size: 11.5px; line-height: 1.45; color: var(--muted); }
.ft-biz dt { flex: none; width: 86px; }
.ft-biz dd { min-width: 0; }
.ft-legal {
  display: flex; align-items: center; gap: 20px; margin-top: 14px; padding: 11px 0 13px;
  border-top: 1px solid var(--line); font-size: 11.5px; color: var(--muted);
}
.ft-pay { margin-left: auto; display: flex; gap: 8px; }
.ft-pay span { padding: 4px 10px; box-shadow: inset 0 0 0 1px var(--line); font-size: 10.5px; letter-spacing: -.01em; }
.ft-top { width: 30px; height: 30px; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line); }
.ft-top svg { width: 15px; height: 15px; fill: none; stroke: var(--ink); stroke-width: 1.4; }

/* ── 반응형 (공용) ───────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .hd-nav { gap: 24px; margin-left: 14px; }
  .hd-in { gap: 20px; }
  .ft-in { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .wrap { width: calc(100% - 32px); }
  .hd-nav { display: none; }
  .mark { font-size: 26px; }
  .hd { height: 68px; }
  :root { --hd-h: 68px; }
  .ft-in { grid-template-columns: 1fr; }
  .ft-legal { flex-wrap: wrap; }
  .ft-pay { margin-left: 0; flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════════════════════
   01 홈
   ══════════════════════════════════════════════════════════════════════ */
.hero { position: relative; height: 577px; background: var(--paper); overflow: hidden; }
.hero-ph { position: absolute; right: 0; top: 0; width: 977px; height: 100%; }
.hero-ph img { width: 100%; height: 100%; object-fit: cover; }
.hero-in { position: relative; height: 100%; display: flex; align-items: center; }
.hero-t { position: relative; padding-left: 34px; }
.hero-t::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; border-left: 1px solid var(--ink); }
.hero h1 { font-size: 47px; line-height: 1.42; letter-spacing: -.04em; }
.hero-t p { margin-top: 30px; font-size: 14.5px; line-height: 1.85; color: #3d3f3b; }
.hero-t .btn { margin-top: 32px; height: 46px; padding: 0 32px; font-size: 13.5px; }

.cats { padding: 37px 0 0; }
.cats-in { display: grid; grid-template-columns: repeat(6, 1fr); gap: 21px; }
.cat { display: block; background: var(--paper); }
.cat-ph { display: block; aspect-ratio: 185 / 107; overflow: hidden; background: var(--paper); }
.cat-ph img { width: 100%; height: 100%; object-fit: cover; }
.cat b { display: block; margin: 20px 0 0 16px; font-size: 13px; font-weight: 700; letter-spacing: .1em; }
.cat em { display: flex; align-items: center; gap: 6px; margin: 9px 0 26px 16px; font-style: normal; font-size: 13px; color: var(--fern); }
.cat .ch { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.sec-bar { display: flex; align-items: baseline; gap: 16px; }
.sec-bar .more { margin-left: auto; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 23px; }

.sel { padding: 22px 0 0; }
.sel .grid4 { margin-top: 43px; }

.jr { padding: 5px 0 0; }
.sel .grid4 > li { padding-bottom: 44px; }
.jr-in { display: grid; grid-template-columns: 587px 1fr; align-items: stretch; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); }
.jr-ph { display: block; overflow: hidden; }
.jr-ph img { width: 100%; height: 100%; object-fit: cover; }
.jr-t { padding: 46px 48px 40px; display: flex; flex-direction: column; }
.jr-t h2 { margin-top: 18px; font-size: 30px; line-height: 1.42; letter-spacing: -.04em; }
.jr-d { margin-top: 20px; font-size: 13.5px; line-height: 1.85; color: var(--muted); }
.jr-t .more { margin-top: 26px; align-self: flex-start; }
.jr-pg { margin-top: auto; display: flex; align-items: center; justify-content: flex-end; gap: 12px; font-size: 12.5px; color: var(--muted); }
.jr-pg b { font-weight: 600; color: var(--ink); }
.jr-pg i { width: 34px; border-top: 1px solid var(--line); }

.bns { padding: 45px 0 0; }
.bns-in { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bn { display: grid; grid-template-columns: 1fr 322px; align-items: stretch; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); min-height: 222px; }
.bn-t { display: flex; flex-direction: column; justify-content: center; padding: 30px 32px; }
.bn-t b { margin-top: 12px; font-size: 21px; font-weight: 500; letter-spacing: -.04em; }
.bn-t .more { margin-top: 20px; }
.bn-ph { overflow: hidden; }
.bn-ph img { width: 100%; height: 100%; object-fit: cover; }

.memb { padding: 49px 0 0; }
.memb-in { display: grid; grid-template-columns: 400px 1fr; gap: 30px; align-items: center; }
.memb-t h2 { margin-top: 12px; font-size: 25px; letter-spacing: -.045em; }
.memb-l { display: grid; grid-template-columns: repeat(4, 1fr); }
.memb-l li { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: center; padding: 20px 0 20px 26px; border-left: 1px solid var(--line); }
.memb-l li:first-child { border-left: 0; padding-left: 0; }
.memb-l svg { width: 30px; height: 30px; fill: none; stroke: var(--ink); stroke-width: 1.1; }
.memb-l b { display: block; font-size: 12.5px; font-weight: 700; }
.memb-l span { display: block; margin-top: 5px; font-size: 12px; color: var(--muted); }
.memb-more { display: flex; justify-content: flex-end; margin-top: 26px; }

.brv { padding: 20px 0 0; }
.brv-h { font-size: 22px; letter-spacing: .04em; }
.brv-l { margin-top: 22px; gap: 20px; }
.brv-l li { display: grid; grid-template-columns: 116px 1fr; background: var(--paper); }
.brv-ph { display: block; overflow: hidden; }
.brv-ph img { width: 100%; height: 100%; object-fit: cover; }
.brv-l > li > div { padding: 20px 18px 18px; display: flex; flex-direction: column; }
.stars { font-size: 12px; letter-spacing: .12em; color: var(--ink); }
.brv-x { margin-top: 12px; font-size: 12.5px; line-height: 1.75; color: #3d3f3b; }
.brv-w { margin-top: auto; padding-top: 14px; font-size: 12px; color: var(--muted); }

.lt { padding: 33px 0 41px; }
.lt-in { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; box-shadow: inset 0 0 0 1px var(--line); padding: 30px 44px; }
.lt-h { margin-top: 14px; font-size: 21px; line-height: 1.6; letter-spacing: -.04em; }
.lt-row { display: flex; gap: 10px; }
.lt-row input { flex: 1; min-width: 0; height: 48px; padding: 0 16px; border: 1px solid var(--line); background: var(--paper); font-size: 13.5px; border-radius: var(--r-xs); }
.lt-row input::placeholder { color: var(--muted); }
.lt-row .btn { flex: none; padding: 0 34px; }
.chk { display: flex; align-items: center; gap: 9px; margin-top: 15px; font-size: 12px; color: var(--muted); }
.chk input { width: 15px; height: 15px; accent-color: var(--fern); flex: none; }

@media (max-width: 1199px) {
  .hero { height: auto; }
  .hero-ph { position: static; width: 100%; height: 260px; }
  .hero-in { padding: 34px 0 40px; }
  .hero h1 { font-size: 36px; }
  .cats-in { grid-template-columns: repeat(3, 1fr); }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .jr-in, .bns-in, .memb-in, .lt-in { grid-template-columns: 1fr; }
  .memb-l { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .memb-l li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .bn { grid-template-columns: 1fr; }
  .bn-ph { height: 180px; }
}
@media (max-width: 767px) {
  .cats-in { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid4 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .brv-l { grid-template-columns: 1fr; }
  .lt-in { padding: 26px 20px; }
  .lt-row { flex-wrap: wrap; }
  .lt-row .btn { width: 100%; }
  .memb-l { grid-template-columns: 1fr; }
  .memb-l li { border-left: 0; padding-left: 0; }
}

/* ══════════════════════════════════════════════════════════════════════
   02 NEW ARRIVALS (목록 · 필터)
   ══════════════════════════════════════════════════════════════════════ */
.nh { background: var(--paper); }
.nh-in { display: grid; grid-template-columns: 1fr 528px; gap: 40px; align-items: center; min-height: 341px; }
.nh-t h1 { font-size: 55px; letter-spacing: .015em; }
.nh-t p { margin-top: 24px; font-size: 13.5px; line-height: 1.95; color: var(--muted); }
.nh-ph { margin-right: calc((100vw - min(var(--wrap), 100vw - 48px)) / -2); }
.nh-ph img { width: 100%; height: 279px; object-fit: cover; }

.shop { display: grid; grid-template-columns: 236px 1fr; gap: 42px; align-items: start; padding-top: 34px; }
.filters { padding-right: 6px; }
.filters section { padding: 16px 0; }
.filters section:first-child { padding-top: 0; }
.filters h2 { font-size: 14px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 13px; }
.chk2 { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 13px; color: var(--muted); }
.chk2 input { width: 15px; height: 15px; accent-color: var(--fern); flex: none; }
.chk2 .badge { padding: 2px 7px; font-size: 10px; margin-left: 4px; }
.fcat li { font-size: 13px; line-height: 2.25; color: var(--muted); }
.fcat a:hover { color: var(--ink); }
.range { position: relative; height: 14px; margin: 6px 0 0; }
.range i { position: absolute; left: 0; right: 0; top: 6px; border-top: 1px solid var(--ink); }
.range b { position: absolute; top: 2px; width: 11px; height: 11px; border-radius: 50%; background: var(--ink); }
.range .d1 { left: 0; } .range .d2 { right: 0; }
.range-l { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12px; color: var(--muted); }
.fmore { border: 0; background: transparent; padding: 6px 0 0; font-size: 12.5px; color: var(--muted); }
.freset { margin-top: 20px; height: 46px; font-size: 13px; }

.plist-bar { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; }
.cnt { font-size: 13px; color: var(--muted); }
.cnt b { color: var(--ink); font-weight: 600; }
.sel-w { position: relative; margin-left: auto; }
.sel-w select {
  appearance: none; height: 34px; padding: 0 32px 0 12px; border: 1px solid var(--line);
  background: var(--paper); font-size: 12.5px; border-radius: var(--r-xs);
}
.sel-w .cv { position: absolute; right: 13px; top: 12px; width: 7px; height: 7px; border-right: 1.4px solid var(--muted); border-bottom: 1.4px solid var(--muted); rotate: 45deg; pointer-events: none; }
.pgrid { gap: 13px 13px; }
.pgrid .thumb { aspect-ratio: 234 / 292; }
.pgrid h3 { margin-top: 16px; }
.pgrid .price { margin-top: 10px; font-size: 13.5px; }
.pgrid .swatch { margin-top: 12px; }
.pgrid > li { padding-bottom: 34px; }
.pager { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 0 0; }
.pager a { min-width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; color: var(--muted); }
.pager a[aria-current="page"] { color: var(--ink); font-weight: 700; box-shadow: inset 0 0 0 1px var(--line); }

.recent { border-top: 1px solid var(--line); margin-top: 28px; padding: 30px 0 46px; }
.rc-row { display: grid; grid-template-columns: 30px 1fr 30px; gap: 12px; align-items: center; margin-top: 18px; }
.rc-a { border: 0; background: transparent; font-size: 18px; color: var(--muted); height: 30px; }
.rc-l { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.rc-ph { display: block; aspect-ratio: 166 / 90; overflow: hidden; background: var(--paper); }
.rc-ph img { width: 100%; height: 100%; object-fit: cover; }
.rc-l b { display: block; margin-top: 12px; font-size: 12.5px; font-weight: 500; }
.rc-l em { display: block; margin-top: 6px; font-style: normal; font-size: 12.5px; font-weight: 700; }

@media (max-width: 1199px) {
  .nh-in { grid-template-columns: 1fr; gap: 24px; min-height: 0; padding: 30px 0 0; }
  .nh-t h1 { font-size: 40px; }
  .nh-ph { margin-right: 0; }
  .shop { grid-template-columns: 1fr; gap: 24px; }
  .filters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 24px; }
  .filters .rule, .freset { grid-column: 1 / -1; }
  .rc-l { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .nh-t h1 { font-size: 30px; }
  .filters { grid-template-columns: 1fr 1fr; }
  .rc-l { grid-template-columns: repeat(2, 1fr); }
  .pgrid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════
   03 WALK 카테고리
   ══════════════════════════════════════════════════════════════════════ */
.wh { position: relative; height: 637px; overflow: hidden; background: var(--paper); }
.wh-ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wh-in { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.wh h1 { font-size: 60px; letter-spacing: .012em; }
.wh-in p { margin-top: 20px; font-size: 19px; font-weight: 600; letter-spacing: -.04em; }

.wchips { padding: 30px 0 0; }
.wchips-in { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.wchip {
  display: flex; align-items: center; justify-content: center; gap: 11px; height: 60px;
  box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); font-size: 13.5px; letter-spacing: -.03em;
}
.wchip svg { width: 19px; height: 19px; fill: none; stroke: var(--muted); stroke-width: 1.3; }
.wchip.on { box-shadow: inset 0 0 0 1px var(--fern); color: var(--fern-deep); }
.wchip.on svg { stroke: var(--fern); }

.wfeat { padding: 34px 0 0; border-top: 1px solid var(--line); margin-top: 32px; }
.wfeat-in { display: grid; grid-template-columns: 348px 1fr; gap: 24px; padding-top: 30px; }
.wfeat-t p { margin-top: 20px; font-size: 13px; line-height: 2; color: var(--muted); }
.wfeat-l { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wf-ph { display: block; aspect-ratio: 247 / 256; overflow: hidden; background: var(--paper); }
.wf-ph img { width: 100%; height: 100%; object-fit: cover; }
.wfeat-l b { display: block; margin-top: 15px; font-size: 13px; font-weight: 500; }
.wfeat-l em { display: block; margin-top: 8px; font-style: normal; font-size: 13px; font-weight: 700; }

.wbar { display: flex; align-items: center; gap: 14px; margin-top: 36px; padding: 16px 0 20px; border-top: 1px solid var(--line); }
.wbar .sel-w { margin-left: auto; }
.wfilter { display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; font-size: 12.5px; }
.wfilter svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.4; }
.wgrid { gap: 24px; }
.wgrid .thumb { aspect-ratio: 264 / 287; }
.badge.bot { top: auto; bottom: 12px; }
.wgrid > li { padding-bottom: 40px; }

.wsize { padding: 6px 0 0; }
.wsize-in { display: grid; grid-template-columns: 300px 260px 1fr; gap: 34px; align-items: center; box-shadow: inset 0 0 0 1px var(--line); padding: 30px 34px; }
.dogline { width: 100%; height: auto; }
.wsize-t p { margin-top: 16px; font-size: 13px; line-height: 1.9; color: var(--muted); }
.wsize-t .btn { margin-top: 20px; }
.wsize-tb { width: 100%; }
.wsize-tb th, .wsize-tb td { padding: 13px 10px; font-size: 13px; text-align: center; }
.wsize-tb thead th { font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--line); }
.wsize-tb tbody tr { border-bottom: 1px solid var(--line-2); }
.wsize-tb tbody tr:last-child { border-bottom: 0; }
.wsize-tb tbody th { font-weight: 700; }

.wtips { padding: 42px 0 54px; }
.wtips-h { align-items: flex-end; }
.wtips-h p { margin-top: 10px; font-size: 13px; }
.wtips-l { display: grid; grid-template-columns: repeat(3, 1fr); gap: 27px; margin-top: 22px; }
.wt-ph { display: block; aspect-ratio: 365 / 179; overflow: hidden; background: var(--paper); }
.wt-ph img { width: 100%; height: 100%; object-fit: cover; }
.wt-k { display: block; margin-top: 16px; font-style: normal; font-size: 11.5px; color: var(--muted); }
.wtips-l b { display: block; margin-top: 10px; font-size: 15px; font-weight: 600; letter-spacing: -.04em; }
.wt-d { display: block; margin-top: 11px; font-size: 12.5px; line-height: 1.75; color: var(--muted); }
.wtips-l time { display: block; margin-top: 14px; font-size: 11.5px; color: var(--muted); }

@media (max-width: 1199px) {
  .wh { height: 400px; }
  .wh h1 { font-size: 40px; }
  .wchips-in { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .wfeat-in { grid-template-columns: 1fr; }
  .wsize-in { grid-template-columns: 1fr; }
  .wtips-l { grid-template-columns: 1fr; }
  .wgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .wh { height: 300px; } .wh h1 { font-size: 30px; }
  .wchips-in { grid-template-columns: 1fr 1fr; }
  .wfeat-l { grid-template-columns: 1fr; }
  .wsize-in { padding: 20px; }
  .wsize-tb { display: block; overflow-x: auto; }
}

/* ══════════════════════════════════════════════════════════════════════
   04 에디토리얼 컬렉션
   ══════════════════════════════════════════════════════════════════════ */
.eh { position: relative; height: 694px; overflow: hidden; background: var(--paper); }
.eh-ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.eh-in { position: relative; padding-top: 90px; }
.eh h1 { font-size: 62px; line-height: 1.12; }
.eh-s { margin-top: 24px; font-size: 21px; font-weight: 700; letter-spacing: -.045em; }
.eh-d { margin-top: 30px; font-size: 13.5px; line-height: 2; color: #3d3f3b; }
.hot { position: absolute; display: flex; align-items: center; gap: 10px; translate: -50% -50%; z-index: 3; }
.hot i {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; font-style: normal; font-size: 13px; color: var(--ink);
  box-shadow: 0 1px 6px rgba(23,24,23,.18);
}
.hot span { background: var(--paper); padding: 9px 13px; box-shadow: 0 1px 6px rgba(23,24,23,.12); }
.hot b { display: block; font-size: 11.5px; font-weight: 600; white-space: nowrap; }
.hot em { display: block; margin-top: 4px; font-style: normal; font-size: 11.5px; font-weight: 700; }

.chap { padding: 54px 0 0; }
.chap-in { display: grid; grid-template-columns: 253px 541px 1fr; gap: 24px; align-items: start; }
.chap.rev .chap-in { grid-template-columns: 253px 562px 1fr; }
.chap.rev .chap-t { order: 3; }
.chap.rev .chap-r { order: 1; }
.chap-en { margin-top: 12px; font-size: 40px; letter-spacing: .02em; }
.chap-h { margin-top: 20px; font-size: 21px; line-height: 1.6; letter-spacing: -.045em; }
.chap-d { margin-top: 22px; font-size: 12.5px; line-height: 1.9; color: var(--muted); }
.chap-m { margin-top: 130px; }
.ar { font-size: 15px; }
.chap-ph img { width: 100%; height: auto; }
.ch-p { box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); }
.ch-p li { border-bottom: 1px solid var(--line); }
.ch-p li:last-child { border-bottom: 0; }
.ch-p a { display: grid; grid-template-columns: 82px 1fr; gap: 14px; align-items: center; padding: 16px 14px; }
.chap-ph, .ch-ph { background: var(--paper); }
.ch-ph { display: block; aspect-ratio: 82 / 76; overflow: hidden; }
.ch-ph img { width: 100%; height: 100%; object-fit: cover; }
.ch-x b { display: block; font-size: 12.5px; font-weight: 500; }
.ch-x em { display: block; margin-top: 7px; font-style: normal; font-size: 12.5px; font-weight: 700; }
.ch-x i { display: block; margin-top: 6px; font-style: normal; font-size: 11.5px; color: var(--muted); }

.story { padding: 54px 0 0; }
.story-row { margin-top: 20px; }
.story-l { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.st-ph { display: block; aspect-ratio: 174 / 161; overflow: hidden; background: var(--paper); }
.st-ph img { width: 100%; height: 100%; object-fit: cover; }
.story-l b { display: block; margin-top: 14px; font-size: 12.5px; font-weight: 500; text-align: center; }
.story-l em { display: block; margin-top: 8px; font-style: normal; font-size: 12.5px; font-weight: 700; text-align: center; }

.ejr { padding: 48px 0 60px; }
.ejr-l { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 20px; }
.ejr-l li { background: var(--paper); }
.ej-ph { display: block; aspect-ratio: 262 / 140; overflow: hidden; }
.ej-ph img { width: 100%; height: 100%; object-fit: cover; }
.ej-x { display: block; padding: 16px 18px 18px; }
.ej-x em { display: block; font-style: normal; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; color: var(--muted); }
.ej-x b { display: block; margin-top: 11px; font-size: 13.5px; font-weight: 600; letter-spacing: -.04em; line-height: 1.5; }
.ej-x i { display: block; margin-top: 7px; font-style: normal; font-size: 12.5px; color: var(--muted); }
.ej-f { display: flex; align-items: center; margin-top: 16px; font-size: 11.5px; color: var(--muted); }
.ej-f .ar { margin-left: auto; color: var(--ink); }

@media (max-width: 1199px) {
  .eh { height: 460px; } .eh h1 { font-size: 40px; } .eh-in { padding-top: 46px; }
  .hot { display: none; }
  .chap-in, .chap.rev .chap-in { grid-template-columns: 1fr; }
  .chap.rev .chap-t, .chap.rev .chap-r { order: 0; }
  .chap-m { margin-top: 26px; }
  .story-l { grid-template-columns: repeat(3, 1fr); }
  .ejr-l { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .eh { height: 380px; } .eh h1 { font-size: 30px; }
  .story-l { grid-template-columns: repeat(2, 1fr); }
  .ejr-l { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════
   05 브랜드 인덱스
   ══════════════════════════════════════════════════════════════════════ */
.bh { padding: 74px 0 0; }
.bh-in { display: flex; align-items: flex-start; gap: 30px; }
.bh h1 { font-size: 74px; letter-spacing: .01em; }
.bh-in p { margin-top: 34px; font-size: 18px; line-height: 1.85; letter-spacing: -.045em; }
.bh-line { margin-left: auto; width: 260px; height: auto; mix-blend-mode: multiply; }
.baz { border-top: 1px solid var(--line); margin-top: 74px; }
.baz-in { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 16px; padding: 43px 0; }
.baz b { font-size: 13px; font-weight: 600; margin-right: 26px; }
.baz a { font-size: 13px; color: var(--muted); }
.baz a[aria-current="true"] { color: var(--ink); font-weight: 700; }
.bfil { display: flex; align-items: center; gap: 20px; padding-bottom: 41px; }
.bsearch { position: relative; width: 366px; }
.bsearch input { width: 100%; height: 52px; padding: 0 44px 0 16px; border: 1px solid var(--line); background: var(--paper); font-size: 13px; border-radius: var(--r-xs); }
.bsearch svg { position: absolute; right: 15px; top: 17px; width: 18px; height: 18px; fill: none; stroke: var(--muted); stroke-width: 1.4; }
.bchips { display: flex; gap: 12px; margin-left: auto; }
.bchip { display: inline-flex; align-items: center; justify-content: center; min-width: 90px; height: 52px; padding: 0 18px; box-shadow: inset 0 0 0 1px var(--line); font-size: 13px; letter-spacing: .04em; }
.bchip.on { background: var(--fern); color: #fff; box-shadow: none; }

.brow { display: grid; grid-template-columns: 360px 1fr 464px; gap: 24px; align-items: center; padding: 46px 0; border-top: 1px solid var(--line); }
.bname { font-size: 47px; letter-spacing: -.01em; }
.bdesc p { font-size: 13px; line-height: 1.85; color: #3d3f3b; }
.btag { margin-top: 20px; font-size: 12.5px; letter-spacing: .06em; color: var(--fern); }
.bph { display: block; aspect-ratio: 464 / 189; overflow: hidden; background: var(--paper); }
.bph img { width: 100%; height: 100%; object-fit: cover; }

.bidx { padding: 60px 0 0; border-top: 1px solid var(--line); margin-top: 22px; }
.bidx-h { font-size: 27px; }
.bidx-l { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; margin-top: 26px; }
.bidx-l li { border-bottom: 1px solid var(--line-2); }
.bidx-l a { display: flex; align-items: center; gap: 30px; padding: 20px 4px; font-size: 13px; }
.bidx-l em { font-style: normal; font-weight: 700; width: 14px; }
.bidx-l .ch { margin-left: auto; width: 12px; height: 12px; fill: none; stroke: var(--muted); stroke-width: 1.5; }

.bcta { padding: 56px 0 60px; }
.bcta-in { display: grid; grid-template-columns: 340px 1fr auto; gap: 40px; align-items: center; background: #e3ddd1; }
.bcta-ph { width: 100%; height: 242px; object-fit: cover; }
.bcta-h { font-size: 21px; letter-spacing: -.04em; }
.bcta-t p:last-child { margin-top: 16px; font-size: 13px; line-height: 1.8; color: #3d3f3b; }
.bcta-b { margin-right: 40px; min-width: 176px; height: 52px; justify-content: space-between; background: transparent; box-shadow: inset 0 0 0 1px var(--ink); }
.bcta-b .ch { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.5; }

@media (max-width: 1199px) {
  .bh h1 { font-size: 40px; }
  .bh-line { display: none; }
  .bfil { flex-wrap: wrap; }
  .bchips { margin-left: 0; flex-wrap: wrap; }
  .brow { grid-template-columns: 1fr; }
  .bname { font-size: 34px; }
  .bidx-l { grid-template-columns: 1fr; gap: 0; }
  .bcta-in { grid-template-columns: 1fr; gap: 0; }
  .bcta-t { padding: 22px 24px 0; }
  .bcta-b { margin: 20px 24px 24px; }
}
@media (max-width: 767px) { .bh h1 { font-size: 30px; } .bsearch { width: 100%; } }

/* ══════════════════════════════════════════════════════════════════════
   06 상품 상세
   ══════════════════════════════════════════════════════════════════════ */
.crumb { display: flex; align-items: center; gap: 9px; padding: 22px 0; font-size: 12px; color: var(--muted); }
.crumb .ch { width: 11px; height: 11px; fill: none; stroke: var(--line); stroke-width: 1.5; }
.crumb b { font-weight: 500; color: var(--ink); }
.pd { display: grid; grid-template-columns: 718px 1fr; gap: 56px; align-items: start; padding-bottom: 18px; }
.pd-gal { display: grid; grid-template-columns: 447px 247px; gap: 13px; }
.pd-main img, .pd-th img { width: 100%; height: 100%; object-fit: cover; }
.pd-main { aspect-ratio: 447 / 747; overflow: hidden; background: var(--paper); }
.pd-th { display: grid; grid-template-rows: repeat(3, 1fr); gap: 13px; }
.pd-th img { aspect-ratio: 247 / 246; }
.pd-name { font-size: 22px; font-weight: 500; letter-spacing: -.03em; }
.pd-price { margin-top: 20px; font-size: 25px; font-weight: 700; letter-spacing: -.04em; }
.pd-rate { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 13px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.stars .half { opacity: .42; }
.pd-rate i { color: var(--line); font-style: normal; }
.pd-rate a { text-decoration: underline; text-underline-offset: 3px; }
.pd-opt { padding: 22px 0 0; }
.pd-l { display: flex; align-items: center; font-size: 13px; color: var(--muted); }
.pd-l b { margin-left: 10px; font-weight: 500; color: var(--ink); }
.pd-sg { margin-left: auto; font-size: 12.5px; color: var(--muted); }
.pd-colors { display: flex; gap: 13px; margin-top: 15px; }
.col { width: 34px; height: 34px; border: 0; border-radius: 50%; background: var(--c); padding: 0; }
.col.on { box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px var(--ink); }
.pd-sizes { display: flex; gap: 10px; margin-top: 15px; }
.sz { min-width: 60px; height: 44px; border: 0; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); font-size: 13px; }
.sz.on { box-shadow: inset 0 0 0 1.5px var(--ink); font-weight: 600; }
.pd-rec { display: grid; grid-template-columns: 40px 1fr 14px; gap: 14px; align-items: center; margin-top: 24px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); padding: 15px 16px; }
.pd-rec-av { width: 40px; height: 40px; border-radius: 50%; background: #ddd3c2 url("assets/d-rv1.webp") center/cover; }
.pd-rec b { display: block; font-size: 13.5px; font-weight: 600; }
.pd-rec em { display: block; margin-top: 7px; font-style: normal; font-size: 12px; color: var(--muted); }
.pd-rec em i { color: var(--line); font-style: normal; margin: 0 4px; }
.pd-rec .ch { width: 12px; height: 12px; fill: none; stroke: var(--muted); stroke-width: 1.5; }
.pd-ship { display: flex; align-items: flex-start; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.pd-l2 { flex: none; width: 46px; font-size: 13px; color: var(--muted); }
.pd-ship b { font-size: 13.5px; font-weight: 600; }
.pd-ship em { display: block; margin-top: 7px; font-style: normal; font-size: 12px; color: var(--muted); }
.pd-ship .more { margin-left: auto; font-size: 12.5px; color: var(--muted); }
.pd-qty { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.qty { display: inline-flex; align-items: center; box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); }
.qty button { width: 38px; height: 40px; border: 0; background: transparent; font-size: 15px; }
.qty b { min-width: 42px; text-align: center; font-size: 14px; font-weight: 500; }
.pd-cta { display: grid; gap: 9px; margin-top: 22px; }
.pd-pay { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.pd-wish { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.wishline { display: inline-flex; align-items: center; gap: 9px; border: 0; background: transparent; font-size: 13px; padding: 0; }
.wishline svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.pd-wish .dim { margin-left: auto; font-size: 11.5px; }

.pd-feat { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pd-feat-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.pd-feat-in > div { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: center; padding: 28px 0 28px 34px; border-left: 1px solid var(--line); }
.pd-feat-in > div:first-child { border-left: 0; padding-left: 0; }
.pd-feat-in svg { width: 27px; height: 27px; fill: none; stroke: var(--fern); stroke-width: 1.2; }
.pd-feat-in b { display: block; font-size: 13px; font-weight: 700; }
.pd-feat-in span { display: block; margin-top: 6px; font-size: 11.5px; color: var(--muted); }

.pd-h { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; }
.pd-h i { width: 2px; height: 15px; background: var(--ink); }
.pd-h2 { font-size: 15px; font-weight: 700; }
.pd-size { padding: 36px 0 0; }
.pd-size-in { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.stb { width: 100%; margin-top: 18px; box-shadow: inset 0 0 0 1px var(--line); }
.stb th, .stb td { padding: 12px 8px; font-size: 12.5px; text-align: center; border: 1px solid var(--line); }
.stb thead th { background: var(--paper); font-weight: 500; }
.stb tbody tr.on { background: var(--fern); color: #fff; }
.stb tbody tr.on th, .stb tbody tr.on td { border-color: var(--fern); }
.stb-n { margin-top: 12px; font-size: 11.5px; color: var(--muted); }
.pd-mrow { display: grid; grid-template-columns: 1fr 190px; gap: 20px; align-items: center; margin-top: 12px; }
.mline { width: 100%; height: auto; }
.pd-mtx p { margin-bottom: 20px; }
.pd-mtx b { display: block; font-size: 13px; font-weight: 700; }
.pd-mtx span { display: block; margin-top: 8px; font-size: 12px; line-height: 1.7; color: var(--muted); }

.pd-story { padding: 34px 0 0; }
.pd-story-in { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.pd-sh { margin-top: 16px; font-size: 27px; line-height: 1.5; letter-spacing: -.045em; }
.pd-sd { margin-top: 30px; font-size: 13px; line-height: 2.2; color: var(--muted); }
.pd-mat { margin-top: 18px; }
.pd-mat div { display: flex; gap: 24px; padding: 7px 0; font-size: 12.5px; }
.pd-mat dt { flex: none; width: 44px; font-weight: 700; }
.pd-mat dd { color: var(--muted); }
.pd-care { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 44px; text-align: center; }
.pd-care svg { width: 32px; height: 32px; margin: 0 auto; fill: none; stroke: var(--ink); stroke-width: 1.1; }
.pd-care span { display: block; margin-top: 12px; font-size: 11.5px; color: var(--muted); }

.pd-rev { padding: 24px 0 0; }
.pd-rev-in { display: grid; grid-template-columns: 220px 300px 1fr; gap: 40px; align-items: start; padding-bottom: 20px; }
.pd-rv-n { margin-top: 10px; font-size: 42px; font-weight: 700; letter-spacing: -.05em; line-height: 1; }
.stars.big { margin-top: 12px; font-size: 17px; letter-spacing: .1em; }
.sm2 { margin-top: 10px; font-size: 11.5px; }
.pd-rv-bar { display: grid; gap: 10px; padding-top: 6px; }
.pd-rv-bar li { display: grid; grid-template-columns: 32px 1fr 34px; gap: 12px; align-items: center; font-size: 11.5px; }
.pd-rv-bar em { font-style: normal; color: var(--muted); }
.bar { display: block; height: 4px; background: var(--line-2); }
.bar i { display: block; height: 100%; background: var(--ink); }
.pd-rv-bar b { text-align: right; font-weight: 500; color: var(--muted); }
.pd-rv-l { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
.pd-rv-l img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.pd-qa { padding: 4px 0 0; }
.pd-qa-in { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.pd-qbox { box-shadow: inset 0 0 0 1px var(--line); padding: 18px 24px 20px; }
.pd-ql { margin: 12px 0 14px; }
.pd-ql li { display: flex; align-items: center; gap: 14px; padding: 8px 0; font-size: 12.5px; }
.pd-ql em { margin-left: auto; font-style: normal; font-size: 11px; color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); padding: 3px 9px; }
.pd-acc { box-shadow: inset 0 0 0 1px var(--line); }
.pd-acc details { border-bottom: 1px solid var(--line); }
.pd-acc details:last-child { border-bottom: 0; }
.pd-acc summary { display: flex; align-items: center; list-style: none; padding: 16px 24px; font-size: 13.5px; font-weight: 600; cursor: pointer; }
.pd-acc summary::-webkit-details-marker { display: none; }
.pd-acc summary::after { content: ""; margin-left: auto; width: 8px; height: 8px; border-right: 1.4px solid var(--muted); border-bottom: 1.4px solid var(--muted); rotate: 45deg; margin-top: -4px; }
.pd-acc details[open] summary::after { rotate: -135deg; margin-top: 2px; }
.pd-acc p { padding: 0 24px 20px; font-size: 12.5px; line-height: 1.85; color: var(--muted); }

.pd-rel { padding: 22px 0 30px; }
.pd-rel-l { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 16px; }
.rel-ph { display: block; aspect-ratio: 230 / 158; overflow: hidden; background: var(--paper); }
.rel-ph img { width: 100%; height: 100%; object-fit: cover; }
.pd-rel-l b { display: block; margin-top: 11px; font-size: 12px; font-weight: 500; line-height: 1.5; }
.pd-rel-l em { display: block; margin-top: 8px; font-style: normal; font-size: 12.5px; font-weight: 700; }

@media (max-width: 1199px) {
  .pd { grid-template-columns: 1fr; gap: 28px; }
  .pd-gal { grid-template-columns: 1fr; }
  .pd-th { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); }
  .pd-feat-in { grid-template-columns: repeat(2, 1fr); }
  .pd-feat-in > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .pd-size-in, .pd-story-in, .pd-qa-in { grid-template-columns: 1fr; gap: 32px; }
  .pd-rev-in { grid-template-columns: 1fr; gap: 24px; }
  .pd-rel-l { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .pd-pay { grid-template-columns: 1fr; }
  .pd-care { grid-template-columns: 1fr 1fr; }
  .pd-rel-l { grid-template-columns: 1fr 1fr; }
  .pd-mrow { grid-template-columns: 1fr; }
  .stb { display: block; overflow-x: auto; }
}

/* ══════════════════════════════════════════════════════════════════════
   07 검색
   ══════════════════════════════════════════════════════════════════════ */
.sq { padding: 84px 0 0; }
.sq h1 { font-size: 33px; letter-spacing: -.045em; }
.sq-f { position: relative; display: flex; margin-top: 32px; }
.sq-f input { flex: 1; min-width: 0; height: 62px; padding: 0 96px 0 26px; border: 1px solid var(--line); background: var(--paper); font-size: 16px; border-radius: var(--r-xs); }
.sq-x { position: absolute; right: 76px; top: 20px; border: 0; background: transparent; padding: 0; }
.sq-x svg { width: 19px; height: 19px; fill: none; stroke: var(--muted); stroke-width: 1.4; }
.sq-go { width: 62px; height: 62px; border: 0; background: var(--fern); display: grid; place-items: center; }
.sq-go svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.5; }
.sq-l { margin-top: 30px; font-size: 12.5px; font-weight: 600; }
.sq-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.sq-tags a { display: inline-flex; align-items: center; height: 38px; padding: 0 18px; box-shadow: inset 0 0 0 1px var(--line); font-size: 12.5px; background: var(--paper); }
.sq-tags.sm a { height: 32px; padding: 0 14px; font-size: 12px; }
.sq-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; margin-top: 40px; padding-bottom: 64px; }
.sq-h { font-size: 14px; font-weight: 700; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.sq-rec li { display: flex; align-items: center; padding: 11px 0; font-size: 13px; }
.sq-rec button { margin-left: auto; border: 0; background: transparent; padding: 2px; }
.sq-rec svg { width: 13px; height: 13px; fill: none; stroke: var(--muted); stroke-width: 1.4; }
.sq-key li { padding: 11px 0; font-size: 13px; color: var(--fern); }

.sres { display: flex; align-items: flex-end; gap: 20px; padding: 42px 0 0; border-top: 1px solid var(--line); }
.sres-c { font-size: 14px; font-weight: 600; }
.stabs { margin-left: auto; display: flex; gap: 34px; }
.stabs a { padding-bottom: 12px; font-size: 13px; color: var(--muted); border-bottom: 2px solid transparent; }
.stabs a em { font-style: normal; margin-left: 5px; }
.stabs a[aria-current="page"] { color: var(--ink); font-weight: 600; border-bottom-color: var(--ink); }
.sshop { border-top: 1px solid var(--line); padding-top: 26px; grid-template-columns: 210px 1fr; gap: 54px; }
.fhead { display: flex; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.fhead h2 { font-size: 15px; font-weight: 700; }
.fhead button { margin-left: auto; border: 0; background: transparent; font-size: 11.5px; color: var(--muted); }
.filters h3 { font-size: 12.5px; font-weight: 700; margin-bottom: 11px; }
.chk3 { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 12.5px; color: var(--muted); }
.chk3 input { width: 15px; height: 15px; accent-color: var(--fern); flex: none; }
.chk3 em { margin-left: auto; font-style: normal; font-size: 11.5px; }
.fcol { display: flex; align-items: center; gap: 9px; margin-top: 4px; }
.fcol button { width: 19px; height: 19px; border: 0; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(23,24,23,.14); }
.fcol-more { background: transparent !important; box-shadow: inset 0 0 0 1px var(--line) !important; font-size: 11px; color: var(--muted); line-height: 1; }
.sgrid { gap: 16px; }
.sgrid .thumb { aspect-ratio: 181 / 271; }
.sgrid h3 { display: flex; align-items: center; gap: 10px; margin-top: 15px; font-size: 13px; }
.wish2 { position: static; margin-left: auto; }
.sgrid .sub { margin-top: 8px; font-size: 12px; }
.sgrid .price { margin-top: 10px; font-size: 13.5px; }
.sgrid > li { padding-bottom: 26px; }
.sview { width: 34px; height: 34px; border: 0; background: transparent; display: grid; place-items: center; }
.sview svg { width: 18px; height: 18px; fill: var(--ink); stroke: none; }
.plist-bar .sel-w + .sview { margin-left: 12px; }
.smore { display: flex; justify-content: center; padding: 8px 0 0; }
.smore .btn { min-width: 330px; height: 52px; }
.cv2 { width: 8px; height: 8px; border-right: 1.4px solid var(--muted); border-bottom: 1.4px solid var(--muted); rotate: 45deg; margin-top: -4px; }

.sjr { padding: 46px 0 0; }
.sjr-l { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; }
.sj-ph { display: block; aspect-ratio: 233 / 165; overflow: hidden; background: var(--paper); }
.sj-ph img { width: 100%; height: 100%; object-fit: cover; }
.sjr-l b { display: block; margin-top: 15px; font-size: 13.5px; font-weight: 600; letter-spacing: -.04em; line-height: 1.5; min-height: 3em; }
.sj-f { display: flex; align-items: center; margin-top: 12px; font-size: 11.5px; color: var(--muted); }
.sj-f em { font-style: normal; }
.sj-f time { margin-left: auto; }

.snone { padding: 44px 0 60px; }
.snone-in { display: grid; grid-template-columns: 200px 1fr 300px; gap: 40px; align-items: center; box-shadow: inset 0 0 0 1px var(--line); padding: 28px 34px; }
.snone-in img { margin: 0 auto; mix-blend-mode: multiply; }
.snone-h { font-size: 15px; font-weight: 700; }
.snone-d { margin-top: 12px; font-size: 12.5px; color: var(--muted); }
.snone-e { margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.snone .btn { margin-top: 18px; }
.snone-p .sq-l { margin-top: 0; }

@media (max-width: 1199px) {
  .sq h1 { font-size: 26px; }
  .sq-2 { grid-template-columns: 1fr; gap: 30px; }
  .sshop { grid-template-columns: 1fr; }
  .sgrid { grid-template-columns: repeat(2, 1fr); }
  .sjr-l { grid-template-columns: repeat(2, 1fr); }
  .snone-in { grid-template-columns: 1fr; text-align: center; }
  .sres { flex-wrap: wrap; }
  .stabs { margin-left: 0; }
}
@media (max-width: 767px) { .smore .btn { min-width: 0; width: 100%; } .sjr-l { grid-template-columns: 1fr; } }
/* 07 검색 — 시안 본문 컨테이너는 1104px (헤더·푸터는 공용 1320 유지) */
.page-search main .wrap { width: min(1104px, calc(100% - 48px)); }

/* ══════════════════════════════════════════════════════════════════════
   08 장바구니
   ══════════════════════════════════════════════════════════════════════ */
.ck { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.ck input { position: absolute; opacity: 0; width: 0; height: 0; }
.ckm { width: 22px; height: 22px; box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); position: relative; flex: none; }
.ck input:checked + .ckm { background: var(--fern); box-shadow: none; }
.ck input:checked + .ckm::after { content: ""; position: absolute; left: 7px; top: 4px; width: 6px; height: 11px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; rotate: 42deg; }
.ck input:focus-visible + .ckm { outline: 2px solid var(--fern); outline-offset: 2px; }

.cart-h { display: flex; align-items: flex-end; gap: 40px; padding: 34px 0 52px; }
.cart-h h1 { font-size: 47px; letter-spacing: .01em; }
.cart-h > div:first-child p { margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.freebar { flex: 1; max-width: 380px; padding-bottom: 6px; }
.freebar p { font-size: 12.5px; text-align: center; color: var(--muted); }
.freebar b { color: var(--ink); font-weight: 700; }
.fb { display: block; height: 8px; margin-top: 10px; border-radius: 999px; background: var(--line-2); overflow: hidden; }
.fb i { display: block; height: 100%; background: var(--fern); border-radius: 999px; }
.fbi { position: absolute; margin: -22px 0 0 100%; width: 20px; height: 20px; fill: none; stroke: var(--muted); stroke-width: 1.3; }
.freebar { position: relative; }

.cart { display: grid; grid-template-columns: 1fr 386px; gap: 34px; align-items: start; }
.cgroup { box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); margin-bottom: 14px; }
.cg-h { display: flex; align-items: center; gap: 14px; padding: 14px 22px; border-bottom: 1px solid var(--line); }
.cg-h b { display: block; font-size: 14px; font-weight: 700; letter-spacing: .02em; }
.cg-h span { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); }
.cg-h em { margin-left: auto; font-style: normal; font-size: 12.5px; color: var(--fern); }
.citem { display: grid; grid-template-columns: 22px 185px 1fr auto; gap: 6px 20px; align-items: start; padding: 12px 22px; border-bottom: 1px solid var(--line); }
.cgroup .citem:last-child { border-bottom: 0; }
.ci-ph { display: block; aspect-ratio: 185 / 175; overflow: hidden; background: var(--ivory); }
.ci-ph img { width: 100%; height: 100%; object-fit: cover; }
.ci-t b { font-size: 15px; font-weight: 600; }
.ci-t p { margin-top: 7px; font-size: 12.5px; color: #3d3f3b; }
.ci-t p span { display: inline-block; min-width: 58px; color: var(--muted); }
.ci-s { margin-top: 5px !important; font-size: 12px !important; }
.ci-p { font-size: 16px; font-weight: 700; text-align: right; }
.ci-q { grid-column: 4; justify-self: end; margin-top: 10px; }
.ci-a { grid-column: 3 / -1; display: flex; align-items: center; gap: 10px; margin-top: 2px; font-size: 12px; color: var(--muted); }
.ci-a i { color: var(--line); }
.ci-a a:first-child { color: var(--fern); }
.ci-a button { border: 0; background: transparent; font-size: 12px; color: var(--muted); padding: 0; }
.cart-all { display: flex; align-items: center; padding: 14px 4px 22px; border-bottom: 1px solid var(--line); }
.cart-all p { margin-left: auto; display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--muted); }
.cart-all i { color: var(--line); }
.cart-all button { border: 0; background: transparent; font-size: 12.5px; color: var(--muted); padding: 0; }

.cart-rec { padding: 18px 0 0; }
.cart-rec-l { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 14px; }
.cr-ph { display: block; aspect-ratio: 269 / 229; overflow: hidden; background: var(--paper); }
.cr-ph img { width: 100%; height: 100%; object-fit: cover; }
.cart-rec-l li { position: relative; }
.cr-t { padding-top: 14px; padding-right: 42px; }
.cr-t b { display: block; font-size: 13px; font-weight: 500; }
.cr-t em { display: block; margin-top: 8px; font-style: normal; font-size: 13px; font-weight: 700; }
.cr-b { position: absolute; right: 0; bottom: 4px; width: 34px; height: 34px; border: 0; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; }
.cr-b svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.3; }

.csum, .cpay { box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); padding: 20px 26px 22px; margin-bottom: 14px; }
.csum h2, .cpay h2 { font-size: 17px; font-weight: 700; }
.csum dl { margin-top: 18px; }
.csum dl div { display: flex; align-items: center; padding: 9px 0; font-size: 13px; }
.csum dt { color: var(--muted); } .csum dd { margin-left: auto; }
.csum-t { display: flex; align-items: baseline; margin-top: 16px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.csum-t b { margin-left: auto; font-size: 27px; font-weight: 700; letter-spacing: -.045em; }
.csum-t em { font-style: normal; font-size: 15px; margin-left: 2px; }
.ccoup { display: flex; margin-top: 20px; }
.ccoup input { flex: 1; min-width: 0; height: 46px; padding: 0 14px; border: 1px solid var(--line); border-right: 0; background: #fff; font-size: 12.5px; }
.ccoup button { width: 72px; border: 1px solid var(--line); background: var(--ivory); font-size: 13px; }
.ccoup-n { margin: 10px 0 18px; font-size: 11px; color: var(--muted); }
.cpay ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.cpay button { width: 100%; height: 52px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 0; background: #fff; box-shadow: inset 0 0 0 1px var(--line); font-size: 12.5px; }
.cpay svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.ctrust { box-shadow: inset 0 0 0 1px var(--line); padding: 20px 24px; display: grid; gap: 20px; }
.ctrust li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.ctrust svg { width: 26px; height: 26px; fill: none; stroke: var(--muted); stroke-width: 1.2; }
.ctrust b { display: block; font-size: 13px; font-weight: 700; }
.ctrust span { display: block; margin-top: 8px; font-size: 12px; line-height: 1.65; color: var(--muted); }

.cinfo { border-top: 1px solid var(--line); margin-top: 34px; }
.cinfo-in { display: grid; grid-template-columns: repeat(4, 1fr); padding: 44px 0 52px; }
.cinfo-in li { display: flex; align-items: center; justify-content: center; gap: 11px; font-size: 12.5px; color: var(--muted); }
.cinfo-in svg { width: 19px; height: 19px; fill: none; stroke: var(--muted); stroke-width: 1.3; }

@media (max-width: 1199px) {
  .cart { grid-template-columns: 1fr; }
  .cart-h { flex-wrap: wrap; }
  .cart-h h1 { font-size: 34px; }
  .freebar { max-width: none; width: 100%; }
  .cart-rec-l { grid-template-columns: repeat(3, 1fr); }
  .cinfo-in { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 767px) {
  .citem { grid-template-columns: 22px 1fr; }
  .ci-t, .ci-p, .ci-q, .ci-a { grid-column: 2; justify-self: start; text-align: left; }
  .cart-rec-l { grid-template-columns: 1fr 1fr; }
  .cinfo-in { grid-template-columns: 1fr; }
  .cpay ul { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════
   09·10·11 주문 · 결제 · 완료
   ══════════════════════════════════════════════════════════════════════ */
.steps { padding: 52px 0 62px; }
.steps-in { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.steps-in li { position: relative; display: grid; justify-items: center; width: 200px; }
.steps-in li::before { content: ""; position: absolute; top: 21px; left: -50%; width: 100%; border-top: 1px solid var(--line); }
.steps-in li:first-child::before { display: none; }
.steps-in span { position: relative; z-index: 1; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); background: var(--ivory); font-size: 14px; color: var(--muted); }
.steps-in em { margin-top: 12px; font-style: normal; font-size: 13px; color: var(--muted); }
.steps-in .on span, .steps-in .done span { background: var(--fern); color: #fff; box-shadow: none; }
.steps-in .on em, .steps-in .done em { color: var(--ink); }

.cko { display: grid; grid-template-columns: 1fr 452px; gap: 44px; align-items: start; padding-bottom: 76px; }
.cko-h { font-size: 33px; letter-spacing: -.04em; }
.cko-d { margin-top: 16px; font-size: 13px; color: var(--muted); }
.cko-d2 { margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.cko-s { margin-top: 58px; font-size: 15px; font-weight: 700; }
.addr { display: grid; grid-template-columns: 20px 1fr auto; gap: 16px; align-items: center; margin-top: 20px; box-shadow: inset 0 0 0 1px var(--line); padding: 28px 26px; }
.rd { width: 18px; height: 18px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); flex: none; }
.rd.on { box-shadow: inset 0 0 0 1px var(--fern), inset 0 0 0 5px var(--paper); background: var(--fern); }
.addr-1 { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.addr-1 em { font-style: normal; font-size: 11.5px; box-shadow: inset 0 0 0 1px var(--line); padding: 4px 9px; color: var(--muted); }
.addr-1 b { font-weight: 600; } .addr-1 span { color: var(--muted); }
.addr-2 { margin-top: 12px; font-size: 12.5px; line-height: 1.8; color: var(--muted); }
.addr-b { display: flex; align-items: center; gap: 8px; }
.ibtn { width: 38px; height: 38px; border: 0; background: transparent; box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; }
.ibtn svg { width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 1.3; }
.addr-new { margin-top: 18px; height: 48px; font-size: 13px; }
.frm { display: grid; gap: 26px; margin-top: 24px; }
.frm label { display: grid; grid-template-columns: 150px 1fr; gap: 0 16px; align-items: center; }
.frm label > span { font-size: 13px; color: var(--muted); }
.frm input, .frm textarea { width: 100%; height: 56px; padding: 0 16px; border: 1px solid var(--line); background: var(--paper); font-size: 13.5px; border-radius: var(--r-xs); }
.frm textarea { height: auto; padding: 14px 16px; line-height: 1.7; resize: vertical; }
.fnote { grid-column: 2; margin-top: 9px; font-style: normal; font-size: 11.5px; color: var(--muted); }
.f-zip { grid-template-columns: 150px 200px auto; }
.f-zip .btn { margin-left: 12px; height: 56px; }
.f-area { align-items: start; }
.fcount { grid-column: 2; margin-top: -30px; justify-self: end; padding-right: 14px; font-style: normal; font-size: 11.5px; color: var(--muted); }
.shipm { margin-top: 48px; border: 0; padding: 26px 28px; box-shadow: inset 0 0 0 1px var(--line); }
.shipm legend { padding: 0; font-size: 13.5px; font-weight: 700; margin-bottom: 16px; }
.shipo { position: relative; display: grid; grid-template-columns: 18px 26px 1fr auto; gap: 16px; align-items: center; padding: 24px 22px; box-shadow: inset 0 0 0 1px var(--line); margin-bottom: 12px; cursor: pointer; }
.shipo:last-child { margin-bottom: 0; }
.shipo.on { box-shadow: inset 0 0 0 1.5px var(--fern); }
.shipo input { position: absolute; opacity: 0; }
.shipo.on .rd { box-shadow: inset 0 0 0 1px var(--fern), inset 0 0 0 5px var(--paper); background: var(--fern); }
.shipo svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.shipo b { font-size: 14px; font-weight: 700; }
.shipo b i { font-style: normal; font-weight: 400; font-size: 12.5px; color: var(--muted); margin-left: 8px; }
.shipo em { display: block; margin-top: 8px; font-style: normal; font-size: 12px; color: var(--muted); }
.shipo em i { color: var(--line); font-style: normal; margin: 0 5px; }
.tagr { font-size: 11.5px; box-shadow: inset 0 0 0 1px var(--line); padding: 4px 10px; color: var(--muted); }
.giftbox { display: grid; grid-template-columns: 90px 44px 1fr; gap: 16px; align-items: center; margin-top: 18px; padding: 28px 26px; box-shadow: inset 0 0 0 1px var(--line); }
.gl { font-size: 13.5px; font-weight: 700; }
.tgl { width: 44px; height: 24px; border-radius: 999px; background: var(--line); position: relative; }
.tgl::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }
.tgl.on { background: var(--fern); } .tgl.on::after { left: 23px; }
.giftbox b { font-size: 13px; font-weight: 600; }
.giftbox em { display: block; margin-top: 7px; font-style: normal; font-size: 12px; color: var(--muted); }
.safe { display: grid; grid-template-columns: 26px 1fr; gap: 16px; margin-top: 18px; padding: 26px 28px; background: #f6f1e4; }
.safe svg { width: 22px; height: 22px; fill: none; stroke: var(--fern); stroke-width: 1.3; }
.safe b { display: block; margin-bottom: 9px; font-size: 12.5px; font-weight: 600; }
.safe span { font-size: 12px; line-height: 1.75; color: var(--muted); }
.agree { display: flex; align-items: center; margin-top: 26px; font-size: 13px; }
.agree-m { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; font-size: 12.5px; color: var(--muted); }
.agree-t { margin-top: 18px; padding: 26px 28px; box-shadow: inset 0 0 0 1px var(--line); }
.agree-t div { display: flex; gap: 24px; padding: 9px 0; font-size: 12.5px; }
.agree-t dt { flex: none; width: 148px; font-weight: 600; }
.agree-t dd { color: var(--muted); }
.agree-n { margin-top: 14px; font-size: 11.5px; color: var(--muted); }
.cko-next { margin-top: 44px; height: 62px; }

.obox, .obacc { box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); padding: 22px 24px; margin-bottom: 12px; }
.ob-h { display: flex; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.ob-h h2 { font-size: 16px; font-weight: 700; }
.ob-h b { margin-left: 8px; font-weight: 500; color: var(--muted); }
.ob-h a { margin-left: auto; font-size: 12px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.ob-l li { display: grid; grid-template-columns: 140px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-2); }
.ob-l li:last-child { border-bottom: 0; }
.ob-ph { display: block; aspect-ratio: 140 / 154; overflow: hidden; background: var(--ivory); }
.ob-ph img { width: 100%; height: 100%; object-fit: cover; }
.ob-l b { display: block; font-size: 13.5px; font-weight: 600; line-height: 1.5; }
.ob-l em { display: block; margin-top: 9px; font-style: normal; font-size: 12px; color: var(--muted); }
.ob-l i { display: block; margin-top: 11px; font-style: normal; font-size: 15px; font-weight: 700; }
.ob-l div > span { display: block; margin-top: 10px; font-size: 12px; color: var(--muted); }
.ob-sum { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.ob-sum div { display: flex; padding: 7px 0; font-size: 13px; }
.ob-sum dt { color: var(--muted); } .ob-sum dd { margin-left: auto; }
.ob-sum .minus { color: var(--clay); }
.ob-t { display: flex; align-items: baseline; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.ob-t b { margin-left: auto; font-size: 22px; font-weight: 700; letter-spacing: -.04em; }
.obacc summary { list-style: none; display: flex; align-items: center; font-size: 13.5px; font-weight: 600; cursor: pointer; }
.obacc summary::-webkit-details-marker { display: none; }
.obacc summary::after { content: ""; margin-left: auto; width: 8px; height: 8px; border-right: 1.4px solid var(--muted); border-bottom: 1.4px solid var(--muted); rotate: 45deg; margin-top: -4px; }
.obacc[open] summary::after { rotate: -135deg; margin-top: 2px; }
.obacc-r { display: flex; align-items: center; margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.obacc-r .btn { margin-left: auto; }
.obacc-p { display: flex; align-items: center; margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.obacc-p b { margin-left: auto; font-size: 13.5px; color: var(--ink); }
.obacc-in { display: flex; gap: 10px; margin-top: 12px; }
.obacc-in input { flex: 1; min-width: 0; height: 44px; padding: 0 14px; border: 1px solid var(--line); background: #fff; font-size: 12.5px; }
.obacc-in .btn { flex: none; height: 44px; }
.obacc-n { display: flex; margin-top: 10px; font-size: 11.5px; color: var(--muted); }
.obacc-n em { margin-left: auto; font-style: normal; }
.obp { display: flex; align-items: baseline; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13.5px; font-weight: 600; }
.obp b { margin-left: auto; font-size: 18px; color: var(--fern); }
.obp-n { margin-top: 9px; font-size: 11.5px; color: var(--muted); }
.obnote { display: grid; grid-template-columns: 20px 1fr; gap: 12px; margin-top: 18px; padding: 16px 18px; background: #f6f1e4; }
.obnote svg { width: 18px; height: 18px; fill: none; stroke: var(--muted); stroke-width: 1.3; }
.obnote b { display: block; margin-bottom: 8px; font-size: 12.5px; font-weight: 600; }
.obnote span { font-size: 11.5px; line-height: 1.7; color: var(--muted); }
.btn-clay { background: var(--clay); color: #fff; }
.btn-clay:hover { background: #b56847; }
.cko-r .btn-clay { margin-top: 20px; }
.obsafe { display: grid; grid-template-columns: 20px 1fr; gap: 12px; margin-top: 20px; }
.obsafe svg { width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.obsafe b { display: block; margin-bottom: 8px; font-size: 12.5px; font-weight: 600; }
.obsafe span { font-size: 11.5px; line-height: 1.75; color: var(--muted); }

@media (max-width: 1199px) {
  .cko { grid-template-columns: 1fr; gap: 28px; }
  .steps-in li { width: 130px; }
  .frm label { grid-template-columns: 1fr; gap: 8px; }
  .fnote, .fcount { grid-column: 1; }
  .fcount { margin-top: 8px; justify-self: start; padding-right: 0; }
  .f-zip { grid-template-columns: 1fr auto; }
  .f-zip > span { grid-column: 1 / -1; }
  .agree-t dt { width: 110px; }
}
@media (max-width: 767px) {
  .addr { grid-template-columns: 20px 1fr; }
  .addr-b { grid-column: 2; }
  .shipo { grid-template-columns: 18px 1fr; }
  .shipo svg, .tagr { display: none; }
  .giftbox { grid-template-columns: 44px 1fr; }
  .gl { grid-column: 1 / -1; }
  .ob-l li { grid-template-columns: 100px 1fr; }
}

/* ── 10 결제 ─────────────────────────────────────────────────────────── */
.pay-s { display: flex; align-items: center; font-size: 16px; font-weight: 700; padding-bottom: 16px; border-bottom: 1.5px solid var(--ink); margin-top: 44px; }
.cko-l > .pay-s:first-child { margin-top: 0; }
.pay-s a, .pay-s .btn { margin-left: auto; font-size: 12px; font-weight: 400; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.pay-dl { padding: 8px 0; }
.pay-dl div { display: flex; gap: 30px; padding: 12px 0; font-size: 13.5px; }
.pay-dl dt { flex: none; width: 110px; color: var(--muted); }
.pay-dl dd { line-height: 1.8; }
.pay-dl .tagr { display: inline-block; margin-bottom: 8px; }
.pay-cp { padding: 20px 0 8px; }
.pay-cr { display: flex; align-items: center; gap: 14px; padding: 10px 0; font-size: 13.5px; }
.pay-cr b { font-weight: 600; } .pay-cr i { font-style: normal; font-size: 12.5px; color: var(--muted); }
.pay-cr .minus { margin-left: auto; }
.pay-cr .btn { margin-left: 14px; }
.pay-cr.pt .minus { margin-left: auto; }
.minus { color: var(--clay); }
.pay-tag span { display: inline-flex; align-items: center; gap: 10px; margin: 6px 0 10px; padding: 8px 14px; box-shadow: inset 0 0 0 1px var(--line); font-size: 12.5px; }
.pay-tag button { border: 0; background: transparent; color: var(--muted); padding: 0; }
.pay-pin { display: flex; gap: 12px; margin-top: 10px; }
.pay-pin input { flex: 1; min-width: 0; height: 46px; padding: 0 14px; border: 1px solid var(--line); background: var(--paper); font-size: 12.5px; }
.pay-pin .btn { flex: none; height: 46px; }
.cash { padding: 20px 0 4px; }
.cashr { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 13.5px; cursor: pointer; }
.cashr input { position: absolute; opacity: 0; }
.cashr.on .rd { box-shadow: inset 0 0 0 1px var(--fern), inset 0 0 0 5px var(--paper); background: var(--fern); }
.cashr b { font-weight: 500; }
.cashr em { font-style: normal; font-size: 12px; color: var(--muted); margin-left: 4px; }
.cash-in { display: grid; grid-template-columns: 230px 1fr; gap: 14px; margin: 6px 0 14px 30px; }
.sel2 { display: flex; align-items: center; height: 48px; padding: 0 16px; box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); font-size: 13px; }
.sel2 .cv { margin-left: auto; width: 7px; height: 7px; border-right: 1.4px solid var(--muted); border-bottom: 1.4px solid var(--muted); rotate: 45deg; margin-top: -3px; }
.cash-in input { height: 48px; padding: 0 16px; border: 1px solid var(--line); background: var(--paper); font-size: 13px; }
.pmeth { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 22px; }
.pm { width: 100%; height: 108px; display: grid; justify-items: center; align-content: center; gap: 9px; border: 0; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); padding: 8px; }
.pm.on { box-shadow: inset 0 0 0 1.5px var(--fern); }
.pm svg { width: 26px; height: 26px; fill: none; stroke: var(--ink); stroke-width: 1.2; }
.pm b { font-size: 12.5px; font-weight: 600; }
.pm em { font-style: normal; font-size: 10.5px; line-height: 1.5; color: var(--muted); text-align: center; }
.pcard2 { margin-top: 18px; box-shadow: inset 0 0 0 1px var(--line); padding: 24px 26px; }
.pcard2 h3 { font-size: 13.5px; font-weight: 700; }
.pcard-sel { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.pcard-n { margin-top: 16px; }
.pcard-n li { position: relative; padding-left: 12px; font-size: 11.5px; line-height: 1.9; color: var(--muted); }
.pcard-n li::before { content: "•"; position: absolute; left: 0; }
.pstate { display: grid; grid-template-columns: 1fr 1fr; margin-top: 18px; box-shadow: inset 0 0 0 1px var(--line); }
.pstate > div { display: grid; justify-items: center; gap: 14px; padding: 22px 18px; text-align: center; }
.pstate > div:last-child { border-left: 1px solid var(--line); }
.pstate b { font-size: 13px; font-weight: 700; }
.spin { width: 46px; height: 46px; border-radius: 50%; box-shadow: inset 0 0 0 2px var(--fern); border-top: 2px solid transparent; }
.fail { width: 46px; height: 46px; border-radius: 50%; box-shadow: inset 0 0 0 2px var(--clay); color: var(--clay); display: grid; place-items: center; font-size: 20px; font-weight: 700; }
.pstate p { font-size: 12px; line-height: 1.7; color: var(--muted); }
.pterms { margin-top: 20px; }
.pterms .all { padding: 6px 0 16px; font-size: 13px; }
.ptrow { display: flex; align-items: center; padding: 12px 16px; box-shadow: inset 0 0 0 1px var(--line); margin-bottom: -1px; font-size: 12.5px; }
.ptrow button { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; font-size: 12px; color: var(--muted); }
.pay-go { margin-top: 30px; height: 66px; font-size: 16px; }
.ob-h2 { font-size: 16px; font-weight: 700; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.ob-sum.nb { border-top: 0; padding-top: 10px; margin-top: 8px; }
.ob-t .clay { color: var(--clay); }
.ob-pt { display: flex; margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.ob-pt em { margin-left: auto; font-style: normal; color: var(--ink); }
.ob-l small { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.ob-l i span { color: var(--line); font-weight: 400; }
.obacc .ob-l { margin-top: 14px; }
.obacc .ob-l li { grid-template-columns: 108px 1fr; }
.obacc .ob-ph { aspect-ratio: 108 / 131; }

/* ── 11 주문 완료 ────────────────────────────────────────────────────── */
.oc-h { padding: 66px 0 0; }
.oc-h-in { display: grid; grid-template-columns: 1fr 389px; gap: 30px; align-items: center; }
.oc-h h1 { font-size: 52px; line-height: 1.45; letter-spacing: -.045em; }
.oc-no { margin-top: 26px; font-size: 16px; color: var(--muted); }
.oc-no b { margin-left: 12px; font-weight: 600; color: var(--fern); letter-spacing: .01em; }
.oc-d { margin-top: 32px; font-size: 14px; line-height: 2; color: var(--muted); }
.oc-ill { width: 100%; height: auto; mix-blend-mode: multiply; }
.track { padding: 46px 0 0; }
.track-l { display: grid; grid-template-columns: repeat(4, 1fr); padding: 30px 0 58px; }
.track-l li { position: relative; display: grid; justify-items: center; }
.track-l li::before { content: ""; position: absolute; top: 27px; left: -50%; width: 100%; border-top: 1px solid var(--line); }
.track-l li:first-child::before { display: none; }
.track-l .next::before { border-top-style: dashed; }
.tk { position: relative; z-index: 1; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--fern); }
.track-l .next .tk { background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); }
.tk svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.5; }
.track-l .next .tk svg { stroke: var(--muted); }
.track-l b { margin-top: 16px; font-size: 13.5px; font-weight: 600; }
.track-l em { margin-top: 10px; font-style: normal; font-size: 12.5px; color: var(--muted); }
.track-l .next em { color: var(--fern); }
.oc-3 { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.oc-3 section { padding: 44px 40px 48px; border-left: 1px solid var(--line); }
.oc-3 section:first-child { border-left: 0; padding-left: 0; }
.oc-s { display: flex; align-items: center; font-size: 15px; font-weight: 700; }
.oc-s .btn { margin-left: auto; }
.oc-n { display: flex; align-items: baseline; gap: 16px; margin-top: 24px; font-size: 14.5px; }
.oc-n span { font-size: 13px; color: var(--muted); }
.oc-a { margin-top: 18px; font-size: 12.5px; line-height: 1.95; color: var(--muted); }
.oc-pay { margin-top: 22px; }
.oc-pay div { display: flex; padding: 6px 0; font-size: 12.5px; }
.oc-pay dt { color: var(--muted); } .oc-pay dd { margin-left: auto; }
.oc-total { display: flex; align-items: baseline; margin-top: 16px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.oc-total b { margin-left: auto; font-size: 22px; font-weight: 700; letter-spacing: -.04em; }
.oc-m { display: flex; gap: 16px; margin-top: 18px; font-size: 12.5px; }
.oc-m span { color: var(--muted); }
.oc-pl { margin-top: 24px; font-size: 12.5px; color: var(--muted); }
.oc-p { margin-top: 12px; font-size: 33px; font-weight: 700; color: var(--fern); letter-spacing: -.04em; }
.oc-pn { margin-top: 20px; font-size: 12px; color: var(--muted); }
.oc-3 .btn-soft { margin-top: 20px; height: 42px; }
.oc-items { padding: 52px 0 0; }
.oc-il { margin-top: 18px; }
.oc-il li { display: grid; grid-template-columns: 122px 1fr auto auto; gap: 22px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line-2); }
.oc-ph { display: block; aspect-ratio: 122 / 117; overflow: hidden; background: var(--paper); }
.oc-ph img { width: 100%; height: 100%; object-fit: cover; }
.oc-il b { display: block; font-size: 14px; font-weight: 600; }
.oc-il em { display: block; margin-top: 9px; font-style: normal; font-size: 12.5px; color: var(--muted); }
.oc-q { font-size: 12.5px; color: var(--muted); min-width: 60px; text-align: center; }
.oc-pr { font-size: 14px; font-weight: 600; min-width: 100px; text-align: right; }
.oc-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 760px; margin: 26px auto 0; }
.oc-btns .btn { height: 62px; }
.oc-pet { display: grid; grid-template-columns: 200px 1fr auto; gap: 30px; align-items: center; margin-top: 48px; box-shadow: inset 0 0 0 1px var(--line); padding: 34px 38px; }
.oc-pet img { margin: 0 auto; mix-blend-mode: multiply; }
.oc-pet-h { font-size: 21px; line-height: 1.55; letter-spacing: -.04em; }
.oc-pet-d { margin-top: 16px; font-size: 12.5px; line-height: 1.8; color: var(--muted); }
.oc-jr { padding: 56px 0 70px; }
.oc-jl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 20px; }
.oj-ph { display: block; aspect-ratio: 352 / 211; overflow: hidden; background: var(--paper); }
.oj-ph img { width: 100%; height: 100%; object-fit: cover; }
.oc-jl em { display: block; margin-top: 16px; font-style: normal; font-size: 11.5px; color: var(--fern); }
.oc-jl b { display: block; margin-top: 11px; font-size: 16px; font-weight: 600; letter-spacing: -.04em; }
.oj-d { display: block; margin-top: 12px; font-size: 12.5px; line-height: 1.75; color: var(--muted); }

@media (max-width: 1199px) {
  .pmeth { grid-template-columns: repeat(3, 1fr); }
  .oc-h-in { grid-template-columns: 1fr; }
  .oc-h h1 { font-size: 34px; }
  .oc-ill { max-width: 260px; }
  .oc-3 { grid-template-columns: 1fr; }
  .oc-3 section { border-left: 0; padding: 26px 0; border-top: 1px solid var(--line); }
  .oc-3 section:first-child { border-top: 0; }
  .oc-pet { grid-template-columns: 1fr; text-align: center; }
  .oc-jl { grid-template-columns: 1fr; }
  .track-l { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .track-l li::before { display: none; }
}
@media (max-width: 767px) {
  .pmeth { grid-template-columns: 1fr 1fr; }
  .cash-in, .pcard-sel, .pstate, .oc-btns { grid-template-columns: 1fr; }
  .oc-il li { grid-template-columns: 90px 1fr; }
  .oc-q, .oc-pr { grid-column: 2; text-align: left; }
}

/* ══════════════════════════════════════════════════════════════════════
   12 로그인 · 회원가입
   ══════════════════════════════════════════════════════════════════════ */
.lg { display: grid; grid-template-columns: 715px 1fr; align-items: stretch; }
.lg-ph { position: relative; overflow: hidden; background: var(--paper); min-height: 1257px; }
.lg-ph img { width: 100%; height: 100%; object-fit: cover; }
.lg-ov { position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 62px 54px; color: #fff;
  background: linear-gradient(to top, rgba(35,30,25,.62), rgba(35,30,25,.28) 46%, transparent); }
.lg-ovh { font-size: 33px; line-height: 1.55; letter-spacing: -.045em; }
.lg-ovd { margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,.86); }
.lg-f { display: flex; justify-content: center; padding: 66px 40px 60px; }
.lg-box { width: 100%; max-width: 400px; }
.lg-box h1 { font-size: 30px; letter-spacing: -.04em; }
.lg-d { margin-top: 16px; font-size: 13px; color: var(--muted); }
.lgl { display: block; margin: 28px 0 10px; font-size: 12.5px; font-weight: 600; }
.lgl em { font-style: normal; font-weight: 400; color: var(--muted); }
.lg-box input, .su-l input { width: 100%; height: 54px; padding: 0 16px; border: 1px solid var(--line); background: var(--paper); font-size: 13.5px; border-radius: var(--r-xs); }
.lg-pw { position: relative; display: block; }
.lg-pw button { position: absolute; right: 14px; top: 16px; border: 0; background: transparent; padding: 0; }
.lg-pw svg { width: 20px; height: 20px; fill: none; stroke: var(--muted); stroke-width: 1.3; }
.lg-row { display: flex; align-items: center; margin: 18px 0 24px; font-size: 12.5px; }
.lg-row a { margin-left: auto; color: var(--muted); }
.lg-or { position: relative; margin: 26px 0; text-align: center; }
.lg-or::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 1px solid var(--line); }
.lg-or span { position: relative; background: var(--ivory); padding: 0 16px; font-size: 12.5px; color: var(--muted); }
.lg-soc { display: grid; gap: 12px; }
.socb { width: 100%; height: 54px; border: 0; font-size: 13.5px; font-weight: 600; }
.sc-y { background: var(--lemon); color: var(--ink); }
.sc-g { background: #2c9c52; color: #fff; }
.sc-w { background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); }
.lg-bh { margin-top: 44px; font-size: 15px; font-weight: 700; }
.lg-ben { display: grid; gap: 22px; margin-top: 22px; }
.lg-ben li { display: grid; grid-template-columns: 28px 1fr; gap: 16px; align-items: center; }
.lg-ben svg { width: 25px; height: 25px; fill: none; stroke: var(--fern); stroke-width: 1.2; }
.lg-ben b { display: block; font-size: 13px; font-weight: 600; }
.lg-ben span { display: block; margin-top: 7px; font-size: 12px; color: var(--muted); }

.su { border-top: 1px solid var(--line); }
.su-in { max-width: 940px; padding: 62px 0 70px; text-align: center; }
.su-h { font-size: 30px; letter-spacing: -.04em; }
.su-d { margin-top: 14px; font-size: 13px; color: var(--muted); }
.su-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 36px; }
.su-steps li { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.su-steps li + li::before { content: ""; width: 140px; border-top: 1px solid var(--line); margin: 0 20px; }
.su-steps span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); font-size: 12px; }
.su-steps em { font-style: normal; }
.su-steps .on span { background: var(--fern); color: #fff; box-shadow: none; }
.su-steps .on { color: var(--ink); }
.su-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; margin-top: 44px; text-align: left; }
.su-l { padding-right: 20px; border-right: 1px solid var(--line); }
.su-2 h3 { font-size: 14px; font-weight: 700; }
.su-l .lgl:first-of-type { margin-top: 24px; }
.su-all { padding: 20px 0 18px; font-size: 13px; border-bottom: 1px solid var(--line); }
.su-r h3 + .su-all { margin-top: 6px; }
.su-t li { display: flex; align-items: center; padding: 13px 0; font-size: 12.5px; }
.su-t li.gap { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 22px; }
.su-t button { margin-left: auto; border: 0; background: transparent; font-size: 12px; color: var(--muted); }
.su-next { min-width: 372px; margin-top: 46px; height: 58px; }
.su-alt { margin-top: 22px; font-size: 12.5px; color: var(--muted); }
.su-alt a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1199px) {
  .lg { grid-template-columns: 1fr; }
  .lg-ph { min-height: 420px; }
  .lg-ov { padding: 34px 24px 28px; }
  .lg-ovh { font-size: 24px; }
  .lg-f { padding: 40px 24px 50px; }
  .su-2 { grid-template-columns: 1fr; gap: 34px; }
  .su-l { padding-right: 0; border-right: 0; }
  .su-steps li + li::before { width: 50px; margin: 0 10px; }
}
@media (max-width: 767px) { .su-next { min-width: 0; width: 100%; } .su-steps { flex-wrap: wrap; gap: 12px; } .su-steps li + li::before { display: none; } }
/* 체크박스·라디오는 시각 요소로 대체 — 폭 지정 규칙보다 우선 */
.ck > input, .cashr > input, .shipo > input { position: absolute; opacity: 0; width: 0; height: 0; margin: 0; padding: 0; }

/* ══════════════════════════════════════════════════════════════════════
   13 위시리스트
   ══════════════════════════════════════════════════════════════════════ */
.wl-h { display: flex; align-items: baseline; gap: 20px; padding: 30px 0 48px; }
.wl-h h1 { font-size: 47px; letter-spacing: .01em; }
.wl-h b { font-size: 25px; font-weight: 500; color: var(--fern); }
.wl-tabs { display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.wl-tabs nav { display: flex; gap: 40px; }
.wl-tabs a { padding: 0 0 18px; font-size: 14px; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.wl-tabs a em { font-style: normal; margin-left: 5px; }
.wl-tabs a[aria-current="page"] { color: var(--ink); font-weight: 600; border-bottom-color: var(--ink); }
.wl-share { margin-left: auto; display: inline-flex; align-items: center; gap: 10px; border: 0; background: transparent; font-size: 13px; padding-bottom: 18px; }
.wl-share svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.wl-bar { display: flex; align-items: center; gap: 16px; padding: 40px 0 32px; font-size: 13px; }
.wl-bar .sel-w { margin-left: auto; }
.wl-view { display: flex; gap: 4px; }
.wl-view button { width: 34px; height: 34px; border: 0; background: transparent; display: grid; place-items: center; }
.wl-view svg { width: 18px; height: 18px; fill: none; stroke: var(--muted); stroke-width: 1.4; }
.wl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 78px 26px; }
.wl-ph { position: relative; aspect-ratio: 278 / 302; overflow: hidden; background: var(--paper); }
.wl-ph img { width: 100%; height: 100%; object-fit: cover; }
.wl-ck { position: absolute; left: 10px; top: 10px; }
.wl-bd { position: absolute; right: 10px; top: 44px; }
.wl-x { position: absolute; right: 8px; top: 8px; border: 0; background: transparent; padding: 4px; }
.wl-x svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.wl-br { margin-top: 16px; font-size: 11.5px; letter-spacing: .08em; color: var(--muted); }
.wl-n { margin-top: 10px; font-size: 14px; font-weight: 500; }
.wl-p { margin-top: 10px; font-size: 15px; font-weight: 700; }
.wl-p del { margin-left: 8px; font-size: 12.5px; font-weight: 400; color: var(--muted); }
.wl-p em { margin-left: 8px; font-style: normal; font-size: 13px; color: var(--clay); }
.wl-o { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; }
.wl-o span { width: 34px; color: var(--muted); }
.wl-o i { width: 18px; height: 18px; box-shadow: inset 0 0 0 1px rgba(23,24,23,.16); }
.wl-o b { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 26px; padding: 0 8px; box-shadow: inset 0 0 0 1px var(--line); font-weight: 400; }
.wl-none { box-shadow: none !important; color: var(--muted); }
.wl-st { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-2); font-size: 12px; color: var(--fern); }
.wl-st.low, .wl-st.alert { color: var(--clay); }
.wl-st .tgl { margin-left: auto; width: 38px; height: 21px; }
.wl-st .tgl::after { width: 15px; height: 15px; }
.wl-st .tgl.on::after { left: 20px; }
.wl-cta { display: flex; margin-top: 14px; }
.wl-cta .btn { flex: 1; height: 46px; font-size: 13px; }
.wl-more { width: 46px; border: 0; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); border-left: 0; display: grid; place-items: center; }
.wl-act { display: flex; align-items: center; gap: 12px; margin-top: 46px; padding: 34px 0 44px; border-top: 1px solid var(--line); font-size: 13px; }
.wl-act > span { margin-right: 6px; color: var(--muted); }
.wl-del { margin-left: auto; border: 0; background: transparent; font-size: 12.5px; color: var(--muted); }
.wl-sec { padding: 42px 0 0; border-top: 1px solid var(--line); }
.wl-sec + .wl-sec { margin-top: 48px; }
.wl-sec .sec-h { display: flex; align-items: center; gap: 14px; font-size: 17px; }
.wl-di { width: 1px; height: 14px; background: var(--line); }
.wl-sec .dim { font-size: 12px; font-weight: 400; }
.wl-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; margin-top: 34px; margin-bottom: 40px; }
.wr-ph { display: block; aspect-ratio: 183 / 150; overflow: hidden; background: var(--paper); }
.wr-ph img { width: 100%; height: 100%; object-fit: cover; }
.wl-row b { display: block; margin-top: 14px; font-size: 12.5px; font-weight: 400; }
.wl-row em { display: block; margin-top: 8px; font-style: normal; font-size: 12.5px; font-weight: 600; }

/* ══════════════════════════════════════════════════════════════════════
   14 마이 모로
   ══════════════════════════════════════════════════════════════════════ */
.my { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; padding: 56px 0 74px; }
.my-h { font-size: 27px; letter-spacing: .02em; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.my-side nav { margin-top: 8px; }
.my-side li a { display: flex; align-items: center; gap: 14px; padding: 19px 4px 19px 16px; font-size: 13.5px; color: var(--muted); border-left: 2px solid transparent; }
.my-side li.on a { color: var(--ink); font-weight: 600; border-left-color: var(--fern); }
.my-side svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.my-side em { margin-left: auto; font-style: normal; font-size: 12px; }
.my-tier { position: relative; margin-top: 26px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); padding: 24px 24px 26px; overflow: hidden; }
.my-tier-h { font-size: 17px; letter-spacing: .02em; }
.my-tier p { margin-top: 14px; font-size: 12.5px; line-height: 1.8; color: var(--muted); }
.my-tier .more { margin-top: 18px; font-size: 12.5px; }
.my-tier img { position: absolute; right: 0; bottom: 0; mix-blend-mode: multiply; }
.my-hi { font-size: 36px; line-height: 1.55; letter-spacing: -.045em; }
.my-card { margin-top: 34px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); padding: 40px 34px 42px; }
.my-s { font-size: 17px; font-weight: 700; }
.my-grade { display: grid; grid-template-columns: 60px 190px 1fr; gap: 24px; align-items: center; }
.my-badge { width: 58px; height: 58px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--fern); display: grid; place-items: center; }
.my-badge svg { width: 26px; height: 26px; fill: none; stroke: var(--fern); stroke-width: 1.2; }
.my-gt b { display: block; font-size: 17px; letter-spacing: .02em; }
.my-gt span { display: block; margin-top: 10px; font-size: 12px; color: var(--muted); }
.my-grade dl { display: grid; grid-template-columns: repeat(3, 1fr); }
.my-grade dl div { padding-left: 30px; border-left: 1px solid var(--line); }
.my-grade dt { font-size: 12.5px; color: var(--muted); }
.my-grade dd { margin-top: 12px; font-size: 27px; font-weight: 700; letter-spacing: -.045em; }
.my-grade dd em { font-style: normal; font-size: 15px; font-weight: 500; margin-left: 2px; }
.my-stat { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 36px; padding-bottom: 12px; }
.my-stat li { position: relative; display: grid; justify-items: center; }
.my-stat li::before { content: ""; position: absolute; top: 27px; left: -50%; width: 100%; border-top: 1px solid var(--line); }
.my-stat li:first-child::before { display: none; }
.my-stat li.on + li::before, .my-stat li.on::before { border-top-color: var(--fern); }
.ms { position: relative; z-index: 1; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); }
.my-stat .on .ms { background: var(--fern); box-shadow: none; }
.ms svg { width: 22px; height: 22px; fill: none; stroke: var(--muted); stroke-width: 1.3; }
.my-stat .on .ms svg { stroke: #fff; }
.my-stat b { margin-top: 16px; font-size: 12.5px; font-weight: 400; color: var(--muted); }
.my-stat em { margin-top: 10px; font-style: normal; font-size: 19px; font-weight: 600; }
.my-ord li { display: grid; grid-template-columns: 150px 123px 1fr auto 150px; gap: 22px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line-2); }
.my-ord li:last-child { border-bottom: 0; }
.mo-d b { display: block; font-size: 13px; font-weight: 600; }
.mo-d b .ch { width: 11px; height: 11px; fill: none; stroke: var(--muted); stroke-width: 1.5; display: inline-block; vertical-align: -1px; margin-left: 4px; }
.mo-d span { display: block; margin-top: 12px; font-size: 11.5px; line-height: 1.7; color: var(--muted); }
.mo-ph { display: block; aspect-ratio: 123 / 125; overflow: hidden; background: var(--ivory); }
.mo-ph img { width: 100%; height: 100%; object-fit: cover; }
.mo-t b { display: block; font-size: 14px; font-weight: 500; }
.mo-t em { display: block; margin-top: 10px; font-style: normal; font-size: 12.5px; color: var(--muted); }
.mo-p { text-align: right; }
.mo-p b { display: block; font-size: 14px; font-weight: 600; }
.mo-p em { display: block; margin-top: 10px; font-style: normal; font-size: 12px; color: var(--muted); }
.mo-a { display: grid; gap: 8px; justify-items: stretch; }
.mo-a > span { font-size: 12.5px; font-weight: 600; text-align: center; }
.mo-a .btn { height: 38px; }
.mo-a .rev { color: var(--clay); box-shadow: inset 0 0 0 1px #e6c9ba; }
.my-sub { display: grid; grid-template-columns: 149px 1fr 240px 190px; gap: 26px; align-items: center; margin-top: 22px; }
.ms-ph { display: block; aspect-ratio: 149 / 192; overflow: hidden; background: var(--ivory); }
.ms-ph img { width: 100%; height: 100%; object-fit: cover; }
.my-sub > div b { display: block; font-size: 15px; font-weight: 600; }
.my-sub > div em { display: block; margin-top: 10px; font-style: normal; font-size: 12.5px; color: var(--muted); }
.my-sub > div i { display: block; margin-top: 22px; font-style: normal; font-size: 15px; font-weight: 700; }
.my-sub > div span { display: block; margin-top: 10px; font-size: 12px; color: var(--muted); }
.my-sub dl div { padding: 8px 0; font-size: 12.5px; }
.my-sub dt { color: var(--muted); }
.my-sub dd { margin-top: 7px; font-weight: 500; }
.ms-b { display: grid; gap: 10px; }
.ms-b .btn { height: 44px; }
.my-pet { display: grid; grid-template-columns: 151px 1fr 380px; gap: 30px; align-items: center; margin-top: 22px; }
.mp-ph { position: relative; display: block; width: 151px; height: 151px; border-radius: 50%; overflow: hidden; background: var(--ivory); }
.mp-ph img { width: 100%; height: 100%; object-fit: cover; }
.mp-cam { position: absolute; right: 6px; bottom: 6px; width: 30px; height: 30px; border-radius: 50%; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; }
.mp-cam svg { width: 15px; height: 15px; fill: none; stroke: var(--muted); stroke-width: 1.3; }
.mp-n { display: flex; align-items: center; gap: 14px; }
.mp-n b { font-size: 19px; font-weight: 600; }
.chipg { font-style: normal; font-size: 11.5px; color: var(--fern); box-shadow: inset 0 0 0 1px #c3cfba; border-radius: 999px; padding: 4px 12px; }
.my-pet dl { margin-top: 18px; }
.my-pet dl div { display: flex; gap: 26px; padding: 6px 0; font-size: 12.5px; }
.my-pet dt { flex: none; width: 62px; color: var(--muted); }
.mp-care { position: relative; display: block; background: var(--ivory); box-shadow: inset 0 0 0 1px var(--line); padding: 24px 26px 26px; overflow: hidden; min-height: 152px; }
.mp-care b { display: block; font-size: 14px; font-weight: 700; }
.mp-care span { display: block; margin-top: 14px; font-size: 12px; line-height: 1.7; color: var(--muted); }
.mp-go { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); margin-top: 18px; }
.mp-go .ch { width: 11px; height: 11px; fill: none; stroke: var(--ink); stroke-width: 1.5; }
.mp-care img { position: absolute; right: 0; bottom: 0; mix-blend-mode: multiply; }
.my-rec { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 30px; }
.mr-ph { display: block; aspect-ratio: 206 / 197; overflow: hidden; background: var(--ivory); }
.mr-ph img { width: 100%; height: 100%; object-fit: cover; }
.my-rec b { display: block; margin-top: 14px; font-size: 13px; font-weight: 500; }
.my-rec em { display: block; margin-top: 8px; font-style: normal; font-size: 12px; color: var(--muted); }
.mr-p { display: flex; align-items: center; margin-top: 12px; font-size: 13.5px; font-weight: 700; }
.mr-p .wish { position: static; margin-left: auto; }

@media (max-width: 1199px) {
  .wl-grid { grid-template-columns: repeat(2, 1fr); }
  .wl-row { grid-template-columns: repeat(3, 1fr); }
  .wl-act { flex-wrap: wrap; }
  .my { grid-template-columns: 1fr; }
  .my-grade { grid-template-columns: 1fr; }
  .my-grade dl div { padding-left: 0; border-left: 0; }
  .my-ord li { grid-template-columns: 123px 1fr; }
  .mo-d, .mo-p, .mo-a { grid-column: 2; text-align: left; }
  .my-sub, .my-pet { grid-template-columns: 1fr; }
  .my-rec { grid-template-columns: repeat(2, 1fr); }
  .my-stat { grid-template-columns: repeat(3, 1fr); gap: 20px 0; }
  .my-stat li::before { display: none; }
}
@media (max-width: 767px) {
  .wl-grid { grid-template-columns: 1fr; }
  .wl-row { grid-template-columns: 1fr 1fr; }
  .wl-tabs { flex-wrap: wrap; }
  .wl-tabs nav { gap: 20px; }
  .my-h { font-size: 22px; }
}

/* ══════════════════════════════════════════════════════════════════════
   15 주문 상세 · 반품
   ══════════════════════════════════════════════════════════════════════ */
.od { grid-template-columns: 260px 1fr; gap: 54px; }
.od-h { font-size: 24px; font-weight: 700; letter-spacing: -.04em; padding-bottom: 26px; }
.od-side section { padding: 22px 0; }
.od-side h2 { font-size: 13.5px; font-weight: 700; margin-bottom: 12px; }
.od-side li a { display: block; padding: 11px 14px; font-size: 13px; color: var(--muted); }
.od-side li.on a { background: #e7e2d6; color: var(--ink); }
.od-cs { margin-top: 16px; box-shadow: inset 0 0 0 1px var(--line); padding: 22px 22px 20px; }
.od-cs b { font-size: 12.5px; font-weight: 600; }
.od-tel { margin-top: 12px; font-size: 20px; font-weight: 700; letter-spacing: -.03em; }
.od-cs p:last-of-type { margin-top: 12px; font-size: 11.5px; line-height: 1.8; color: var(--muted); }
.od-cs .more { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); width: 100%; font-size: 12.5px; }
.od-top { display: flex; align-items: center; }
.od-t { font-size: 30px; letter-spacing: -.04em; }
.od-top .btn { margin-left: auto; }
.od-no { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 12.5px; color: var(--muted); }
.od-no b { font-weight: 500; color: var(--ink); }
.od-no i { color: var(--line); }
.od-card { margin-top: 22px; box-shadow: inset 0 0 0 1px var(--line); padding: 30px 34px 26px; }
.od-trk { display: grid; grid-template-columns: repeat(4, 1fr); }
.od-trk li { position: relative; display: grid; justify-items: center; }
.od-trk li::before { content: ""; position: absolute; top: 21px; left: -50%; width: 100%; border-top: 1px solid var(--line); }
.od-trk li:first-child::before { display: none; }
.od-trk .done::before, .od-trk .cur::before { border-top-color: var(--fern); }
.ot { position: relative; z-index: 1; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ivory); }
.od-trk .cur .ot { background: var(--fern); }
.ot svg { width: 22px; height: 22px; fill: none; stroke: var(--muted); stroke-width: 1.3; }
.od-trk .done .ot svg { stroke: var(--ink); }
.od-trk .cur .ot svg { stroke: #fff; }
.od-trk b { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--muted); }
.od-trk .cur b { color: var(--ink); }
.od-trk em { margin-top: 10px; font-style: normal; font-size: 12px; color: var(--muted); }
.od-ship { display: flex; align-items: center; gap: 10px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12.5px; }
.od-ship span { color: var(--muted); }
.od-ship i { color: var(--line); margin: 0 6px; }
.od-ship .more { margin-left: auto; font-size: 12.5px; }
.od-btns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.od-btns .btn { height: 52px; }
.od-sec { margin-top: 30px; }
.od-s { font-size: 15px; font-weight: 700; }
.od-s.mt { margin-top: 28px; }
.od-il { margin-top: 16px; box-shadow: inset 0 0 0 1px var(--line); }
.od-il li { display: grid; grid-template-columns: 82px 1fr 120px 60px 130px; gap: 22px; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.od-il li:last-child { border-bottom: 0; }
.od-ph { display: block; aspect-ratio: 82 / 78; overflow: hidden; background: var(--paper); }
.od-ph img { width: 100%; height: 100%; object-fit: cover; }
.od-il small { display: block; font-size: 11px; letter-spacing: .06em; color: var(--muted); }
.od-il b { display: block; margin-top: 8px; font-size: 14px; font-weight: 600; }
.od-il em { display: block; margin-top: 8px; font-style: normal; font-size: 12px; color: var(--muted); }
.od-il span { font-size: 13px; text-align: right; }
.od-tt { font-weight: 600; }
.od-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.od-box { box-shadow: inset 0 0 0 1px var(--line); padding: 24px 26px 26px; }
.od-box dl div { display: flex; padding: 8px 0; font-size: 12.5px; }
.od-box dt { color: var(--muted); } .od-box dd { margin-left: auto; }
.od-box dl { margin-top: 14px; }
.od-tot { display: flex; align-items: baseline; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; font-weight: 600; }
.od-tot b { margin-left: auto; font-size: 21px; font-weight: 700; letter-spacing: -.04em; }
.od-pm { margin-top: 16px !important; padding-top: 14px; border-top: 1px solid var(--line); }
.od-ad div { align-items: flex-start; }
.od-ad dt { flex: none; width: 92px; }
.od-ad dd { margin-left: 0 !important; line-height: 1.75; }
.od-re { margin-top: 16px; float: right; }
.od-box::after { content: ""; display: block; clear: both; }
.od-ret { margin-top: 26px; box-shadow: inset 0 0 0 1px #e6cfc4; }
.od-ret-h { display: flex; align-items: center; padding: 24px 30px; }
.od-ret-h h3 { font-size: 16px; font-weight: 700; }
.od-ret-h .cv2 { margin-left: auto; rotate: -135deg; margin-top: 4px; }
.od-r { padding: 0 30px 30px; }
.od-rl { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.od-rl em { font-style: normal; font-weight: 400; color: var(--muted); }
.od-rl span { display: block; margin-top: 8px; font-size: 11.5px; font-weight: 400; color: var(--muted); }
.od-r > .od-rl:first-child { border-top: 0; margin-top: 0; padding-top: 4px; }
.od-rv { margin-top: 12px; max-width: 460px; }
.od-rsel { margin-top: 12px; }
.od-rsel li { display: grid; grid-template-columns: 22px 82px 1fr 110px 160px; gap: 18px; align-items: center; padding: 14px 0; }
.od-ph.sm { aspect-ratio: 82 / 78; }
.od-rsel b { display: block; font-size: 13px; font-weight: 600; }
.od-rsel em { display: block; margin-top: 7px; font-style: normal; font-size: 12px; color: var(--muted); }
.od-rsel > li > span:nth-of-type(2) { font-size: 13px; text-align: right; }
.od-q { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--muted); }
.sel2.mini { display: inline-flex; height: 36px; min-width: 74px; font-size: 12.5px; }
.od-up { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 14px; }
.od-up button { height: 108px; border: 1px dashed var(--line-2); background: transparent; display: grid; place-items: center; align-content: center; gap: 8px; }
.od-up i { font-style: normal; font-size: 19px; color: var(--muted); }
.od-up b { font-size: 12.5px; font-weight: 400; color: var(--muted); }
.od-up em { font-style: normal; font-size: 11.5px; color: var(--muted); }
.od-rr { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 14px; }
.rr { position: relative; display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: center; cursor: pointer; }
.rr input { position: absolute; opacity: 0; }
.rr.on .rd { box-shadow: inset 0 0 0 1px var(--clay), inset 0 0 0 5px var(--paper); background: var(--clay); }
.rr b { font-size: 13.5px; font-weight: 600; }
.rr em { grid-column: 2; margin-top: 8px; font-style: normal; font-size: 12px; color: var(--muted); }
.od-rf { margin-top: 12px; }
.od-rf b { font-size: 15px; font-weight: 700; }
.od-rf span { display: block; margin-top: 9px; font-size: 12px; color: var(--muted); }
.od-warn { display: grid; grid-template-columns: 26px 1fr; gap: 14px; margin-top: 24px; padding: 20px 22px; background: #fbf0ec; }
.od-warn i { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--clay); color: var(--clay); font-style: normal; font-weight: 700; font-size: 13px; }
.od-warn b { display: block; margin-bottom: 8px; font-size: 12.5px; }
.od-warn span { font-size: 12px; line-height: 1.7; color: var(--muted); }
.od-ret .btn-clay { margin-top: 22px; }

/* ══════════════════════════════════════════════════════════════════════
   16 리뷰 & Q&A
   ══════════════════════════════════════════════════════════════════════ */
.rv-h { padding: 14px 0 30px; }
.rv-h h1 { font-size: 42px; letter-spacing: .005em; }
.rv-h p { margin-top: 16px; font-size: 13.5px; color: var(--muted); }
.rv-sum { display: grid; grid-template-columns: 250px 1fr 300px; gap: 40px; align-items: center; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.rv-l { font-size: 12.5px; color: var(--muted); }
.rv-n { margin-top: 8px; font-size: 62px; font-weight: 700; letter-spacing: -.05em; line-height: 1; }
.rv-n em { font-style: normal; font-size: 21px; font-weight: 400; color: var(--muted); margin-left: 6px; }
.stars.gold { color: #c9a24a; }
.rv-avg .stars { margin-top: 16px; font-size: 19px; letter-spacing: .12em; }
.rv-c { margin-top: 14px; font-size: 13px; font-weight: 600; }
.rv-bars { display: grid; gap: 10px; padding-left: 40px; border-left: 1px solid var(--line); }
.rv-bars li { display: grid; grid-template-columns: 34px 1fr 120px; gap: 16px; align-items: center; font-size: 12.5px; }
.rv-bars em { font-style: normal; color: var(--muted); }
.rv-bars .bar { height: 5px; background: var(--line-2); }
.rv-bars .bar i { background: var(--fern); }
.rv-bars b { text-align: right; font-weight: 400; color: var(--muted); }
.rv-cert { display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: center; }
.rv-cert svg { width: 32px; height: 32px; fill: none; stroke: var(--fern); stroke-width: 1.2; }
.rv-cert b { display: block; margin-bottom: 8px; font-size: 13.5px; font-weight: 700; }
.rv-cert span { font-size: 12px; color: var(--muted); }
.rv-fil { display: flex; align-items: flex-end; gap: 34px; padding: 26px 0 24px; }
.rv-fl { font-size: 12.5px; font-weight: 600; margin-bottom: 12px; }
.segs { display: inline-flex; box-shadow: inset 0 0 0 1px var(--line); }
.segs button { height: 38px; padding: 0 18px; border: 0; background: transparent; font-size: 12.5px; color: var(--muted); }
.segs button.on { background: var(--paper); box-shadow: inset 0 0 0 1px var(--ink); color: var(--ink); }
.rv-sort { margin-left: auto; }
.rv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.rv-ph { position: relative; display: block; overflow: hidden; background: var(--paper); }
.rv-ph img { width: 100%; height: auto; }
.rv-ic { position: absolute; left: 10px; top: 10px; width: 26px; height: 26px; border-radius: 6px; background: rgba(255,255,255,.86); display: grid; place-items: center; }
.rv-ic svg { width: 15px; height: 15px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.rv-who { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 13px; }
.rv-who b { font-weight: 600; }
.rv-who em { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; font-style: normal; font-size: 11px; color: var(--fern); }
.rv-who svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.rv-st { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 12.5px; }
.rv-st .stars { font-size: 12px; letter-spacing: .08em; }
.rv-tx { margin-top: 14px; font-size: 12.5px; line-height: 1.8; color: #3d3f3b; }
.rv-prd { margin-top: 16px; font-size: 11.5px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.rv-one { display: grid; grid-template-columns: 313px 1fr 340px; gap: 34px; align-items: start; margin-top: 40px; padding: 30px 0 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rv-one-ph img { width: 100%; height: auto; }
.rv-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.rv-thumbs img { width: 100%; height: auto; }
.rv-date { margin-top: 14px; font-size: 12px; color: var(--muted); }
.rv-body { margin-top: 18px; font-size: 13.5px; line-height: 1.9; }
.rv-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.rv-meta span { display: inline-flex; align-items: center; gap: 12px; box-shadow: inset 0 0 0 1px var(--line); padding: 8px 14px; font-size: 12px; color: var(--muted); }
.rv-meta b { font-weight: 500; color: var(--ink); }
.rv-help { display: flex; align-items: center; gap: 14px; margin-top: 22px; font-size: 12.5px; color: var(--muted); }
.rv-help button { border: 0; background: transparent; box-shadow: inset 0 0 0 1px var(--line); padding: 7px 14px; font-size: 12px; }
.rv-more { box-shadow: none !important; margin-left: auto; }
.rv-reply { margin-top: 22px; background: var(--paper); padding: 22px 24px; }
.rv-reply p:first-child { display: flex; align-items: center; gap: 14px; }
.rv-reply b { font-size: 12.5px; font-weight: 700; }
.rv-reply em { font-style: normal; font-size: 11.5px; color: var(--muted); }
.rv-reply p:last-child { margin-top: 14px; font-size: 12.5px; line-height: 1.85; color: var(--muted); }
.rv-one-r { box-shadow: inset 0 0 0 1px var(--line); padding: 24px 26px; }
.rv-one-r h2 { font-size: 14px; font-weight: 700; }
.rv-one-r h2.mt { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.rv-prd2, .rv-pet { display: grid; grid-template-columns: 80px 1fr; gap: 18px; align-items: center; margin-top: 18px; }
.rv-prd2 img, .rv-pet img { width: 100%; height: auto; }
.rv-pet { grid-template-columns: 62px 1fr; }
.rv-pet img { border-radius: 50%; }
.rv-prd2 b { display: block; font-size: 13px; font-weight: 500; }
.rv-prd2 em { display: block; margin-top: 10px; font-style: normal; font-size: 13px; font-weight: 700; }
.rv-prd2 i { display: block; margin-top: 10px; font-style: normal; font-size: 12px; color: var(--muted); }
.rv-pet i { display: flex; gap: 18px; font-style: normal; font-size: 12px; color: var(--muted); padding: 3px 0; }
.rv-pet b { font-weight: 500; color: var(--ink); }
.rv-qa { padding: 34px 0 60px; }
.rv-tabs { display: flex; justify-content: center; gap: 60px; border-bottom: 1px solid var(--line); }
.rv-tabs a { padding-bottom: 18px; font-size: 14px; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.rv-tabs a[aria-current="page"] { color: var(--ink); font-weight: 600; border-bottom-color: var(--ink); }
.rv-q2 { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; margin-top: 30px; }
.rv-qf { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rv-qf .btn { margin-left: auto; }
.rv-ql { margin-top: 22px; }
.rv-ql li { display: grid; grid-template-columns: 18px 44px 16px 1fr auto auto; gap: 14px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line-2); font-size: 12.5px; }
.rq-i { width: 16px; height: 16px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); }
.rv-ql em { font-style: normal; font-size: 11.5px; color: var(--muted); }
.rv-ql > li > b { font-weight: 600; color: var(--fern); }
.rq-lock { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--muted); }
.rq-lock svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.rv-ql time { font-size: 11.5px; color: var(--muted); }
.rv-ask { box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); padding: 24px 26px 26px; }
.rv-ask-h { display: flex; align-items: center; }
.rv-ask-h b { font-size: 16px; font-weight: 700; }
.rv-ask-h button { margin-left: auto; border: 0; background: transparent; padding: 2px; }
.rv-ask-h svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.4; }
.rv-ask-f { margin-top: 14px; }
.inp { position: relative; display: block; }
.inp input, .inp textarea { width: 100%; padding: 15px 60px 15px 16px; border: 1px solid var(--line); background: #fff; font-size: 13px; }
.inp em { position: absolute; right: 14px; top: 16px; font-style: normal; font-size: 11.5px; color: var(--muted); }
.inp.ta em { top: auto; bottom: 14px; }
.rv-ask-n { display: flex; align-items: center; gap: 8px; margin: 16px 0 18px; font-size: 12px; color: var(--muted); }
.rv-ask-n svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.rv-ask .btn { height: 52px; }

@media (max-width: 1199px) {
  .od { grid-template-columns: 1fr; }
  .od-il li, .od-rsel li { grid-template-columns: 82px 1fr; }
  .od-il span, .od-rsel > li > span:nth-of-type(2), .od-q { grid-column: 2; text-align: left; }
  .od-2, .od-rr, .od-btns { grid-template-columns: 1fr; }
  .od-up { grid-template-columns: repeat(3, 1fr); }
  .rv-sum { grid-template-columns: 1fr; }
  .rv-bars { padding-left: 0; border-left: 0; }
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-one, .rv-q2 { grid-template-columns: 1fr; }
  .rv-fil { flex-wrap: wrap; gap: 20px; }
  .rv-sort { margin-left: 0; }
  .od-trk { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .od-trk li::before { display: none; }
}
@media (max-width: 767px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-h h1 { font-size: 30px; }
  .od-up { grid-template-columns: 1fr 1fr; }
  .rv-ql li { grid-template-columns: 44px 1fr; }
  .rq-i, .rv-ql > li > b { display: none; }
  .rq-lock, .rv-ql time { grid-column: 2; }
}

/* ══════════════════════════════════════════════════════════════════════
   17 반려동물 프로필
   ══════════════════════════════════════════════════════════════════════ */
.pp-top { display: flex; align-items: flex-end; padding: 34px 0 22px; border-bottom: 1px solid var(--line); }
.pp-step { font-size: 22px; font-weight: 500; color: var(--fern); }
.pp-stepl { margin-top: 8px; font-size: 13px; color: var(--muted); }
.pp-steps { margin-left: auto; display: flex; gap: 44px; font-size: 12.5px; color: var(--muted); }
.pp-steps .on { color: var(--fern); font-weight: 700; }
.pp-h { padding: 58px 0 52px; }
.pp-h h1 { font-size: 47px; letter-spacing: .005em; }
.pp-h p { margin-top: 18px; font-size: 15px; }
.pp { display: grid; grid-template-columns: 1fr 440px; gap: 24px; align-items: start; }
.pp-form, .pp-side { box-shadow: inset 0 0 0 1px var(--line); padding: 38px 34px 44px; }
.pp-s { display: flex; align-items: baseline; font-size: 16px; font-weight: 700; }
.pp-s em { margin-left: auto; font-style: normal; font-size: 12.5px; font-weight: 400; color: var(--muted); }
.pp-s em i { color: var(--line); margin: 0 4px; }
.pp-s.bt { margin-top: 44px; padding-top: 38px; border-top: 1px solid var(--line); }
.pp-basic { display: grid; grid-template-columns: 1fr 220px; gap: 34px; margin-top: 20px; }
.pp-l { display: block; margin: 24px 0 11px; font-size: 12.5px; color: var(--muted); }
.pp-basic > div > .pp-l:first-child { margin-top: 0; }
.pp-seg { display: inline-flex; gap: 10px; }
.pp-seg button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-width: 132px; height: 48px; border: 0; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); font-size: 13.5px; }
.pp-seg button.on { background: var(--fern); color: #fff; box-shadow: none; }
.pp-seg svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.pp-seg.sm button { min-width: 104px; }
.pp input, .pp .sel2 { width: 100%; height: 48px; }
.pp input { padding: 0 16px; border: 1px solid var(--line); background: var(--paper); font-size: 13.5px; }
.pp-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pp-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sel2.dt { position: relative; padding: 0; }
.sel2.dt input { border: 0; background: transparent; }
.sel2.dt svg { position: absolute; right: 16px; width: 17px; height: 17px; fill: none; stroke: var(--muted); stroke-width: 1.3; }
.unit { position: relative; display: block; }
.unit em { position: absolute; right: 16px; top: 15px; font-style: normal; font-size: 12.5px; color: var(--muted); }
.unit input { padding-right: 44px; }
.pp-photo .pp-l { margin-top: 0; }
.pp-ph { position: relative; display: block; width: 176px; height: 176px; border-radius: 50%; overflow: hidden; background: var(--paper); }
.pp-ph img { width: 100%; height: 100%; object-fit: cover; }
.pp-ph i { position: absolute; right: 6px; bottom: 6px; width: 34px; height: 34px; border-radius: 50%; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; }
.pp-ph svg { width: 17px; height: 17px; fill: none; stroke: var(--muted); stroke-width: 1.3; }
.pp-d { margin-top: 12px; font-size: 12.5px; color: var(--muted); }
.pp-meas { display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: center; margin-top: 16px; }
.pdog { width: 100%; height: auto; }
.pp-ml li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start; margin-bottom: 22px; }
.pp-ml span[class^="pn"] { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; color: #fff; font-size: 11px; font-weight: 700; }
.pn1 { background: var(--fern); } .pn2 { background: var(--clay); } .pn3 { background: #c9a24a; }
.pp-ml b { display: block; font-size: 13.5px; font-weight: 700; }
.pp-ml div span { display: block; margin-top: 9px; font-size: 12px; line-height: 1.7; color: var(--muted); }
.pp-note { display: block !important; font-size: 11.5px; line-height: 1.7; color: var(--muted); }
.pp-side { text-align: center; }
.pp-ph2 { display: block; width: 125px; height: 125px; margin: 0 auto; border-radius: 50%; overflow: hidden; background: var(--paper); }
.pp-ph2 img { width: 100%; height: 100%; object-fit: cover; }
.pp-nm { margin-top: 20px; font-size: 25px; font-weight: 600; letter-spacing: -.04em; }
.pp-meta { margin-top: 14px; font-size: 13px; color: var(--muted); }
.pp-meta i { color: var(--line); margin: 0 6px; }
.pp-s2 { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 700; text-align: left; display: flex; align-items: center; }
.pp-help { margin-left: auto; font-size: 11.5px; font-weight: 400; color: var(--muted); }
.pp-size { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.pp-size b { font-size: 74px; color: var(--fern); line-height: .9; }
.ring { position: relative; width: 100px; height: 100px; }
.ring svg { width: 100%; height: 100%; }
.ring em { position: absolute; inset: 0; display: grid; place-items: center; font-style: normal; font-size: 19px; font-weight: 600; }
.pp-acc { margin-top: 10px; font-size: 12.5px; color: var(--muted); text-align: left; }
.pp-why { margin-top: 16px; text-align: left; }
.pp-why li { position: relative; padding-left: 22px; margin-bottom: 12px; font-size: 12.5px; color: #3d3f3b; }
.pp-why li::before { content: "✓"; position: absolute; left: 0; color: var(--fern); }
.pp-seg.fit { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 16px; box-shadow: inset 0 0 0 1px var(--line); }
.pp-seg.fit button { min-width: 0; box-shadow: none; background: transparent; }
.pp-seg.fit button.on { background: var(--fern); color: #fff; }
.pp-tip { display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: center; margin-top: 20px; padding: 20px 22px; background: var(--paper); text-align: left; font-size: 12.5px; line-height: 1.7; }
.pp-tip svg { width: 22px; height: 22px; fill: none; stroke: var(--fern); stroke-width: 1.3; }
.pp-save { margin-top: 24px; height: 54px; }
.pp-side .btn-soft { margin-top: 12px; height: 54px; }
.pp-note2 { margin-top: 18px; font-size: 12px; line-height: 1.8; color: var(--muted); }
.pp-saved { padding: 54px 0 0; }
.pp-saved .more { border: 0; background: transparent; }
.pp-sl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 18px; }
.pp-sl a { display: grid; grid-template-columns: 74px 1fr 14px; gap: 18px; align-items: center; box-shadow: inset 0 0 0 1px var(--line); padding: 20px 22px; }
.pa { display: block; width: 74px; height: 74px; border-radius: 50%; overflow: hidden; background: var(--paper); }
.pa img { width: 100%; height: 100%; object-fit: cover; }
.pt b { font-size: 15px; font-weight: 600; }
.pt .chipg { margin-left: 10px; }
.pt i { display: block; margin-top: 9px; font-style: normal; font-size: 12px; color: var(--muted); }
.pp-sl .ch { width: 12px; height: 12px; fill: none; stroke: var(--muted); stroke-width: 1.5; }
.pp-rec { padding: 60px 0 92px; }
.pp-rec .dim { margin-top: 10px; font-size: 12.5px; }
.pp-rl { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 20px; }
.pr-ph { position: relative; display: block; aspect-ratio: 222 / 224; overflow: hidden; background: var(--paper); }
.pr-ph img { width: 100%; height: 100%; object-fit: cover; }
.pr-bd { position: absolute; left: 10px; bottom: 10px; }
.pp-rl em { display: block; margin-top: 14px; font-style: normal; font-size: 11.5px; color: var(--muted); }
.pp-rl b { display: block; margin-top: 9px; font-size: 13.5px; font-weight: 500; }
.pp-rl i { display: block; margin-top: 9px; font-style: normal; font-size: 13.5px; font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════════
   18 MORRO CLUB
   ══════════════════════════════════════════════════════════════════════ */
.cb-h { padding: 28px 0 0; }
.cb-h-in { display: grid; grid-template-columns: 1fr 591px; gap: 40px; align-items: center; }
.cb-t { margin-top: 16px; font-size: 36px; line-height: 1.4; letter-spacing: -.045em; }
.cb-d { margin-top: 20px; font-size: 13.5px; line-height: 1.8; color: var(--muted); }
.cb-b { margin-top: 26px; height: 48px; }
.cb-ph { width: 100%; height: auto; }
.cb-now { display: grid; grid-template-columns: 300px 1fr auto; gap: 40px; align-items: center; margin-top: 30px; box-shadow: inset 0 0 0 1px var(--line); padding: 24px 30px; }
.cb-now-l p { display: flex; align-items: baseline; gap: 20px; padding: 6px 0; font-size: 13px; }
.cb-now-l span { color: var(--muted); }
.cb-now-l b { margin-left: auto; font-size: 17px; font-weight: 600; }
.cb-now-l b.disp { font-size: 21px; color: var(--fern); letter-spacing: .04em; }
.cb-now-r { padding-left: 40px; border-left: 1px solid var(--line); }
.cb-next { font-size: 12.5px; color: var(--muted); }
.cb-next b { color: var(--ink); font-weight: 600; }
.cb-bar { display: block; height: 8px; margin-top: 14px; background: var(--line-2); }
.cb-bar i { display: block; height: 100%; background: var(--fern); }
.cb-sc { display: flex; justify-content: space-between; margin-top: 10px; font-size: 11px; color: var(--muted); }
.cb-gd { font-size: 12.5px; color: var(--muted); }
.cb-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.cb-tiers > li { position: relative; box-shadow: inset 0 0 0 1px var(--line); padding: 22px 26px 20px; }
.cb-tiers > li.on { box-shadow: inset 0 0 0 1.5px var(--fern); }
.cb-cur { position: absolute; left: 50%; top: -13px; translate: -50% 0; font-style: normal; background: var(--fern); color: #fff; font-size: 11.5px; padding: 5px 14px; }
.cb-ic { width: 48px; height: 48px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; }
.cb-ic svg { width: 26px; height: 26px; fill: none; stroke: var(--fern); stroke-width: 1.2; }
.cb-n { margin-top: 16px; font-size: 25px; letter-spacing: .03em; }
.cb-r { margin-top: 12px; font-size: 12.5px; color: var(--muted); }
.cb-dd { margin-top: 14px; font-size: 12.5px; line-height: 1.7; color: #3d3f3b; }
.cb-l { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.cb-l li { display: grid; grid-template-columns: 20px 1fr; gap: 14px; align-items: center; padding: 6px 0; font-size: 12.5px; }
.cb-l svg { width: 17px; height: 17px; fill: none; stroke: var(--muted); stroke-width: 1.2; }
.cb-note { margin-top: 20px; font-size: 11.5px; color: var(--muted); }
.cb-sub { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; margin-top: 22px; padding-top: 24px; border-top: 1px solid var(--line); }
.cb-sub-t p { margin-top: 18px; font-size: 12.5px; line-height: 1.85; color: var(--muted); }
.cb-sf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cb-sf li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: center; }
.cb-sf svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 1.2; }
.cb-sf b { display: block; font-size: 13px; font-weight: 700; }
.cb-sf span { display: block; margin-top: 9px; font-size: 12px; line-height: 1.6; color: var(--muted); }
.cb-next-box { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; margin-top: 20px; margin-bottom: 0; box-shadow: inset 0 0 0 1px var(--line); padding: 20px 26px 22px; }
.cb-nb-h { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }
.cb-nb-h svg { width: 19px; height: 19px; fill: none; stroke: var(--ink); stroke-width: 1.3; }
.cb-nb-d { margin-top: 16px; font-size: 30px; font-weight: 700; letter-spacing: -.04em; }
.cb-nb-d em { font-style: normal; font-size: 17px; color: var(--muted); }
.cb-nb-n { margin-top: 14px; font-size: 12px; color: var(--muted); }
.cb-nb-b { display: flex; gap: 10px; margin-top: 22px; }
.cb-nb-h2 { font-size: 13px; font-weight: 600; }
.cb-nb-h2 em { font-style: normal; font-weight: 400; color: var(--muted); margin-left: 6px; }
.cb-nb-l { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 16px; }
.cnb-ph { display: block; aspect-ratio: 206 / 197; overflow: hidden; background: var(--paper); }
.cnb-ph img { width: 100%; height: 100%; object-fit: cover; }
.cb-nb-l b { display: block; margin-top: 12px; font-size: 12.5px; font-weight: 500; }
.cb-nb-l em { display: block; margin-top: 7px; font-style: normal; font-size: 11.5px; color: var(--muted); }
.cb-nb-l i { display: block; margin-top: 8px; font-style: normal; font-size: 12.5px; font-weight: 700; }

@media (max-width: 1199px) {
  .pp, .pp-basic, .pp-meas { grid-template-columns: 1fr; }
  .pp-top { flex-wrap: wrap; gap: 16px; }
  .pp-steps { margin-left: 0; gap: 20px; }
  .pp-sl, .pp-rl { grid-template-columns: repeat(2, 1fr); }
  .cb-h-in, .cb-now, .cb-sub, .cb-next-box { grid-template-columns: 1fr; }
  .cb-now-r { padding-left: 0; border-left: 0; }
  .cb-tiers, .cb-sf, .cb-nb-l { grid-template-columns: 1fr; }
  .cb-t { font-size: 28px; }
  .pp-h h1 { font-size: 32px; }
}
@media (max-width: 767px) {
  .pp-2, .pp-3 { grid-template-columns: 1fr; }
  .pp-sl, .pp-rl { grid-template-columns: 1fr; }
  .pp-seg { flex-wrap: wrap; }
}
/* 18 — 정기배송 구성하기 */
.cb-build { padding: 22px 0 0; border-top: 1px solid var(--line); margin-top: 22px; }
.cb-bh { font-size: 30px; letter-spacing: -.04em; }
.cb-b3 { display: grid; grid-template-columns: 1fr 320px 340px; gap: 24px; align-items: start; margin-top: 18px; }
.cb-steps { display: flex; }
.cb-steps li { padding: 11px 26px 11px 30px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); font-size: 12.5px; color: var(--muted); }
.cb-steps li.on { background: var(--fern); color: #fff; box-shadow: none; }
.cb-sel { margin-top: 18px; }
.cb-sel-h { display: flex; align-items: center; padding-bottom: 14px; font-size: 13px; }
.cb-sel-h .more { margin-left: auto; font-size: 12.5px; color: var(--muted); }
.cb-sl { box-shadow: inset 0 0 0 1px var(--line); }
.cb-sl li { display: grid; grid-template-columns: 79px 1fr auto 100px 24px; gap: 16px; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--line); }
.cb-sl li:last-child { border-bottom: 0; }
.cs-ph { display: block; aspect-ratio: 79 / 74; overflow: hidden; background: var(--paper); }
.cs-ph img { width: 100%; height: 100%; object-fit: cover; }
.cb-sl b { display: block; font-size: 13px; font-weight: 600; line-height: 1.5; }
.cb-sl em { display: block; margin-top: 9px; font-style: normal; font-size: 11.5px; color: var(--muted); }
.cs-q button { width: 30px; height: 32px; }
.cs-q b { min-width: 30px; font-size: 12.5px; }
.cb-sl i { font-style: normal; font-size: 13.5px; font-weight: 600; text-align: right; }
.cs-x { border: 0; background: transparent; font-size: 13px; color: var(--muted); padding: 0; }
.cb-calc, .cb-sum { box-shadow: inset 0 0 0 1px var(--line); padding: 18px 22px 20px; }
.cb-calc-h { font-size: 13.5px; font-weight: 600; }
.cb-calc-h i { font-style: normal; color: var(--muted); margin-left: 5px; }
.cb-l { margin-top: 20px; font-size: 12.5px; font-weight: 600; }
.pp-seg.sm2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 10px; box-shadow: inset 0 0 0 1px var(--line); }
.pp-seg.sm2.g3 { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
.pp-seg.sm2 button { min-width: 0; height: 42px; box-shadow: none; background: transparent; font-size: 12.5px; }
.pp-seg.sm2 button.on { background: var(--fern); color: #fff; }
.cb-row { display: grid; grid-template-columns: 70px 1fr; gap: 14px; align-items: center; margin-top: 14px; font-size: 12.5px; }
.cb-row > span:first-child { color: var(--muted); }
.cb-row .sel2 { height: 44px; }
.cb-row b { text-align: right; font-weight: 500; }
.cb-row.bt { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.cb-amt { display: flex; align-items: baseline; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }
.cb-amt b { margin-left: auto; font-size: 17px; font-weight: 700; color: var(--ink); }
.cb-cn { margin-top: 14px; font-size: 11.5px; line-height: 1.75; color: var(--muted); }
.cb-sum-h { font-size: 13.5px; font-weight: 600; padding-bottom: 14px; }
.cb-sum dl div { display: flex; padding: 7px 0; font-size: 12.5px; }
.cb-sum dt { color: var(--muted); } .cb-sum dd { margin-left: auto; }
.cb-tot { display: flex; align-items: baseline; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; font-weight: 600; }
.cb-tot b { margin-left: auto; font-size: 21px; font-weight: 700; letter-spacing: -.04em; }
.cb-pt { display: flex; margin-top: 12px; font-size: 12px; color: var(--muted); }
.cb-pt em { margin-left: auto; font-style: normal; }
.cb-start { margin-top: 20px; height: 54px; }
.cb-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cb-trust li { display: grid; grid-template-columns: 26px 1fr; gap: 16px; align-items: center; }
.cb-trust svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 1.2; }
.cb-trust b { display: block; font-size: 13px; font-weight: 700; }
.cb-trust span { display: block; margin-top: 9px; font-size: 12px; line-height: 1.6; color: var(--muted); }
.cb-faq { padding: 20px 0 0; }
.cb-fl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 16px; }
.cb-fl details { box-shadow: inset 0 0 0 1px var(--line); padding: 12px 20px; }
.cb-fl summary { display: flex; align-items: center; list-style: none; font-size: 12.5px; cursor: pointer; }
.cb-fl summary::-webkit-details-marker { display: none; }
.cb-fl summary::after { content: "＋"; margin-left: auto; color: var(--muted); }
.cb-fl details[open] summary::after { content: "－"; }
.cb-fl p { margin-top: 12px; font-size: 12px; line-height: 1.75; color: var(--muted); }
.cb-guide { display: grid; grid-template-columns: 190px 1fr; gap: 30px; margin: 20px 0 36px; padding: 20px 24px; box-shadow: inset 0 0 0 1px var(--line); }
.cb-guide b { font-size: 13.5px; font-weight: 700; }
.cb-guide p { font-size: 11.5px; line-height: 1.9; color: var(--muted); }
.cb-guide ul { margin-top: 14px; }
.cb-guide li { position: relative; padding-left: 12px; font-size: 11.5px; line-height: 1.9; color: var(--muted); }
.cb-guide li::before { content: "•"; position: absolute; left: 0; }
@media (max-width: 1199px) {
  .cb-b3 { grid-template-columns: 1fr; }
  .cb-trust, .cb-fl { grid-template-columns: 1fr; }
  .cb-guide { grid-template-columns: 1fr; }
  .cb-sl li { grid-template-columns: 79px 1fr; }
  .cs-q, .cb-sl i, .cs-x { grid-column: 2; justify-self: start; text-align: left; }
}

/* ── 약관 및 정책 (시안 외 · 링크 무결성용) ─────────────────────────── */
.pol-h { background: var(--paper); padding: 54px 0 48px; border-bottom: 1px solid var(--line); }
.pol-h h1 { margin-top: 16px; font-size: 40px; letter-spacing: -.045em; }
.pol-d { margin-top: 20px; font-size: 13.5px; line-height: 1.9; color: var(--muted); }
.pol { display: grid; grid-template-columns: 268px 1fr; gap: 40px; align-items: start; padding: 44px 0 66px; }
.pol-nav { position: sticky; top: 20px; box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); padding: 22px 24px 24px; }
.pol-nav li { padding: 8px 0; }
.pol-nav a { font-size: 13px; color: var(--muted); }
.pol-nav a[aria-current="true"] { color: var(--ink); font-weight: 700; }
.pol-note { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 11.5px; line-height: 1.7; color: var(--muted); }
.pol-doc { display: grid; gap: 20px; }
.pol-doc article { box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); padding: 30px 34px 36px; }
.pol-doc h2 { font-size: 24px; letter-spacing: -.04em; }
.pol-doc h3 { margin-top: 26px; font-size: 14px; font-weight: 700; }
.pol-doc p { margin-top: 10px; font-size: 13px; line-height: 1.95; color: var(--muted); }
@media (max-width: 1199px) { .pol { grid-template-columns: 1fr; } .pol-nav { position: static; } .pol-h h1 { font-size: 30px; } }

/* ══════════════════════════════════════════════════════════════════════
   반응형 안전망 — 360 / 390 / 768 / 1024 가로 넘침 0
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .cart, .cart-l, .cart-r, .cgroup, .citem, .cko, .cko-l, .cko-r, .my, .my-main, .my-side,
  .pd, .pd-buy, .pd-gal, .shop, .plist, .filters, .rv-q2, .pp, .pp-form, .pp-side,
  .od, .cb-b3, .lg, .lg-f, .lg-box { min-width: 0; }
  .citem > *, .cko-l > *, .frm label > *, .cart-rec-l > li, .my-ord li > *, .od-il li > *,
  .od-rsel li > *, .cb-sl li > *, .ob-l li > * { min-width: 0; }
  .ci-t p, .ci-a, .cart-all p, .od-ad dd, .agree-t dd, .pay-dl dd { overflow-wrap: anywhere; }
  .ci-a { flex-wrap: wrap; }
  .f-zip { grid-template-columns: 1fr; }
  .f-zip .btn { margin-left: 0; width: 100%; }
  .agree-t div { flex-wrap: wrap; gap: 4px 16px; }
  .agree-t dt { width: auto; }
  .shipm, .giftbox, .safe, .agree-t, .cgroup, .csum, .cpay, .ctrust, .obox, .obacc,
  .pd-qbox, .od-box, .my-card, .pp-form, .pp-side, .cb-calc, .cb-sum { padding-left: 18px; padding-right: 18px; }
  .citem { padding-left: 14px; padding-right: 14px; }
  .cg-h { padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 767px) {
  .qty button { width: 32px; }
  .qty b { min-width: 34px; }
  .ci-p, .ci-q { justify-self: start !important; }
  .my-grade dd, .oc-p, .pp-size b, .rv-n, .cart-h h1, .wl-h h1, .nh-t h1, .bh h1, .pp-h h1 { overflow-wrap: anywhere; }
  .obacc-in, .ccoup, .pay-pin, .lt-row, .cb-nb-b, .od-btns, .oc-btns { flex-wrap: wrap; }
  .obacc-in .btn, .pay-pin .btn { width: 100%; }
  .segs { flex-wrap: wrap; }
  .pp-steps { flex-wrap: wrap; gap: 10px 18px; }
  .rv-meta span { width: 100%; }
}
@media (max-width: 767px) { .fbi { display: none; } }
