/* ════════════════════════════════════════════════════
   Olivarrier · Wash All Barrier Relief · v6
   CBC v26 디자인 시스템 이식 — 값 동일, 색 변수만 교체
   ════════════════════════════════════════════════════ */

.olv-wash {
  /* 라이트 페이퍼 팔레트 — CBC light 토큰 그대로, 액센트만 틸 */
  --bg:            #F0F0EE;
  --surface:       rgba(255,255,255,0.70);
  --border-sub:    #E5E5E0;
  --border-emph:   #D0D0CB;

  --text-1: #0A0A0A;
  --text-2: #5C5C58;
  --text-3: #9A9A95;
  --text-4: #B5B5B0;

  --accent:      #0F7A68;   /* 워시올 틸 (CBC 올리브 자리) */
  --accent-soft: rgba(15,122,104,.12);

  --card-grain: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27150%27%20height%3D%27150%27%3E%3Cfilter%20id%3D%27g%27%3E%3CfeTurbulence%20type%3D%27fractalNoise%27%20baseFrequency%3D%270.72%27%20numOctaves%3D%272%27%20stitchTiles%3D%27stitch%27%2F%3E%3CfeColorMatrix%20type%3D%27saturate%27%20values%3D%270%27%2F%3E%3CfeComponentTransfer%3E%3CfeFuncA%20type%3D%27linear%27%20slope%3D%270.22%27%2F%3E%3C%2FfeComponentTransfer%3E%3C%2Ffilter%3E%3Crect%20width%3D%27100%25%27%20height%3D%27100%25%27%20filter%3D%27url%28%23g%29%27%2F%3E%3C%2Fsvg%3E");

  --font-hero: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Monaco, 'Courier New', monospace;

  --ease:       cubic-bezier(.16, 1, .3, 1);
  --ease-quick: cubic-bezier(.4, 0, .2, 1);
  --dur-fast: 200ms;
  --dur:      350ms;
  --dur-slow: 500ms;
}

html, body { margin: 0; padding: 0; }
.olv-wash * { margin: 0; padding: 0; box-sizing: border-box; }
.olv-wash {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 16px; /* pin inheritance root — 아임웹 host root(14px) 종속 차단 */
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
  line-height: 1.5;
  overflow-x: hidden;
  letter-spacing: -0.005em;
  word-break: keep-all;
}

.olv-wash ::selection { background: rgba(15,122,104,.20); color: inherit; }
.olv-wash :focus { outline: none; }
.olv-wash :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.olv-wash .tabular, .olv-wash .data-num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
  letter-spacing: -0.01em;
}

/* ─── 섹션 골격 — CBC 동일 ─── */
.olv-wash .sec { padding: 96px 24px; position: relative; }

/* ── 용기 + 텍스처 = 한 줄 2단(웹, 공유 서브그리드로 밴드 정렬) / 상하 스택(모바일) ──
   두 칼럼은 같은 6밴드 구조(아이브로·제목·부제·이미지·캡션·하단). 서브그리드로 각 밴드가
   좌우 공유 행에 들어가, 한쪽이 1줄·다른쪽이 2줄이어도 다음 밴드가 같은 높이에서 시작한다. */
.olv-wash .pair-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;   /* 카드 높이는 각자 내용만큼 · 상단 정렬 (높이 강제 통일 안 함) */
  column-gap: 12px;   /* 리뷰 카드(rev-grid)와 동일 간격 */
  max-width: 936px;   /* = 콘텐츠 폭 840 + 좌우 48 패딩 → 내부 840, pH 카드 등 일반 섹션과 동일 폭 */
  margin: 0 auto;
  padding: 96px 48px;
}
/* 각 칼럼 = 리뷰 카드와 동일 룩(그레인·테두리·라운드). 내용만큼만 차지 → 내부는 자연 흐름 정렬 */
.olv-wash .pair-row > .sec {
  min-width: 0; position: static;
  background: var(--card-grain), var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 18px;
  padding: clamp(28px, 2.6vw, 38px) clamp(24px, 2.4vw, 32px);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.olv-wash .pair-row > .sec:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,11,13,0.10), 0 2px 4px rgba(10,11,13,0.05);
  border-color: var(--border-emph);
}
.olv-wash .pair-row > .sec > .sec-inner { max-width: none; }
/* 제목만 2줄 높이 예약(line-height 1.3×2=2.6em) → 위쪽 밴드(부제·이미지·캡션) 좌우 정렬.
   하단(부품표/사용법)은 그대로 각 카드 내용 높이. */
