/* ── 첫 화면: 도는 사진 + 출발 안내판 ── */
.hero-cell { position: relative; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.is-on { opacity: 1; }
.hero-slide .hero-img { transform: scale(1.04); transition: transform 7s ease-out; }
.hero-slide.is-on .hero-img { transform: scale(1); }
.board {
  position: absolute; left: clamp(12px, 1.6vw, 22px); top: clamp(76px, 10vh, 104px); z-index: 2;
  display: flex; flex-direction: column; gap: 6px; color: #f4ecdf;
}
.board-city { display: flex; flex-wrap: nowrap; gap: 2px; white-space: nowrap; }
.board-city .flap {
  display: inline-block; width: 1.05em; text-align: center;
  font: 600 clamp(13px, 1.25vw, 17px)/1.5 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  background: rgba(22, 20, 18, .82); border-radius: 2px; position: relative;
}
.board-city .flap::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0, 0, 0, .55); }
.board-city .flap.is-flip { animation: flip .09s linear; }
@keyframes flip { 0% { transform: rotateX(0); } 50% { transform: rotateX(90deg); } 100% { transform: rotateX(0); } }
.board-coords { font: 500 12px/1 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; letter-spacing: .06em; text-shadow: 0 1px 6px rgba(0, 0, 0, .6); }
.board:hover .flap { background: rgba(22, 20, 18, .96); }
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide .hero-img { transition: none; }
  .board-city .flap.is-flip { animation: none; }
}

.sec-sub { text-align: center; color: var(--ink-2); margin: -16px auto 28px; max-width: 620px; font-size: 15px; }

/* ── 99개 나라 ── */
.journey-sec { padding-bottom: clamp(56px, 8vw, 96px); text-align: center; }
.journey { list-style: none; padding: 0; margin: 0 auto 26px; display: grid; grid-template-columns: repeat(33, 1fr); gap: 5px; max-width: 980px; }
.journey li { aspect-ratio: 1; border: 1px solid var(--line); border-radius: 2px; position: relative; }
.journey li.on { background: var(--ink); border-color: var(--ink); }
.journey li span {
  position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%); white-space: nowrap;
  background: var(--ink); color: var(--paper); font-size: 12px; padding: 3px 8px; border-radius: 3px;
  opacity: 0; pointer-events: none; transition: opacity .15s; z-index: 3;
}
.journey li.on:hover span { opacity: 1; }
.journey.is-in li.on { animation: lit .45s ease both; }
@keyframes lit { from { background: transparent; border-color: var(--line); } }

/* ── 실제 모습 ── */
.styling { padding-bottom: clamp(56px, 8vw, 100px); }
.strip { list-style: none; margin: 0; padding: 0 0 8px; display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.strip li { flex: 0 0 clamp(200px, 24vw, 300px); scroll-snap-align: start; }
.strip img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: var(--paper-2); }

/* ── 후기 · FAQ · 해외 안내 ── */
.review blockquote { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.review figcaption a { color: var(--ink-2); border-bottom: 1px solid var(--line); font-weight: 500; }
.faq { padding-bottom: clamp(56px, 8vw, 100px); max-width: 820px; }
.faq details { border-top: 1px solid var(--line); padding: 16px 4px; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--muted); font-weight: 400; font-size: 20px; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 10px 0 0; color: var(--ink-2); font-size: 15px; }
.global-sec { padding-bottom: clamp(56px, 8vw, 96px); }
.global-note {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 18px; text-align: center;
  border: 1px solid var(--line); background: #fbfaf7; padding: 18px 20px; margin: 24px auto 0; max-width: 820px;
}
.global-note p { margin: 0; color: var(--ink-2); font-size: 15px; }
.series-about { max-width: 640px; margin: 18px auto 0; color: var(--ink-2); font-size: 16px; }
.about .global-note { justify-content: flex-start; text-align: left; margin-left: 0; }

@media (max-width: 900px) {
  .journey { grid-template-columns: repeat(11, 1fr); max-width: 420px; gap: 6px; }
}
@media (max-width: 700px) {
  .board { top: 112px; }
  .strip li { flex-basis: 62vw; }
  .btn { padding: 9px 13px; }
}

