/* ══════════════════════════════════════════════════════════════════════
   소반도구 — 주방·테이블웨어
   위쪽 절반은 공통 뼈대 키트(kit.css, 동작 전용). 아래가 이 벌의 생김새다.
   ══════════════════════════════════════════════════════════════════════ */

/* ── 기본 ─────────────────────────────────────────────────────────── */
*, *::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(31 31 28 / .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); }


/* ══════════════════════════════════════════════════════════════════════
   여기부터 소반도구의 생김새 — 00-디자인보드.png 에서 읽은 값
   백자(PORCELAIN WHITE) · 먹(INK) · 감귤(TANGERINE)
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --porcelain: #fbfbf8;
  --paper: #f4f2ed;
  --paper-2: #efebe3;
  --ink: #1f1f1c;
  --ink-2: #54524b;
  --ink-3: #8b887f;
  --line: #e3e0d8;
  --line-2: #d2cec3;
  --tangerine: #e15e0f;
  --tangerine-dark: #b64906;
  --tangerine-soft: #fbe8db;
  --dark: #232320;
  --ok: #2f6b4f;
  --warn: #8f5d10;
  --err: #a63219;

  --wrap: 1240px;
  --section: 104px;
  --gut: 24px;

  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, "Malgun Gothic", sans-serif;
  --display: "Gothic A1", "Pretendard Variable", Pretendard, system-ui, sans-serif;
}

body {
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: min(100% - (var(--gut) * 2), var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - (var(--gut) * 2), 880px); margin-inline: auto; }

a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; margin: 0; line-height: 1.28; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.tone { background: var(--paper); }
.tone-2 { background: var(--paper-2); }

/* ── 표제 · 눈썹글 ─────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px;
}
.eyebrow-t { color: var(--tangerine); }

/* 디자인보드 왼쪽의 감귤색 세로 막대 — 이 벌의 구획 표식 */
.mark { position: relative; padding-left: 20px; }
.mark::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px;
  background: var(--tangerine);
}

.head-2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 500; }
.head-3 { font-size: clamp(20px, 2.2vw, 25px); font-weight: 500; }
.lead { color: var(--ink-2); font-size: 16.5px; margin-top: 14px; max-width: 62ch; }
.small { font-size: 13.5px; color: var(--ink-3); line-height: 1.68; }
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px 28px; margin-bottom: 34px; }
.sec-head .lead { margin-top: 12px; }

.num { font-variant-numeric: tabular-nums; }

/* ── 단추 ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 0 24px; border-radius: 3px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background-color .14s ease, color .14s ease, border-color .14s ease;
}
.btn-fill { background: var(--tangerine); color: #fff; }
.btn-fill:hover { background: var(--tangerine-dark); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; text-decoration: underline; text-underline-offset: 5px; }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 14px; }
.btn-wide { width: 100%; }
.btn[aria-disabled="true"] { opacity: .7; pointer-events: none; }
.btn-dark { background: var(--ink); color: var(--porcelain); }
.btn-dark:hover { background: #35342f; }

/* 검사기는 화면 좌표로 ±22px 을 찍어 44px 을 확인한다 — 작은 조작기를 남기지 않는다 */
@media (max-width: 767px) {
  .btn, button.btn, a.btn { min-height: 48px; }
  .icon-btn, .sort-btn, .facet-reset, .drawer-close { min-width: 44px; min-height: 44px; }
  .opt { min-height: 44px; }
}