.olv-wash .pair-row h2 { margin-bottom: 16px; min-height: 2.6em; }
.olv-wash .pair-row .sec-inner > .body { margin-top: 16px; min-height: 3.6em; }   /* 제목→부제 간격 압축 + 부제 2줄 높이 예약 → 문구 길이·언어 무관 이미지 자동 정렬 */
/* 이미지 · 중앙 · 양쪽 동일 크기·정사각 · 컴팩트 상단 마진 */
.olv-wash .pair-row .wf-stage, .olv-wash .pair-row .gtf-round { max-width: 52%; margin-left: auto; margin-right: auto; margin-top: clamp(20px, 2.4vh, 32px); }
.olv-wash .pair-row .gtf-round { aspect-ratio: 1 / 1; }
/* 텍스처 이미지: 흰 배경을 카드에 녹이고(multiply) 사각 경계를 원형으로 페더 → 네모 자국 제거 */
.olv-wash .pair-row .gtf-round img {
  width: 100%; height: 100%; object-fit: contain;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(circle closest-side, #000 58%, transparent 92%);
          mask-image: radial-gradient(circle closest-side, #000 58%, transparent 92%);
}
/* 하단 밴드(부품표 / 사용법) — 캡션에서 같은 간격 */
.olv-wash .pair-row .ing-table, .olv-wash .pair-row .pair-foot { margin-top: clamp(22px, 3vh, 34px); }
.olv-wash .pair-row .pair-foot .body + .body { margin-top: 18px; }
/* 부품표: 좁은 칼럼용 세로 스택 */
.olv-wash .pair-row .ing-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
@media (max-width: 768px) {
  /* Package·Texture = 같은 급 정보 → 좌우 스와이프 캐러셀(더마테스트는 아래 단독 유지).
     세로 스택 대비 높이 절반 · 반복 리듬 제거. 순수 CSS scroll-snap(무 JS). */
  .olv-wash .pair-row {
    display: flex; flex-wrap: nowrap; gap: 12px; align-items: stretch;   /* 두 카드 동일 높이 */
    padding: 0 20px; max-width: none;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding: 0 20px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .olv-wash .pair-row::-webkit-scrollbar { display: none; }
  .olv-wash .pair-row > .sec {
    display: block; position: relative;
    flex: 0 0 91%; scroll-snap-align: center;   /* 다음 카드 가장자리 살짝 노출 = 스와이프 힌트 */
    padding: 36px 26px; margin-bottom: 0;
  }
  .olv-wash .pair-row > .sec > .sec-inner { display: block; }
  .olv-wash .pair-row h2 { min-height: 0; }   /* 모바일: 예약 불필요 */
  .olv-wash .pair-row .wf-stage, .olv-wash .pair-row .gtf-round { max-width: min(300px, 66%); margin-top: 24px; }
  .olv-wash .pair-row .sec-inner > .body { margin-top: 14px; min-height: 0; }
  .olv-wash .pair-row .ing-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  /* 스와이프 힌트 — 첫 카드 우측에 셰브론 하나(넘기면 함께 밀려나 자연 소멸).
     글리프 대신 SVG로 그려 원 정중앙 + 큼직하게(글자 여백 편심 제거). */
  .olv-wash .pair-row > .sec:first-child::after {
    content: ""; position: absolute; z-index: 2; pointer-events: none;
    top: 50%; right: 4px; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%;
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230F7A68%27%20stroke-width%3D%272.5%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%279%205%2016%2012%209%2019%27%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat; background-position: 52% center; background-size: 20px 20px;
    border: 1px solid var(--border-sub);
    box-shadow: 0 2px 10px rgba(10,11,13,0.12);
  }
}
/* ── 사진 카드 · The Problem 섹션 상단 (사진비율 정본 2400/1350 · 간격 정본 토큰) ── */
.olv-wash .photo-card {
  display: block; margin: 0 auto 48px;   /* 이미지→아이브로 간격 = 기존 .sec-image 기준값 48px */
  max-width: 840px; aspect-ratio: 2400 / 1350;
  border-radius: 18px; overflow: hidden;
}
.olv-wash .photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 768px) {
  .olv-wash .photo-card { margin-bottom: 80px; }   /* 데스크톱도 .sec-image 기준값과 동일 */
}

/* ── Every Ingredient · 사진 카드 좌(절반) / 텍스트 우 + 전성분 토글은 전체 폭 ── */
.olv-wash .ing-split { max-width: 936px; margin: 0 auto; }
.olv-wash .ing-split-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vh, 84px); align-items: center; }
.olv-wash .ing-split-img {
  display: block; margin: 0; aspect-ratio: 1600 / 2013;   /* 세로 사진 정본 비율 */
  border-radius: 18px; overflow: hidden;
}
.olv-wash .ing-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.olv-wash .ing-split .ing-details { margin-top: clamp(40px, 7vh, 84px); }
@media (max-width: 768px) {
  .olv-wash .ing-split-row { grid-template-columns: 1fr; gap: clamp(40px, 7vh, 84px); }
}

.olv-wash .sec-problem { background: var(--bg); }   /* 클레이 밴드 → 기본 지면색 통일 (SJ 2026-07-19) */
.olv-wash .sec-inner { max-width: 720px; margin: 0 auto; }
@media (min-width: 768px) {
  .olv-wash .sec       { padding: 140px 48px; }
  .olv-wash .sec-inner { max-width: 840px; }
}

/* ─── Eyebrow — CBC 문법 (24px 대시) ─── */
.olv-wash .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.olv-wash .eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ─── 타입스케일 — CBC 동일 (그라디언트만 라이트 잉크) ─── */
.olv-wash h1 {
  font-family: var(--font-hero);
  font-weight: 500;
  font-size: 51px;
  letter-spacing: -.035em;
  line-height: 1.04;
  background: linear-gradient(180deg, #0A0A0A 0%, #5C5C58 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .olv-wash h1 { font-size: 90px; margin-bottom: 40px; }
}
.olv-wash .h2-kr {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 31px;
  letter-spacing: -.022em;
  line-height: 1.3;
  color: var(--text-1);
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .olv-wash .h2-kr { font-size: 38px; }
}
.olv-wash h2 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 31px;
  letter-spacing: -.022em;
  line-height: 1.3;
  color: var(--text-1);
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .olv-wash h2 { font-size: 38px; }
}
.olv-wash h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -.005em;
  line-height: 1.3;
  color: var(--text-1);
  margin-bottom: 12px;
}
.olv-wash .lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 20px;
  max-width: 600px;
}
.olv-wash .body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 640px;
}
.olv-wash .body + .body { margin-top: 18px; }
.olv-wash .body strong { color: var(--text-1); font-weight: 500; }
@media (max-width: 600px) {
  .olv-wash .lead { font-size: 18px; line-height: 1.7; }
  .olv-wash .body { font-size: 17px; line-height: 1.8; }
  .olv-wash .atg-v { font-size: 17px; }
  .olv-wash .atg-sub { font-size: 14px; }
  .olv-wash .ing-intro { font-size: 17px; }
  .olv-wash .ing-role { font-size: 16px; }
  .olv-wash .step-body { font-size: 15px; }
}

