/* ══════════════════════════════════════════════════════════════════════
   문장상점 — 문구·다이어리 전문 쇼핑몰
   윗단은 공통 뼈대 키트(kit.css). 동작에 딸린 것만 들어 있다.
   아랫단이 이 벌의 생김새 — Editorial Desk · Planner Configurator · Ink Swatches.
   ══════════════════════════════════════════════════════════════════════ */

/* ── 기본 ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img, video { max-width: 100%; height: auto; }
img { -webkit-user-drag: none; user-select: none; }

.frame { display: block; }

/* ── 초점 ─────────────────────────────────────────────────────────── */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: .75rem 1rem; background: Canvas; color: CanvasText;
}
.skip-link:focus { left: 0; }

/* ── 터치 영역 ─────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .site-header a, .site-header button,
  .drawer a, .drawer button,
  .dots button, .pager button, .tab {
    min-width: 44px; min-height: 44px;
  }
}

/* ── 가로 넘침 ─────────────────────────────────────────────────────── */
.scroll-x { overflow-x: auto; position: relative; -webkit-overflow-scrolling: touch; }
.clip { overflow: clip; }

/* ── 무JS 완성본 ───────────────────────────────────────────────────── */
.acc-item .acc-panel { display: block; }
.js .acc-item .acc-panel { display: none; }
.js .acc-item.open .acc-panel { display: block; }

.js [role="tabpanel"][hidden] { display: none; }
[role="tabpanel"][hidden] { display: block; }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.in { opacity: 1; transform: none; }

html:not(.js) .js-only { display: none !important; }

:where([hidden]):not([role="tabpanel"]) { display: none !important; }

/* ── 모션 끔 ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── 모바일 서랍 ───────────────────────────────────────────────────── */
.menu-btn { display: none; }
@media (max-width: 767px) { .menu-btn { display: inline-flex; } }

.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px);
  transform: translateX(100%); transition: transform .28s ease;
  z-index: 60; overflow-y: auto;
  visibility: hidden;
}
.drawer.open { transform: none; visibility: visible; }

.scrim {
  position: fixed; inset: 0; z-index: 50;
  background: rgb(0 0 0 / .45);
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
}
.scrim.open { opacity: 1; pointer-events: auto; }

@media (min-width: 768px) { .drawer, .scrim { display: none; } }

/* ── 토스트 ───────────────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 24px; translate: -50% 0;
  z-index: 80; pointer-events: none;
  opacity: 0; transition: opacity .25s ease, translate .25s ease;
}
.toast.show { opacity: 1; translate: -50% -6px; }

/* ── 폼 ───────────────────────────────────────────────────────────── */
.agree input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.agree input:focus-visible + label .box { outline: 2px solid currentColor; outline-offset: 2px; }

