/* ══════════════════════════════════════════════════════════════════════
   핀하이 클럽 — 공통 뼈대 키트(동작) + 이 벌의 디자인
   키트 구간은 기록/작업/템플릿-시안제작/kit/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; }

.js-only { display: none; }
.js .js-only { display: revert; }

: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(4 26 18 / .55);
  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 에서 읽은 색·활자·형태
   ══════════════════════════════════════════════════════════════════════ */

:root {
  /* 컬러 — 디자인보드 4색을 화면에서 직접 뽑았다 */
  --green: #07271b;        /* 딥 그린 */
  --green-deep: #041a12;
  --green-soft: #0e3a28;
  --off: #f9f8f5;          /* 오프화이트 */
  --paper: #ffffff;
  --gold: #ae8643;         /* 골드 */
  --gold-l: #c9a468;
  --gold-d: #8a6a34;
  --charcoal: #494948;     /* 차콜 */
  --ink: #191917;
  --muted: #6f6e68;
  --line: #e4e1d9;
  --line-green: rgb(201 164 104 / .28);
  --ink-on-green: rgb(249 248 245 / .78);

  /* 의미색 — 상태는 색만으로 전하지 않는다(§09). 글자·아이콘을 늘 함께 쓴다 */
  --ok: #2f6b4f;
  --warn: #9a6a15;
  --err: #a4392f;

  --radius: 4px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --wrap: 1180px;
  --section: 104px;
  --shadow: 0 18px 44px rgb(7 39 27 / .08);
  --shadow-sm: 0 6px 18px rgb(7 39 27 / .06);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: Pretendard Variable, Pretendard, -apple-system, BlinkMacSystemFont,
          system-ui, "Malgun Gothic", sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 108px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--off);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -.028em; line-height: 1.28; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }

a { color: inherit; }
.skip-link { background: var(--green); color: var(--off); border-radius: 0 0 var(--radius) 0; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5;
       stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico-sm { width: 17px; height: 17px; }
.ico-lg { width: 30px; height: 30px; stroke-width: 1.25; }

/* ── 활자 등급 ───────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--serif); font-weight: 600; font-size: 13px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold-d);
  margin-bottom: 18px; display: block;
}
.on-green .eyebrow, .band .eyebrow, .hero .eyebrow { color: var(--gold-l); }

.h-xl { font-size: clamp(34px, 4.6vw, 58px); line-height: 1.2; }
.h-lg { font-size: clamp(28px, 3.2vw, 42px); }
.h-md { font-size: clamp(22px, 2.2vw, 28px); }
.h-sm { font-size: 19px; }

.lead { color: var(--muted); font-size: 16.5px; margin-top: 18px; max-width: 46ch; }
.on-green .lead, .band .lead { color: var(--ink-on-green); }
.note { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.serif-line { font-family: var(--serif); font-weight: 600; letter-spacing: .1em; }

/* ── 단추 ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 24px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 14.5px; font-weight: 700; letter-spacing: -.01em;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-d); }
.btn-green { background: var(--green); color: var(--off); }
.btn-green:hover { background: var(--green-soft); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--green); }
.on-green .btn-line, .band .btn-line, .hero .btn-line { color: var(--off); border-color: var(--line-green); }
.on-green .btn-line:hover, .band .btn-line:hover, .hero .btn-line:hover { border-color: var(--gold-l); background: rgb(174 134 67 / .16); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 13.5px; }
.btn-wide { width: 100%; }
.btn[aria-disabled="true"] { opacity: .62; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  font-size: 14.5px; font-weight: 700; text-decoration: none;
  padding-bottom: 4px; border-bottom: 1px solid currentColor;
}
.link-arrow .ico { width: 18px; height: 18px; transition: translate .18s ease; }
.link-arrow:hover .ico { translate: 5px 0; }

/* ── 머리띠 ─────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 10px; z-index: 45; }
.header-inner {
  width: min(100% - 32px, 1340px); margin-inline: auto;
  display: flex; align-items: center; gap: 26px;
  background: var(--green); color: var(--off);
  border-radius: var(--radius-lg); padding: 0 26px; min-height: 66px;
  transition: box-shadow .2s ease;
}
.site-header.is-stuck .header-inner { box-shadow: 0 14px 34px rgb(4 26 18 / .22); }

.brand {
  font-size: 19px; font-weight: 700; letter-spacing: -.03em;
  text-decoration: none; color: var(--off); white-space: nowrap;
}
.nav { display: flex; gap: 30px; margin-inline: auto; }
.nav a {
  font-size: 14.5px; font-weight: 500; text-decoration: none;
  color: rgb(249 248 245 / .82); padding: 20px 0; position: relative;
}
.nav a:hover { color: var(--off); }
.nav a[aria-current="page"] { color: var(--off); font-weight: 700; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 14px;
  height: 1px; background: var(--gold-l);
}

.header-tools { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: 40px; height: 40px; border-radius: var(--radius); color: var(--off);
  text-decoration: none; background: none; border: 0; cursor: pointer;
}
.icon-btn:hover { background: rgb(249 248 245 / .1); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px;
  border-radius: var(--radius); border: 1px solid var(--line-green);
  color: var(--off); text-decoration: none; font-size: 13.5px; font-weight: 700;
}
.header-cta:hover { border-color: var(--gold-l); background: rgb(174 134 67 / .16); }
.bag-count { color: var(--gold-l); font-variant-numeric: tabular-nums; }

.menu-btn {
  align-items: center; justify-content: center; width: 44px; height: 44px;
  background: none; border: 0; color: var(--off); cursor: pointer; margin-right: -8px;
}

/* ── 서랍 ───────────────────────────────────────────────────────── */
.drawer { background: var(--green); color: var(--off); padding: 18px 22px 34px; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.drawer-close {
  background: none; border: 1px solid var(--line-green); color: var(--off);
  border-radius: var(--radius); padding: 0 14px; font-size: 13.5px; cursor: pointer;
}
.drawer-nav { display: flex; flex-direction: column; margin: 22px 0 6px; }
.drawer-nav a {
  display: flex; align-items: center; padding: 14px 0; text-decoration: none;
  font-size: 17px; font-weight: 600; border-bottom: 1px solid rgb(249 248 245 / .12);
}
.drawer-nav a[aria-current="page"] { color: var(--gold-l); }
.drawer-cta {
  display: flex; align-items: center; justify-content: center; margin-top: 22px;
  background: var(--gold); color: #fff; border-radius: var(--radius);
  text-decoration: none; font-weight: 700; font-size: 15px; min-height: 48px;
}
.drawer-tel { margin-top: 16px; text-align: center; font-size: 14px; color: var(--ink-on-green); }
.drawer-tel a { text-decoration: none; }

/* ── 히어로 ─────────────────────────────────────────────────────── */
.hero {
  width: min(100% - 32px, 1340px); margin: 14px auto 0;
  background:
    radial-gradient(120% 90% at 78% 12%, rgb(14 58 40 / .9), transparent 60%),
    linear-gradient(180deg, #0a3122 0%, var(--green) 62%, var(--green-deep) 100%);
  color: var(--off); border-radius: var(--radius-xl); position: relative;
}
.hero .clip, .hero { overflow: clip; }
.hero-inner {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 44px; align-items: center;
  padding: 76px 60px 68px; position: relative;
}
.hero-copy h1 { font-size: clamp(34px, 4.5vw, 58px); font-weight: 700; line-height: 1.2; }
.hero-copy .lead { color: var(--ink-on-green); font-size: 15.5px; margin-top: 20px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-figure { position: relative; justify-self: end; width: 100%; max-width: 430px; }
.hero-figure img {
  width: 100%; height: auto; display: block; border-radius: var(--radius-lg);
}
.hero-figure::after {
  content: ""; position: absolute; inset: 12px -12px -12px 12px;
  border: 1px solid var(--line-green); border-radius: var(--radius-lg); pointer-events: none;
}

.hero-rail { position: absolute; right: 26px; top: 50%; translate: 0 -50%; display: grid; gap: 20px; }
.hero-rail a {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: var(--serif); font-size: 12.5px; letter-spacing: .2em;
  color: rgb(249 248 245 / .82); text-shadow: 0 1px 8px rgb(4 26 18 / .85);
}
.hero-rail a::after { content: ""; width: 24px; height: 1px; background: rgb(249 248 245 / .6); }
.hero-rail a:hover { color: var(--gold-l); }
.hero-rail a:hover::after { background: var(--gold-l); }

/* 히어로 안 소재 배지 띠 — 시안대로 그린 블록 하단에 금선으로 나뉜다 */
.hero-badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  border-top: 1px solid var(--line-green); padding: 26px 60px 30px;
  background: rgb(4 26 18 / .5);
}
.hero-badges li { display: flex; gap: 14px; align-items: flex-start; }
.hero-badges .ico { color: var(--gold-l); }
.hero-badges b { display: block; font-size: 14.5px; font-weight: 700; }
.hero-badges span { display: block; font-size: 13px; color: rgb(249 248 245 / .62); line-height: 1.6; }

/* ── 구획 머리 ──────────────────────────────────────────────────── */
.sec-head { max-width: 640px; }
.sec-head .lead { margin-top: 16px; }
.split {
  display: grid; grid-template-columns: .88fr 1.12fr; gap: 60px; align-items: center;
}
.split-rev { grid-template-columns: 1.12fr .88fr; }

.plate { border-radius: var(--radius-lg); overflow: clip; background: #eceae4; display: block; }
.plate img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── 딥그린 띠 ──────────────────────────────────────────────────── */
.band { background: var(--green); color: var(--off); position: relative; overflow: clip; }
.band-tex {
  position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background: radial-gradient(80% 120% at 20% 0%, rgb(174 134 67 / .35), transparent 62%);
}

/* 시그니처 연출 — 스윙 궤적(MotionPath). 기본값은 「끝난 상태」다.
   스크롤 타임라인을 지원하는 곳에서만 궤적을 따라 움직인다(§4-B 2). */
.swing { display: block; width: 100%; height: 118px; margin-bottom: 8px; }
.swing-arc { fill: none; stroke: var(--gold-l); stroke-width: 1.2; stroke-dasharray: 3 7; opacity: .7; }
.swing-ball {
  fill: var(--off); r: 5;
  offset-path: path("M 20 104 C 300 8 780 -4 1180 78");
  offset-distance: 100%;
  offset-rotate: 0deg;
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .swing-ball {
      animation: ph-swing linear both;
      animation-timeline: view();
      animation-range: entry 12% cover 72%;
    }
    @keyframes ph-swing { from { offset-distance: 0%; } to { offset-distance: 100%; } }
  }
}

.structure-head { max-width: 620px; margin-bottom: 42px; }
.structure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.structure li { border-left: 1px solid var(--line-green); padding: 6px 34px; }
.structure li:first-child { border-left: 0; padding-left: 0; }
.structure a { text-decoration: none; display: block; }
.structure .serif-line { display: block; color: var(--gold-l); font-size: 17px; margin-bottom: 12px; }
.structure p { font-size: 14.5px; color: var(--ink-on-green); line-height: 1.7; }
.structure .link-arrow { margin-top: 18px; color: var(--off); font-size: 13.5px; }

/* ── 소재 아이콘 ────────────────────────────────────────────────── */
.mat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.mat-grid li {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.mat-shot { display: block; width: 208px; height: 208px; border-radius: var(--radius-lg); margin-top: 30px;
             box-shadow: 12px 12px 0 -1px rgb(174 134 67 / .18); }
.mat-grid .ico { color: var(--gold-d); margin-bottom: 14px; }
.mat-grid b { display: block; font-size: 15.5px; margin-bottom: 6px; }
.mat-grid p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ── 브랜드 스토리 ──────────────────────────────────────────────── */
.crest { width: 200px; height: auto; display: block; margin-bottom: 26px; }

/* ── 페어웨이 띠 ────────────────────────────────────────────────── */
.fairway { position: relative; overflow: clip; }
.fairway img { width: 100%; height: 210px; object-fit: cover; object-position: 14% 42%; display: block; }
.fairway-veil {
  position: absolute; inset: 0; display: flex; align-items: center;
  background: linear-gradient(90deg, rgb(4 26 18 / .82) 0%, rgb(4 26 18 / .5) 55%, rgb(4 26 18 / .2) 100%);
  color: var(--off);
}
.fairway-veil .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.fairway-veil p { font-size: clamp(19px, 2.3vw, 26px); font-weight: 700; letter-spacing: -.03em; }

/* ── 컬렉션 배너 ────────────────────────────────────────────────── */
.cbanner {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-xl); overflow: clip;
}
.cbanner-copy { padding: 54px 48px; align-self: center; }
.cbanner-figure { min-height: 340px; }
.cbanner-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.chip {
  min-height: 44px; padding: 0 18px; border-radius: 999px; background: var(--paper);
  border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--charcoal);
  cursor: pointer; font-family: var(--sans);
}
.chip:hover { border-color: var(--green); }
.chip[aria-pressed="true"] { background: var(--green); color: var(--off); border-color: var(--green); }

/* ── 검색 ───────────────────────────────────────────────────────── */
.search { position: relative; max-width: 420px; }
.search-row { display: flex; gap: 8px; }
.search input {
  flex: 1; min-height: 46px; padding: 0 14px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--paper); font: inherit; font-size: 15px; color: var(--ink);
}
.search-out { margin-top: 12px; font-size: 14px; color: var(--muted); }
.search-out ul { display: grid; gap: 6px; margin-top: 8px; }
.search-out a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--line); }