/* ─── HERO — CBC 문법 ─── */
.olv-wash .hero { padding-top: 120px; padding-bottom: 100px; }
@media (min-width: 768px) {
  .olv-wash .hero { padding-top: 180px; padding-bottom: 140px; }
}
.olv-wash .hero-en {
  font-family: var(--font-hero);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.olv-wash .hero-image {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -120px;
  margin-bottom: 48px;
  overflow: hidden;
}
.olv-wash .hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.olv-wash .sec-image {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -96px;
  margin-bottom: 48px;
  overflow: hidden;
}
.olv-wash .sec-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* 반응형 비율 예약 — 로드 전후 레이아웃 점프 방지 (desktop 2400×1350 / mobile 1600×2013) */
.olv-wash .hero-image img, .olv-wash .sec-image img { aspect-ratio: 2400 / 1350; }
@media (max-width: 768px) {
  .olv-wash .hero-image img, .olv-wash .sec-image img { aspect-ratio: 1600 / 2013; }
}
@media (min-width: 768px) {
  .olv-wash .hero-image { margin-top: -180px; margin-bottom: 80px; }
  .olv-wash .sec-image  { margin-top: -140px; margin-bottom: 80px; }
}

/* ═══ THE ESSENTIALS — CBC atg 모듈 완전 동일 (색만) ═══ */
.olv-wash .trust { padding: 64px 24px; }
@media (min-width: 768px) { .olv-wash .trust { padding: 88px 48px; } }
.olv-wash .atg-inner { max-width: 840px; margin: 0 auto; }
.olv-wash .atg-eyebrow {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 26px;
  display: flex; align-items: center; gap: 16px;
}
.olv-wash .atg-eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--border-sub); }
.olv-wash .atg-radio { position: absolute; width: 0; height: 0; opacity: 0; pointer-events: none; }
.olv-wash .atg-seg {
  position: relative; display: flex; width: 380px; max-width: 100%; padding: 4px;
  border: 1px solid var(--border-emph); border-radius: 100px; margin-bottom: 28px;
}
.olv-wash .atg-thumb {
  position: absolute; top: 4px; bottom: 4px; left: 4px; width: calc(50% - 4px);
  border-radius: 100px; background: #FFFFFF; border: 1px solid var(--border-emph);
  box-shadow: 0 3px 12px rgba(10,10,10,.10), inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .4s var(--ease); z-index: 0;
}
.olv-wash #atgtab-b:checked ~ .atg-seg .atg-thumb { transform: translateX(100%); }
.olv-wash .atg-tab {
  position: relative; z-index: 1; flex: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-2);
  padding: 11px 14px; border-radius: 100px;
  cursor: pointer; white-space: nowrap; user-select: none; -webkit-user-select: none;
  transition: color .3s var(--ease);
}
.olv-wash #atgtab-a:checked ~ .atg-seg .atg-tab[for="atgtab-a"],
.olv-wash #atgtab-b:checked ~ .atg-seg .atg-tab[for="atgtab-b"] { color: var(--text-1); }
.olv-wash #atgtab-a:checked ~ .atg-seg .atg-tab[for="atgtab-b"],
.olv-wash #atgtab-b:checked ~ .atg-seg .atg-tab[for="atgtab-a"] { color: var(--accent); }
.olv-wash .atg-seg::before {
  content: ""; position: absolute; top: 4px; bottom: 4px; width: calc(50% - 4px);
  border-radius: 100px; z-index: 0; pointer-events: none;
  box-shadow: inset 0 1px 5px rgba(10,10,10,.16), inset 0 0 0 1px rgba(15,122,104,.30);
  transition: left .4s var(--ease), right .4s var(--ease);
  animation: atgWell 2.6s ease-in-out infinite;
}
.olv-wash #atgtab-a:checked ~ .atg-seg::before { left: auto; right: 4px; }
.olv-wash #atgtab-b:checked ~ .atg-seg::before { left: 4px; right: auto; }
@keyframes atgWell {
  0%, 100% { box-shadow: inset 0 1px 5px rgba(10,10,10,.16), inset 0 0 0 1px rgba(15,122,104,.30); }
  50%      { box-shadow: inset 0 1px 5px rgba(10,10,10,.16), inset 0 0 0 1px rgba(15,122,104,.48), inset 0 0 11px rgba(15,122,104,.14); }
}
.olv-wash .atg-seg::after {
  content: ""; position: absolute; top: 50%; left: 50%; margin: -4.5px 0 0 -11px;
  width: 22px; height: 9px; pointer-events: none; z-index: 2;
  background: center/contain no-repeat;
}
.olv-wash #atgtab-a:checked ~ .atg-seg::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='9' viewBox='0 0 22 9'%3E%3Cg fill='none' stroke='%230F7A68' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 1.5 6 4.5 2 7.5' opacity='.4'/%3E%3Cpath d='M9 1.5 13 4.5 9 7.5' opacity='.7'/%3E%3Cpath d='M16 1.5 20 4.5 16 7.5'/%3E%3C/g%3E%3C/svg%3E");
  animation: atgFlowR 1.4s ease-in-out infinite;
}
.olv-wash #atgtab-b:checked ~ .atg-seg::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='9' viewBox='0 0 22 9'%3E%3Cg fill='none' stroke='%230F7A68' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 1.5 16 4.5 20 7.5' opacity='.4'/%3E%3Cpath d='M13 1.5 9 4.5 13 7.5' opacity='.7'/%3E%3Cpath d='M6 1.5 2 4.5 6 7.5'/%3E%3C/g%3E%3C/svg%3E");
  animation: atgFlowL 1.4s ease-in-out infinite;
}
.olv-wash .atg-panel { display: none; }
.olv-wash #atgtab-a:checked ~ .atg-panel[data-p="a"],
.olv-wash #atgtab-b:checked ~ .atg-panel[data-p="b"] { display: block; animation: atgFade .4s var(--ease); }
@keyframes atgFade { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
@keyframes atgFlowR { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(3px); } }
@keyframes atgFlowL { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-3px); } }
@media (max-width: 600px) {
  .olv-wash .atg-seg { width: 100%; }
  .olv-wash .atg-tab { padding: 14px 10px; font-size: 10px; letter-spacing: .1em; }
}
.olv-wash .atg-seg.atg-demo .atg-thumb { animation: atgPeek 1.15s cubic-bezier(.5,0,.3,1) .25s 2; }
@keyframes atgPeek { 0%, 100% { transform: translateX(0); } 45% { transform: translateX(26px); } }
.olv-wash .atg-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-emph); border-radius: 14px; overflow: hidden;
}
.olv-wash .atg-cell { background: var(--card-grain), var(--surface); padding: 26px clamp(20px, 2.2vw, 30px); border-top: 1px solid var(--border-sub); }
@media (min-width: 601px) {
  .olv-wash .atg-cell:nth-child(1), .olv-wash .atg-cell:nth-child(2) { border-top: none; }
  .olv-wash .atg-cell:nth-child(odd) { border-right: 1px solid var(--border-sub); }
}
@media (max-width: 600px) {
  .olv-wash .atg-grid { grid-template-columns: 1fr; }
  .olv-wash .atg-cell:nth-child(1) { border-top: none; }
}
.olv-wash .atg-k {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 10px;
}
.olv-wash .atg-v {
  display: block;
  font-family: var(--font-body); font-size: 17px; font-weight: 500;
  line-height: 1.4; letter-spacing: -.01em; color: var(--text-1);
}
.olv-wash .atg-sub {
  display: block;
  font-family: var(--font-body); font-size: 12px; font-weight: 400;
  line-height: 1.5; color: var(--text-3); margin-top: 6px;
}