.spinner {
  display: inline-block; width: 1em; height: 1em; vertical-align: -.125em;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  animation: kit-spin .7s linear infinite;
}
@keyframes kit-spin { to { rotate: 360deg; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

/* ── 구획 리듬 ─────────────────────────────────────────────────────── */
.section { padding-block: calc(var(--section, 96px) / 2); }
.section-lead { padding-top: var(--section, 96px); }
.section-last { padding-bottom: var(--section, 96px); }


/* ══════════════════════════════════════════════════════════════════════
   여기부터 문장상점의 생김새
   ══════════════════════════════════════════════════════════════════════ */

:root {
  /* 색 — 00-디자인보드.png 에서 그대로 받아 적었다 */
  --cobalt: #0A43FF;
  --cobalt-deep: #0733C4;
  --cobalt-wash: #EDF1FF;
  --tomato: #FF3B30;
  --tomato-deep: #D62B21;
  --tomato-wash: #FFEFEE;
  --ink: #111827;
  --ink-2: #414A59;
  --ink-3: #737B88;
  --paper: #FAFAF8;
  --gray: #E5E7EB;
  --gray-2: #F2F3F5;
  --white: #FFFFFF;

  /* 의미 색 — 상태는 색만으로 전하지 않는다. 언제나 글자·아이콘을 함께 둔다 */
  --ok: #0F7A3D;
  --ok-wash: #EAF6EF;
  --warn: #9A5B00;
  --warn-wash: #FFF6E6;

  --r-xs: 4px;
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;

  --line: 1px solid var(--gray);
  --sh-1: 0 1px 2px rgb(17 24 39 / .04);
  --sh-2: 0 2px 6px rgb(17 24 39 / .05), 0 14px 34px rgb(17 24 39 / .06);

  --wrap: 1160px;
  --section: 88px;
}

@media (max-width: 767px) { :root { --section: 56px; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -.01em;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -.025em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
@media (max-width: 767px) { .wrap { padding-inline: 18px; } }

/* 페이지 전환 — 선언만으로 도는 층. 미지원 브라우저는 평범한 이동이 된다 */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

/* 괘선 — 이 벌의 바탕 무늬. 책상 위 원고지에서 왔다 */
.ruled {
  background-image: repeating-linear-gradient(to bottom,
    transparent 0 27px, color-mix(in srgb, var(--gray) 80%, transparent) 27px 28px);
}

/* ── 단추 ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 22px;
  border: 1px solid transparent; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 600; letter-spacing: -.02em;
  cursor: pointer; background: none; color: inherit;
  transition: background-color .14s ease, border-color .14s ease, color .14s ease;
}
.btn-primary { background: var(--cobalt); color: #fff; }
.btn-primary:hover { background: var(--cobalt-deep); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--gray); }
.btn-ghost:hover { border-color: var(--ink-3); }
.btn-buy { background: var(--tomato); color: #fff; }
.btn-buy:hover { background: var(--tomato-deep); }
.btn-line { background: #fff; color: var(--cobalt); border-color: color-mix(in srgb, var(--cobalt) 40%, #fff); }
.btn-line:hover { border-color: var(--cobalt); background: var(--cobalt-wash); }
.btn-sm { min-height: 44px; padding: 0 14px; font-size: 14px; }
.btn-wide { width: 100%; }
.btn[aria-disabled="true"] { opacity: .6; pointer-events: none; }

/* ── 머리말 ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: var(--line);
}
.site-header.is-stuck { box-shadow: var(--sh-1); }
.header-inner {
  max-width: var(--wrap); margin-inline: auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 28px;
}
.brand {
  font-size: 20px; font-weight: 800; letter-spacing: -.04em; color: var(--cobalt);
  white-space: nowrap;
}
.site-header .brand { view-transition-name: vt-munjang-brand; }
.nav { display: flex; gap: 26px; margin-right: auto; font-size: 15px; }
.nav a { color: var(--ink-2); padding: 6px 0; position: relative; }
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--cobalt); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--cobalt);
}
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; position: relative;
  width: 44px; height: 44px; padding: 0; border: 0; border-radius: var(--r-sm);
  background: none; color: var(--ink-2); cursor: pointer;
}
.icon-btn:hover { background: var(--gray-2); color: var(--ink); }
.icon-btn .ico { width: 21px; height: 21px; }
.cart-dot {
  position: absolute; top: 6px; right: 4px; min-width: 17px; height: 17px;
  padding: 0 4px; border-radius: 9px; background: var(--tomato); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 17px; text-align: center;
}
.header-cta { display: inline-flex; align-items: center; height: 42px; padding: 0 18px;
  border-radius: var(--r-sm); background: var(--cobalt); color: #fff; font-size: 14px; font-weight: 600; }
.header-cta:hover { background: var(--cobalt-deep); }

.menu-btn {
  width: 44px; height: 44px; padding: 0; border: 0; background: none; cursor: pointer;
  align-items: center; justify-content: center; color: var(--ink);
}
.menu-bar, .menu-bar::before, .menu-bar::after {
  display: block; width: 20px; height: 1.6px; background: currentColor; border-radius: 2px;
}
.menu-bar { position: relative; }
.menu-bar::before, .menu-bar::after { content: ""; position: absolute; left: 0; }
.menu-bar::before { top: -6px; }
.menu-bar::after { top: 6px; }

@media (max-width: 767px) {
  .header-inner { height: 58px; padding: 0 8px 0 18px; gap: 0; }
  .nav, .header-cta { display: none; }
  .brand { margin-right: auto; }
  .menu-btn { order: -1; margin-right: 4px; margin-left: -8px; }
}

/* ── 서랍 ─────────────────────────────────────────────────────────── */
.drawer { background: var(--white); padding: 18px 20px 30px; box-shadow: -20px 0 50px rgb(17 24 39 / .16); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: var(--line); }
.drawer .brand { font-size: 19px; }
.drawer-close { background: none; border: 0; font-size: 14px; color: var(--ink-3); cursor: pointer; }
.drawer-nav { display: flex; flex-direction: column; margin: 6px 0 20px; }
.drawer-nav a { display: flex; align-items: center; font-size: 17px; font-weight: 600; border-bottom: var(--line); }
.drawer-nav a[aria-current="page"] { color: var(--cobalt); }
.drawer-cta { display: flex; align-items: center; justify-content: center; height: 50px;
  border-radius: var(--r-sm); background: var(--cobalt); color: #fff; font-weight: 600; }
.drawer-tel { margin-top: 14px; text-align: center; font-size: 14px; color: var(--ink-3); }
.drawer-tel a { display: inline-flex; align-items: center; justify-content: center; }

/* ── 꼬리말 ───────────────────────────────────────────────────────── */
.site-footer { border-top: 3px solid var(--ink); background: var(--white); }
.footer-inner { max-width: var(--wrap); margin-inline: auto; padding: 44px 24px 52px; }
.footer-brand { font-size: 19px; font-weight: 800; color: var(--cobalt); letter-spacing: -.04em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 16px 0 22px; font-size: 14px; color: var(--ink-2); }
.footer-nav a:hover { color: var(--cobalt); }
.footer-biz { font-style: normal; font-size: 12.5px; line-height: 1.85; color: var(--ink-3); }
.footer-biz a { text-decoration: underline; text-underline-offset: 2px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0 10px; font-size: 13px; }
.footer-legal a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.footer-copy { font-size: 12px; color: var(--ink-3); }

/* ── 구획 머리 ─────────────────────────────────────────────────────── */
.sechead { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 26px; }
.sechead-txt { margin-right: auto; }
.sechead-kick {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--cobalt);
  text-transform: uppercase; margin-bottom: 8px;
}
.sechead-kick::before { content: ""; width: 22px; height: 2px; background: var(--cobalt); }
.sechead-h { font-size: 32px; line-height: 1.25; }
.sechead-sub { margin-top: 10px; color: var(--ink-3); font-size: 15px; max-width: 46ch; }
.sechead-more { font-size: 14px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; padding-bottom: 4px; }
.sechead-more:hover { color: var(--cobalt); }
.sechead-more .ico { width: 15px; height: 15px; }
@media (max-width: 767px) {
  .sechead { flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
  .sechead-h { font-size: 24px; }
}

/* ── 히어로 ───────────────────────────────────────────────────────── */
.hero { border-bottom: var(--line); background: var(--white); }
.hero-inner {
  max-width: var(--wrap); margin-inline: auto; padding-inline: 24px;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px; align-items: center;
  min-height: 460px;
}
.hero-copy { padding: 48px 0; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--cobalt); margin-bottom: 18px; }
.hero-h1 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.24; letter-spacing: -.035em; }
.hero-rule { display: block; width: 132px; height: 6px; margin: 18px 0 20px; background: var(--cobalt); border-radius: 3px; }
.hero-sub { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-plate { position: relative; align-self: stretch; }
.hero-plate img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
@media (max-width: 899px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .hero-copy { padding: 34px 0 26px; }
  .hero-plate { position: relative; height: 260px; margin-inline: -18px; }
  .hero-plate img { position: absolute; }
}

/* ── 값어치 띠 ─────────────────────────────────────────────────────── */
.valuebar { background: var(--white); border-bottom: var(--line); }
.value-list {
  max-width: var(--wrap); margin-inline: auto; padding: 26px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.value { display: flex; gap: 13px; align-items: flex-start; }
.value-ico {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--gray-2); color: var(--ink-2);
  display: grid; place-items: center;
}
.value-ico .ico { width: 20px; height: 20px; }
.value-t { font-size: 15px; font-weight: 700; }
.value-d { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin-top: 3px; }
@media (max-width: 899px) { .value-list { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 420px) { .value-list { grid-template-columns: repeat(2, 1fr); gap: 14px; } .value { flex-direction: column; gap: 8px; } }

/* ── 칩 ───────────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; min-height: 38px; padding: 0 16px;
  border: 1px solid var(--gray); border-radius: 19px; background: var(--white);
  font-size: 14px; color: var(--ink-2); white-space: nowrap;
}
.chip:hover { border-color: var(--cobalt); color: var(--cobalt); }
.chip-on { background: var(--cobalt-wash); border-color: color-mix(in srgb, var(--cobalt) 30%, #fff); color: var(--cobalt); font-weight: 600; }

/* ── 상품 카드 ─────────────────────────────────────────────────────── */
.pgrid { display: grid; gap: 22px; grid-template-columns: repeat(5, 1fr); }
.pgrid-4 { grid-template-columns: repeat(4, 1fr); }
.pgrid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1023px) { .pgrid, .pgrid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .pgrid, .pgrid-4, .pgrid-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

.pcard { display: flex; flex-direction: column; }
.pcard-fig {
  display: block; position: relative; height: 208px; border-radius: var(--r);
  background: #F3F3F1; overflow: clip; border: var(--line);
}
.pcard-fig img { width: 100%; height: 100%; object-fit: contain; }
.pcard:hover .pcard-fig { border-color: var(--ink-3); }
.pcard-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; }
.pcard-body { padding-top: 12px; }
.pcard-name { font-size: 15px; font-weight: 600; line-height: 1.45; }
.pcard-meta { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }
.pcard-price { font-size: 17px; font-weight: 700; margin-top: 6px; letter-spacing: -.03em; }
.pcard-price .won { font-size: 14px; font-weight: 600; }
@media (max-width: 767px) { .pcard-fig { height: 160px; } }

.badge {
  display: inline-flex; align-items: center; height: 22px; padding: 0 8px;
  border-radius: var(--r-xs); font-size: 11.5px; font-weight: 700; letter-spacing: -.02em;
  border: 1px solid transparent; background: var(--white);
}
.badge-new { color: var(--cobalt); border-color: color-mix(in srgb, var(--cobalt) 35%, #fff); }
.badge-best { color: var(--tomato); border-color: color-mix(in srgb, var(--tomato) 35%, #fff); }
.badge-restock { color: var(--ink-2); border-color: var(--gray); }
.badge-sale { color: #fff; background: var(--tomato); }

.stock { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; margin-top: 6px; }
.stock .ico { width: 14px; height: 14px; }
.stock-in { color: var(--ok); }
.stock-soon { color: var(--warn); }
.stock-out { color: var(--tomato); }

/* ── 안내 상자 ─────────────────────────────────────────────────────── */
.note {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 16px; border-radius: var(--r-sm);
  background: var(--gray-2); font-size: 13.5px; color: var(--ink-2); line-height: 1.65;
}
.note .ico { flex: none; width: 17px; height: 17px; margin-top: 2px; }
.note-warn { background: var(--warn-wash); color: #6E4200; }
.note-cobalt { background: var(--cobalt-wash); color: var(--cobalt-deep); }
.note strong { font-weight: 700; }

/* ── 아코디언 ─────────────────────────────────────────────────────── */
.acc { border-top: var(--line); }
.acc-item { border-bottom: var(--line); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; gap: 14px; justify-content: space-between;
  padding: 20px 4px; background: none; border: 0; cursor: pointer;
  font-size: 16px; font-weight: 600; text-align: left; color: var(--ink);
  font-family: inherit; letter-spacing: -.02em;
}
.acc-trigger .ico { flex: none; width: 18px; height: 18px; color: var(--ink-3); transition: rotate .2s ease; }
.acc-item.open .acc-trigger .ico { rotate: 90deg; color: var(--cobalt); }
.acc-panel { padding: 0 4px 22px; color: var(--ink-2); font-size: 14.5px; line-height: 1.75; max-width: 74ch; }
.acc-panel p + p, .acc-panel p + ul, .acc-panel ul + p { margin-top: 10px; }
.acc-panel li { padding-left: 14px; position: relative; }
.acc-panel li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); }

/* ── 홈 · 구성하기 소개(각인 필기 연출) ───────────────────────────── */
.promo { background: var(--white); border: var(--line); border-radius: var(--r-lg); overflow: clip; }
.promo-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.promo-art { position: relative; background: linear-gradient(160deg, #F5F6F8, #E9EBEF); display: grid; place-items: center; padding: 34px; }
.promo-art img { width: 100%; max-width: 250px; height: auto; border-radius: 6px; box-shadow: 0 18px 40px rgb(17 24 39 / .18); }
.promo-body { padding: 42px 44px; }
.promo-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0 26px; }
.promo-step { border-top: 2px solid var(--gray); padding-top: 12px; }
.promo-step:first-child { border-top-color: var(--cobalt); }
.promo-step-n { font-size: 12px; font-weight: 700; color: var(--cobalt); letter-spacing: .08em; }
.promo-step-t { font-size: 14px; font-weight: 600; margin-top: 4px; }
.promo-step-d { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }

.sign-host { margin: 4px 0 22px; padding: 18px 20px 12px; border: 1px dashed var(--gray); border-radius: var(--r); background: var(--paper); }
.sign-cap { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--ink-3); }
.ink-sign { display: block; width: 100%; height: auto; margin-top: 4px; }
.ink-sign path { fill: none; stroke: var(--cobalt); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1; }
html:not(.js) .ink-sign path { stroke-dashoffset: 0; }
.js .sign-host.in .ink-sign path { stroke-dashoffset: 0; transition: stroke-dashoffset 1.5s cubic-bezier(.4, 0, .2, 1); }

@supports (animation-timeline: view()) {
  .js .ink-sign path {
    transition: none;
    animation: sign-draw linear both;
    animation-timeline: view();
    animation-range: entry 24% cover 52%;
  }
  .js .sign-host.in .ink-sign path { stroke-dashoffset: 1; transition: none; }
}
@keyframes sign-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  .ink-sign path { stroke-dashoffset: 0 !important; animation: none !important; }
}

@media (max-width: 899px) {
  .promo-grid { grid-template-columns: 1fr; }
  .promo-art { padding: 28px; }
  .promo-art img { max-width: 190px; }
  .promo-body { padding: 28px 20px 32px; }
  .promo-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ── 잉크 스와치 ───────────────────────────────────────────────────── */
.swatch-deck { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.swatch {
  background: var(--white); border: var(--line); border-radius: var(--r); padding: 16px;
}
.swatch-chip { display: block; height: 62px; border-radius: var(--r-sm); border: 1px solid rgb(17 24 39 / .1); }
.swatch-n { font-size: 14px; font-weight: 700; margin-top: 12px; }
.swatch-d { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; line-height: 1.5; }
@media (max-width: 899px) { .swatch-deck { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .swatch-deck { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ── 표 ───────────────────────────────────────────────────────────── */
.tbl { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.tbl caption { text-align: left; font-size: 13px; color: var(--ink-3); padding-bottom: 10px; }
.tbl th, .tbl td { padding: 13px 14px; border-bottom: var(--line); text-align: left; vertical-align: top; }
.tbl thead th { background: var(--gray-2); font-size: 13px; font-weight: 700; color: var(--ink-2); white-space: nowrap; }
.tbl tbody th { font-weight: 600; color: var(--ink-2); white-space: nowrap; background: color-mix(in srgb, var(--gray-2) 55%, #fff); }
.tbl-card { background: var(--white); border: var(--line); border-radius: var(--r); overflow: clip; }

/* ══ 상품 탐색 ══════════════════════════════════════════════════════ */
.explore-layout { display: grid; grid-template-columns: 244px minmax(0, 1fr); gap: 34px; align-items: start; }
@media (max-width: 899px) { .explore-layout { grid-template-columns: 1fr; gap: 22px; } }

.toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 22px; }
.searchbox { position: relative; flex: 1 1 320px; min-width: 0; }
.searchbox .ico { position: absolute; left: 14px; top: 50%; translate: 0 -50%; width: 18px; height: 18px; color: var(--ink-3); pointer-events: none; }
.control, .searchbox input, .selectbox select {
  width: 100%; height: 46px; padding: 0 14px;
  border: 1px solid var(--gray); border-radius: var(--r-sm); background: var(--white);
  font-family: inherit; font-size: 15px; color: var(--ink);
}
.searchbox input { padding-left: 42px; }
.control:focus, .searchbox input:focus, .selectbox select:focus { outline: 2px solid var(--cobalt); outline-offset: -1px; border-color: var(--cobalt); }
.selectbox { position: relative; }
.selectbox select { appearance: none; padding-right: 38px; min-width: 148px; cursor: pointer; }
.selectbox .ico { position: absolute; right: 13px; top: 50%; translate: 0 -50%; width: 14px; height: 14px; rotate: 90deg; color: var(--ink-3); pointer-events: none; }
.viewtoggle { display: flex; gap: 4px; }
.viewtoggle button {
  width: 46px; height: 46px; border: 1px solid var(--gray); border-radius: var(--r-sm);
  background: var(--white); color: var(--ink-3); cursor: pointer; display: grid; place-items: center;
}
.viewtoggle button .ico { width: 18px; height: 18px; }
.viewtoggle button[aria-pressed="true"] { border-color: var(--ink); color: var(--ink); }

::highlight(munjang-hit) { background: #FFE8A3; color: var(--ink); }

.facets { background: var(--white); border: var(--line); border-radius: var(--r); padding: 6px 18px 18px; position: sticky; top: 84px; }
@media (max-width: 899px) { .facets { position: static; } }
.facet { border-bottom: var(--line); padding: 16px 0; }
.facet:last-child { border-bottom: 0; }
.facet-t { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.facet-list { display: flex; flex-direction: column; gap: 2px; }
.opt-row { position: relative; display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-2); }
.opt-row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt-row label { flex: 1; display: flex; align-items: center; gap: 9px; min-height: 38px; cursor: pointer; }
.opt-row .box {
  flex: none; width: 18px; height: 18px; border: 1.5px solid var(--gray); border-radius: var(--r-xs);
  background: var(--white); display: grid; place-items: center; color: #fff;
}
.opt-row .box svg { width: 12px; height: 12px; opacity: 0; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.opt-row input:checked + label .box { background: var(--cobalt); border-color: var(--cobalt); }
.opt-row input:checked + label .box svg { opacity: 1; }
.opt-row input:focus-visible + label .box { outline: 2px solid var(--cobalt); outline-offset: 2px; }
.opt-row input:checked + label .opt-t { color: var(--ink); font-weight: 600; }
.opt-row input:disabled + label { color: #B8BDC6; cursor: not-allowed; }
.opt-row input:disabled + label .box { background: var(--gray-2); }
.opt-n { flex: none; font-size: 12px; color: var(--ink-3); }
.color-list { display: flex; flex-wrap: wrap; gap: 8px; }
.color-row { position: relative; }
.color-row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.color-row .dot {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgb(17 24 39 / .16); cursor: pointer;
}
.color-row .dot svg { width: 15px; height: 15px; color: #fff; opacity: 0; fill: none; stroke: currentColor;
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 1.5px rgb(0 0 0 / .6)); }
.color-row input:checked + .dot { box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--cobalt); }
.color-row input:checked + .dot svg { opacity: 1; }
.color-row input:focus-visible + .dot { outline: 2px solid var(--cobalt); outline-offset: 3px; }
.price-range { width: 100%; accent-color: var(--cobalt); height: 34px; }
.price-out { font-size: 13px; color: var(--ink-2); font-weight: 600; }

.results-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.results-count { font-size: 14px; color: var(--ink-3); }
.results-count b { color: var(--ink); font-weight: 700; }
.list-view .pgrid { grid-template-columns: 1fr; gap: 0; }
.list-view .pcard { flex-direction: row; gap: 18px; align-items: center; padding: 16px 0; border-bottom: var(--line); }
.list-view .pcard-fig { width: 132px; height: 116px; flex: none; }
.list-view .pcard-body { padding-top: 0; }
.empty { text-align: center; padding: 60px 20px; border: 1px dashed var(--gray); border-radius: var(--r); background: var(--white); }
.empty-t { font-size: 17px; font-weight: 700; }
.empty-d { font-size: 14px; color: var(--ink-3); margin: 8px 0 18px; }

/* ══ 구성하기 ══════════════════════════════════════════════════════ */
.stepper { display: flex; gap: 0; border: var(--line); border-radius: var(--r); background: var(--white); overflow: clip; }
.step {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 62px; padding: 8px 6px; border: 0; border-right: var(--line);
  background: none; font-family: inherit; font-size: 14.5px; font-weight: 600; color: var(--ink-3); cursor: pointer;
}
.step:last-child { border-right: 0; }
.step-n {
  flex: none; width: 25px; height: 25px; border-radius: 50%; background: var(--gray);
  color: var(--white); font-size: 12.5px; font-weight: 700; display: grid; place-items: center;
}
.step[aria-selected="true"] { color: var(--ink); background: var(--cobalt-wash); }
.step[aria-selected="true"] .step-n { background: var(--cobalt); }
.step[data-done="1"] .step-n { background: var(--ok); }
@media (max-width: 767px) {
  .stepper { border-radius: var(--r-sm); }
  .step { min-height: 56px; font-size: 12.5px; gap: 6px; padding: 6px 3px; }
  .step .step-n { width: 22px; height: 22px; font-size: 11.5px; }
}
@media (max-width: 359px) {
  .step { flex-direction: column; gap: 3px; font-size: 11.5px; }
}

.cfg-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 34px; margin-top: 26px; align-items: start; }
@media (max-width: 899px) { .cfg-grid { grid-template-columns: 1fr; gap: 22px; } }

.cfg-preview { background: var(--white); border: var(--line); border-radius: var(--r); padding: 26px; position: sticky; top: 84px; }
@media (max-width: 899px) { .cfg-preview { position: static; } }
@media (max-width: 767px) { .cfg-preview { padding: 18px; } .cfg-plate { padding: 18px; } .cfg-panel { padding: 20px; } }
.cfg-plate { position: relative; display: grid; place-items: center; padding: 26px; border-radius: var(--r-sm);
  background: linear-gradient(165deg, #F5F6F8, #E6E8EC); }
/* 격자 칸은 기본 min-width 가 min-content 라, 안쪽 고정폭이 칸을 밀어 320px 에서 문서를
   가로로 넘겼다. 칸마다 min-width:0 을 주고 표지 폭도 상대값으로 묶는다. */
.cfg-grid > * { min-width: 0; }
.cfg-book { position: relative; width: min(232px, 100%); }
.cfg-book img { display: block; width: 100%; height: auto; border-radius: 5px; box-shadow: 0 16px 34px rgb(17 24 39 / .2); }
.cfg-tint {
  position: absolute; inset: 0; border-radius: 5px; mix-blend-mode: color; opacity: .82;
  transition: background-color .2s ease;
}
.cfg-engrave {
  position: absolute; left: 0; right: 0; top: 34%;
  text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .22em;
  color: #D9C089; text-shadow: 0 1px 1px rgb(0 0 0 / .35); word-break: break-all; padding-inline: 16px;
}
.cfg-price { display: flex; align-items: baseline; gap: 8px; margin-top: 22px; }
.cfg-price-n { font-size: 30px; font-weight: 800; letter-spacing: -.04em; }
.cfg-price-c { font-size: 13px; color: var(--ink-3); }
.cfg-lines { margin-top: 14px; font-size: 13px; color: var(--ink-2); line-height: 1.75; }
.cfg-lines dt { display: inline; color: var(--ink-3); }
.cfg-lines dd { display: inline; margin: 0; }
.cfg-nav { display: flex; gap: 8px; margin-top: 20px; }

.cfg-panel { background: var(--white); border: var(--line); border-radius: var(--r); padding: 28px; }
.cfg-panel + .cfg-panel { margin-top: 16px; }
.cfg-h { font-size: 20px; letter-spacing: -.03em; }
.cfg-sub { font-size: 14px; color: var(--ink-3); margin-top: 6px; }
.fieldset { border: 0; padding: 0; margin: 26px 0 0; }
.fieldset legend { padding: 0; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.optset { display: flex; flex-wrap: wrap; gap: 10px; }
.optset-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pick { position: relative; }
.pick input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pick-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  min-height: 48px; padding: 10px 18px; border: 1.5px solid var(--gray); border-radius: var(--r-sm);
  background: var(--white); font-size: 14.5px; font-weight: 600; color: var(--ink-2); cursor: pointer; text-align: center;
}
.pick-box small { font-size: 12px; font-weight: 500; color: var(--ink-3); }
.pick input:checked + .pick-box { border-color: var(--cobalt); color: var(--cobalt); background: var(--cobalt-wash); }
.pick input:checked + .pick-box small { color: var(--cobalt-deep); }
.pick input:focus-visible + .pick-box { outline: 2px solid var(--cobalt); outline-offset: 2px; }
.pick-cover .pick-box { height: 62px; padding: 0; border-radius: var(--r-sm); }
.pick-cover .cover-chip { width: 100%; height: 100%; border-radius: 5px; }
.pick-cover input:checked + .pick-box { box-shadow: inset 0 0 0 2px var(--white); }
.pick-cover { width: 86px; }
.pick-cover .pick-box { width: 100%; }
.pick-cover .pick-name { text-align: center; font-size: 12.5px; font-weight: 600; color: var(--ink-2); margin-top: 7px; }
.pick-cover .pick-name small { display: block; font-size: 11px; font-weight: 400; color: var(--ink-3); margin-top: 1px; }
.pick-cover input:checked ~ .pick-name { color: var(--cobalt); }
.cover-row { display: flex; flex-wrap: wrap; gap: 12px; }
.paper-ico { width: 30px; height: 34px; border: 1px solid currentColor; border-radius: 2px; opacity: .55; }
@media (max-width: 520px) { .optset-grid { grid-template-columns: repeat(2, 1fr); } }

.stack { display: flex; flex-direction: column; gap: 8px; }
.hint { font-size: 12.5px; color: var(--ink-3); margin-top: 8px; }
.counter { font-size: 12px; color: var(--ink-3); text-align: right; margin-top: 6px; }
.check-row { position: relative; }
.check-row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check-row label { display: flex; align-items: center; gap: 11px; min-height: 46px; font-size: 14.5px; cursor: pointer; }
.check-row .box {
  flex: none; width: 20px; height: 20px; border: 1.5px solid var(--gray); border-radius: var(--r-xs);
  background: var(--white); display: grid; place-items: center; color: #fff;
}
.check-row .box svg { width: 13px; height: 13px; opacity: 0; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.check-row input:checked + label .box { background: var(--cobalt); border-color: var(--cobalt); }
.check-row input:checked + label .box svg { opacity: 1; }
.check-row input:focus-visible + label .box { outline: 2px solid var(--cobalt); outline-offset: 2px; }
.check-row label small { display: block; font-size: 12.5px; color: var(--ink-3); font-weight: 400; margin-top: 1px; }

.sumtable { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.sumtable th, .sumtable td { padding: 11px 0; border-bottom: var(--line); text-align: left; }
.sumtable th { font-weight: 500; color: var(--ink-3); width: 44%; }
.sumtable td { text-align: right; font-weight: 600; }
.sumtable tr.total th, .sumtable tr.total td { border-bottom: 0; padding-top: 16px; font-size: 17px; color: var(--ink); font-weight: 700; }
.sumtable tr.total td { font-size: 22px; letter-spacing: -.03em; }
.sumtable .minus { color: var(--tomato); }

/* ══ 비교 ══════════════════════════════════════════════════════════ */
.cmp { min-width: 720px; width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { border-bottom: var(--line); padding: 14px 16px; text-align: center; font-size: 14px; vertical-align: middle; }
.cmp thead th { vertical-align: bottom; padding-top: 24px; }
.cmp tbody th { text-align: left; font-size: 13px; font-weight: 700; color: var(--ink-3); width: 116px;
  background: color-mix(in srgb, var(--gray-2) 55%, #fff); white-space: nowrap; }
.cmp-fig { display: block; width: 132px; height: 132px; margin: 0 auto 10px; border-radius: var(--r-sm);
  background: #F3F3F1; border: var(--line); overflow: clip; }
.cmp-fig img { width: 100%; height: 100%; object-fit: contain; }
.cmp-name { font-size: 14.5px; font-weight: 600; line-height: 1.4; }
.cmp-price { font-weight: 700; font-size: 16px; }
.cmp td.pick-col { background: var(--cobalt-wash); }
.cmp tfoot td { padding: 18px 12px; border-bottom: 0; }
.cmp .strong { font-weight: 700; color: var(--ink); }

.usecases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 899px) { .usecases { grid-template-columns: 1fr; } }
.usecase { background: var(--white); border: var(--line); border-radius: var(--r); padding: 24px; border-top: 3px solid var(--cobalt); }
.usecase-q { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--cobalt); }
.usecase-t { font-size: 19px; margin-top: 8px; letter-spacing: -.03em; }
.usecase-d { font-size: 14px; color: var(--ink-2); margin-top: 10px; line-height: 1.7; }
.usecase-list { margin-top: 16px; padding-top: 14px; border-top: var(--line); font-size: 13.5px; color: var(--ink-2); }
.usecase-list li { display: flex; gap: 8px; padding: 4px 0; }
.usecase-list .ico { flex: none; width: 15px; height: 15px; margin-top: 4px; color: var(--ok); }

/* ══ 상품 상세 ══════════════════════════════════════════════════════ */
.pdp { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 44px; align-items: start; }
@media (max-width: 899px) { .pdp { grid-template-columns: 1fr; gap: 26px; } }
.pdp-media { background: #F3F3F1; border: var(--line); border-radius: var(--r-lg); padding: 34px; display: grid; place-items: center; }
.pdp-media img { width: 100%; max-width: 244px; height: auto; }
.pdp-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--cobalt); }
.pdp-h1 { font-size: 30px; margin-top: 10px; letter-spacing: -.035em; }
.pdp-price { font-size: 26px; font-weight: 800; margin-top: 14px; letter-spacing: -.04em; }
.pdp-price .vat { font-size: 13px; font-weight: 500; color: var(--ink-3); margin-left: 6px; letter-spacing: 0; }
.pdp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.pdp-sec { margin-top: 26px; }
.pdp-sec-t { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.nibs { display: flex; flex-wrap: wrap; gap: 8px; }
.nib {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 62px; height: 62px; border: var(--line); border-radius: var(--r-sm); background: var(--white);
}
.nib .ico { width: 17px; height: 17px; color: var(--ink-3); }
.nib b { font-size: 14px; margin-top: 3px; }
.nib small { font-size: 10.5px; color: var(--ink-3); }
.pdp-actions { display: flex; gap: 10px; margin-top: 26px; }
.pdp-actions .btn { flex: 1; }

.buydock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--white) 96%, transparent);
  backdrop-filter: blur(8px); border-top: var(--line);
}
.buydock-price { font-size: 16px; font-weight: 800; white-space: nowrap; letter-spacing: -.03em; }
.buydock .btn { flex: 1; min-height: 48px; padding: 0 12px; }
@media (min-width: 768px) { .buydock { display: none; } }
@media (max-width: 767px) { .page-product { padding-bottom: 78px; } .page-product .toast { bottom: 84px; } }

.cross { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 640px) { .cross { grid-template-columns: 1fr; } }
.cross-item { display: flex; gap: 14px; align-items: center; background: var(--white); border: var(--line); border-radius: var(--r); padding: 12px; }
.cross-fig { flex: none; width: 74px; height: 74px; border-radius: var(--r-sm); background: #F3F3F1; overflow: clip; }
.cross-fig img { width: 100%; height: 100%; object-fit: contain; }
.cross-n { font-size: 14px; font-weight: 600; line-height: 1.4; }
.cross-p { font-size: 14px; font-weight: 700; margin-top: 4px; }

/* ── 폼 ───────────────────────────────────────────────────────────── */
.inquiry-form { background: var(--white); border: var(--line); border-radius: var(--r); padding: 24px; max-width: 620px; }
.form-t { font-size: 17px; font-weight: 700; }
.form-d { font-size: 13.5px; color: var(--ink-3); margin: 6px 0 18px; line-height: 1.6; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field .err, .agree .err { display: none; font-size: 12.5px; color: var(--tomato); margin-top: 6px; font-weight: 600; }
.field.invalid .control { border-color: var(--tomato); background: var(--tomato-wash); }
.field.invalid .err, .agree.invalid .err { display: block; }
textarea.control { height: auto; padding: 12px 14px; line-height: 1.6; resize: vertical; }
.agree { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 6px 0 18px; }
.agree label { display: flex; align-items: center; gap: 9px; min-height: 44px; font-size: 13.5px; color: var(--ink-2); cursor: pointer; }
.agree .box {
  flex: none; width: 20px; height: 20px; border: 1.5px solid var(--gray); border-radius: var(--r-xs);
  background: var(--white); position: relative;
}
.agree input:checked + label .box { background: var(--cobalt); border-color: var(--cobalt); }
.agree input:checked + label .box::after {
  content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; rotate: 45deg;
}
.agree.invalid .box { border-color: var(--tomato); }
.agree .err { flex-basis: 100%; }
.form-submit {
  width: 100%; min-height: 50px; border: 0; border-radius: var(--r-sm);
  background: var(--cobalt); color: #fff; font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer;
}
.form-submit:hover { background: var(--cobalt-deep); }

.toast .toast-msg {
  display: inline-block; padding: 13px 20px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 600;
  box-shadow: 0 10px 30px rgb(17 24 39 / .3); max-width: min(90vw, 460px);
}

/* ── 잡동사니 ─────────────────────────────────────────────────────── */
.pagehead { background: var(--white); border-bottom: var(--line); padding: 34px 0 30px; }
.pagehead-inner { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.crumb { font-size: 12.5px; color: var(--ink-3); display: flex; align-items: center; gap: 7px; }
.crumb .ico { width: 12px; height: 12px; }
.pagehead h1 { font-size: 32px; margin-top: 10px; letter-spacing: -.035em; }
.pagehead p { font-size: 15px; color: var(--ink-3); margin-top: 10px; max-width: 58ch; }
@media (max-width: 767px) { .pagehead { padding: 22px 0 20px; } .pagehead h1 { font-size: 25px; } .pagehead-inner { padding-inline: 18px; } }

/* 인라인 조각들을 줄 단위로 세운다 — 카드·값어치 띠·걸음표의 span 들 */
.value-t, .value-d,
.pcard-name, .pcard-meta, .pcard-price,
.cross-n, .cross-p,
.promo-step-n, .promo-step-t, .promo-step-d,
.cmp-name, .pick-name, .swatch-chip { display: block; }

.sechead-sm { font-size: 20px; }
.crumb { flex-wrap: wrap; }
.crumb a:hover { color: var(--cobalt); }
.pick { position: relative; display: inline-block; }
.optset-grid .pick { display: block; }
.optset-grid .pick-box { width: 100%; }
.buydock .btn { min-width: 0; }
html:not(.js) .explore-layout { grid-template-columns: 1fr; }

.divider { height: 1px; background: var(--gray); border: 0; margin: 0; }
.lede { font-size: 16px; line-height: 1.8; color: var(--ink-2); max-width: 62ch; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.ico { display: inline-block; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