/* ── 상품 격자 ──────────────────────────────────────────────────── */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }
.pcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: clip; display: flex; flex-direction: column; text-align: left; padding: 0;
  font: inherit; color: inherit; cursor: pointer;
}
.pcard:hover { border-color: var(--gold); }
.pcard[aria-pressed="true"] { border-color: var(--green); box-shadow: var(--shadow-sm); }
.pcard-media { position: relative; background: #f2f0ea; height: 250px; display: grid; place-items: center; }
.pcard-media img { width: auto; height: 100%; max-height: 250px; object-fit: contain; display: block; }
.pcard-body { padding: 18px 18px 22px; display: grid; gap: 6px; }
.pcard-name { font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.pcard-opt { font-size: 13px; color: var(--muted); }
.pcard-price { font-size: 15.5px; font-weight: 700; margin-top: 4px; font-variant-numeric: tabular-nums; }

.badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0;
}
.badge-new { background: rgb(7 39 27 / .08); color: var(--green); }
.badge-out { background: rgb(164 57 47 / .1); color: var(--err); }
.badge-restock { background: rgb(154 106 21 / .12); color: var(--warn); }
.pcard-media .badge { position: absolute; top: 12px; left: 12px; }

.empty-state {
  border: 1px dashed var(--line); border-radius: var(--radius-lg); background: var(--paper);
  padding: 46px 28px; text-align: center; margin-top: 34px;
}
.empty-state b { display: block; font-size: 16px; margin-bottom: 8px; }
.empty-state .ico-lg { color: var(--gold-d); margin-bottom: 12px; }
.empty-state .note { max-width: 44ch; margin-inline: auto; }
.empty-state .btn { margin-top: 20px; }

/* ── 상품 상세(master–detail) ───────────────────────────────────── */
.pdp {
  display: grid; grid-template-columns: minmax(0, 360px) 1fr; gap: 48px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 40px; align-items: start;
}
.pdp-media { border-radius: var(--radius-lg); overflow: clip; background: #f2f0ea; view-transition-name: ph-pdp-shot; align-self: start; }
.pdp-media img { width: 100%; height: 420px; object-fit: contain; display: block; }
.pdp-price { font-size: 24px; font-weight: 700; margin-top: 10px; font-variant-numeric: tabular-nums; }
.opt-label { font-size: 13px; font-weight: 700; color: var(--charcoal); margin: 24px 0 10px; display: block; }

.swatches { display: flex; gap: 6px; }
.swatch {
  width: 44px; height: 44px; border: 0; background: none; cursor: pointer; padding: 0;
  display: grid; place-items: center; border-radius: 999px;
}
.swatch::after {
  content: ""; width: 26px; height: 26px; border-radius: 999px;
  background: var(--sw); box-shadow: inset 0 0 0 1px rgb(25 25 23 / .18);
}
.swatch[aria-pressed="true"] { box-shadow: inset 0 0 0 1px var(--green); }

.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  min-width: 56px; min-height: 44px; padding: 0 10px; border: 1px solid var(--line);
  background: var(--paper); border-radius: var(--radius); font: inherit; font-size: 14px;
  font-weight: 600; cursor: pointer; color: var(--ink);
}
.size-btn[aria-pressed="true"] { border-color: var(--green); background: var(--green); color: var(--off); }
.size-btn[aria-disabled="true"] { color: #b9b6ae; border-style: dashed; cursor: not-allowed; text-decoration: line-through; }

.pdp-buy { display: flex; gap: 10px; margin-top: 28px; }
.pdp-buy .btn-gold { flex: 1; }
.icon-square {
  width: 46px; min-height: 46px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); display: grid; place-items: center; cursor: pointer; color: var(--charcoal);
}
.icon-square[aria-pressed="true"] { color: var(--err); border-color: var(--err); }

.pdp-facts { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 20px; display: grid; gap: 10px; }
.pdp-facts div { display: flex; gap: 14px; font-size: 13.5px; }
.pdp-facts b { flex: none; width: 84px; color: var(--charcoal); font-weight: 700; }
.pdp-facts span { color: var(--muted); }

.tagline { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tagline li {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
  border: 1px solid var(--line); border-radius: 999px; font-size: 12.5px; color: var(--charcoal);
}
.tagline .ico { width: 15px; height: 15px; color: var(--gold-d); }

/* 모바일 구매 Dock — 상세 상자 안에서만 붙는다(다른 구획을 덮지 않는다).
   상세 안에서 **맨 뒤로 보내** 위쪽 옵션 단추를 가리지 않게 한다. */
@media (max-width: 767px) {
  .pdp-info { display: flex; flex-direction: column; }
  .buy-dock {
    order: 9; margin-top: 22px;
    position: sticky; bottom: 0; background: var(--paper);
    border-top: 1px solid var(--line); padding: 12px 0 4px; z-index: 5;
  }
}

/* ── 룩 카드 ────────────────────────────────────────────────────── */
.looks { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; gap: 26px; margin-top: 36px; }
.look {
  position: relative; border-radius: var(--radius-lg); overflow: clip;
  background: #eceae4; display: block; text-decoration: none; color: var(--off);
}
.look img { width: 100%; height: 470px; object-fit: cover; object-position: 50% 22%; display: block; }
.look-cap {
  position: absolute; inset: auto 0 0 0; padding: 26px 26px 24px;
  background: linear-gradient(180deg, transparent, rgb(4 26 18 / .82));
}
.look-cap b { display: block; font-size: 19px; letter-spacing: -.03em; }
.look-cap span { font-size: 13.5px; color: rgb(249 248 245 / .8); }

/* ── 스코어 스트립(스크롤 상태) ─────────────────────────────────── */
.scorestrip {
  position: sticky; top: 86px; z-index: 30;
  background: rgb(249 248 245 / .94); backdrop-filter: blur(6px);
  border-block: 1px solid var(--line);
}
.scorestrip-inner { display: flex; align-items: center; gap: 18px; min-height: 56px; }
.ss-label { font-family: var(--serif); font-size: 12px; letter-spacing: .22em; color: var(--gold-d); flex: none; }
.ss-list { display: flex; gap: 4px; overflow-x: auto; }
.ss-list a {
  display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  text-decoration: none; font-size: 13.5px; font-weight: 600; color: var(--muted); white-space: nowrap;
}
.ss-list a[aria-current="true"] { background: var(--green); color: var(--off); }
.ss-list .ss-now { display: none; font-size: 11px; letter-spacing: .04em; }
.ss-list a[aria-current="true"] .ss-now { display: inline; }
.ss-bar { flex: 1; height: 2px; background: var(--line); position: relative; min-width: 40px; }
.ss-bar i { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--gold); display: block; }

/* ── 계절 × 티오프 선택기 ───────────────────────────────────────── */
.picker { display: grid; gap: 18px; }
.picker-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.picker-row > b { flex: none; width: 96px; font-size: 13px; color: var(--charcoal); }
.combo {
  background: var(--green); color: var(--off); border-radius: var(--radius-lg);
  padding: 32px 34px; margin-top: 26px;
}
.combo h3 { font-size: 21px; margin-bottom: 14px; }
.combo-body { font-size: 15px; color: var(--ink-on-green); line-height: 1.85; }
.combo-body b { color: var(--gold-l); font-weight: 700; }

.tbl { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 660px; }
.tbl caption { text-align: left; font-size: 13.5px; color: var(--muted); padding-bottom: 12px; }
.tbl th, .tbl td { border: 1px solid var(--line); padding: 14px 16px; text-align: left; vertical-align: top; }
.tbl thead th { background: rgb(7 39 27 / .05); font-size: 13px; font-weight: 700; color: var(--green); }
.tbl tbody th { background: var(--paper); font-weight: 700; width: 108px; white-space: nowrap; }
.tbl td { background: var(--paper); color: var(--charcoal); line-height: 1.7; }
.tbl td b { color: var(--ink); }
.tbl-wrap { margin-top: 26px; }

/* ── 코디 세트 ──────────────────────────────────────────────────── */
.set { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: center; }
.set + .set { margin-top: 74px; }
.set-rev { grid-template-columns: 1.2fr .8fr; }
.set-rev .set-figure { order: 2; }
.set-figure img { width: 100%; height: 460px; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.set-items { display: grid; gap: 10px; margin: 22px 0 8px; }
.set-items li { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px;
                border-bottom: 1px dashed var(--line); padding-bottom: 10px; }
.set-items span { color: var(--muted); font-variant-numeric: tabular-nums; }
.set-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 6px; }
.set-total b { font-size: 21px; font-variant-numeric: tabular-nums; }

/* ── 핏 가이드 ──────────────────────────────────────────────────── */
.fit-calc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 40px;
}
.seg { display: flex; flex-wrap: wrap; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.seg button {
  min-height: 46px; padding: 0 18px; background: none; border: 0; cursor: pointer;
  font: inherit; font-size: 14.5px; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.seg button[aria-pressed="true"] { color: var(--green); border-bottom-color: var(--green); font-weight: 700; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; }
.control {
  width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--paper); font: inherit; font-size: 15px; color: var(--ink);
}
textarea.control { padding: 12px 14px; min-height: 120px; line-height: 1.7; resize: vertical; }
.field .err, .agree .err { display: none; font-size: 12.5px; color: var(--err); margin-top: 6px; }
.field.invalid .control { border-color: var(--err); }
.field.invalid .err, .agree.invalid .err { display: block; }
.counter { font-size: 12px; color: var(--muted); text-align: right; margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.agree { position: relative; margin: 18px 0 22px; }
.agree label { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--charcoal); cursor: pointer; }
.agree .box {
  flex: none; width: 20px; height: 20px; margin-top: 2px; border: 1px solid var(--line);
  border-radius: 3px; background: var(--paper); display: grid; place-items: center;
}
.agree input:checked + label .box { background: var(--green); border-color: var(--green); }
.agree input:checked + label .box::after {
  content: ""; width: 10px; height: 6px; border-left: 2px solid var(--off);
  border-bottom: 2px solid var(--off); rotate: -45deg; margin-top: -2px;
}

.fit-result { background: var(--off); border-radius: var(--radius-lg); padding: 30px; display: grid; gap: 6px; }
.fit-size { font-size: 54px; font-weight: 700; line-height: 1.05; letter-spacing: -.05em; }
.fit-size span { font-size: 22px; font-weight: 500; color: var(--muted); }
.fit-figure { display: flex; gap: 22px; align-items: center; margin: 14px 0 4px; }
.fit-figure svg { width: 112px; height: auto; color: var(--charcoal); flex: none; }
.fit-measure { display: grid; gap: 8px; font-size: 13.5px; }
.fit-measure b { color: var(--gold-d); }

.fits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.fits li {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  display: grid; grid-template-areas: "ttl" "fig" "txt"; justify-items: center;
}
.fits b { grid-area: ttl; display: block; font-size: 16.5px; }
.fits .fit-fig { grid-area: fig; display: block; margin: 16px 0 18px; }
.fits .fit-txt { grid-area: txt; display: block; }
.fits svg { width: 84px; height: auto; color: #b6b3aa; display: block; }
.fits .fit-desc { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.fits .ease { display: block; font-size: 12.5px; color: var(--gold-d); font-weight: 700; margin-top: 10px; }

/* ── 탭 ─────────────────────────────────────────────────────────── */
.tablist { display: flex; flex-wrap: wrap; gap: 4px; border-bottom: 1px solid var(--line); }
.tab {
  min-height: 46px; padding: 0 20px; background: none; border: 0; cursor: pointer;
  font: inherit; font-size: 14.5px; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tab[aria-selected="true"] { color: var(--green); font-weight: 700; border-bottom-color: var(--green); }
[role="tabpanel"] { padding-top: 26px; }

/* ── 아코디언 ───────────────────────────────────────────────────── */
.acc { border-top: 1px solid var(--line); margin-top: 34px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; min-height: 62px; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; background: none; border: 0; cursor: pointer; font: inherit;
  font-size: 15.5px; font-weight: 600; color: var(--ink); text-align: left; padding: 14px 2px;
}
.acc-trigger .ico { color: var(--gold-d); transition: rotate .2s ease; }
.acc-item.open .acc-trigger .ico { rotate: 180deg; }
.acc-panel { padding: 0 2px 22px; font-size: 14.5px; color: var(--muted); line-height: 1.85; max-width: 76ch; }

/* ── 장바구니 ───────────────────────────────────────────────────── */
.cart-grid { display: grid; grid-template-columns: 1.5fr .85fr; gap: 40px; align-items: start; }
.cart-list { border-top: 1px solid var(--line); }
.cart-row {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 20px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.cart-thumb { background: #f2f0ea; border-radius: var(--radius); display: grid; place-items: center; height: 110px; }
.cart-thumb img { max-height: 100px; width: auto; display: block; }
.cart-name { font-size: 15.5px; font-weight: 700; }
.cart-opt { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cart-price { font-size: 15px; font-weight: 700; margin-top: 8px; font-variant-numeric: tabular-nums; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); margin-top: 12px; }
.qty button {
  width: 44px; height: 44px; background: none; border: 0; cursor: pointer; color: var(--charcoal);
  display: grid; place-items: center;
}
.qty output { min-width: 40px; text-align: center; font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; }
.cart-del { background: none; border: 0; color: var(--muted); cursor: pointer; font: inherit; font-size: 13px;
            min-height: 44px; padding: 0 6px; text-decoration: underline; }

.summary {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; position: sticky; top: 96px;
}
.summary dl { display: grid; gap: 12px; margin: 20px 0 0; }
.summary dl div { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--charcoal); }
.summary dd { margin: 0; font-variant-numeric: tabular-nums; font-weight: 600; }
.summary .total { border-top: 1px solid var(--line); margin-top: 18px; padding-top: 18px; }
.summary .total dt { font-size: 16px; font-weight: 700; color: var(--ink); }
.summary .total dd { font-size: 24px; font-weight: 700; }

/* ── 주문 절차 ──────────────────────────────────────────────────── */
.stepper { display: flex; gap: 8px; border-bottom: 1px solid var(--line); }
.step-tab {
  flex: 1; min-height: 56px; background: none; border: 0; cursor: pointer; font: inherit;
  font-size: 14.5px; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent;
  margin-bottom: -1px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.step-tab[aria-current="step"] { color: var(--green); font-weight: 700; border-bottom-color: var(--gold); }
.step-tab .ico { width: 16px; height: 16px; }
.step-panel { padding-top: 30px; }
.box-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); padding: 24px 26px; }
.box-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.box-head b { font-size: 15px; }
.addr { font-size: 14.5px; color: var(--charcoal); line-height: 1.85; }
.pays { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: clip; margin-top: 12px; }
.pay { display: flex; align-items: center; gap: 12px; padding: 16px 20px; min-height: 60px;
       border-bottom: 1px solid var(--line); cursor: pointer; font-size: 14.5px; }
.pay:last-child { border-bottom: 0; }
.pay input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pay .dot { width: 20px; height: 20px; border: 1px solid #c6c3ba; border-radius: 999px; display: grid; place-items: center; flex: none; }
.pay input:checked ~ .dot { border-color: var(--green); }
.pay input:checked ~ .dot::after { content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--green); }
.pay input:focus-visible ~ .dot { outline: 2px solid var(--green); outline-offset: 2px; }
.pay-note { margin-left: auto; font-size: 12.5px; color: var(--muted); }

.done-card { text-align: center; padding: 44px 26px; }
.done-card .ico-lg { color: var(--ok); }
.done-num { font-family: var(--serif); font-size: 27px; letter-spacing: .06em; margin: 12px 0 6px; }

.track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 30px; }
.track li { border-top: 2px solid var(--line); padding-top: 12px; font-size: 13px; color: var(--muted); }
.track li.on { border-top-color: var(--gold); color: var(--ink); font-weight: 700; }
.track .mark { display: inline-flex; align-items: center; gap: 5px; }
.track .ico { width: 14px; height: 14px; }

/* ── 단체주문 ───────────────────────────────────────────────────── */
.team { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: start; }
.team-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 34px; }
.team-points { display: grid; gap: 16px; margin-top: 26px; }
.team-points li { display: flex; gap: 12px; font-size: 14.5px; color: var(--charcoal); line-height: 1.75; }
.team-points .ico { color: var(--gold-d); margin-top: 4px; }

/* ── 상태 범례 ──────────────────────────────────────────────────── */
.states { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.states li {
  display: flex; gap: 10px; align-items: flex-start; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px 20px; font-size: 13.5px;
}
.states .ico { flex: none; margin-top: 3px; }
.states b { display: block; font-size: 14px; }
.states span { color: var(--muted); }
.s-ok { color: var(--ok); }
.s-warn { color: var(--warn); }
.s-err { color: var(--err); }

/* `.js .js-only { display: revert }` 는 특정도가 높아 골격 클래스의 display 를 덮는다
   (스테퍼가 세로로 무너졌다). 같은 특정도로 뒤에서 되돌린다 — 키트 규칙은 그대로 둔다. */
.js .chips { display: flex; }
.js .picker { display: grid; }
.js .stepper { display: flex; }
.js .search { display: block; }

/* 반대쪽 구멍도 같은 이유로 생긴다 — `.js-only{display:none}` 은 시트 앞쪽에 있어
   뒤에 오는 골격 클래스의 display 에 진다. JS 가 없을 때는 반드시 감춰야 하므로
   특정도를 한 단계 올려 못 박는다. */
html:not(.js) .js-only { display: none; }

/* ── 토스트 모양 ────────────────────────────────────────────────── */
.toast {
  background: var(--green); color: var(--off); padding: 13px 22px;
  border-radius: 999px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow);
  max-width: min(92vw, 520px); text-align: center;
}

/* ── 바닥글 ─────────────────────────────────────────────────────── */
.site-footer { background: var(--green); color: var(--off); margin-top: 96px; }
.footer-inner { padding: 66px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 46px; }
.footer-brand { font-size: 21px; font-weight: 700; letter-spacing: -.03em; }
.footer-tag { margin-top: 14px; font-size: 14px; color: var(--ink-on-green); line-height: 1.8; max-width: 34ch; }
.footer-col h3 { font-family: var(--serif); font-size: 12px; letter-spacing: .24em; color: var(--gold-l); margin-bottom: 18px; }
.footer-nav { display: grid; gap: 11px; }
.footer-nav a { font-size: 14px; text-decoration: none; color: var(--ink-on-green); }
.footer-nav a:hover, .footer-nav a[aria-current="page"] { color: var(--off); }
.footer-info { display: grid; gap: 11px; font-size: 14px; color: var(--ink-on-green); }
.footer-info a { text-decoration: none; }
.footer-biz {
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line-green);
  font-style: normal; font-size: 12.5px; color: rgb(249 248 245 / .55); line-height: 1.9;
}
.footer-legal { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 16px; font-size: 12.5px; }
.footer-legal a { color: rgb(249 248 245 / .7); }
.footer-copy { margin-top: 12px; font-size: 12.5px; color: rgb(249 248 245 / .45); }

/* ══════════════════════════════════════════════════════════════════
   반응형 — 320·390·768·1024·1440 에서 본다.
   모바일은 PC 축소판이 아니라 「1과업 1화면」으로 다시 짠다(프롬프트 §반응형).
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .hero-rail { display: none; }
  .nav { gap: 20px; }
  .header-inner { gap: 16px; padding: 0 18px; }
}

@media (max-width: 1023px) {
  :root { --section: 82px; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; padding: 54px 34px 46px; }
  .hero-figure { justify-self: stretch; max-width: none; }
  .hero-figure img { height: 400px; object-fit: cover; }
  .hero-figure::after { inset: 10px -8px -8px 10px; }
  .hero-badges { padding: 24px 34px 26px; gap: 18px; }
  .split, .split-rev, .team, .cart-grid, .fit-calc, .pdp, .set, .set-rev { grid-template-columns: 1fr; gap: 32px; }
  .set-rev .set-figure { order: 0; }
  .cbanner { grid-template-columns: 1fr; }
  .cbanner-copy { padding: 38px 30px; }
  .cbanner-figure { min-height: 300px; order: -1; }
  .products { grid-template-columns: repeat(3, 1fr); }
  .structure { grid-template-columns: 1fr; gap: 26px; }
  .structure li { border-left: 0; border-top: 1px solid var(--line-green); padding: 22px 0 0; }
  .structure li:first-child { border-top: 0; padding-top: 0; }
  .summary { position: static; }
  .set-figure img { height: 380px; }
  .look img { height: 340px; }
  .pdp-media img { height: 360px; }
}

@media (max-width: 767px) {
  :root { --section: 64px; --radius-xl: 14px; }
  body { font-size: 15.5px; }
  .wrap { width: min(100% - 32px, var(--wrap)); }

  /* 손끝으로 누르는 화면에서는 작은 단추를 남기지 않는다 — 검사기가 좌표로 잰다 */
  button, .btn, .btn-sm { min-height: 44px; }

  /* 좁은 폭에서는 길잡이를 서랍으로 넘긴다 — 분기는 반드시 767px(§4-C 15) */
  .nav, .header-cta .cta-text { display: none; }
  .header-tools .icon-btn.opt { display: none; }
  .brand { margin-right: auto; font-size: 17.5px; }
  .header-inner { min-height: 60px; padding: 0 12px 0 16px; }

  .hero { width: min(100% - 24px, 1340px); margin-top: 10px; }
  .hero-inner { padding: 40px 22px 34px; gap: 26px; }
  .hero-figure img { height: 330px; }
  .hero-figure::after { display: none; }
  .hero-cta { gap: 8px; }
  .hero-cta .btn { flex: 1; padding: 0 12px; }
  .hero-badges { grid-template-columns: 1fr; padding: 20px 22px 22px; gap: 14px; }
  .hero-badges li { gap: 12px; }

  .split, .split-rev { gap: 26px; }
  .fairway img { height: 190px; }
  .fairway-veil { background: linear-gradient(180deg, rgb(4 26 18 / .3), rgb(4 26 18 / .85)); }
  .fairway-veil .wrap { flex-direction: column; align-items: flex-start; gap: 14px; }

  .products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pcard-media { height: 190px; }
  .pcard-media img { max-height: 190px; }
  .pcard-body { padding: 14px 14px 18px; }
  .pcard-name { font-size: 14px; }

  .pdp { padding: 22px 18px 18px; gap: 24px; }
  .pdp-media img { height: 300px; }
  .looks { grid-template-columns: 1fr; gap: 16px; }
  .look img { height: 300px; }

  .mat-grid { grid-template-columns: 1fr; gap: 12px; }
  .fits { grid-template-columns: 1fr; gap: 12px; }
  .fits li {
    grid-template-columns: 74px 1fr; grid-template-areas: "fig ttl" "fig txt";
    gap: 4px 18px; text-align: left; justify-items: start; align-items: center; padding: 20px;
  }
  .fits .fit-fig { margin: 0; align-self: center; }
  .fits svg { width: 74px; }

  .fit-calc { padding: 24px 18px; gap: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .fit-result { padding: 22px; }
  .fit-size { font-size: 44px; }

  .scorestrip { top: 74px; }
  .scorestrip-inner { min-height: 52px; gap: 10px; }
  .ss-bar { display: none; }
  .ss-label { display: none; }

  .picker-row > b { width: 100%; }
  .combo { padding: 24px 20px; }

  .set-figure img { height: 300px; }
  .set + .set { margin-top: 44px; }

  .cart-row { grid-template-columns: 78px 1fr; gap: 14px; }
  .cart-thumb { height: 92px; }
  .cart-actions { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; }
  .stepper { gap: 0; }
  .step-tab { font-size: 13px; padding: 0 4px; }
  .step-tab .ico { display: none; }
  .track { grid-template-columns: 1fr 1fr; }
  .states { grid-template-columns: 1fr; }
  .team-form { padding: 22px 18px; }
  .box-card { padding: 20px 18px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .site-footer { margin-top: 64px; }
  .footer-inner { padding: 46px 0 34px; }
  .toast { bottom: 16px; font-size: 13.5px; padding: 12px 18px; }
}

@media (max-width: 359px) {
  .products { grid-template-columns: 1fr; }
  .pcard-media { height: 240px; }
  .pcard-media img { max-height: 240px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