/* ─── 필라 번호 — CBC step-num 문법 ─── */
.olv-wash .pillar { margin-top: 72px; }
@media (min-width: 768px) { .olv-wash .pillar { margin-top: 96px; } }
.olv-wash .pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 14px;
}
.olv-wash .pillar h2 { margin-bottom: 20px; }
.olv-wash .pillar .lead { font-weight: 500; color: var(--text-1); }

/* ─── DATA CARD — CBC 문법 (라이트) ─── */
.olv-wash .data-card {
  margin-top: 36px;
  padding: 28px 24px;
  background: var(--card-grain), var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 12px;
}
@media (min-width: 768px) {
  .olv-wash .data-card { padding: 36px 32px; }
}
.olv-wash .data-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-sub);
  gap: 16px;
}
.olv-wash .data-row:last-child { border-bottom: none; }
.olv-wash .data-key {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
}
.olv-wash .data-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--accent);
  text-align: right;
}
.olv-wash .data-val-hi { color: var(--text-1); font-size: 17px; }
.olv-wash .caption-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--text-3);
  margin-top: 18px;
  line-height: 1.7;
}

/* ─── CLINICAL CARD — CBC 문법 (라이트 스킨) ─── */
.olv-wash .clinical-card {
  margin-top: 36px;
  padding: 40px 28px 32px;
  background: var(--card-grain), var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .olv-wash .clinical-card { padding: 48px 40px 40px; }
}
.olv-wash .clinical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #0F7A68, transparent);
}
.olv-wash .clinical-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.olv-wash .clinical-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-sub);
}
@media (min-width: 600px) {
  .olv-wash .clinical-row {
    grid-template-columns: 200px 1fr auto;
    align-items: baseline;
    gap: 28px;
  }
}
@media (min-width: 768px) {
  .olv-wash .clinical-row { grid-template-columns: 220px 1fr auto; }
}
.olv-wash .clinical-row:last-of-type { border-bottom: none; }
.olv-wash .clinical-num {
  font-family: var(--font-hero);
  font-size: 45px;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1;
  background: linear-gradient(180deg, #0A0A0A 0%, #6A6A66 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
  padding-right: .15em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
@media (min-width: 768px) {
  .olv-wash .clinical-num { font-size: 48px; }
}
.olv-wash .clinical-lbl {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-1);
}
.olv-wash .clinical-row-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.olv-wash .clinical-foot {
  padding-top: 24px;
  border-top: 1px solid var(--border-sub);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ─── INGREDIENT/FUNCTION 테이블 — CBC ing 문법 (색만) ─── */
.olv-wash .ing-intro {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 600px;
}
.olv-wash .ing-table { margin-top: 28px; padding-top: 4px; }
.olv-wash .ing-thead {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-emph);
}
.olv-wash .ing-th {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
}
.olv-wash .ing-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-sub);
  align-items: start;
}
@media (min-width: 768px) {
  .olv-wash .ing-row { grid-template-columns: 260px 1fr; gap: 32px; padding: 22px 0; }
  .olv-wash .ing-thead { grid-template-columns: 260px 1fr; gap: 32px; }
}
.olv-wash .ing-name { display: flex; flex-direction: column; gap: 4px; }
.olv-wash .ing-kor {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.olv-wash .ing-lat {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--text-3);
}
.olv-wash .ing-role {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-2);
}
.olv-wash .ing-role strong { font-weight: 500; color: var(--text-1); }
.olv-wash .ing-role .val, .olv-wash .ing-kor .val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--accent);
}