/* 시리즈 접기 — 처음엔 12개만. 나라를 고르면 그 나라는 전부 보인다 */
.grid.is-folded .card:nth-child(n+13) { display: none; }
.more-wrap { text-align: center; margin-top: 36px; }
.grid:not(.is-folded) + .more-wrap { display: none; }

@media (max-width: 700px) {
  .kinds-row { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; max-width: none;
    margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter) 6px; scrollbar-width: none; }
  .kinds-row::-webkit-scrollbar { display: none; }
  .kind { flex: 0 0 76vw; scroll-snap-align: start; }
  .journey { max-width: 300px; gap: 4px; }
  .grid.is-folded .card:nth-child(n+9) { display: none; }
}

/* 푸터 사업자 정보 — 좁은 화면에선 한 줄에 하나씩, 라벨이 두 줄로 쪼개지지 않게 */
.biz dt { white-space: nowrap; }
@media (max-width: 600px) {
  .biz { flex-direction: column; align-items: center; gap: 2px; }
  .biz div { display: block; text-align: center; }
  .biz dt, .biz dd { display: inline; }
  .biz dd { margin-left: 4px; }
}

/* 일본어 줄바꿈 — 문절 단위(auto-phrase, 크롬 119+). 「つくっ/ています」처럼 말 중간에서 끊기지 않게 */
.lang-ja h1, .lang-ja h2, .lang-ja h3, .lang-ja p, .lang-ja .lead, .lang-ja figcaption, .lang-ja summary { word-break: auto-phrase; }