/* ── 아이콘 ───────────────────────────────────────────────────────── */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ic { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.ic-lg { width: 28px; height: 28px; stroke-width: 1.2; }
.ic-sm { width: 16px; height: 16px; }

/* ══ 머리 ═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgb(251 251 248 / .94);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-stuck { border-bottom-color: var(--line-2); }
.header-inner {
  width: min(100% - (var(--gut) * 2), var(--wrap)); margin-inline: auto;
  display: flex; align-items: center; gap: 20px; min-height: 74px;
}
.brand {
  font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: .04em;
  text-decoration: none; white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 4px; margin-left: 18px; flex: 1 1 auto; }
.nav a {
  padding: 8px 13px; font-size: 14.5px; color: var(--ink-2); text-decoration: none;
  border-radius: 3px; white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: var(--paper); }
.nav a[aria-current] { color: var(--ink); font-weight: 600; box-shadow: inset 0 -2px 0 var(--tangerine); border-radius: 0; }
.header-tools { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 3px; color: var(--ink-2);
  text-decoration: none; background: transparent; border: 0; cursor: pointer;
}
.icon-btn:hover { color: var(--ink); background: var(--paper); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 15px; margin-left: 4px;
  background: var(--ink); color: var(--porcelain);
  border: 0; border-radius: 3px; cursor: pointer;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
}
.header-cta:hover { background: #35342f; }
.cart-n {
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px;
  background: var(--tangerine); color: #fff; font-size: 11.5px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
}
.menu-btn {
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer; color: var(--ink); margin-left: auto;
}
.menu-bar, .menu-bar::before, .menu-bar::after {
  display: block; width: 20px; height: 1.5px; background: currentColor; content: "";
}
.menu-bar { position: relative; }
.menu-bar::before { position: absolute; top: -6px; }
.menu-bar::after { position: absolute; top: 6px; }

@media (max-width: 979px) { .nav a { padding: 8px 9px; font-size: 13.5px; } }
@media (max-width: 767px) {
  .nav { display: none; }
  .header-inner { min-height: 62px; gap: 6px; }
  .header-cta span:not(.cart-n) { display: none; }
  .header-cta { padding: 0 12px; margin-left: 0; }
  .icon-btn { width: 44px; }
}

/* ── 서랍 ─────────────────────────────────────────────────────────── */
.drawer { background: var(--porcelain); border-left: 1px solid var(--line); padding: 18px 22px 32px; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.drawer-head .brand { font-size: 19px; }
.drawer-close { background: transparent; border: 0; font-family: var(--sans); font-size: 14px; color: var(--ink-2); cursor: pointer; }
.drawer-nav { display: block; padding: 8px 0 16px; }
.drawer-nav a {
  display: flex; align-items: center; padding: 12px 0; font-size: 17px;
  text-decoration: none; border-bottom: 1px solid var(--line);
  font-family: var(--display); font-weight: 500;
}
.drawer-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; min-height: 50px; margin-top: 18px; border: 0; border-radius: 3px;
  background: var(--tangerine); color: #fff; font-family: var(--sans); font-size: 15px; font-weight: 600; cursor: pointer;
}
.drawer-tel { margin-top: 16px; font-size: 14px; color: var(--ink-2); }
.drawer-tel a { text-decoration: none; }
.drawer-note { margin-top: 10px; font-size: 12.5px; color: var(--ink-3); }

/* ══ 발 ═════════════════════════════════════════════════════════════ */
.site-footer { background: var(--dark); color: #d8d5cd; margin-top: 0; }
.footer-inner { width: min(100% - (var(--gut) * 2), var(--wrap)); margin-inline: auto; padding: 62px 0 54px; }
.footer-brand { font-family: var(--display); font-size: 22px; font-weight: 500; color: #fff; letter-spacing: .04em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 22px; margin: 22px 0 26px; }
.footer-nav a { font-size: 14px; color: #b9b5ab; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-biz { font-style: normal; font-size: 13px; line-height: 1.95; color: #98948b; }
.footer-biz a { text-decoration: none; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.footer-legal a { font-size: 13px; color: #b9b5ab; }
.footer-copy { margin-top: 22px; font-size: 12.5px; color: #78756d; }

/* ── 토스트 모양 ──────────────────────────────────────────────────── */
.toast { background: var(--ink); color: var(--porcelain); padding: 13px 20px; border-radius: 3px; font-size: 14.5px; max-width: min(92vw, 460px); box-shadow: 0 10px 30px rgb(31 31 28 / .22); }

/* ══ 장바구니 서랍 (CartDrawer) ═════════════════════════════════════ */
.cart-scrim {
  position: fixed; inset: 0; z-index: 70; background: rgb(31 31 28 / .42);
  opacity: 0; pointer-events: none; transition: opacity .24s ease;
}
.cart-scrim.open { opacity: 1; pointer-events: auto; }
.cart-panel {
  position: fixed; inset: 0 0 0 auto; z-index: 75; width: min(94vw, 420px);
  background: var(--porcelain); border-left: 1px solid var(--line);
  transform: translateX(101%); transition: transform .26s ease; visibility: hidden;
  display: flex; flex-direction: column;
}
.cart-panel.open { transform: none; visibility: visible; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.cart-head h2 { font-size: 19px; }
.cart-body { flex: 1 1 auto; overflow-y: auto; padding: 6px 22px 18px; }
.cart-select { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--ink-2); }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 64px; height: 64px; object-fit: cover; border-radius: 3px; background: var(--paper); }
.cart-line .nm { display: block; font-size: 14.5px; font-weight: 600; }
.cart-line .pr { display: block; font-size: 14px; color: var(--ink-2); margin-top: 2px; }
.cart-line .qt { display: block; font-size: 12.5px; color: var(--ink-3); }
.cart-none { padding: 34px 0; text-align: center; }
.cart-sum { padding: 16px 0 4px; font-size: 14px; }
.cart-sum div { display: flex; justify-content: space-between; padding: 5px 0; color: var(--ink-2); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0 4px; border-top: 1px solid var(--line-2); margin-top: 10px; }
.cart-total b { font-family: var(--display); font-size: 22px; color: var(--tangerine); }
.cart-foot { padding: 16px 22px 22px; border-top: 1px solid var(--line); background: var(--paper); }
.coupon { display: flex; gap: 8px; margin-bottom: 12px; }
.coupon input { flex: 1 1 auto; min-height: 44px; }
.cart-msg { font-size: 13px; margin-bottom: 10px; display: flex; gap: 7px; align-items: flex-start; }
.cart-msg .ic { margin-top: 3px; }
.cart-msg.is-err { color: var(--err); }
.cart-msg.is-ok { color: var(--ok); }

/* ── 입력 ─────────────────────────────────────────────────────────── */
.control, select.control, input.control, textarea.control {
  width: 100%; min-height: 50px; padding: 12px 14px;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--porcelain); border: 1px solid var(--line-2); border-radius: 3px;
}
select.control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2354524b' stroke-width='1.4'%3E%3Cpath d='M3.5 6l4.5 4.5L12.5 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
textarea.control { min-height: 132px; line-height: 1.7; resize: vertical; }
.field { margin-bottom: 18px; }
.field > label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.err { display: none; margin-top: 6px; font-size: 13px; color: var(--err); }
.field.invalid .control { border-color: var(--err); }
.field.invalid .err { display: block; }
.agree { position: relative; margin: 6px 0 20px; }
.agree label { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); cursor: pointer; }
.agree .box { width: 20px; height: 20px; flex: none; margin-top: 2px; border: 1px solid var(--line-2); border-radius: 3px; background: var(--porcelain); }
.agree input:checked + label .box { background: var(--tangerine); border-color: var(--tangerine); box-shadow: inset 0 0 0 3px var(--porcelain); }
.agree.invalid .box { border-color: var(--err); }
.agree.invalid .err { display: block; margin-left: 30px; }
.counter { margin-top: 6px; font-size: 12.5px; color: var(--ink-3); text-align: right; }

/* ══ 히어로 (Table-setting Canvas) ══════════════════════════════════ */
.hero { position: relative; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: clamp(400px, 54vw, 560px); object-fit: cover; object-position: 52% 62%; display: block; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(96deg, rgb(28 24 18 / .82) 0%, rgb(28 24 18 / .66) 38%, rgb(28 24 18 / .2) 70%, rgb(28 24 18 / .05) 100%);
}
.hero-copy {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-copy .wrap { width: min(100% - (var(--gut) * 2), var(--wrap)); }
.hero-copy .eyebrow { color: #e8d9c6; }
.hero h1 {
  color: #fff; font-weight: 400;
  font-size: clamp(32px, 5vw, 54px); line-height: 1.24; letter-spacing: -.02em;
  text-shadow: 0 2px 22px rgb(20 16 12 / .38);
}
.hero-lead { color: #ece7dd; margin-top: 18px; font-size: clamp(15px, 1.6vw, 17.5px); max-width: 30ch; }
.hero-acts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-acts .btn-line { color: #fff; border-color: rgb(255 255 255 / .58); }
.hero-acts .btn-line:hover { border-color: #fff; background: rgb(255 255 255 / .1); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 30px; font-size: 13.5px; color: #ddd6ca; }
.hero-facts li { display: flex; align-items: center; gap: 7px; }

@media (max-width: 767px) {
  .hero-media img { height: 430px; object-position: 58% 62%; }
  .hero-media::after { background: linear-gradient(180deg, rgb(28 24 18 / .58) 0%, rgb(28 24 18 / .3) 38%, rgb(28 24 18 / .8) 100%); }
  .hero-copy { justify-content: flex-end; padding-bottom: 26px; }
  .hero-facts { gap: 6px 16px; font-size: 12.5px; }
}

/* ══ 취향으로 찾는 소반 (탭) ═══════════════════════════════════════ */
.taste-bar { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 10px 30px; border-bottom: 1px solid var(--line); }
.taste-bar h2 { font-size: clamp(21px, 2.4vw, 26px); padding-bottom: 14px; margin-right: 8px; }
.tablist { display: flex; gap: 4px; overflow-x: auto; position: relative; }
.tab {
  appearance: none; background: transparent; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 15px; color: var(--ink-3);
  padding: 12px 14px 14px; white-space: nowrap; border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab:hover { color: var(--ink-2); }
.tab[aria-selected="true"] { color: var(--ink); font-weight: 600; border-bottom-color: var(--tangerine); }

.taste-panel { padding-top: 34px; container-type: inline-size; }
.taste-grid { display: grid; grid-template-columns: 112px minmax(0, 1fr) minmax(0, 1.05fr); gap: 26px 34px; align-items: start; }
.taste-thumb { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; background: var(--paper); }
.taste-say h3 { font-size: clamp(20px, 2.2vw, 25px); font-weight: 500; }
.taste-say p { margin-top: 12px; color: var(--ink-2); font-size: 15.5px; }
.taste-say .chips { margin-top: 16px; }
.pick { border-top: 1px solid var(--line); }
.pick li { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.pick .pnm { font-size: 15px; font-weight: 600; flex: 1 1 auto; }
.pick .pds { display: block; font-size: 13px; font-weight: 400; color: var(--ink-3); margin-top: 1px; }
.pick .ppr { font-size: 15px; font-weight: 600; white-space: nowrap; }
.pick a { text-decoration: none; }
.pick a:hover .pnm { color: var(--tangerine); }

@container (max-width: 760px) {
  .taste-grid { grid-template-columns: 88px minmax(0, 1fr); }
  .taste-thumb { width: 88px; height: 88px; }
  .taste-list { grid-column: 1 / -1; }
}

.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 12.5px; color: var(--ink-2); background: var(--porcelain);
}
.chip-t { border-color: var(--tangerine); color: var(--tangerine-dark); background: var(--tangerine-soft); }

/* ══ 혜택 4 ════════════════════════════════════════════════════════ */
.bene { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.bene li { display: flex; gap: 14px; align-items: flex-start; }
.bene .ic-lg { color: var(--ink-2); margin-top: 2px; }
.bene b { display: block; font-size: 15px; font-weight: 600; }
.bene span { display: block; font-size: 13px; color: var(--ink-3); margin-top: 2px; }
@media (max-width: 899px) { .bene { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; } }
@media (max-width: 479px) { .bene { grid-template-columns: minmax(0, 1fr); } }

/* ══ 상차림 캔버스 (핫스팟 + FLIP) ═════════════════════════════════ */
.canvas-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr); gap: 40px; align-items: start; }
/* 말풍선이 액자 밖으로 삐져나가 320px 에서 문서 폭을 밀어냈다.
   hidden 이 아니라 clip 을 쓴다 — hidden 은 스크롤 컨테이너를 만든다(§4-C 13). */
.canvas-media { position: relative; overflow: clip; }
.canvas-media > img { width: 100%; height: auto; display: block; border-radius: 3px; background: var(--paper); }
.hot {
  position: absolute; left: var(--x); top: var(--y); translate: -50% -50%;
  width: 44px; height: 44px; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 0; padding: 0; cursor: pointer;
}
.hot-n {
  width: 27px; height: 27px; border-radius: 50%;
  background: rgb(251 251 248 / .94); color: var(--ink);
  border: 1px solid rgb(31 31 28 / .18);
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 700; font-variant-numeric: tabular-nums;
  box-shadow: 0 3px 12px rgb(31 31 28 / .24);
  transition: background-color .14s ease, color .14s ease, scale .14s ease;
}
.hot:hover .hot-n, .hot:focus-visible .hot-n { scale: 1.1; }
.hot[aria-pressed="true"] .hot-n { background: var(--tangerine); color: #fff; border-color: var(--tangerine); }
.hot-tip {
  position: absolute; left: var(--x); top: var(--y); z-index: 4;
  translate: -50% calc(-50% - 34px);
  padding: 6px 11px; border-radius: 3px; white-space: nowrap;
  background: var(--ink); color: var(--porcelain); font-size: 12.5px;
  opacity: 0; pointer-events: none; transition: opacity .16s ease;
}
.hot-tip.below { translate: -50% calc(50% + 34px); }
.hot:hover + .hot-tip, .hot:focus-visible + .hot-tip, .hot[aria-pressed="true"] + .hot-tip { opacity: 1; }

/* Anchor Positioning 이 있으면 말풍선을 점에 직접 매단다(향상층).
   없으면 위의 --x/--y 절대 위치가 같은 자리를 잡는다. */
@supports (anchor-name: --a) {
  #hot-1 { anchor-name: --a1; } #hot-2 { anchor-name: --a2; }
  #hot-3 { anchor-name: --a3; } #hot-4 { anchor-name: --a4; }
  #tip-1 { position-anchor: --a1; } #tip-2 { position-anchor: --a2; }
  #tip-3 { position-anchor: --a3; } #tip-4 { position-anchor: --a4; }
  .hot-tip { left: anchor(center); right: auto; bottom: anchor(top); top: auto; translate: -50% -4px; }
  .hot-tip.below { top: anchor(bottom); bottom: auto; translate: -50% 4px; }
}

.canvas-panel { border: 1px solid var(--line); border-radius: 3px; background: var(--porcelain); padding: 24px 24px 22px; container-type: inline-size; }
.canvas-panel h3 { font-size: 20px; }
.serve-pick { display: flex; gap: 8px; margin: 16px 0 20px; }
.serve-pick button {
  flex: 1 1 0; min-height: 46px; border: 1px solid var(--line-2); border-radius: 3px;
  background: var(--porcelain); font-family: var(--sans); font-size: 14px; color: var(--ink-2); cursor: pointer;
}
.serve-pick button[aria-pressed="true"] { border-color: var(--ink); color: var(--ink); font-weight: 600; background: var(--paper); }
.set-list { border-top: 1px solid var(--line); }
.set-row {
  display: grid; grid-template-columns: 26px minmax(0, 1fr) auto; gap: 12px; align-items: center;
  width: 100%; padding: 13px 2px; border: 0; border-bottom: 1px solid var(--line);
  background: transparent; text-align: left; cursor: pointer;
  font-family: var(--sans); color: inherit; min-height: 56px;
}
.set-row[aria-pressed="true"] { background: linear-gradient(90deg, var(--tangerine-soft), transparent 72%); }
.set-list .idx { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-size: 11.5px; font-weight: 700; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.set-row[aria-pressed="true"] .idx { background: var(--tangerine); border-color: var(--tangerine); color: #fff; }
.set-list .snm { font-size: 15px; font-weight: 600; }
.set-list .sds { display: block; font-size: 12.5px; color: var(--ink-3); font-weight: 400; }
.set-list .spr { font-size: 14.5px; font-weight: 600; white-space: nowrap; }
.set-sum { display: flex; align-items: baseline; justify-content: space-between; padding: 18px 0 4px; }
.set-sum b { font-family: var(--display); font-size: 25px; color: var(--tangerine); }
.set-note { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }
.canvas-panel .btn { margin-top: 16px; }
.serve-pick button { min-width: 0; }
@container (max-width: 330px) {
  .canvas-panel { padding: 18px 16px 18px; }
  .serve-pick { gap: 6px; }
}
@media (max-width: 899px) { .canvas-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; } }

/* ══ 레시피에서 바로 담기 ═══════════════════════════════════════════ */
.recipe-grid { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 44px; align-items: start; }
.recipe-grid > img { width: 100%; height: 430px; object-fit: cover; border-radius: 3px; background: var(--paper); }
.steps { counter-reset: st; margin-top: 22px; }
.steps li { position: relative; padding: 0 0 18px 44px; counter-increment: st; }
.steps li::before {
  content: counter(st, decimal-leading-zero); position: absolute; left: 0; top: 0;
  font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--tangerine);
  font-variant-numeric: tabular-nums;
}
.steps b { display: block; font-size: 15.5px; font-weight: 600; }
.steps span { display: block; font-size: 14.5px; color: var(--ink-2); margin-top: 2px; }
.tool-box { margin-top: 8px; border: 1px solid var(--line); border-radius: 3px; padding: 20px 22px; background: var(--porcelain); }
.tool-box h3 { font-size: 16px; }
.tool-list { margin-top: 12px; }
.tool-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.tool-list li:first-child { border-top: 0; }
.tool-list .tnm { flex: 1 1 auto; font-weight: 600; }
.tool-list .tpr { font-weight: 600; }
@media (max-width: 899px) { .recipe-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; } .recipe-grid > img { height: 320px; } }

/* ══ 다크 밴드 (SIGNATURE STRUCTURE) ═══════════════════════════════ */
.band { background: var(--dark); color: #ddd8ce; }
.band-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px; }
.band .n { font-family: var(--display); font-size: 26px; font-weight: 700; color: var(--tangerine); font-variant-numeric: tabular-nums; }
.band h3 { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .14em; margin: 14px 0 12px; }
.band p { font-size: 14.5px; line-height: 1.85; color: #b6b1a7; }
.band .ic-lg { color: #6f6b62; margin-bottom: 18px; }
@media (max-width: 899px) { .band-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; } }

/* ══ 장인 미리보기 ═════════════════════════════════════════════════ */
.craft-teaser { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 46px; align-items: center; }
.craft-teaser img { width: 100%; height: 330px; object-fit: cover; border-radius: 3px; background: var(--paper); }
@media (max-width: 899px) { .craft-teaser { grid-template-columns: minmax(0, 1fr); gap: 26px; } .craft-teaser img { height: 260px; } }

/* ══ 면 머리 (내부 면 공통) ════════════════════════════════════════ */
.page-head { padding: 46px 0 30px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 400; }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12.5px; color: var(--ink-3); margin-bottom: 16px; }
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--ink); }
.crumb span::after { content: "›"; margin-left: 8px; color: var(--line-2); }

/* ══ 그릇 목록 면 ══════════════════════════════════════════════════ */
.shop-grid { display: grid; grid-template-columns: 264px minmax(0, 1fr); gap: 44px; align-items: start; padding-top: 34px; }
.facets { position: sticky; top: 96px; }
.facet-top { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line-2); }
.facet-top h2 { font-size: 15px; }
.facet-reset { background: transparent; border: 0; font-family: var(--sans); font-size: 12.5px; color: var(--ink-3); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; padding: 6px 0; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 15px 0; background: transparent; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--ink); text-align: left;
}
.acc-trigger .ic { color: var(--ink-3); transition: rotate .2s ease; }
.acc-item.open .acc-trigger .ic { rotate: 180deg; }
.acc-panel { padding: 2px 0 18px; }
.acc-panel p { font-size: 14px; color: var(--ink-2); }
.acc-panel p + p { margin-top: 10px; }
.opt { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 14px; color: var(--ink-2); cursor: pointer; }
.opt input { width: 17px; height: 17px; accent-color: var(--tangerine); flex: none; }
.opt .cnt { margin-left: auto; font-size: 12px; color: var(--ink-3); font-variant-numeric: tabular-nums; }

.find { display: flex; gap: 8px; margin-bottom: 22px; }
.find input { flex: 1 1 auto; }
.find-out { margin: -14px 0 20px; font-size: 13px; color: var(--ink-2); }
.sort-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.sort-bar .count { font-size: 13.5px; color: var(--ink-2); margin-right: auto; }
.sort-btn { background: transparent; border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 14px; font-family: var(--sans); font-size: 13px; color: var(--ink-2); cursor: pointer; min-height: 36px; }
.sort-btn[aria-pressed="true"] { border-color: var(--ink); color: var(--ink); font-weight: 600; }

.rows { margin-top: 6px; }
.row {
  display: grid; grid-template-columns: 124px minmax(0, 1fr) auto; gap: 22px;
  align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line);
}
.row img { width: 124px; height: 124px; object-fit: cover; border-radius: 3px; background: var(--paper); }
.row h3 { font-size: 17px; font-weight: 600; }
.row h3 a { text-decoration: none; }
.row h3 a:hover { color: var(--tangerine); }
.row .desc { font-size: 14px; color: var(--ink-2); margin-top: 5px; }
.row .chips { margin-top: 11px; }
.row-buy { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.row-price { font-family: var(--display); font-size: 20px; font-weight: 600; font-variant-numeric: tabular-nums; }
.row.is-out { opacity: .72; }
.state { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; }
.state-ok { color: var(--ok); }
.state-warn { color: var(--warn); }
.state-out { color: var(--err); }
.empty { padding: 44px 0; text-align: center; }
.empty p { color: var(--ink-2); }

@media (max-width: 979px) { .shop-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; } .facets { position: static; } }
@media (max-width: 639px) {
  .row { grid-template-columns: 96px minmax(0, 1fr); gap: 16px; }
  .row img { width: 96px; height: 96px; }
  .row-buy { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; text-align: left; }
}

/* ══ 상품 상세 면 ══════════════════════════════════════════════════ */
.pdp { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 52px; padding-top: 34px; align-items: start; }
.gallery-main { width: 100%; height: 470px; object-fit: cover; border-radius: 3px; background: var(--paper); display: block; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery-thumbs button {
  width: 76px; height: 76px; padding: 0; border: 1px solid var(--line); border-radius: 3px;
  background: var(--paper); cursor: pointer; overflow: hidden;
}
.gallery-thumbs button[aria-pressed="true"] { border-color: var(--ink); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }

.buy .cat { font-size: 12.5px; color: var(--ink-3); letter-spacing: .06em; }
.buy h1 { font-size: clamp(27px, 3.4vw, 36px); font-weight: 500; margin-top: 8px; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; }
.price { font-family: var(--display); font-size: 30px; font-weight: 600; font-variant-numeric: tabular-nums; }
.price-note { font-size: 13px; color: var(--ink-3); }
.buy-states { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 16px 0 24px; padding: 14px 0; border-block: 1px solid var(--line); }
.opts { display: grid; gap: 14px; }
.opt-row { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 14px; align-items: center; }
.opt-row > label { font-size: 13.5px; font-weight: 600; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 3px; overflow: hidden; }
.qty button { width: 46px; height: 46px; background: var(--porcelain); border: 0; cursor: pointer; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.qty button:hover { background: var(--paper); }
.qty output { width: 54px; text-align: center; font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; border-inline: 1px solid var(--line-2); line-height: 46px; }
.opt-err { display: none; margin-top: 10px; font-size: 13px; color: var(--err); gap: 7px; align-items: flex-start; }
.opt-err.show { display: flex; }
.total-row { display: flex; align-items: baseline; justify-content: space-between; margin: 22px 0 4px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.total-row b { font-family: var(--display); font-size: 27px; color: var(--tangerine); font-variant-numeric: tabular-nums; }
.buy-acts { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; margin-top: 18px; }
.pay-note { margin-top: 16px; font-size: 13px; color: var(--ink-3); }
.pay-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.pay-list li { font-size: 12px; color: var(--ink-2); border: 1px solid var(--line); border-radius: 3px; padding: 4px 9px; background: var(--porcelain); }

@media (max-width: 899px) {
  .pdp { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .gallery-main { height: 340px; }
}

/* 표 */
.tbl-box { border: 1px solid var(--line); border-radius: 3px; background: var(--porcelain); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
table.tbl caption { text-align: left; padding: 16px 18px 0; font-size: 13px; color: var(--ink-3); }
table.tbl th, table.tbl td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
table.tbl thead th { font-size: 12.5px; font-weight: 700; color: var(--ink-3); letter-spacing: .04em; background: var(--paper); border-bottom-color: var(--line-2); }
table.tbl tbody th { font-weight: 600; color: var(--ink-2); width: 150px; background: var(--porcelain); }
table.tbl tr:last-child th, table.tbl tr:last-child td { border-bottom: 0; }
table.tbl td.num, table.tbl th.num { font-variant-numeric: tabular-nums; }
.yes, .no, .cond { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 13.5px; }
.yes { color: var(--ok); }
.no { color: var(--err); }
.cond { color: var(--warn); }

.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; align-items: start; }
@media (max-width: 899px) { .info-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; } }

.notice { border-left: 3px solid var(--tangerine); background: var(--paper); padding: 20px 22px; border-radius: 0 3px 3px 0; }
.notice h3 { font-size: 16px; }
.notice ul { margin-top: 12px; }
.notice li { position: relative; padding-left: 15px; font-size: 14px; color: var(--ink-2); margin-top: 8px; }
.notice li::before { content: ""; position: absolute; left: 0; top: 11px; width: 5px; height: 1px; background: var(--ink-3); }

/* 하단 구매 Dock (모바일 전용) */
.buy-dock { display: none; }
@media (max-width: 767px) {
  .buy-dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr); gap: 8px; align-items: center;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgb(251 251 248 / .97); border-top: 1px solid var(--line-2);
  }
  .buy-dock .dock-price { font-family: var(--display); font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; padding-right: 4px; }
  .buy-dock .btn { min-height: 46px; padding: 0 12px; font-size: 14px; }
  body.has-dock { padding-bottom: 78px; }
}

/* ══ 비교·가이드 면 ════════════════════════════════════════════════ */
.guide-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.qset { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 18px; }
.qset:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.qset legend { font-size: 14.5px; font-weight: 600; padding: 0; margin-bottom: 12px; }
.qset fieldset { border: 0; padding: 0; margin: 0; }
.radios { display: flex; flex-wrap: wrap; gap: 8px; }
.radios label {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: 1px solid var(--line-2); border-radius: 999px; padding: 9px 15px; font-size: 14px; color: var(--ink-2);
  min-height: 44px;
}
.radios input { accent-color: var(--tangerine); width: 16px; height: 16px; }
.radios input:checked + span { font-weight: 600; color: var(--ink); }
.guide-out { border: 1px solid var(--line-2); border-radius: 3px; background: var(--paper); padding: 24px; }
.guide-out h3 { font-size: 19px; }
.guide-out .rec { margin-top: 16px; }
.guide-out .rec li { padding: 11px 0; border-top: 1px solid var(--line-2); display: flex; gap: 12px; align-items: center; font-size: 14.5px; }
.guide-out .rec li:first-child { border-top: 0; }
.guide-out .rec b { flex: 1 1 auto; }
@media (max-width: 899px) { .guide-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; } }

.cmp-head { display: grid; grid-template-columns: 150px repeat(3, minmax(0, 1fr)); gap: 0; min-width: 700px; }
.cmp-col { padding: 18px 16px; text-align: center; border-left: 1px solid var(--line); }
.cmp-col img { width: 118px; height: 118px; object-fit: cover; border-radius: 3px; background: var(--paper); }
.cmp-col b { display: block; margin-top: 10px; font-size: 15px; }
.cmp-col span { display: block; font-size: 12.5px; color: var(--ink-3); }
.cmp-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 0 0; }

.size-bars { display: grid; gap: 14px; }
.size-bars li { display: grid; grid-template-columns: 150px minmax(0, 1fr) 92px; gap: 16px; align-items: center; }
.size-bars .bar { height: 12px; border-radius: 999px; background: var(--paper-2); position: relative; overflow: hidden; }
.size-bars .bar i { position: absolute; inset: 0 auto 0 0; width: var(--w); background: var(--tangerine); border-radius: 999px; display: block; }
.size-bars .val { font-size: 13.5px; color: var(--ink-2); font-variant-numeric: tabular-nums; text-align: right; }
.size-bars .lbl { font-size: 14px; font-weight: 600; }
@media (max-width: 639px) { .size-bars li { grid-template-columns: minmax(0, 1fr) 76px; } .size-bars .bar { grid-column: 1 / -1; } }

/* ══ 브랜드 스토리 면 ══════════════════════════════════════════════ */
.story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: 46px; align-items: center; padding: 46px 0 0; }
.story h1 { font-size: clamp(32px, 4.6vw, 50px); font-weight: 400; line-height: 1.26; }
.story p { margin-top: 20px; color: var(--ink-2); font-size: 16px; }
.story img { width: 100%; height: 380px; object-fit: cover; border-radius: 3px; background: var(--paper); }
@media (max-width: 899px) { .story { grid-template-columns: minmax(0, 1fr); gap: 26px; } .story img { height: 280px; } }

/* SVG 공예 공정 — 스크롤 연동 (시그니처) */
.process { position: relative; }
.process-svg { width: 100%; height: auto; display: block; }
.process-svg .rail { stroke: var(--line-2); stroke-width: 2; fill: none; }
.process-svg .glyph { stroke: var(--ink); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.process-svg .dot { fill: var(--porcelain); stroke: var(--line-2); stroke-width: 1.6; }
.process-svg .draw {
  stroke: var(--tangerine); stroke-width: 2.4; fill: none; stroke-linecap: round;
  stroke-dasharray: 1000; stroke-dashoffset: 0;
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .process-svg .draw {
      animation: soban-draw linear both;
      animation-timeline: view();
      animation-range: entry 30% cover 62%;
    }
  }
}
@keyframes soban-draw { from { stroke-dashoffset: 1000; } to { stroke-dashoffset: 0; } }
.process-cap { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.process-cap b { display: block; font-size: 14.5px; font-weight: 600; }
.process-cap span { display: block; font-size: 13px; color: var(--ink-3); margin-top: 3px; }
@media (max-width: 767px) { .process-cap { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }

.makers { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; text-align: center; }
.makers img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; background: var(--paper); filter: saturate(.82) contrast(1.04); }
.makers b { display: block; margin-top: 12px; font-size: 14.5px; font-weight: 600; }
.makers span { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
@media (max-width: 767px) { .makers { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; } }

.faq .acc-item { border-bottom: 1px solid var(--line); }
.faq .acc-trigger { padding: 19px 0; font-size: 16px; }
.faq .acc-panel { padding-bottom: 20px; }

.form-box { border: 1px solid var(--line); border-radius: 3px; padding: 28px; background: var(--porcelain); }
.form-note { font-size: 12.5px; color: var(--ink-3); margin-top: 14px; }
.contact-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.contact-list b { width: 84px; flex: none; color: var(--ink-2); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════════════
   맨 끝 — 좁은 폭 마무리
   앞에서 정한 값(.sort-btn 36px 등)을 덮어야 하므로 파일 끝에 둔다.
   검사기가 화면 좌표로 ±22px 을 찍어 44px 을 확인한다.
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .sort-btn, .facet-reset, .icon-btn, .drawer-close, .opt { min-height: 44px; }
  .sort-btn { padding: 8px 14px; }
  .hot-tip { white-space: normal; max-width: min(150px, 42vw); text-align: center; }
}

/* 좁은 화면의 표 — 옆으로 미는 폭을 줄여 읽는 부담을 던다(.scroll-x 안에서만 밀린다) */
@media (max-width: 639px) {
  table.tbl { min-width: 452px; font-size: 13.5px; }
  table.tbl th, table.tbl td { padding: 11px 12px; }
  table.tbl tbody th { width: 100px; }
  table.tbl caption { padding: 13px 12px 0; }
  .cmp-head { min-width: 452px; grid-template-columns: 100px repeat(3, minmax(0, 1fr)); }
  .cmp-col { padding: 14px 8px; }
  .cmp-col img { width: 84px; height: 84px; }
}