/* 성분 그룹 헤더 — 기존 모노 라벨 문법 (ing-th 계열) */
.olv-wash .ing-group {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 34px 0 12px;
  border-bottom: 1px solid var(--border-emph);
}
.olv-wash .ing-thead + .ing-group { padding-top: 18px; }
.olv-wash .ing-group-name {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}
.olv-wash .ing-group-count {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ─── GEL TO FOAM — 제형 스테이지 (흰 배경은 multiply로 종이에 녹임) ─── */
.olv-wash .gtf-round {
  display: block;
  margin: clamp(40px, 7vh, 84px) auto 0;
  /* 아임웹 모바일에서 @media 미발동 대비: min()으로 항상 컨테이너 안 → 좌측 오버플로 방지·중앙 (480px=톱뷰 지름 통일) */
  max-width: min(480px, 92%);
}
.olv-wash .gtf-round img {
  display: block; width: 100%; height: auto;
}

/* ─── EV-HERO (Dermatest 시험성적서 카드) — CBC 문법 (색만) ─── */
.olv-wash .ev-hero {
  margin-top: 48px;
  padding: 40px 28px 36px;
  background: var(--card-grain), var(--surface);
  border: 1px solid var(--border-emph);
  border-radius: 14px;
}
@media (min-width: 768px) {
  .olv-wash .ev-hero { padding: 48px 40px 44px; }
}
.olv-wash .ev-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 28px 0;
  width: 144px;
  height: 144px;
}
@media (min-width: 768px) {
  .olv-wash .ev-logo { width: 180px; height: 180px; }
}
.olv-wash .ev-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.olv-wash .ev-h-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.olv-wash .ev-h-title {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #0A0A0A 0%, #5C5C58 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media (min-width: 768px) {
  .olv-wash .ev-h-title { font-size: 45px; }
}
.olv-wash .ev-h-rating {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 28px;
}
.olv-wash .ev-h-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--border-sub);
}
.olv-wash .ev-h-list li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  display: flex;
  gap: 12px;
  line-height: 1.6;
}
.olv-wash .ev-h-list li::before {
  content: '·';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}
.olv-wash .ev-h-foot {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border-sub);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ─── 컬럼 내 사진 figure — CBC photo 오브제(radius 14) ─── */
.olv-wash .photo-fig {
  margin: 56px 0 0;
  border-radius: 14px;
  overflow: hidden;
}
.olv-wash .photo-fig img { display: block; width: 100%; height: auto; }
.olv-wash .photo-tagline {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ─── FIT GROUPS — CBC 문법 (색만) ─── */
.olv-wash .fit-groups {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .olv-wash .fit-groups { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.olv-wash .fit-group {
  padding: 32px 28px;
  background: var(--card-grain), var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.olv-wash .fit-group.recommended { border-color: var(--accent); }
.olv-wash .fit-group-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.olv-wash .fit-group.conditional .fit-group-tag { color: var(--text-3); }
.olv-wash .fit-group-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.35;
  color: var(--text-1);
}
.olv-wash .fit-group-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-2);
}
.olv-wash .fit-group-desc strong { color: var(--text-1); font-weight: 500; }
.olv-wash .fit-group-note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-sub);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.olv-wash .fit-group.conditional .fit-group-note { color: var(--text-3); }

/* ─── 보습감 수채 워시 다이어그램 (회화층 canvas + 계측층 svg) ─── */
.olv-wash .wash-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 960 / 780;
  margin-top: clamp(40px, 7vh, 84px);
}
.olv-wash .wash-stage canvas, .olv-wash .wash-stage svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.olv-wash .wash-stage svg { pointer-events: none; }

/* ── FIG 1 · 세정 4-Layer 분해도 (clean-stage) ── */
.olv-wash .clean-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 960 / 360;
  margin-top: clamp(40px, 7vh, 84px);
}
.olv-wash .clean-stage canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
@media (max-width: 700px) {
  .olv-wash .clean-stage { aspect-ratio: 560 / 440; }
}
/* FIG 1.1 인덱스 = HTML 범례(전문 안). imweb는 HTML 유지(SVG는 삭제) → js·자가복원 불필요, 언어는 전문 따라감.
   캔버스 좌상단 위 지면색 배경으로 얹어 옛 캐시 js가 그리던 캔버스 라벨 잔상도 덮는다. */