/* ───────── 감성 손질 (2026-09-24) ───────── */
:root { --paper: #f3efe8; --paper-2: #e9e4db; }
.section-head .label { letter-spacing: .26em; font-weight: 500; }
.section-head h2 { font-weight: 500; letter-spacing: -0.02em; }
.intro .lead { font-weight: 500; }

/* 필름 그레인 — 사진 위에 아주 옅게 */
.hero::before, .quote::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .09; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-text { z-index: 3; }
.board { z-index: 3; }

/* 마켓 버튼 — 로고 + 이름 */
.mk {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; line-height: 1;
  padding: 7px 13px 7px 8px; border: 1px solid var(--line); border-radius: 999px; background: #fbfaf7; color: var(--ink);
  transition: border-color .15s, background .15s;
}
.mk img, .product .mk img { width: 18px; height: 18px; aspect-ratio: auto; margin: 0; background: none; border-radius: 5px; object-fit: cover; flex: none; }
.mk:hover { border-color: var(--ink); background: #fff; }
.mk-plain { border: 0; background: none; padding: 4px 2px; }
.mk-plain:hover { background: none; text-decoration: underline; text-underline-offset: 3px; }
.stores a.mk { border: 1px solid var(--line); padding: 9px 15px 9px 10px; font-size: 14px; }
.stores a.mk:hover { background: #fff; color: var(--ink); }
.foot-links { gap: 4px 14px; }

/* 사진 위 한 문장 */
.quote { position: relative; max-width: none; padding: 0; height: min(86vh, 820px); min-height: 460px; overflow: hidden; margin: 0 0 clamp(64px, 9vw, 120px); background: #2a2522; }
.quote .quote-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45)); }
.quote blockquote { position: absolute; inset: 0; z-index: 2; margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 var(--gutter); }
.quote blockquote p { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(30px, 5vw, 64px); line-height: 1.25; margin: 0; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.lang-ko .quote blockquote p, .lang-ja .quote blockquote p { font-family: var(--sans); font-style: normal; font-weight: 500; font-size: clamp(24px, 3.6vw, 44px); letter-spacing: -0.02em; line-height: 1.5; }
.quote cite { margin-top: 22px; font-style: normal; font-size: 12px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; opacity: .85; }

/* 천천히 떠오르기 */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s ease, transform 1.1s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* 체험단 후기 — 카드 맨 위에 눈에 띄게. 숨기거나 작게 만들지 말 것(표시 의무) */
.sponsor { display: inline-block; margin: 0 0 8px; font-size: 10.5px; font-weight: 600; line-height: 1.5; color: #7a4b16;
  background: #f6e7cf; border: 1px solid #ecd6b3; border-radius: 999px; padding: 0 7px; }

/* 상품 카드 가격 */
.product .price { margin: -4px 0 8px; font-size: 15px; font-weight: 600; color: var(--ink); }
.kind img, .product img { background: #e9e4db; }

/* 나라 버튼 두 줄 — 줄마다 가운데 정렬. 좁은 화면에선 한 줄 가로 스크롤로 합친다 */
.chips { flex-direction: column; align-items: center; gap: 8px; }
.chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
@media (max-width: 600px) {
  .chips { flex-direction: row; }
  .chip-row { display: contents; }
}

/* ───────── 가로 스크롤 없애기 (창업자 2026-09-24 「불편함」) ─────────
   실제 모습·상품 종류·나라 버튼 모두 줄바꿈 격자로. 옆으로 밀어야 보이는 칸은 두지 않는다. */
.strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; overflow: visible; scroll-snap-type: none; padding: 0; }
.strip li { flex: none; }
.strip img { aspect-ratio: 3 / 4; }
/* 🔴 열 장을 전부 보인다 — 좁은 화면에서 일부를 숨겼다가 「왜 일부만 썼냐」(창업자 2026-09-24).
   열 장이라 5열(2행)·2열(5행)만 빈칸 없이 맞는다. 3열은 마지막 한 장이 홀로 남는다 */
@media (max-width: 700px) {
  .strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .kinds-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; overflow: visible; margin: 0; padding: 0; scroll-snap-type: none; }
  .kind { flex: none; }
  .kind h3 { font-size: 16px; }
  .kind p { font-size: 13px; }
}
@media (max-width: 600px) {
  .chips { flex-direction: column; overflow: visible; margin-left: 0; margin-right: 0; padding: 0; }
  .chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
  .chip { font-size: 13px; padding: 5px 11px; }
}

/* ───────── 길 찾기 (2026-09-24 「여기저기 가 있음」) ───────── */
.top nav a[aria-current="page"] { opacity: 1; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.crumbs { max-width: var(--max); margin: 0 auto; padding: 18px 0 0; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 0; font-size: 13px; color: var(--muted); }
.crumbs li + li::before { content: "›"; margin: 0 8px; color: var(--line); }
.crumbs a { color: var(--ink-2); border-bottom: 1px solid transparent; }
.crumbs a:hover { border-bottom-color: var(--ink-2); }
.crumbs [aria-current] { color: var(--ink); font-weight: 500; }
.series-page .crumbs, .about .crumbs { padding-top: 0; margin-bottom: 8px; }
.series-index { padding-top: 8px; }
.series-index .section-head { margin-top: 28px; }
.shop-cta { text-align: center; padding-bottom: clamp(56px, 8vw, 96px); }
.about-more { margin-top: 40px; }
.about h1.plain { font-family: var(--sans); font-style: normal; font-weight: 600; font-size: clamp(28px, 4vw, 38px); }
.shop.about { padding-bottom: 24px; }
.shop-page .faq { padding-top: 24px; }
.faq details ul { margin: 10px 0 0; padding-left: 18px; color: var(--ink-2); font-size: 15px; }
.faq details li { margin: 4px 0; }

/* 바깥 마켓으로 나가는 버튼은 새 창 — 작은 화살표로 알린다 */
.mk::after { content: "\2197"; font-size: 11px; color: var(--muted); margin-left: -2px; }
.mk-plain::after { content: none; }

/* 상품 카드 — 기종·권 토글 */
.seg { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 2px; margin: 14px 0 10px; background: #fbfaf7; }
.seg button { font: inherit; font-size: 13px; font-weight: 500; border: 0; background: none; color: var(--ink-2); padding: 5px 14px; border-radius: 999px; cursor: pointer; }
.seg button.is-on { background: var(--ink); color: var(--paper); }
.buy { margin-top: 14px; }
.buy .seg + .btns { margin-top: 0; }

/* 벽에 걸어보기 — 실제 방 사진 */
.wall.room { background: #ddd6cb; }
.wall.room .room-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wall.room .wall-frames { z-index: 1; }

/* 마켓 버튼 — 아이콘과 글자를 한 줄 가운데에 (어디에 놓여도 같은 모양) */
a.mk, .stores a.mk, .foot-links a.mk {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; vertical-align: middle;
  line-height: 1; font-size: 13px; font-weight: 500; padding: 8px 13px 8px 9px;
}
.stores a.mk { font-size: 14px; padding: 10px 16px 10px 11px; border-radius: 999px; background: #fbfaf7; border: 1px solid var(--line); color: var(--ink); }
a.mk img { display: inline-block; flex: none; width: 18px; height: 18px; margin: 0; border-radius: 5px; object-fit: contain; background: #fff; }
.stores a.mk img { width: 20px; height: 20px; }
a.mk span { display: inline-block; transform: translateY(0.5px); }
a.mk::after { content: "\2197"; font-size: 11px; line-height: 1; color: var(--muted); margin-left: -1px; }
.foot-links a.mk { padding: 4px 2px; font-size: 13px; }
.foot-links a.mk img { width: 16px; height: 16px; }
.foot-links a.mk::after { content: none; }

.buy .seg { align-self: flex-start; }

/* ───────── 2026-09-24 저녁 손질 ───────── */
/* 소개 문단 — PC 에선 문장마다 줄, 모바일에선 자연스럽게 이어서 */
br.pc { display: inline; }
@media (max-width: 700px) { br.pc { display: none; } }

/* 한 문장 막간 — 사진은 제 비율, 글은 옆에 */
.quote { position: relative; height: auto; min-height: 0; max-width: var(--max); margin: 0 auto clamp(72px, 10vw, 130px);
  padding: 0 var(--gutter); background: none; overflow: visible;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 6vw, 96px); align-items: center; }
.quote::before, .quote::after { content: none; }
.quote-photo { margin: 0; }
.quote-photo img { width: 100%; height: auto; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .35); }
.quote blockquote { position: static; inset: auto; display: block; text-align: left; color: var(--ink); padding: 0; }
.quote blockquote p { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(30px, 3.6vw, 52px); line-height: 1.3; margin: 0; text-shadow: none; }
.lang-ko .quote blockquote p, .lang-ja .quote blockquote p { font-family: var(--sans); font-style: normal; font-weight: 500; font-size: clamp(24px, 2.8vw, 38px); line-height: 1.55; letter-spacing: -0.02em; }
.quote cite { display: block; margin-top: 24px; font-style: normal; font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 700px) {
  .quote { grid-template-columns: 1fr; gap: 28px; }
  .quote-photo { max-width: 78%; margin: 0 auto; }
  .quote blockquote { text-align: center; }
}

/* 검색 */
.search { max-width: 520px; margin: -8px auto 24px; }
.search input { width: 100%; font: inherit; font-size: 16px; padding: 12px 18px 12px 44px; border: 1px solid var(--line); border-radius: 999px;
  background: #fbfaf7 url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2218%22 height=%2218%22 fill=%22none%22 stroke=%22%236b645d%22 stroke-width=%222%22 stroke-linecap=%22round%22 viewBox=%220 0 24 24%22%3E%3Ccircle cx=%2211%22 cy=%2211%22 r=%227%22/%3E%3Cpath d=%22m20 20-3.5-3.5%22/%3E%3C/svg%3E") no-repeat 16px center;
  color: var(--ink); outline: none; }
.search input:focus { border-color: var(--ink-2); background-color: #fff; }
.search-none { text-align: center; color: var(--muted); margin: 24px 0 0; }

/* NEW */
.card { position: relative; }
.new-badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  color: var(--paper); background: var(--ink); padding: 3px 8px; border-radius: 2px; }
.new-badge.inline { position: static; display: inline-block; vertical-align: middle; margin-left: 6px; transform: translateY(-2px); }

/* 체험단 표시 — 회색으로 조용하게. 🔴 없애거나 읽기 어려울 만큼 흐리게 하지 말 것(추천·보증 표시 의무) */
.sponsor { color: #8b847c; background: transparent; border: 1px solid #ddd7ce; font-weight: 500; }

/* 후기 사진 */
.review-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 0 0 12px; }
.review-photos img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 3px; background: var(--paper-2); }

/* ───────── 시리즈 카드 = 여섯 장 격자 · 사진으로 보기 ───────── */
.card-img.grid6 { aspect-ratio: 886 / 820; background: #e9e4db; }
.card-img.grid6 img { object-fit: contain; }
.view-switch { display: flex; width: max-content; margin: 0 auto 28px; }
.photo-wall { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; }
.photo-wall[hidden] { display: none; }
.tile { position: relative; display: block; aspect-ratio: 5 / 7; overflow: hidden; background: var(--paper-2); }
.tile[hidden] { display: none; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .4s; opacity: 0; }
.tile img.is-loaded { opacity: 1; }
.tile:hover img { transform: scale(1.04); }
.tile-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 10px 9px; color: #fff; font-size: 13px; font-weight: 500; line-height: 1.35;
  background: linear-gradient(transparent, rgba(0, 0, 0, .55)); opacity: 0; transition: opacity .2s; }
.tile-cap em { display: block; font-style: normal; font-size: 11px; opacity: .85; letter-spacing: .06em; }
.tile:hover .tile-cap, .tile:focus .tile-cap { opacity: 1; }
@media (hover: none) { .tile-cap { opacity: 1; font-size: 12px; } }
@media (max-width: 1100px) { .photo-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 600px) { .photo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; } .tile-cap { display: none; } }

/* 사진으로 보기에서 넘어온 그 사진 */
.photo:target img { outline: 3px solid var(--ink); outline-offset: 4px; }
.photo { scroll-margin-top: 90px; }

.reviews .more-wrap { margin-top: 32px; }
.reviews-page { padding-top: 8px; }
.reviews-page .section-head { margin-top: 28px; margin-bottom: 8px; }
.reviews-list .reviews-row { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); align-items: start; }
.reviews-list .review blockquote { -webkit-line-clamp: unset; display: block; }

[data-view-pane][hidden] { display: none !important; }

/* ───────── 구매 후기 페이지 ───────── */
.reviews-page { padding-bottom: clamp(64px, 9vw, 110px); }
.rv-summary { display: flex; justify-content: center; align-items: center; gap: clamp(24px, 5vw, 56px); margin: 0 auto 26px; }
.rv-score { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.rv-score strong { font-family: var(--serif); font-weight: 500; font-size: 56px; }
.rv-score .stars { color: #b8862e; letter-spacing: 3px; font-size: 15px; margin-top: 4px; }
.rv-score small { color: var(--muted); font-size: 12px; margin-top: 6px; }
.rv-counts { display: flex; flex-direction: column; gap: 6px; font-size: 15px; color: var(--ink-2); border-left: 1px solid var(--line); padding-left: clamp(24px, 5vw, 56px); }
.rv-filter { display: flex; width: max-content; margin: 0 auto 36px; }
.rv-wall { columns: 3 300px; column-gap: 20px; }
.rv { break-inside: avoid; margin: 0 0 20px; background: #fbfaf7; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.rv[hidden] { display: none; }
.rv-photo { position: relative; }
.rv-photo > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.rv-thumbs { position: absolute; right: 10px; bottom: 10px; display: flex; gap: 6px; }
.rv-thumbs img { width: 46px; height: 46px; object-fit: cover; border-radius: 3px; border: 2px solid #fbfaf7; box-shadow: 0 2px 6px rgba(0,0,0,.2); }
.rv-body { padding: 18px 20px 18px; }
.rv-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.rv-top .stars { color: #b8862e; letter-spacing: 2px; font-size: 13px; }
.rv-top .sponsor { margin: 0; }
.rv blockquote { margin: 0; font-size: 15px; line-height: 1.75; color: var(--ink); white-space: pre-line; }
.rv blockquote.is-long { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.rv blockquote.is-open { display: block; }
.rv-more { font: inherit; font-size: 13px; color: var(--muted); background: none; border: 0; padding: 6px 0 0; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.rv-meta { margin: 12px 0 0; font-size: 12px; color: var(--muted); }
.rv-series { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 500; color: var(--ink-2); }
.rv-series:hover { color: var(--ink); }
.rv-src { text-align: center; color: var(--muted); font-size: 13px; margin: 28px 0 0; }
@media (max-width: 600px) {
  .rv-wall { columns: 1; }
  .rv-score strong { font-size: 44px; }
}

.design-wall .tile { background: #e9e4db; }
.product { scroll-margin-top: 90px; }
.product:target { outline: 2px solid var(--ink); outline-offset: 10px; }

.tile-card .card-img.grid6 { aspect-ratio: 1; }
.tile-card img { opacity: 0; transition: opacity .4s; }
.tile-card img.is-loaded { opacity: 1; }
.view-switch { flex-wrap: wrap; justify-content: center; }
@media (max-width: 600px) { .view-switch button { padding: 5px 10px; font-size: 12px; } }

/* 정렬 */
.list-tools { display: flex; justify-content: flex-end; max-width: var(--max); margin: 0 auto 10px; }
.sort { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.sort select { font: inherit; font-size: 14px; color: var(--ink); background: #fbfaf7; border: 1px solid var(--line); border-radius: 999px; padding: 7px 30px 7px 14px;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2212%22 fill=%22none%22 stroke=%22%236b645d%22 stroke-width=%222%22 viewBox=%220 0 24 24%22%3E%3Cpath d=%22m6 9 6 6 6-6%22/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; }
@media (max-width: 600px) { .list-tools { justify-content: center; } }

/* 디자인 포스터 — 흰 배경 포스터가 종이색 바닥에 묻히지 않게 옅은 그림자 */
.design-wall .tile { background: transparent; overflow: visible; }
.design-wall .tile img { box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 8px 18px -8px rgba(0,0,0,.28); }
.design-wall .tile:hover img { transform: translateY(-2px); }
.design-wall .tile-cap { border-radius: 0 0 2px 2px; }

/* 첫 화면 바뀌는 그림 */
.kind-img { overflow: hidden; background: #e9e4db; margin-bottom: 16px; aspect-ratio: 1; }
.kind-img img { margin: 0; transition: opacity .35s ease; }
.rotating .card-img img { transition: opacity .35s ease, transform .6s ease; }

/* 첫 화면 후기 — 후기 페이지와 같은 카드 세 장 */
.home-rv .rv-line { text-align: center; margin: -14px 0 28px; color: var(--ink-2); font-size: 15px; }
.home-rv .rv-line .stars { color: #b8862e; letter-spacing: 2px; }
.home-rv .rv-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: start; }
.home-rv .rv { margin: 0; }
.home-rv .rv[hidden] { display: none; }
@media (max-width: 900px) { .home-rv .rv-row { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } .home-rv .rv:nth-child(n+3) { display: none; } }

/* 시리즈 페이지 — 디자인 포스터 갤러리 */
.design-gallery { padding: clamp(48px, 7vw, 88px) 0 0; scroll-margin-top: 80px; }
.dp-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 32px); }
.dp img { box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 10px 22px -10px rgba(0,0,0,.3); }
.dp figcaption { font-size: 14px; }
.design-gallery .note a { border-bottom: 1px solid var(--line); color: var(--ink-2); }
@media (max-width: 800px) { .dp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.list-tools { align-items: center; gap: 8px; }
.sort-dir { font: inherit; font-size: 13px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: #fbfaf7; color: var(--ink-2); cursor: pointer; }
.sort-dir[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.section-head h1 { font-size: clamp(24px, 3vw, 32px); font-weight: 500; letter-spacing: -0.02em; margin-top: 6px; }
/* 보기 전환 — 일본어처럼 이름이 길면 좁은 화면에서 넘쳤다(375px 에서 409) */
.view-switch { width: max-content; max-width: 100%; }   /* auto 로 두면 화면 폭 전체로 늘어났다 */
@media (max-width: 600px) { .view-switch { border-radius: 18px; } .view-switch button { flex: 1 1 45%; } }

/* 막간 사진 돌리기 — 칸 비율 고정, 사진은 채우기 */
.quote-photo { overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .35); }
.quote-photo img { box-shadow: none; }
.quote-photo img { height: 100%; object-fit: cover; transition: opacity .8s ease; }
.quote cite { transition: opacity .8s ease; }

/* 내 기종 찾기 */
.models .model-pick { font: inherit; font-size: 16px; padding: 12px 14px; border: 1px solid var(--line, #d8d2c8); border-radius: 10px; background: var(--paper, #fff); color: inherit; width: 100%; max-width: 420px; margin: 8px 0 18px; }
.models .model-result { margin-bottom: 14px; }
.models .model-ok { font-weight: 600; margin: 0 0 6px; }
.models .model-where { font-size: 13px; opacity: .7; margin: 12px 0 8px; }
.models .model-note, .models .model-no, .models .model-ask { font-size: 13px; opacity: .75; }
.models .stores li[hidden] { display: none; }
.product .model-link { margin: 10px 0 0; font-size: 13px; }
.product .model-link a { color: inherit; opacity: .75; text-decoration: underline; text-underline-offset: 3px; }

/* 인스타그램 — 판매처 줄과 따로 */
.foot-social, .shop .foot-social { margin: 14px 0 18px; font-size: 13px; }
.foot-social a { display: inline-flex; align-items: center; gap: 7px; color: inherit; text-decoration: none; opacity: .85; }
.foot-social a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.foot-social img { display: inline-block; width: 16px; height: 16px; border-radius: 4px; }

/* 영어·일본어 — 국내 마켓 안내 */
.buy-kr { font-size: 12px; opacity: .65; margin: 14px 0 6px; }

/* ───────── 모바일 정리 (창업자 2026-09-24 「모바일에서 디자인이 이상함」) ─────────
   위에 쌓인 조각 규칙들을 좁은 화면에서만 한 번에 정리한다. 여기가 맨 뒤라 이긴다. */
@media (max-width: 700px) {
  /* 머리 — 메뉴 글씨 높이(25px)만 눌리던 것을 44px 로. 지금 페이지는 밑줄 대신 아래 막대 */
  .top { padding: 10px var(--gutter) 0; row-gap: 0; }
  .top nav { gap: 24px; font-size: 15px; }
  .top nav a { display: block; padding: 10px 0 12px; }
  .top nav a[aria-current="page"] { text-decoration: none; box-shadow: inset 0 -2px 0 currentColor; }
  .langs a { padding: 6px 8px; }
  .board { top: 116px; }
  .hero { height: 88svh; }

  /* 떠오르기 — 빨리 넘기면 빈 화면처럼 보여서 짧고 얕게 */
  .reveal { transform: translateY(12px); transition-duration: .6s; }

  /* 실제 모습 — 열 장 2열. 사이를 좁혀 한 장씩 크게 */
  .strip { gap: 6px; }
  .styling .section-head { margin-bottom: 22px; }

  /* 소개 사진 — 260px 에 묶여 오른쪽이 비던 것 */
  .artist-block img { max-width: 100%; }
  .about { padding-top: 28px; }
  .about h2 { margin-top: 44px; }
}
@media (max-width: 600px) {
  /* 나라 버튼 — 두 묶음이 따로 줄바꿈되며 한 개씩 남던 것(프랑스·크로아티아)을 3열 격자로 */
  .chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; max-width: 420px; margin: 0 auto 28px; }
  .chip-row { display: contents; }
  .chip { padding: 8px 4px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* 보기 전환 — 둥근 틀 안에 2×2 로 끼어 있던 것을 알약 네 개 격자로 */
  .view-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; width: 100%; max-width: 420px;
    border: 0; padding: 0; background: none; border-radius: 0; margin: 4px auto 24px; }
  .view-switch button { padding: 10px 6px; font-size: 13px; border: 1px solid var(--line); background: #fbfaf7; border-radius: 999px; }
  .view-switch button.is-on { background: var(--ink); border-color: var(--ink); color: var(--paper); }

  .list-tools { margin-bottom: 14px; }
  .search { margin-bottom: 18px; }
  .section-head { margin-bottom: 24px; }
  .intro { padding-top: 56px; padding-bottom: 48px; }
  .faq summary { font-size: 15px; padding: 2px 0; }
  .faq details { padding: 14px 2px; }
  .stores { gap: 6px; }
  .stores a.mk { font-size: 13.5px; padding: 9px 14px 9px 10px; }
}
