/* ============================================================
   꼼지락작업소 — 사이트 스타일 (2026-09 전면 개편)
   ------------------------------------------------------------
   유지한 것: 로고, 쌍문동 B 서체, 브랜드 색
   바꾼 것 : 그 외 전부

   색 쓰는 규칙 — 브랜드 색 중 가장 따뜻한 '핑크'를 크게 한 번 씁니다.
     · 핑크  : 히어로 같은 넓은 면, 그리고 누르는 것(버튼·선택 상태)
     · 브라운: 글자색과 푸터. 검정 대신 따뜻한 진갈색을 씁니다.
     · 크림·피치·골드·세이지: 카테고리 타일 배경과 배지에만
   작은 색을 여러 개 흩뿌리지 않습니다.

   움직임 규칙 — 이징 1개, 지속시간 3단계. 자동재생·패럴랙스 없음.
   ============================================================ */

@font-face {
  font-family: 'Ggom Display';
  src: url('../assets/fonts/Typo_SsangmunDongB.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light only;

  /* 브랜드 — 메인은 핑크 */
  --brand: #e58db9;        /* 넓은 면, 버튼, 선택 상태 */
  --brand-deep: #c85f92;   /* 흰 배경 위 강조 글자, 호버 */
  --brand-ink: #3a1410;    /* 핑크 위에 얹는 글자색 */
  --brand-soft: #fbeef4;   /* 옅은 핑크 배경 */
  --brown: #3f1c11;
  --brown-2: #61382a;
  --pink: #e58db9;
  --pink-soft: #fbeaf1;
  --cream: #f7edda;
  --peach: #f3bd95;
  --peach-soft: #fce6d3;
  --gold-soft: #f9f0d4;
  --sage: #b7c4a8;
  --sage-soft: #eef2e6;
  --mint: #00c1ae;         /* 로고에만 남아 있는 색. UI에는 쓰지 않습니다. */

  /* 중립 — 검정 대신 따뜻한 갈색 계열 */
  --ink: #3a2018;
  --ink-2: #6b5248;
  --gray: #9a8b83;
  --paper: #fffdfb;
  --soft: #f8f0e6;
  --line: rgba(63, 28, 17, .12);
  --line-2: rgba(63, 28, 17, .22);

  /* 형태 */
  --r: 18px;
  --r-s: 12px;
  --pill: 999px;
  --shadow: 0 10px 30px rgba(63, 28, 17, .09);
  --shadow-lg: 0 20px 50px rgba(63, 28, 17, .14);

  /* 움직임 */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --d1: 150ms;
  --d2: 300ms;
  --d3: 480ms;

  /* 치수 */
  --nav-h: 58px;
  --gutter: 20px;
  --max: 1280px;

  --display: 'Ggom Display', 'Pretendard Variable', Pretendard, sans-serif;
  --body: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  overflow-x: clip;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.012em;
  word-break: keep-all;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; line-height: 1.16; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
body.is-locked { overflow: hidden; }

/* ─── 공통 조각 ─────────────────────────────────────────── */

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
/* 위아래만 건드립니다. padding 한 줄로 쓰면 .wrap 의 좌우 여백까지 0 으로 지워집니다. */
.section { padding-block: 64px; }
.section-head { margin-bottom: 26px; }
.eyebrow { color: var(--brand-deep); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(26px, 4.4vw, 42px); }
.section-head h2 .muted { color: var(--gray); }
.section-head p { margin-top: 10px; color: var(--ink-2); font-size: 15px; max-width: 56ch; }
.note { color: var(--gray); font-size: 13px; line-height: 1.55; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 50px; padding: 0 24px; border-radius: var(--pill);
  font-size: 15px; font-weight: 700;
  transition: transform var(--d1) var(--ease), background var(--d1) var(--ease),
              color var(--d1) var(--ease), border-color var(--d1) var(--ease), opacity var(--d1) var(--ease);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--brand); color: var(--brand-ink); }
.btn-primary:hover { background: var(--brand-deep); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost { border: 1.5px solid var(--line-2); background: var(--paper); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-on-brand { background: #fff; color: var(--brand-ink); }
.btn-on-brand:hover { background: var(--cream); }
.btn-on-brand-ghost { border: 1.5px solid rgba(255, 255, 255, .62); color: #fff; }
.btn-on-brand-ghost:hover { background: rgba(255, 255, 255, .18); border-color: #fff; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn-block { width: 100%; }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 14px; }

/* 닥스훈트 미리보기 */
.doxie-black { fill: #211a18; }
.doxie-black-soft { fill: #302522; }
.doxie-tan { fill: #a96732; }
.doxie-eye { fill: #4a3025; stroke: #160f0e; stroke-width: 2; }

/* ─── 상단 내비게이션 ───────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; height: var(--nav-h);
  padding: 0 var(--gutter); display: flex; align-items: center; gap: 14px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 8px; flex: none; }
.nav-brand img { width: 30px; height: 30px; object-fit: contain; }
.nav-brand span { font-family: var(--display); font-size: 16px; white-space: nowrap; }

.nav-menu { display: none; flex: 1; align-items: center; gap: 4px; }
.nav-menu a {
  padding: 6px 9px; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--ink-2);
  white-space: nowrap; transition: color var(--d1) var(--ease), background var(--d1) var(--ease);
}
.nav-menu a:hover { color: var(--ink); background: var(--soft); }
.nav-menu a.is-current { color: var(--brand-deep); font-weight: 700; }
.nav-sep { width: 1px; height: 14px; margin: 0 6px; background: var(--line-2); flex: none; }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; flex: none; }
.nav-cart {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  min-height: 36px; padding: 0 14px; border-radius: var(--pill);
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 700;
  transition: transform var(--d1) var(--ease);
}
.nav-cart:active { transform: scale(.97); }
.nav-cart b {
  min-width: 19px; height: 19px; padding: 0 5px; display: grid; place-items: center;
  border-radius: var(--pill); background: var(--brand); color: var(--brand-ink); font-size: 11px;
}
.nav-toggle {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
}
.nav-toggle i { display: block; width: 17px; height: 1.8px; background: var(--ink); border-radius: 2px; }

/* 모바일 메뉴 패널 */
.nav-panel {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 55;
  background: var(--paper); overflow-y: auto;
  padding: 16px var(--gutter) 40px;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity var(--d2) var(--ease), transform var(--d2) var(--ease);
}
.nav-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.nav-panel h3 { font-family: var(--body); font-size: 12px; font-weight: 800; letter-spacing: .1em; color: var(--gray); margin: 18px 0 8px; }
.nav-panel h3:first-child { margin-top: 4px; }
.nav-panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.nav-panel a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  min-height: 54px; padding: 0 16px; border-radius: var(--r-s);
  border: 1px solid var(--line); font-size: 15px; font-weight: 600;
}
.nav-panel a.is-current { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-ink); }
.nav-panel a small { color: var(--gray); font-size: 12px; font-weight: 600; }
.nav-panel-list { display: grid; gap: 8px; }

/* ─── 히어로 (대문 사진을 화면 가득) ─────────────────────
   사진이 칸을 꽉 채우고 글씨는 그 위에 얹힙니다.
   사진은 어떤 것으로 바뀔지 모르므로(노션에서 갈아 끼웁니다)
   아래쪽에 어두운 천(::after)을 깔고 글씨를 흰색으로 둡니다.
   그래야 밝은 사진이 오든 어두운 사진이 오든 글씨가 항상 읽힙니다. */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(92svh, 700px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 40px;
  text-align: center; color: #fff;
  /* 사진이 아직 없거나 늦게 뜰 때 보이는 바탕 — 따뜻한 노을빛 */
  background: linear-gradient(168deg, #fbdcc6 0%, #f4afc9 54%, var(--brand) 100%);
}
/* 사진 — 칸 전체. 강아지 얼굴이 위쪽에 오도록 32% 지점을 기준으로 자릅니다. */
.hero-stage { position: absolute; inset: 0; z-index: -2; }
.hero-stage picture { display: block; width: 100%; height: 100%; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.hero-stage .media-none { display: grid; place-items: center; width: 100%; height: 100%; }
/* 글씨 뒤에 까는 어두운 천 */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to top,
    rgba(40, 14, 9, .84) 0%,
    rgba(40, 14, 9, .66) 26%,
    rgba(40, 14, 9, .34) 48%,
    rgba(40, 14, 9, .08) 70%,
    rgba(40, 14, 9, 0) 86%);
}

.hero-inner { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); }
.hero-eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: var(--pill);
  background: rgba(255, 255, 255, .94); color: var(--brand-ink);
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(34px, 7.4vw, 64px); color: #fff;
  text-shadow: 0 2px 18px rgba(32, 10, 6, .55), 0 1px 3px rgba(32, 10, 6, .4);
}
.hero-sub {
  margin: 16px auto 0; max-width: 40ch; font-size: clamp(15px, 2.2vw, 19px);
  color: rgba(255, 255, 255, .93); text-shadow: 0 1px 10px rgba(32, 10, 6, .5);
}
.hero-btns { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: center;
  padding: 20px var(--gutter) 28px; color: rgba(255, 255, 255, .9); font-size: 13px; font-weight: 600;
  text-shadow: 0 1px 8px rgba(32, 10, 6, .5);
}
.hero-trust li::before { content: ''; display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: var(--brand); vertical-align: 2px; }

/* ─── 카테고리 타일 ─────────────────────────────────────── */

.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.cat-tile {
  position: relative; display: flex; flex-direction: column; text-align: left;
  border-radius: var(--r); overflow: hidden; background: var(--tile, var(--soft));
  transition: transform var(--d2) var(--ease), box-shadow var(--d2) var(--ease);
}
.cat-tile:active { transform: scale(.985); }
/* ─── 사진 자리 ───
   실사진이 올라오면 사진을, 아직 없으면 강아지 그림을 같은 틀에 넣습니다.
   사진 파일은 assets/photos/ 에 두고 js/catalog.js의 PHOTOS에 연결합니다. */
.media { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--soft); aspect-ratio: 1 / 1; }
.media > img { width: 100%; height: 100%; object-fit: cover; }
.media-43 { aspect-ratio: 4 / 3; }

.cat-tile-art { padding: 0; }
.cat-tile-copy { padding: 0 16px 18px; }
.cat-tile-copy h3 { font-size: 20px; }
.cat-tile-copy p { margin-top: 2px; color: var(--ink-2); font-size: 13px; }
.cat-tile-copy strong { display: block; margin-top: 8px; font-size: 14px; }
.cat-tile-copy strong small { color: var(--gray); font-size: 12px; font-weight: 600; margin-left: 3px; }

/* ─── 상품 카드 (갤러리) ────────────────────────────────── */

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.product-card {
  display: flex; flex-direction: column; text-align: left;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); overflow: hidden;
  transition: transform var(--d2) var(--ease), box-shadow var(--d2) var(--ease), border-color var(--d1) var(--ease);
}
.product-card:active { transform: scale(.985); }
.product-card-art { position: relative; }
.product-badge {
  position: absolute; top: 10px; left: 10px; z-index: 1;
  padding: 4px 9px; border-radius: var(--pill);
  background: var(--pink); color: var(--brown); font-size: 11px; font-weight: 800; transform: rotate(-2deg);
}
.product-card-copy { padding: 12px 14px 16px; display: grid; gap: 3px; }
.product-card-copy .fabric { color: var(--brand-deep); font-size: 12px; font-weight: 700; }
.product-card-copy h3 { font-size: 16px; font-family: var(--body); font-weight: 700; letter-spacing: -.01em; }
.product-card-copy .price { margin-top: 5px; font-size: 15px; font-weight: 700; }
.product-card-copy .price small { color: var(--gray); font-size: 12px; font-weight: 600; margin-left: 2px; }
.product-card-copy .variants { color: var(--gray); font-size: 12px; }

.rail { display: grid; grid-auto-flow: column; grid-auto-columns: min(66vw, 240px); gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin: 0 calc(var(--gutter) * -1); padding: 2px var(--gutter) 12px; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

/* ─── 상세 페이지 ───────────────────────────────────────── */

.detail { display: grid; gap: 24px; padding-top: 24px; }
.detail-art { border-radius: var(--r); background: var(--soft); overflow: hidden; }
.detail-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 14px 14px; }
.chip { padding: 5px 11px; border-radius: var(--pill); background: var(--paper); border: 1px solid var(--line); font-size: 12px; font-weight: 600; color: var(--ink-2); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }

.detail-title { font-size: clamp(26px, 5vw, 38px); }
.detail-fabric { color: var(--brand-deep); font-size: 13px; font-weight: 800; letter-spacing: .06em; }
.detail-price { margin-top: 10px; font-size: 24px; font-weight: 700; }
.detail-price small { color: var(--gray); font-size: 13px; font-weight: 600; margin-left: 4px; }

.block { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.block > h3 { font-family: var(--body); font-size: 15px; font-weight: 800; margin-bottom: 12px; }
.block > h3 .muted { color: var(--gray); font-weight: 600; margin-left: 6px; }

.variant-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 10px; }
.variant { display: grid; gap: 6px; text-align: center; transition: transform var(--d1) var(--ease); }
.variant:active { transform: scale(.96); }
.variant i {
  display: block; aspect-ratio: 1; border-radius: 14px;
  background: var(--soft) center/cover no-repeat;
  border: 2px solid transparent; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .07);
  transition: border-color var(--d1) var(--ease), transform var(--d1) var(--ease);
}
.variant.is-on i { border-color: var(--ink); transform: scale(1.04); }
.variant span { font-size: 11.5px; font-weight: 600; color: var(--ink-2); line-height: 1.3; }
.variant.is-on span { color: var(--ink); }

.spec { display: grid; border-top: 1px solid var(--line); }
.spec > div { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec dt { color: var(--gray); flex: none; }
.spec dd { text-align: right; font-weight: 600; }
.fabric-desc { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }

.buy-bar { display: flex; gap: 10px; align-items: center; margin-top: 24px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: var(--pill); flex: none; }
.qty button { width: 42px; height: 46px; font-size: 18px; }
.qty span { min-width: 28px; text-align: center; font-weight: 700; }

/* ─── 장바구니 · 주문서 ─────────────────────────────────── */

.steps { display: flex; gap: 6px; margin-bottom: 24px; }
.steps div { flex: 1; padding-top: 9px; border-top: 3px solid var(--line); font-size: 12.5px; font-weight: 700; color: var(--gray); }
.steps div.is-on { border-top-color: var(--brand); color: var(--ink); }

.cart-row { display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-row-art { border-radius: var(--r-s); }
.cart-row-copy { min-width: 0; display: grid; gap: 3px; align-content: start; }
.cart-row-copy .fabric { color: var(--brand-deep); font-size: 11.5px; font-weight: 700; }
.cart-row-copy b { font-size: 15px; }
.cart-row-copy .price { font-size: 14px; font-weight: 700; }
.cart-row-tools { grid-column: 2; display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.cart-remove { color: var(--gray); font-size: 12.5px; font-weight: 600; text-decoration: underline; }

.cart-total { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 18px 0; }
.cart-total span { color: var(--ink-2); font-size: 14px; }
.cart-total b { font-size: 26px; }

.empty { text-align: center; padding: 56px 0; }
.empty img { width: 108px; margin: 0 auto 14px; }
.empty b { display: block; font-family: var(--display); font-size: 22px; }
.empty p { margin: 8px auto 20px; max-width: 30ch; color: var(--gray); font-size: 14px; }

.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field > label { font-size: 13px; font-weight: 700; }
.field > label .opt { color: var(--gray); font-weight: 600; margin-left: 4px; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 50px; padding: 12px 14px;
  border: 1.5px solid var(--line-2); border-radius: var(--r-s); background: var(--paper);
  font-size: 16px; transition: border-color var(--d1) var(--ease);
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--ink); }
.field .hint { color: var(--gray); font-size: 12.5px; }
.field-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.check { display: flex; gap: 10px; align-items: flex-start; padding: 14px; border: 1.5px solid var(--line); border-radius: var(--r-s); font-size: 14px; }
.check input { width: 20px; height: 20px; min-height: 0; flex: none; margin-top: 1px; accent-color: var(--brand); }
.check.is-on { border-color: var(--brand); background: var(--brand-soft); }

.sheet {
  margin-top: 16px; padding: 18px; border-radius: var(--r); background: var(--soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; line-height: 1.75;
  white-space: pre-wrap; word-break: break-all;
}
.done-mark { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 30px; }

/* ─── 글 페이지 (ABOUT · 안내 · 공지) ───────────────────── */

.page-head { padding: 44px 0 26px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(30px, 6vw, 52px); }
.page-head p { margin-top: 12px; color: var(--ink-2); font-size: 16px; max-width: 54ch; }
.prose { padding: 28px 0; max-width: 68ch; }
.prose h2 { font-size: clamp(22px, 3.4vw, 30px); margin: 34px 0 12px; }
.prose h3 { font-family: var(--body); font-size: 17px; font-weight: 800; margin: 24px 0 8px; }
.prose p { margin: 10px 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.75; }
.prose ul, .prose ol { margin: 10px 0 10px 20px; color: var(--ink-2); font-size: 15.5px; line-height: 1.8; }
.prose strong { color: var(--ink); }
.callout { margin: 20px 0; padding: 18px 20px; border-radius: var(--r); background: var(--brand-soft); border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent); }
.callout b { display: block; margin-bottom: 6px; color: var(--brand-ink); }
.callout p { color: var(--brand-ink); opacity: .85; font-size: 14.5px; margin: 0; }

.notice-list { display: grid; gap: 10px; padding: 24px 0; }
.notice-item { padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--r); }
.notice-item time { color: var(--brand-deep); font-size: 12px; font-weight: 800; }
.notice-item h3 { font-family: var(--body); font-size: 16px; font-weight: 800; margin: 5px 0 6px; }
.notice-item p { color: var(--ink-2); font-size: 14px; }
.notice-item .tag { display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: var(--pill); background: var(--pink-soft); color: var(--brown); font-size: 11px; font-weight: 800; }

.step-cards { display: grid; gap: 10px; padding: 8px 0 0; }
.step-card { padding: 20px; border-radius: var(--r); background: var(--soft); }
.step-card b { display: block; font-family: var(--display); font-size: 26px; color: var(--brand); line-height: 1; margin-bottom: 8px; }
.step-card strong { display: block; font-size: 16px; margin-bottom: 4px; }
.step-card p { color: var(--ink-2); font-size: 14px; }

/* ─── 푸터 ──────────────────────────────────────────────── */

.footer { margin-top: 20px; background: var(--brown); color: var(--cream); padding: 40px 0 calc(40px + env(safe-area-inset-bottom)); }
.footer-top { display: grid; gap: 22px; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { width: 52px; flex: none; }
.footer-brand b { font-family: var(--display); font-size: 19px; }
.footer-brand p { margin-top: 6px; color: rgba(244, 234, 215, .72); font-size: 13.5px; line-height: 1.65; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.footer-cols h4 { font-size: 12px; font-weight: 800; letter-spacing: .1em; color: rgba(244, 234, 215, .55); margin-bottom: 10px; }
.footer-cols a, .footer-cols p { display: block; color: rgba(244, 234, 215, .88); font-size: 13.5px; line-height: 2; }
.footer-cols a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(244, 234, 215, .18); color: rgba(244, 234, 215, .55); font-size: 12px; line-height: 1.8; }
.footer-kakao { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: var(--pill); background: #fee500; color: #191919; font-size: 14px; font-weight: 700; }

/* ─── 모바일 하단 고정 바 ───────────────────────────────── */

.dock {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 45;
  display: flex; align-items: center; gap: 10px; padding: 8px 8px 8px 12px;
  border-radius: 18px; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
  box-shadow: var(--shadow-lg);
}
.dock-copy { flex: 1; min-width: 0; display: grid; }
.dock-copy b { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dock-copy span { color: var(--gray); font-size: 12px; font-weight: 600; }

/* 토스트 */
.toast {
  position: fixed; left: 50%; bottom: calc(86px + env(safe-area-inset-bottom)); z-index: 90;
  transform: translate(-50%, 10px); opacity: 0; pointer-events: none;
  padding: 12px 20px; border-radius: var(--pill); background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg);
  transition: opacity var(--d2) var(--ease), transform var(--d2) var(--ease);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* 등장 */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity var(--d3) var(--ease), transform var(--d3) var(--ease); transition-delay: calc(var(--i, 0) * 55ms); }
.reveal.is-in { opacity: 1; transform: none; }

/* ─── 480px 이상 ────────────────────────────────────────── */
@media (min-width: 480px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .field-row { gap: 10px; }
}

/* ─── 768px 이상 (태블릿) ───────────────────────────────── */
@media (min-width: 768px) {
  :root { --gutter: 28px; }
  .section { padding-block: 80px; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .rail { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; margin: 0; padding: 0; }
  .footer-top { grid-template-columns: 1.4fr 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .detail { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .detail-art { position: sticky; top: calc(var(--nav-h) + 20px); }
  .cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .dock { display: none; }
  body.has-dock { padding-bottom: 0; }
}

/* ─── 1080px 이상 (데스크톱: 메뉴 전부 펼침) ────────────── */
@media (min-width: 1080px) {
  .nav-menu { display: flex; }
  .nav-toggle { display: none; }
  .nav-panel { display: none; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

/* 모바일에서 도크가 콘텐츠를 가리지 않도록 */
@media (max-width: 767px) {
  body.has-dock { padding-bottom: 84px; }
}

/* ─── 모션 최소화 ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0ms !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* 모바일 도크 안의 작은 사진 자리 */
.dock-media { width: 52px; flex: none; border-radius: 10px; }

/* ─── 후기 ──────────────────────────────────────────────── */
.review-grid { display: grid; gap: 12px; }
.review-card {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); overflow: hidden;
}
.review-media { background: var(--soft); }
.review-body { padding: 16px 18px 18px; }
.review-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-bottom: 7px; }
.review-head b { font-family: var(--display); font-size: 18px; }
.review-head small { color: var(--gray); font-size: 12.5px; font-weight: 600; }
.review-body > p { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }
.review-meta { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.review-meta time { color: var(--gray); font-size: 12px; font-weight: 600; }
.review-card.no-photo { background: var(--soft); border-color: transparent; }
.review-more { margin-top: 20px; display: flex; justify-content: center; }

@media (min-width: 768px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

/* ─── 사진 여러 장 넘겨보기 ─────────────────────────────── */
.shots { position: relative; }
.shots-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.shots-track::-webkit-scrollbar { display: none; }
.shots-track > img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  scroll-snap-align: start; background: var(--soft);
}
.shots-43 .shots-track > img { aspect-ratio: 4 / 3; }
.shots-dots {
  position: absolute; left: 0; right: 0; bottom: 10px;
  display: flex; justify-content: center; gap: 6px;
}
.shots-dots button {
  width: 7px; height: 7px; padding: 0; border-radius: var(--pill);
  background: rgba(255, 255, 255, .62); box-shadow: 0 0 0 1px rgba(63, 28, 17, .18);
  transition: width var(--d1) var(--ease), background var(--d1) var(--ease);
}
.shots-dots button.is-on { width: 20px; background: #fff; }

/* 새로 나온 옷 배지 */
.chip.is-new { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); font-weight: 800; }

/* 모바일 도크 안의 작은 사진 자리 */
.dock-media { width: 52px; flex: none; border-radius: 10px; }

/* ─── 후기 (사진 위, 글 아래 — 모바일에서도 사진이 크게 보이게) ─── */
.review-grid { display: grid; gap: 14px; }
.review-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--paper); overflow: hidden;
}
.review-media { width: 100%; background: var(--soft); }
.review-media .shots,
.review-media .shots-track { aspect-ratio: 4 / 3; }
.review-media .shots-track img { width: 100%; height: 100%; object-fit: cover; }
.review-body { padding: 16px 18px 18px; display: flex; flex-direction: column; }
.review-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-bottom: 7px; }
.review-head b { font-family: var(--display); font-size: 18px; }
.review-head small { color: var(--gray); font-size: 12.5px; font-weight: 600; }
.review-body > p { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }
.review-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 12px; }
.review-meta time { color: var(--gray); font-size: 12px; font-weight: 600; }
.review-card.no-photo { background: var(--soft); border-color: transparent; }
.review-more { margin-top: 20px; display: flex; justify-content: center; }

@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .review-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

/* ─── 주소 검색 ─────────────────────────────────────────── */
.addr-row { display: flex; gap: 8px; }
.addr-row input { flex: 1; min-width: 0; }
.addr-row .btn { flex: none; }
.field input[readonly] { background: var(--soft); cursor: pointer; }

.addr-layer { position: fixed; inset: 0; z-index: 80; }
.addr-scrim { position: absolute; inset: 0; width: 100%; height: 100%; background: rgba(63, 28, 17, .38); }
.addr-box {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 24px)); max-height: min(560px, calc(100% - 48px));
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r); background: var(--paper); box-shadow: var(--shadow-lg);
}
.addr-box header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
}
.addr-box header b { font-family: var(--display); font-size: 17px; }
.addr-box header .addr-tools { display: flex; gap: 6px; }
.addr-box header button { min-height: 34px; padding: 0 12px; border-radius: var(--pill); background: var(--soft); font-size: 13px; font-weight: 700; }
.addr-embed { position: relative; height: 440px; flex: none; }
/* 다음 우편번호 위젯이 만드는 iframe 이 자리를 꽉 채우도록 */
.addr-embed iframe { display: block; width: 100% !important; height: 100% !important; border: 0; }

/* ─── 안내 페이지 ─────────────────────────────────────────── */
.toc { display: flex; flex-wrap: wrap; gap: 6px; padding: 16px 0 4px; }
.toc a {
  padding: 7px 13px; border-radius: var(--pill); border: 1px solid var(--line);
  background: var(--paper); font-size: 13px; font-weight: 600; color: var(--ink-2);
  transition: border-color var(--d1) var(--ease), color var(--d1) var(--ease);
}
.toc a:hover { border-color: var(--brand); color: var(--brand-deep); }

.guide-img { width: 100%; max-width: 560px; border-radius: var(--r); margin: 18px 0; box-shadow: var(--shadow); }

.prose .tbl { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
.prose .tbl th, .prose .tbl td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.prose .tbl th { background: var(--soft); font-weight: 800; font-size: 13px; color: var(--ink-2); }
.prose .tbl tbody tr:last-child td { border-bottom: 0; }

.callout-warn { background: var(--peach-soft); border-color: color-mix(in srgb, var(--peach) 55%, transparent); }
.callout-warn b, .callout-warn p { color: var(--brown); }

.prose h2 { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ─── 옵션 고르기 ───────────────────────────────────────── */
.opt-group + .opt-group { margin-top: 16px; }
.opt-group > h4 {
  font-family: var(--body); font-size: 12.5px; font-weight: 800;
  color: var(--gray); letter-spacing: .04em; margin-bottom: 8px;
}
.opt-group > h4 .muted { color: var(--brand-deep); font-weight: 700; margin-left: 4px; }
.opt-row { display: flex; flex-wrap: wrap; gap: 8px; }
.opt {
  display: grid; gap: 1px; min-height: 52px; padding: 8px 15px;
  border: 1.5px solid var(--line); border-radius: var(--r-s); background: var(--paper); text-align: left;
  transition: border-color var(--d1) var(--ease), background var(--d1) var(--ease), transform var(--d1) var(--ease);
}
.opt:active { transform: scale(.97); }
.opt b { font-size: 14.5px; }
.opt small { color: var(--gray); font-size: 12px; font-weight: 600; }
.opt.is-on { border-color: var(--brand); background: var(--brand-soft); }
.opt.is-on small { color: var(--brand-deep); }

.price-break > div { font-size: 14px; }
.price-break dt { color: var(--ink-2); }
.price-break .sum { border-bottom: 0; padding-top: 12px; }
.price-break .sum dt { color: var(--ink); font-weight: 800; }
.price-break .sum dd { font-size: 17px; font-weight: 800; }


/* ─── 사진이 아직 없는 자리 ─── */
.media-none {
  display: grid; place-items: center; width: 100%; aspect-ratio: 4/3;
  color: var(--ink-3); font-size: 13px; font-weight: 600; letter-spacing: .02em;
  background: repeating-linear-gradient(135deg, var(--soft) 0 10px, var(--paper) 10px 20px);
}

/* 옷 사진 대신 원단 사진을 보여줄 때는 살짝 눌러 구분합니다 */
.media img.is-fabric { filter: saturate(.95); }

/* 상세 — 사진 아래 솔직한 안내문 */
.photo-note {
  margin-top: 12px; padding: 12px 14px; border-radius: var(--r2);
  background: var(--soft); color: var(--ink-2); line-height: 1.6;
}
.photo-note b { color: var(--ink); }

/* 섹션 머리말 아래 한 줄 */
.section-sub { margin-top: 6px; color: var(--ink-3); font-size: 14px; }

/* 아직 만들어 둔 것이 없는 계열 타일 */
.cat-tile-art { position: relative; }
.cat-tile-badge {
  position: absolute; left: 10px; top: 10px; z-index: 1;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(255, 253, 251, .92); color: var(--ink-2);
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

.detail-intro { margin-top: 8px; color: var(--ink-2); line-height: 1.65; }

/* 공지 — 언제 올라온 공지인지 분명히 */
.notice-item time b { margin-right: 6px; font-weight: 700; color: var(--ink-2); }

/* ─── 무늬 · 색깔 고르기 (장바구니 버튼 바로 아래) ─── */
.pattern-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pattern {
  position: relative; width: 74px; display: grid; gap: 6px;
  text-align: center; transition: transform var(--d1) var(--ease);
}
.pattern:active { transform: scale(.96); }
.pattern i {
  display: block; aspect-ratio: 1; border-radius: 14px;
  background: var(--soft) center/cover no-repeat;
  border: 2px solid var(--line); transition: border-color var(--d1) var(--ease), transform var(--d1) var(--ease);
}
.pattern.is-on i { border-color: var(--ink); transform: scale(1.04); }
.pattern span { font-size: 11.5px; font-weight: 600; color: var(--ink-2); line-height: 1.3; }
.pattern.is-on span { color: var(--ink); }
.pattern em {
  position: absolute; top: -5px; right: -3px;
  padding: 2px 6px; border-radius: 999px;
  background: var(--brand); color: #fff;
  font-size: 9.5px; font-style: normal; font-weight: 700; letter-spacing: .02em;
}

/* 사진 아래 붙는 원단 조각 */
.fabric-chip {
  display: flex; align-items: center; gap: 12px;
  margin-top: 12px; padding: 10px 14px 10px 10px;
  border: 1px solid var(--line); border-radius: var(--r2); background: var(--paper);
}
.fabric-chip img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; flex: none; }
.fabric-chip span { display: grid; gap: 2px; }
.fabric-chip b { font-size: 14px; color: var(--ink); }
.fabric-chip small { font-size: 12px; color: var(--ink-3); }

/* ─── 주문 안내 — 목차 카드 ─── */
.guide-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); margin-top: 26px; }
.guide-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 18px 18px 16px; border: 1px solid var(--line); border-radius: var(--r1);
  background: var(--paper); transition: transform var(--d1) var(--ease), border-color var(--d1) var(--ease);
}
.guide-card:hover { transform: translateY(-2px); border-color: var(--brand); }
.guide-card-no {
  flex: none; width: 28px; height: 28px; border-radius: 999px;
  display: grid; place-items: center; background: var(--soft);
  font-size: 13px; font-weight: 700; color: var(--brand-deep);
}
.guide-card h3 { font-size: 16px; }
.guide-card p { margin-top: 4px; font-size: 13px; color: var(--ink-3); line-height: 1.55; }

/* 차례 — 번호와 제목을 같이 보여줍니다 */
.stepper { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 8px; }
.stepper-dot {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px 6px 7px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  transition: background var(--d1) var(--ease), color var(--d1) var(--ease),
              border-color var(--d1) var(--ease);
}
.stepper-dot:hover { border-color: var(--brand); }
.stepper-no {
  width: 21px; height: 21px; flex: none; border-radius: 999px;
  display: grid; place-items: center; background: var(--soft);
  font-size: 11.5px; font-weight: 700; color: var(--brand-deep);
}
.stepper-dot.is-on { background: var(--brand); border-color: var(--brand); color: #fff; font-weight: 700; }
.stepper-dot.is-on .stepper-no { background: rgba(255, 255, 255, .28); color: #fff; }

/* 이전 / 다음 */
.pager { display: flex; gap: 10px; margin: 40px 0 10px; }
.pager a {
  flex: 1; display: grid; gap: 3px; padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--r1); background: var(--paper);
  font-weight: 700; color: var(--ink); transition: border-color var(--d1) var(--ease);
}
.pager a:hover { border-color: var(--brand); }
.pager small { font-size: 11.5px; font-weight: 600; color: var(--ink-3); letter-spacing: .04em; }
.pager-next { text-align: right; }
/* 마지막 장은 '이전' 하나만 있습니다. 혼자 화면을 다 차지하지 않게 폭을 줍니다. */
.pager a:only-child { flex: 0 1 340px; }

/* ─── ABOUT ─── */
.prose .lead { font-size: 17px; line-height: 1.75; color: var(--ink); }
.about-figure { margin: 26px 0; }
.about-figure img {
  width: 100%; border-radius: var(--r1); display: block;
  background: var(--soft);
}
.about-figure img + img { margin-top: 10px; }
.about-figure figcaption {
  margin-top: 10px; font-size: 13px; color: var(--ink-3); text-align: center;
}
@media (min-width: 640px) {
  .about-figure { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-figure img + img { margin-top: 0; }
  .about-figure figcaption { grid-column: 1 / -1; }
}
.about-gallery { display: grid; gap: 8px; grid-template-columns: repeat(2, 1fr); margin: 22px 0 6px; }
@media (min-width: 620px) { .about-gallery { grid-template-columns: repeat(4, 1fr); } }
.about-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r1); background: var(--soft); display: block; }
.about-closing {
  margin: 30px 0; padding: 22px 24px; border-radius: var(--r1);
  background: var(--soft); text-align: center; font-size: 16px; line-height: 1.7;
}

/* 후기 — 무슨 옷을 입은 후기인지 */
.review-wore {
  display: inline-block; margin: 2px 0 8px;
  padding: 3px 9px; border-radius: 999px;
  background: var(--soft); color: var(--brand-deep);
  font-size: 12px; font-weight: 700;
}
.review-wore-link:hover .review-wore { background: var(--brand); color: #fff; }

/* 원단 조각 — 누르면 원단 설명으로 */
a.fabric-chip { transition: border-color var(--d1) var(--ease), background var(--d1) var(--ease); }
a.fabric-chip:hover { border-color: var(--brand); background: var(--soft); }
.fabric-chip em { margin-left: auto; font-style: normal; font-size: 20px; color: var(--ink-3); }
#fabricMore { font-size: 13px; font-weight: 600; }
#fabricMore:hover { color: var(--brand-deep); }

/* ─── 사진 크게 보기 ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  display: grid; grid-template-rows: auto 1fr auto;
  background: rgba(24, 16, 14, .94);
  opacity: 0; pointer-events: none;
  transition: opacity var(--d2) var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-bar { display: flex; align-items: center; gap: 12px; padding: 14px 16px; color: #fff; }
.lightbox-bar b { font-size: 15px; }
.lightbox-bar small { font-size: 12.5px; color: rgba(255,255,255,.62); }
.lightbox-close {
  margin-left: auto; width: 38px; height: 38px; border-radius: 999px;
  display: grid; place-items: center; font-size: 20px; line-height: 1;
  background: rgba(255,255,255,.14); color: #fff;
}
.lightbox-close:hover { background: rgba(255,255,255,.26); }
.lightbox-stage { display: grid; place-items: center; padding: 0 12px; min-height: 0; }
.lightbox-stage img { max-width: 100%; max-height: 100%; border-radius: var(--r2); object-fit: contain; }
.lightbox-foot { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 16px 22px; }
.lightbox-foot button {
  width: 42px; height: 42px; border-radius: 999px; font-size: 19px; line-height: 1;
  background: rgba(255,255,255,.14); color: #fff;
}
.lightbox-foot button:hover { background: rgba(255,255,255,.26); }
.lightbox-foot button:disabled { opacity: .3; }
.lightbox-count { color: rgba(255,255,255,.75); font-size: 13px; min-width: 56px; text-align: center; }
body.lightbox-open { overflow: hidden; }

/* 후기 사진에 커서를 올리면 눌러볼 수 있다는 걸 알려줍니다 */
.review-media .shots img { cursor: zoom-in; }


/* ─── 대문 타일 사진은 잘리지 않게 전체를 보여줍니다 ───
   세로 사진(강아지 착용컷)에 맞춰 4:5 로 잡고, contain 이라 가로 사진도 안 잘립니다. */
.cat-tile-art { aspect-ratio: 4 / 5; }
.cat-tile-art > img { width: 100%; height: 100%; object-fit: contain; background: var(--soft); }
@media (max-width: 767px) { .cat-tile-art { aspect-ratio: 1 / 1; } }

/* 무늬 칩의 사진 표시 — 착용샷은 분홍, 상세 사진은 회색 */
.pattern em { background: var(--ink-3); }
.pattern em.is-worn { background: var(--brand); }

/* 치수 추가요금 안내 */
.callout-extra { margin-top: 12px; }
.extra-row { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: 14px; color: var(--ink-2); }
.extra-row b { color: var(--ink); }
.extra-sum { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 8px; font-weight: 700; }