.olv-wash .clean-stage .clean-legend {
  position: absolute; top: 7%; left: 3.2%; z-index: 2;
  display: flex; flex-direction: column; gap: clamp(9px, 1.3vh, 13px);
  background: var(--bg); padding: 5px 12px 5px 2px; border-radius: 5px;
  pointer-events: none;
}
/* 지표(스와치)는 CSS 가상요소로 — 빈 요소가 없어 imweb 새니타이저가 지울 수 없음 */
.olv-wash .clean-legend .lg-row { position: relative; padding-left: 31px; display: flex; align-items: center; min-height: 15px; }
.olv-wash .clean-legend .lg-row::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.olv-wash .clean-legend .lg-barrier::before { width: 20px; height: 4px; border-radius: 2px; background: #DCBF70; }
.olv-wash .clean-legend .lg-waste::before { left: 3px; width: 15px; height: 15px; border-radius: 50%; background: radial-gradient(circle at 38% 30%, #cbcfd3, #7a8086); }
.olv-wash .clean-legend .lg-wash::before { left: 3px; width: 15px; height: 15px; border-radius: 50%; background: radial-gradient(circle at 38% 30%, #ffffff, #e2e6ea); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12); }
.olv-wash .clean-legend .lg-label { font-family: var(--font-body); font-size: clamp(13px, 1.5vw, 16px); font-weight: 600; letter-spacing: -.012em; color: #1b1b14; white-space: nowrap; line-height: 1; }
@media (max-width: 700px) {
  .olv-wash .clean-stage .clean-legend { gap: 12px; }
  .olv-wash .clean-legend .lg-label { font-size: 15px; }
}

.olv-wash .wash-stage .svg-m { display: none; }
@media (max-width: 700px) {
  .olv-wash .wash-stage { aspect-ratio: 560 / 980; }
  .olv-wash .wash-stage .svg-d { display: none; }
  .olv-wash .wash-stage .svg-m { display: block; }
}
.olv-wash .wash-stage .big-num {
  font-family: var(--font-hero); font-weight: 500; letter-spacing: -.02em;
  fill: #17181A; font-variant-numeric: tabular-nums;
}
.olv-wash .wash-stage .kr { font-family: var(--font-body); font-weight: 500; fill: #17181A; }
.olv-wash .wash-stage .mono {
  font-family: var(--font-mono); font-weight: 500;
  letter-spacing: .12em; fill: #9A9A93; text-transform: uppercase;
}
.olv-wash .wash-stage .mini-name { font-family: var(--font-body); font-weight: 500; fill: #4C4C48; }
.olv-wash .wash-stage .mini-val { font-family: var(--font-hero); font-weight: 600; fill: #17181A; font-variant-numeric: tabular-nums; }
.olv-wash .wash-stage .ldr { stroke: #8A8A84; stroke-width: 1; }
.olv-wash .wash-stage .lead-dot { fill: #8A8A84; }
.olv-wash .wash-stage .hair { stroke: rgba(19,19,19,.16); stroke-width: 1; }
.olv-wash .wash-stage .rv .ldr,
.olv-wash .wash-stage .rv .lead-dot,
.olv-wash .wash-stage .rv text,
.olv-wash .wash-stage .rv .hair { opacity: 0; }
.olv-wash .wash-stage .rv.in .lead-dot { animation: washDot .5s ease forwards; }
.olv-wash .wash-stage .rv.in .ldr {
  opacity: 1;
  stroke-dasharray: var(--len, 240);
  stroke-dashoffset: var(--len, 240);
  animation: washLine 1.2s cubic-bezier(.3,.1,.2,1) .35s forwards;
}
.olv-wash .wash-stage .rv.in text { animation: washFade 1.1s ease 1.25s forwards; }
.olv-wash .wash-stage .rv.in .hair { animation: washFade 1.1s ease 1.25s forwards; }
@keyframes washDot { to { opacity: 1; } }
@keyframes washLine { to { stroke-dashoffset: 0; } }
@keyframes washFade { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .olv-wash .wash-stage .rv .ldr, .olv-wash .wash-stage .rv .lead-dot,
  .olv-wash .wash-stage .rv text, .olv-wash .wash-stage .rv .hair {
    opacity: 1; animation: none; stroke-dasharray: none;
  }
}
.olv-wash .wash-caption, .olv-wash .wf-cap-label {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.7;
  text-align: center;
}

/* ─── PACKAGE — 3D 와이어프레임 (GLB 라인 렌더 + 계측층) ─── */
.olv-wash .wf-stage {
  margin-top: clamp(40px, 7vh, 84px);
  position: relative;
  max-width: 684px;
  margin-left: auto;
  margin-right: auto;
}
.olv-wash .wf-stage svg { display: block; width: 100%; height: auto; }
.olv-wash .wf-stage .svg-m { display: none; }
@media (max-width: 700px) {
  .olv-wash .wf-stage .svg-d { display: none; }
  .olv-wash .wf-stage .svg-m { display: block; }
}
.olv-wash .wf-stage .ldr { stroke: #8A8A84; stroke-width: 1; }
.olv-wash .wf-stage .lead-dot { fill: #8A8A84; }
.olv-wash .wf-stage .kr { font-family: var(--font-body); font-weight: 500; fill: #17181A; }
.olv-wash .wf-stage .mono {
  font-family: var(--font-mono); font-weight: 500;
  letter-spacing: .12em; fill: #9A9A93; text-transform: uppercase;
}
.olv-wash .wf-stage .rv .ldr,
.olv-wash .wf-stage .rv .lead-dot,
.olv-wash .wf-stage .rv text { opacity: 0; }
.olv-wash .wf-stage .rv.in .lead-dot { animation: washDot .5s ease forwards; }
.olv-wash .wf-stage .rv.in .ldr {
  opacity: 1;
  stroke-dasharray: var(--len, 240);
  stroke-dashoffset: var(--len, 240);
  animation: washLine 1.2s cubic-bezier(.3,.1,.2,1) .35s forwards;
}
.olv-wash .wf-stage .rv.in text { animation: washFade 1.1s ease 1.25s forwards; }
@media (prefers-reduced-motion: reduce) {
  .olv-wash .wf-stage .rv .ldr, .olv-wash .wf-stage .rv .lead-dot, .olv-wash .wf-stage .rv text {
    opacity: 1; animation: none; stroke-dasharray: none;
  }
}


/* ─── STEPS — CBC 문법 (색만) ─── */
.olv-wash .steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .olv-wash .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.olv-wash .step { padding-top: 22px; border-top: 1px solid var(--border-emph); }
.olv-wash .step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 14px;
}
.olv-wash .step-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 10px;
}
.olv-wash .step-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-2);
}

/* ─── LEGAL — CBC 문법 (색만) ─── */
.olv-wash .legal {
  padding: 56px 24px 80px;
  border-top: 1px solid var(--border-sub);
}
@media (min-width: 768px) {
  .olv-wash .legal { padding: 72px 48px 96px; }
}
.olv-wash .legal-inner { max-width: 720px; margin: 0 auto; }
.olv-wash .legal-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-sub);
}
.olv-wash .legal-block + .legal-block { margin-top: 40px; }
.olv-wash .legal-block h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 14px;
  letter-spacing: 0;
}
.olv-wash .legal-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-3);
}
.olv-wash .legal-text + .legal-text { margin-top: 8px; }
.olv-wash .legal-ingredients {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.95;
  color: var(--text-3);
  word-break: keep-all;
}

/* ─── REFERENCES — CBC sec-refs 문법 (색만) ─── */
.olv-wash .sec-refs {
  padding: 56px 24px 64px;
  border-top: 1px solid var(--border-sub);
}
@media (min-width: 768px) {
  .olv-wash .sec-refs { padding: 72px 48px 88px; }
}
.olv-wash .sec-refs .sec-inner { max-width: 720px; }
.olv-wash .refs-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-sub);
}
.olv-wash .ref-list { margin-top: 0; display: flex; flex-direction: column; }
.olv-wash .ref {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-sub);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}
.olv-wash .ref-num {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-4);
  padding-top: 4px;
}
.olv-wash .ref-body {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-4);
  letter-spacing: .01em;
}
.olv-wash .ref-body .title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
  display: block;
  margin-bottom: 3px;
  letter-spacing: 0;
}
.olv-wash .ref-body .pmid { color: var(--text-3); font-weight: 500; }

/* ─── FOOTER — CBC 문법 ─── */
.olv-wash .foot { padding: 56px 24px; border-top: 1px solid var(--border-sub); text-align: center; }
.olv-wash .foot-mark {
  font-family: var(--font-hero);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 8px;
}
.olv-wash .foot-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ─── APPLE-FLOW 공간 층 — CBC 동일 ─── */
.olv-wash .sec { padding-top: clamp(76px, 10.5vh, 138px); padding-bottom: clamp(76px, 10.5vh, 138px); }
.olv-wash .trust { padding-top: clamp(64px, 8.5vh, 104px); padding-bottom: clamp(64px, 8.5vh, 104px); }
/* 히어로 패딩 재선언 — hero-image 음수 마진(-120/-180)과 정합 (사진 잘림 방지) */
.olv-wash .hero { padding-top: 120px; }
@media (min-width: 768px) { .olv-wash .hero { padding-top: 180px; } }
/* 섹션 도입 사진 — CBC apple-flow 동일: 음수 마진 대신 호흡 여백 */
.olv-wash .sec-image { margin-top: clamp(40px, 7vh, 84px); }
.olv-wash .sec-inner > .body { margin-top: 30px; }
.olv-wash .data-card, .olv-wash .clinical-card, .olv-wash .photo-fig, .olv-wash .ing-table { margin-top: clamp(40px, 7vh, 84px); }

/* ─── INGREDIENT ROLES 자바라 — CBC 동일 ─── */
.olv-wash .ing-details { margin-top: 8px; }
.olv-wash .ing-toggle {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  background: var(--card-grain), var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.olv-wash .ing-toggle::-webkit-details-marker { display: none; }
.olv-wash .ing-toggle:hover { background: var(--card-grain), rgba(255,255,255,0.84); border-color: var(--border-emph); }
.olv-wash .ing-toggle-label { display: flex; flex-direction: column; gap: 4px; }
.olv-wash .ing-toggle-main {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-1);
}
.olv-wash .ing-toggle-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.olv-wash .ing-toggle-arrow {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.olv-wash .ing-details[open] .ing-toggle-arrow { transform: rotate(180deg); }
.olv-wash .ing-details .ing-table { margin-top: 24px; max-height: 560px; overflow-y: auto; padding-right: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.olv-wash .ing-details .ing-table::-webkit-scrollbar { width: 4px; }
.olv-wash .ing-details .ing-table::-webkit-scrollbar-thumb { background: var(--border-emph); border-radius: 2px; }
.olv-wash .bo-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}
.olv-wash .bo-list {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-1);
  display: block;
  margin-top: 5px;
}

/* ─── 스크롤 리빌 — CBC 동일 ─── */
.olv-wash .olvx-rv {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.olv-wash .olvx-rv.in { opacity: 1; transform: none; }
.olv-wash .hero-image { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .olv-wash .olvx-rv { opacity: 1; transform: none; transition: none; }
}

/* ─── 카드 호버 — CBC 동일(리프트+그림자), 전환 통일 ─── */
.olv-wash .data-card, .olv-wash .fit-group, .olv-wash .clinical-card, .olv-wash .ev-hero {
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.olv-wash .data-card:hover, .olv-wash .clinical-card:hover, .olv-wash .ev-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,11,13,0.12), 0 2px 4px rgba(10,11,13,0.06);
  border-color: var(--border-emph);
}
.olv-wash .fit-group:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,11,13,0.15);
  border-color: var(--accent);
}
.olv-wash .atg-cell { transition: transform var(--dur) var(--ease); }
.olv-wash .atg-cell:hover { transform: translateY(-1px); }
.olv-wash .atg-tab:hover { color: var(--text-2); }

/* ─── REVIEWS — 고객 후기 (피처 + 2×2 클린 그리드) ─── */
.olv-wash .rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.olv-wash .rev-card {
  background: var(--card-grain), var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.olv-wash .rev-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,11,13,0.12), 0 2px 4px rgba(10,11,13,0.06);
  border-color: var(--border-emph);
}
.olv-wash .rev-card--feature {
  grid-column: 1 / -1;
  border-radius: 22px;
  padding: 40px 36px;
}
.olv-wash .rev-stars {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-1);
  margin-bottom: 14px;
}
.olv-wash .rev-quote {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-1);
  word-break: keep-all;
}
.olv-wash .rev-card--feature .rev-quote {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -.01em;
}
.olv-wash .rev-orig {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.7;
  color: var(--text-3);
  margin-top: 12px;
}
.olv-wash .rev-src {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: auto;
  padding-top: 16px;
}
@media (max-width: 700px) {
  .olv-wash .rev-grid { grid-template-columns: 1fr; gap: 10px; }
  .olv-wash .rev-card--feature { padding: 32px 26px; }
}

@media (max-width: 700px){
  .olv-wash .br-d { display: none; }
  .olv-wash .ing-details .ing-table { max-height: 400px; }
}

/* ═══ 아임웹 다이렉트 방어(CBC 실증 이식 2026-07-18) ═══ */
/* 테마 h1 크기 탈취 방어 */
.olv-wash h1 { font-size: 51px !important; line-height: 1.04 !important; letter-spacing: -.035em !important; font-weight: 500 !important; }
@media (min-width: 768px){ .olv-wash h1 { font-size: 90px !important; } }
/* 풀블리드(100vw)를 컨테이너 가장자리로 캡 — 섹션 패딩(24/48) 상쇄 */
.shop-content .olv-wash .hero-image,
.shop-content .olv-wash .sec-image{
  width:auto !important; max-width:none !important;
  margin-left:-24px !important; margin-right:-24px !important;
}
@media (min-width:768px){
  .shop-content .olv-wash .hero-image,
  .shop-content .olv-wash .sec-image{ margin-left:-48px !important; margin-right:-48px !important; }
}
.shop-content .olv-wash .hero-image img,
.shop-content .olv-wash .sec-image img{ width:100% !important; max-width:100% !important; margin:0 !important; }
/* 히어로 위 삐짐 클립(음수 margin-top 상수 > 실제 패딩) */
.shop-content .olv-wash .hero{ overflow:hidden !important; }

/* 사진 카드로 시작하는 섹션 — 상단 여백을 섹션 토큰(76·10.5vh·138) 대신 블록 토큰으로 축소.
   사진이 이미 섹션 구분 역할을 하므로 이중 여백 방지. (.sec 뒤에 와야 이김) */
.olv-wash .sec-problem { padding-top: clamp(40px, 7vh, 84px); }


/* ─── 사진 카드 상단 헤어라인 제거 (SJ 2026-07-21) ───────────────────────────
   원인: aspect-ratio 컨테이너(overflow:hidden)는 소수점 높이를 갖는데(예: 472.5px)
   그 안의 img는 height:100%로 정수 래스터에 반올림된다 → 클립 박스와 이미지 사이
   1px 미만 틈이 남고, 배경이 transparent라 지면(밝은 색)이 가로줄로 비친다.
   해법: 이미지를 사방 1px씩 넘치게 깔아 클립 박스를 완전히 덮는다(비율 손실 없음 — object-fit:cover).
   ※ 새 사진 카드를 만들 때 이 규칙을 함께 상속시킬 것. */
.olv-wash .photo-card, .olv-wash .ing-split-img { position: relative; }
.olv-wash .photo-card img, .olv-wash .ing-split-img img {
  position: absolute; top: -1px; left: -1px;
  width: calc(100% + 2px); height: calc(100% + 2px);
  object-fit: cover; display: block;
  margin: 0 !important;   /* ★ 진짜 원인: 아임웹 테마가 img에 margin:5px 0 을 먹여 사진이 카드 안에서 아래로 밀렸다
                                 → 위쪽 5px 틈으로 지면색이 가로줄로 비침 (라이브 EN 실측 2026-07-21) */
}
