/* ============================================
   로우캣 디자인 시스템
   치즈태비 옐로우 + 잉크, 정보(가격)는 명확하게
   ============================================ */
:root {
  --cheese: #F7B733;
  --cheese-deep: #E8940F;
  --cheese-bg: #FDF3E1;
  --orange: #E8631C;
  --ink: #26201C;
  --ink-soft: #57504A;
  --muted: #948B82;        /* 장식 전용 (AA 미달) — 텍스트에는 --muted-text */
  --muted-text: #6E6259;   /* 보조 텍스트 — 전 배경 AA 4.5:1 이상 */
  --green-text: #0C6B49;   /* 소형 텍스트용 딥 그린 */
  --red-text: #C2361F;     /* 소형 텍스트용 딥 레드 */
  --cheese-text: #96580A;  /* 소형 텍스트용 딥 치즈 */
  --orange-text: #C2510F;
  --orange-bg: #FBE8DC;
  --naver-text: #02753C;   /* 네이버 라벨 텍스트 (AA) */
  --bg: #FFFFFF;
  --bg-soft: #FBF7F0;
  --line: #EDE6DC;
  --red: #E94F3D;
  --red-bg: #FDECEA;
  --green: #17A673;
  --green-bg: #E7F6F0;
  --blue: #2E6FBF;
  --naver: #03C75A;
  --naver-bg: #E8F8EF;
  --blue-bg: #EAF3FD;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(38, 32, 28, 0.07);
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 15px;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

:focus-visible { outline: 3px solid var(--cheese-deep); outline-offset: 2px; border-radius: 4px; }
/* 검색창 포커스: 링은 입력칸이 아닌 알약 컨테이너 전체에 — 버튼까지 한 덩어리로 강조 */
.hero-search:focus-within, .header-search:focus-within {
  border-color: var(--cheese-deep);
  box-shadow: 0 0 0 3px rgba(232, 148, 15, 0.28);
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 16px; }
.muted { color: var(--muted-text); }

/* ---------- 헤더 (로고=홈 + 상시 검색 + 내비) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; gap: 10px; height: 60px; }
.brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.brand-cat { flex-shrink: 0; }
.brand-name {
  font-size: 21px; font-weight: 900; letter-spacing: -0.5px;
  background: linear-gradient(transparent 62%, var(--cheese) 62%);
  padding: 0 2px; white-space: nowrap;
}
.gnb { display: none; gap: 2px; flex-shrink: 0; }
@media (min-width: 760px) { .gnb { display: flex; } }
.gnb a {
  padding: 7px 12px; border-radius: 999px; font-weight: 700; font-size: 15px;
  color: var(--ink-soft); white-space: nowrap;
}
.gnb a.on, .gnb a:hover { background: var(--cheese-bg); color: var(--ink); }

.header-search {
  flex: 1; min-width: 0; max-width: 520px; height: 40px;
  display: flex; position: relative;
  border: 2px solid var(--ink); border-radius: 999px; background: #fff;
  margin-left: auto;
}
.header-search input { border-radius: 999px 0 0 999px; }
.header-search button { border-radius: 0 999px 999px 0; }
@media (min-width: 760px) { .header-search { margin: 0 auto; } }
.header-search input {
  flex: 1; border: 0; padding: 0 16px; font-size: 16px; font-family: inherit;
  outline: none; min-width: 0; background: transparent;
}
.header-search button {
  border: 0; background: var(--ink); color: var(--cheese);
  padding: 0 14px; display: flex; align-items: center; cursor: pointer;
}
.search-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--ink); background: #fff; color: var(--ink);
}


/* 홈: 히어로 검색창이 보이는 동안 헤더 검색은 숨겼다가 스크롤 시 등장 */
.home-header .header-search {
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
}
.home-header.search-visible .header-search { opacity: 1; transform: none; pointer-events: auto; }

/* 모바일: 내비는 하단 탭바 전담 — 상단은 [로고 + 🔍] → (스크롤/탭) [검색창 풀폭] */
@media (max-width: 759px) {
  .gnb { display: none; }
  .search-toggle { display: flex; }
  .brand { max-width: 200px; overflow: hidden; transition: opacity 0.18s; }
  .site-header .header-search {
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity 0.22s, transform 0.22s;
  }
  .site-header.search-visible .header-search { opacity: 1; transform: none; pointer-events: auto; }
  .site-header.search-visible .brand { max-width: 0; opacity: 0; margin-right: -10px; pointer-events: none; }
  .site-header.search-visible .search-toggle { display: none; }
}

/* ---------- 모바일 하단 탭바 ---------- */
.tabbar { display: none; }
@media (max-width: 759px) {
  body { padding-bottom: 64px; }
  .lc-toast { bottom: 84px; }
  .tabbar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    display: flex;
    background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    padding: 7px 0 calc(7px + env(safe-area-inset-bottom));
  }
  .tabbar a {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
    font-size: 11px; font-weight: 700; color: var(--muted-text);
  }
  .tabbar a.on { color: var(--ink); }
  .tabbar a.on::after {
    content: ""; width: 4px; height: 4px; border-radius: 50%;
    background: var(--cheese-deep); margin-top: 1px;
  }
  .tabbar .tab-ico { font-size: 19px; line-height: 1; display: flex; align-items: center; height: 24px; }
  .tabbar a:not(.on) .tab-ico { filter: grayscale(0.8); opacity: 0.65; }
}

/* ---------- 홈 히어로 ---------- */
.hero { text-align: center; padding: 40px 8px 28px; }
.hero-cat { display: inline-block; animation: bob 3s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hero h1 {
  font-size: clamp(26px, 6vw, 38px); font-weight: 900; letter-spacing: -1px;
  margin: 10px 0 8px;
}
.hero-sub { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
.hero-search {
  display: flex; position: relative;
  border: 2px solid var(--ink); border-radius: 999px; background: #fff;
  max-width: 560px; margin: 0 auto;
}
.hero-search input { border-radius: 999px 0 0 999px; }
.hero-search button { border-radius: 0 999px 999px 0; }
.hero-search input {
  flex: 1; border: 0; padding: 13px 20px; font-size: 16px; font-family: inherit;
  outline: none; min-width: 0; background: transparent;
}
.hero-search button {
  border: 0; background: var(--ink); color: var(--cheese);
  font-weight: 800; font-size: 15px; padding: 0 26px; cursor: pointer;
}
.keyword-chips {
  margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; align-items: center;
}
.chips-label { font-size: 12.5px; color: var(--muted-text); font-weight: 600; }

/* ---------- 칩 / 탭 ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 13px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-soft);
  transition: background 0.15s;
}
.chip:hover { background: var(--cheese-bg); }
.chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip-lg { padding: 10px 18px; font-size: 14.5px; }
.category-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.sort-tabs { display: flex; gap: 2px; flex-wrap: wrap; }
.sort-tab {
  padding: 6px 11px; font-size: 13px; font-weight: 600; color: var(--muted-text);
  border-radius: 8px;
}
.sort-tab.on { color: var(--ink); background: var(--cheese-bg); font-weight: 800; }

.filter-row {
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px 0; border-bottom: 1px solid var(--line); margin-bottom: 18px;
}
@media (min-width: 760px) {
  .filter-row { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- 섹션 ---------- */
.section { margin: 36px 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  margin-bottom: 4px;
}
.section-head h2 {
  font-size: 20px; font-weight: 900; letter-spacing: -0.4px;
  display: flex; align-items: center; gap: 6px;
}
.section-sub { color: var(--muted-text); font-size: 13.5px; margin-bottom: 14px; }
.more-link { font-size: 13.5px; font-weight: 700; color: var(--cheese-text); white-space: nowrap; }

.list-head { padding: 20px 0 0; }
.list-title { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; }
.list-title .count { font-size: 15px; color: var(--muted-text); font-weight: 600; }

/* ---------- 상품 카드 ---------- */
.card-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-thumb {
  aspect-ratio: 1 / 1; background: var(--cheese-bg);
  display: flex; align-items: center; justify-content: center;
}
.thumb-emoji { font-size: clamp(44px, 9vw, 64px); }
.card-body { padding: 10px 12px 14px; display: flex; flex-direction: column; gap: 3px; }
.card-badges { display: flex; flex-wrap: wrap; gap: 4px; min-height: 20px; }
.badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 10.5px; font-weight: 800; padding: 2px 7px; border-radius: 999px;
}
.badge-atl { background: var(--green-bg); color: var(--green-text); }
.badge-rocket { background: var(--blue-bg); color: var(--blue); }
.badge-cat { background: var(--bg-soft); color: var(--ink-soft); }
.card-name {
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.9em;
}
.card-drop { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.drop-pct { color: var(--red-text); font-weight: 800; }
.drop-pct.big { font-size: 20px; }
.price-old { color: var(--muted-text); font-size: 12.5px; }
.card-price {
  font-size: 18px; font-weight: 800; letter-spacing: -0.3px;
  font-variant-numeric: tabular-nums;
}
.card-meta { font-size: 11.5px; color: var(--muted-text); }

/* ---------- 상품 상세 ---------- */
.breadcrumb { padding: 14px 0 4px; font-size: 13px; color: var(--muted-text); }
.breadcrumb a:hover { color: var(--ink); }

.product-head {
  display: grid; gap: 20px; padding: 14px 0 6px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .product-head { grid-template-columns: 300px 1fr; } }
.product-thumb {
  aspect-ratio: 1 / 1; max-width: 300px; width: 100%;
  background: var(--cheese-bg); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.thumb-emoji-lg { font-size: 110px; }
.product-name { font-size: clamp(19px, 4vw, 24px); font-weight: 800; letter-spacing: -0.5px; margin: 6px 0 2px; }
.product-rating { font-size: 14px; color: var(--cheese-text); font-weight: 700; }
.product-rating .muted { font-weight: 500; }

.price-now { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 16px; flex-wrap: wrap; }
.price-current {
  font-size: clamp(28px, 6vw, 36px); font-weight: 900; letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--cheese); color: var(--ink);
  font-weight: 800; font-size: 15.5px;
  padding: 13px 26px; border-radius: 999px; border: 2px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn-primary:hover { transform: translateY(1px); box-shadow: 0 2px 0 var(--ink); }
.btn-buy { width: 100%; max-width: 380px; }
.disclosure-inline { font-size: 11.5px; color: var(--muted-text); margin-top: 8px; }

/* ---------- 판정 말풍선 ---------- */
.verdict {
  margin: 22px 0; padding: 18px 16px;
  border-radius: var(--radius);
}
.verdict-main { display: flex; align-items: center; gap: 14px; }
.verdict-cat { flex-shrink: 0; }
.verdict-bubble {
  position: relative; flex: 1;
  background: #fff; border-radius: 12px; padding: 12px 16px;
  border: 2px solid transparent;
}
.verdict-bubble::before {
  content: ""; position: absolute; left: -9px; top: 50%; margin-top: -8px;
  border: 8px solid transparent; border-left-width: 0;
  border-right-color: inherit;
}
.verdict-badge {
  display: inline-block; font-size: 11px; font-weight: 800;
  padding: 2px 9px; border-radius: 999px; margin-bottom: 4px;
}
.verdict-title { display: block; font-size: 17.5px; font-weight: 900; letter-spacing: -0.3px; }
.verdict-message { font-size: 13.5px; color: var(--ink-soft); margin-top: 3px; }

/* 수집 중 — 그린(사라)도 레드(사지마)도 아닌 중립. 판정 보류라는 뜻이 색으로 읽혀야 한다 */
.verdict-collecting { background: var(--bg-soft); }
.verdict-collecting .verdict-bubble { border-color: var(--muted-text); }
.verdict-collecting .verdict-bubble::before { border-right-color: var(--muted-text); }
.verdict-collecting .verdict-badge { background: var(--muted-text); color: #fff; }

.verdict-best, .verdict-good { background: var(--green-bg); }
.verdict-best .verdict-bubble, .verdict-good .verdict-bubble { border-color: var(--green-text); }
.verdict-best .verdict-bubble::before, .verdict-good .verdict-bubble::before { border-right-color: var(--green-text); }
.verdict-best .verdict-badge, .verdict-good .verdict-badge { background: var(--green-text); color: #fff; }

.verdict-ok { background: var(--cheese-bg); }
.verdict-ok .verdict-bubble { border-color: var(--cheese-text); }
.verdict-ok .verdict-bubble::before { border-right-color: var(--cheese-text); }
.verdict-ok .verdict-badge { background: var(--cheese-text); color: #fff; }

.verdict-wait { background: var(--orange-bg); }
.verdict-wait .verdict-bubble { border-color: var(--orange); }
.verdict-wait .verdict-bubble::before { border-right-color: var(--orange); }
.verdict-wait .verdict-badge { background: var(--orange-text); color: #fff; }

.verdict-no { background: var(--red-bg); }
.verdict-no .verdict-bubble { border-color: var(--red-text); }
.verdict-no .verdict-bubble::before { border-right-color: var(--red-text); }
.verdict-no .verdict-badge { background: var(--red-text); color: #fff; }

/* ---------- 가격 통계 ---------- */
.price-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin: 18px 0;
}
.stat {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 10px; text-align: center;
}
.stat-label { display: block; font-size: 12px; color: var(--muted-text); font-weight: 600; margin-bottom: 4px; }
.stat-value { font-size: clamp(15px, 3.4vw, 20px); font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -0.4px; }
.stat-low { background: var(--green-bg); border-color: var(--green-text); }
.stat-low .stat-label { color: var(--green-text); }
.stat-low .stat-value { color: var(--green-text); }

/* ---------- 차트 ---------- */
.chart-section { margin: 26px 0; }
.range-tabs { display: flex; gap: 4px; }
.range-tab {
  border: 1px solid var(--line); background: #fff; color: var(--muted-text);
  font-size: 13px; font-weight: 700; padding: 5px 13px; border-radius: 999px;
}
.range-tab.on { background: var(--ink); color: #fff; border-color: var(--ink); }

#price-chart {
  position: relative; width: 100%; min-height: 260px; margin-top: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px 4px 4px;
}
.chart-loading { text-align: center; padding: 60px 0; color: var(--muted-text); font-size: 13.5px; }
.chart-svg { display: block; width: 100%; height: auto; }
.chart-tooltip {
  position: absolute; pointer-events: none; z-index: 5;
  background: var(--ink); color: #fff; font-size: 12.5px; line-height: 1.45;
  padding: 7px 11px; border-radius: 9px; white-space: nowrap;
  transform: translate(-50%, calc(-100% - 12px));
  opacity: 0; transition: opacity 0.12s;
}
.chart-tooltip strong { font-size: 14px; font-variant-numeric: tabular-nums; }
.chart-tooltip .tt-diff { color: var(--cheese); }

.chart-table-toggle { margin-top: 10px; font-size: 13.5px; }
.chart-table-toggle summary { cursor: pointer; color: var(--muted-text); font-weight: 600; padding: 4px 0; }
.table-scroll { overflow-x: auto; max-height: 300px; overflow-y: auto; margin-top: 8px; border: 1px solid var(--line); border-radius: 10px; }

/* ---------- 테이블 (표로 보기 / 관리자) ---------- */
.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table th, .data-table td { padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.data-table th { background: var(--bg-soft); font-weight: 700; position: sticky; top: 0; }
.data-table td { font-variant-numeric: tabular-nums; }

/* ---------- 빈 화면 / 페이지네이션 ---------- */
.empty-state { text-align: center; padding: 56px 16px; }
.empty-title { font-size: 18px; font-weight: 800; margin-top: 12px; }
.empty-sub { font-size: 13.5px; color: var(--muted-text); margin-top: 4px; }
.empty-action { margin-top: 16px; }

.pagination { display: flex; gap: 6px; justify-content: center; margin: 28px 0; flex-wrap: wrap; }
.page {
  min-width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--line); font-size: 13.5px; font-weight: 600;
}
.page.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.page-gap { align-self: center; color: var(--muted-text); }

/* ---------- 푸터 ---------- */
.site-footer {
  margin-top: 56px; padding: 30px 0 40px;
  background: var(--bg-soft); border-top: 1px solid var(--line);
  text-align: center; font-size: 12.5px; color: var(--muted-text);
}
.footer-cat { margin-bottom: 8px; }
.disclosure { max-width: 560px; margin: 0 auto 10px; }
.footer-links { margin-bottom: 6px; }
.footer-links a:hover { color: var(--ink); }
.footer-biz { font-size: 12px; color: var(--muted-text); margin-bottom: 6px; }
.footer-biz a { color: var(--muted-text); text-decoration: underline; }
.footer-biz a:hover { color: var(--ink); }

/* 법적 문서 (이용약관·개인정보처리방침) — 본문 가독 우선, 브랜드 톤은 최소화 */
.legal { max-width: 720px; margin: 24px auto 48px; padding: 0 16px; font-size: 14.5px; line-height: 1.75; }
.legal h1 { font-size: 24px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 4px; }
.legal h2 { font-size: 16.5px; font-weight: 800; margin: 28px 0 8px; letter-spacing: -0.3px; }
.legal p { margin: 8px 0; }
.legal ul, .legal ol { margin: 8px 0 8px 20px; }
.legal li { margin: 4px 0; }
.legal-meta { font-size: 12.5px; color: var(--muted-text); }
.legal-summary { background: var(--cheese-bg); border-radius: 14px; padding: 14px 18px; margin: 16px 0 20px; }
.legal-summary ul { list-style: none; margin: 8px 0 0; }
.legal-summary li { margin: 5px 0; }
.legal .table-wrap { overflow-x: auto; margin: 10px 0; }
.legal table { width: 100%; border-collapse: collapse; font-size: 13px; }
.legal th, .legal td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
.legal th { background: var(--bg-soft); font-weight: 700; white-space: nowrap; }

/* 마이페이지 회원 탈퇴 */
.withdraw-box summary { cursor: pointer; font-size: 13.5px; color: var(--muted-text); }
.withdraw-box[open] summary { color: var(--ink); font-weight: 700; }
.withdraw-box input[type="password"] { padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; font-size: 14px; }

/* ---------- 관리자 ---------- */
.admin-wrap { max-width: 960px; margin: 0 auto; padding: 24px 16px; }
.admin-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.admin-head h1 { font-size: 21px; font-weight: 900; display: flex; align-items: center; gap: 8px; }
.admin-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-nav a { padding: 6px 12px; border-radius: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.admin-nav a.on, .admin-nav a:hover { background: var(--cheese-bg); color: var(--ink); }

.stat-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }
@media (min-width: 720px) { .stat-tiles { grid-template-columns: repeat(5, 1fr); } }
.tile { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.tile-label { font-size: 12px; color: var(--muted-text); font-weight: 600; }
.tile-value { font-size: 22px; font-weight: 900; font-variant-numeric: tabular-nums; }

.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin-bottom: 18px; }
.admin-card h2 { font-size: 16px; font-weight: 800; margin-bottom: 12px; }

.btn-sm {
  display: inline-block; padding: 5px 12px; border-radius: 8px; border: 1px solid var(--line);
  background: #fff; font-size: 12.5px; font-weight: 700; color: var(--ink-soft);
}
.btn-sm:hover { background: var(--bg-soft); }
.btn-danger { color: var(--red-text); border-color: var(--red-bg); }
.btn-collect { background: var(--cheese); border: 2px solid var(--ink); color: var(--ink); font-weight: 800; padding: 9px 18px; border-radius: 999px; font-size: 14px; }

.status-pill { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 800; }
.status-success { background: var(--green-bg); color: var(--green-text); }
.status-partial { background: var(--cheese-bg); color: var(--cheese-text); }
.status-fail { background: var(--red-bg); color: var(--red-text); }

.login-box { max-width: 380px; margin: 9vh auto 0; text-align: center; padding: 0 16px; }
.login-box h1 { font-size: 22px; font-weight: 900; margin: 10px 0 20px; }
.login-box form { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.login-box input {
  padding: 12px 16px; border: 2px solid var(--line); border-radius: 12px; font-size: 15px; font-family: inherit;
}
.login-box input:focus:not(:focus-visible) { border-color: var(--cheese-deep); outline: none; }
.login-error { color: var(--red-text); font-size: 13.5px; font-weight: 600; }

.admin-grid-2 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .admin-grid-2 { grid-template-columns: 1fr 1fr; } }
.mini-chart { width: 100%; height: auto; display: block; }
.device-bar {
  height: 14px; border-radius: 999px; background: var(--line); overflow: hidden;
}
.device-mobile { display: block; height: 100%; background: var(--cheese-deep); border-radius: 999px 0 0 999px; }

.flash { padding: 12px 16px; border-radius: 12px; margin-bottom: 16px; font-size: 14px; font-weight: 600; }
.flash-success { background: var(--green-bg); color: var(--green-text); }
.flash-error { background: var(--red-bg); color: var(--red-text); }

/* ---------- CTA / 공유 ---------- */
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: stretch; }
@media (max-width: 759px) {
  .cta-row .btn-share { flex: 1 1 0; min-width: 0; padding-left: 10px; padding-right: 10px; }
  .cta-row .btn-share-sm { flex: 0 0 auto; }
}
.btn-share {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: #fff; color: var(--ink); font-weight: 800; font-size: 14.5px;
  padding: 12px 20px; border-radius: 999px; border: 2px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink); cursor: pointer; font-family: inherit;
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn-share:hover { transform: translateY(1px); box-shadow: 0 2px 0 var(--ink); background: var(--cheese-bg); }
.btn-share-sm { padding: 7px 14px; font-size: 13px; box-shadow: 0 2px 0 var(--ink); }
.freshness { font-size: 12px; color: var(--muted-text); margin-top: 6px; }
.list-title-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

/* 토스트 */
.lc-toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 16px);
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 600;
  padding: 12px 20px; border-radius: 999px; z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s;
  max-width: calc(100vw - 32px); text-align: center;
}
.lc-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- 판정 근거 지표 + 가격 위치 게이지 (상세의 유일한 가격 요약 칩) ---------- */
.verdict-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.fact-chip {
  background: #fff; border: 1px solid rgba(38, 32, 28, 0.1); border-radius: 999px;
  font-size: 12.5px; color: var(--ink-soft); padding: 6px 13px;
  font-variant-numeric: tabular-nums;
}
.fact-chip strong { color: var(--ink); }
.fact-chip .fact-down { color: var(--green-text); }
.fact-chip .fact-up { color: var(--red-text); }

.price-gauge { margin-top: 16px; padding: 0 4px; }
.gauge-track {
  position: relative; height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, #1FBF83 0%, #F7B733 55%, #E94F3D 100%);
}
.gauge-marker {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--ink);
  box-shadow: 0 1px 4px rgba(38, 32, 28, 0.3);
}
.gauge-price {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: 11.5px; font-weight: 800;
  padding: 3px 9px; border-radius: 7px; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.gauge-price::after {
  content: ""; position: absolute; left: 50%; bottom: -4px; margin-left: -4px;
  border: 4px solid transparent; border-bottom-width: 0; border-top-color: var(--ink);
}
.gauge-labels {
  display: flex; justify-content: space-between; margin-top: 8px;
  font-size: 12px; color: var(--muted-text); font-variant-numeric: tabular-nums;
}
.verdict .price-gauge { margin-top: 34px; }

/* ---------- 차트 부가 ---------- */
.chart-caption { font-size: 12.5px; color: var(--muted-text); margin-top: 8px; text-align: right; }
.chart-caption .cap-line { color: var(--orange-text); font-weight: 700; }
.chart-caption .cap-low { color: var(--green-text); font-weight: 700; }
.chart-tooltip .tt-date { color: rgba(255, 255, 255, 0.75); font-size: 11.5px; }
.chart-tooltip .tt-down { color: #6EE7B7; font-size: 12px; }
.chart-tooltip .tt-up { color: #FCA5A5; font-size: 12px; }
.pulse-ring { animation: lc-pulse 2.2s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes lc-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ---------- 이용안내 ---------- */
.hero-sm { padding: 32px 8px 10px; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  position: relative; text-align: center;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 16px 18px;
}
.step-no {
  position: absolute; top: 12px; left: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cheese); color: var(--ink); font-weight: 900; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-size: 15.5px; font-weight: 800; margin: 8px 0 4px; }
.step-card p { font-size: 13px; color: var(--ink-soft); }
.verdict-guide { display: flex; flex-direction: column; gap: 8px; }
.vg-row {
  display: flex; align-items: center; gap: 14px;
  border-radius: 12px; padding: 12px 16px; border: 1px solid var(--line);
}
.vg-row strong { font-size: 14.5px; }
.vg-row p { font-size: 13px; color: var(--ink-soft); margin-top: 1px; }
.vg-best, .vg-good { background: var(--green-bg); border-color: rgba(23, 166, 115, 0.25); }
.vg-ok { background: var(--cheese-bg); border-color: rgba(232, 148, 15, 0.25); }
.vg-wait { background: var(--orange-bg); border-color: rgba(232, 99, 28, 0.25); }
.vg-no { background: var(--red-bg); border-color: rgba(233, 79, 61, 0.2); }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 14.5px; padding: 14px 16px;
  list-style: none; position: relative;
}
.faq-item summary::before { content: "Q. "; color: var(--cheese-text); font-weight: 900; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--muted-text); font-size: 18px; font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 16px 14px 16px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }

.guide-share { background: var(--cheese-bg); border-radius: var(--radius); padding: 26px 20px; }
.guide-share-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.guide-share h2 { font-size: 18px; font-weight: 900; margin-bottom: 2px; }
.guide-share .btn-primary { margin-top: 10px; }

/* ---------- 최저가 알림 모달 ---------- */
.btn-alert { white-space: nowrap; }

.modal-backdrop[hidden], .custom-price[hidden] { display: none; }
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(38, 32, 28, 0.45);
  display: flex; align-items: flex-end; justify-content: center;
}
.modal-sheet {
  position: relative; width: 100%; max-width: 480px;
  background: #fff; border-radius: 22px 22px 0 0;
  padding: 26px 20px calc(22px + env(safe-area-inset-bottom));
  animation: sheet-up 0.25s ease-out;
  max-height: 88vh; overflow-y: auto;
}
@keyframes sheet-up { from { transform: translateY(40px); opacity: 0.5; } to { transform: none; opacity: 1; } }
@media (min-width: 760px) {
  .modal-backdrop { align-items: center; padding: 20px; }
  .modal-sheet { border-radius: 22px; padding-bottom: 26px; }
}
.modal-close {
  position: absolute; top: 10px; right: 10px;
  width: 44px; height: 44px; border: 0; background: var(--bg-soft);
  border-radius: 50%; font-size: 22px; color: var(--ink-soft); line-height: 1;
}
.modal-head { text-align: center; margin-bottom: 16px; }
.modal-title { display: block; font-size: 19px; font-weight: 900; letter-spacing: -0.4px; margin-top: 6px; }
.modal-product { font-size: 13px; color: var(--muted-text); margin-top: 4px; }
.modal-product strong { color: var(--ink); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.channel-tabs { display: flex; gap: 8px; margin-bottom: 12px; }
.channel-tab {
  flex: 1; padding: 11px 8px; border-radius: 12px; font-size: 14px; font-weight: 700;
  border: 2px solid var(--line); background: #fff; color: var(--muted-text);
}
.channel-tab.on { border-color: var(--ink); color: var(--ink); background: var(--cheese-bg); }

.alert-contact {
  width: 100%; padding: 13px 16px; font-size: 16px; font-family: inherit;
  border: 2px solid var(--line); border-radius: 12px; margin-bottom: 12px;
}
.alert-contact:focus:not(:focus-visible) { border-color: var(--cheese-deep); outline: none; }

.preset-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.preset {
  padding: 8px 13px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft);
}
.preset.on { background: var(--ink); color: #fff; border-color: var(--ink); }

.custom-price { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 14px; color: var(--ink-soft); }
.custom-price-input {
  width: 140px; padding: 10px 14px; font-size: 16px; font-family: inherit;
  border: 2px solid var(--line); border-radius: 10px;
  font-variant-numeric: tabular-nums;
}
.custom-price-input:focus:not(:focus-visible) { border-color: var(--cheese-deep); outline: none; }

.alert-target-info { min-height: 22px; font-size: 14px; color: var(--ink-soft); margin-bottom: 12px; }
.alert-target-info strong { color: var(--green-text); font-size: 15px; }

.alert-submit { width: 100%; }
.modal-note { font-size: 11.5px; color: var(--muted-text); text-align: center; margin-top: 12px; line-height: 1.6; }

/* ---------- 회원 (가입/로그인/마이페이지) ---------- */
.member-box { max-width: 420px; margin: 44px auto; text-align: center; padding: 0 4px; }
.member-box h1 { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; margin: 12px 0 6px; }
.member-sub { font-size: 14px; color: var(--ink-soft); line-height: 1.75; }
.member-form { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; text-align: left; }
.member-form input {
  padding: 13px 16px; border: 2px solid var(--line); border-radius: 12px;
  font-size: 16px; font-family: inherit;
}
.member-form input:focus:not(:focus-visible) { border-color: var(--cheese-deep); outline: none; }
.member-alt { margin-top: 16px; font-size: 13.5px; color: var(--muted-text); }
.member-alt a { color: var(--cheese-text); font-weight: 700; }

.mypage-info { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 18px; }
.mp-row { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; align-items: center; flex-wrap: wrap; }
.mp-label { color: var(--muted-text); min-width: 60px; font-weight: 600; }

/* 모달: 비로그인 안내 / 고정 연락처 / 휴대폰 인증 */
.modal-login-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.modal-login-cta .btn-primary, .modal-login-cta .btn-share { width: 100%; justify-content: center; text-align: center; }
.contact-fixed {
  background: var(--bg-soft); border-radius: 10px; padding: 12px 14px;
  font-size: 13.5px; color: var(--ink-soft); margin-bottom: 12px;
}
.channel-panel[hidden] { display: none; }
.otp-box { background: var(--bg-soft); border-radius: 12px; padding: 14px; margin-bottom: 12px; }
.otp-guide { font-size: 13px; color: var(--ink-soft); margin-bottom: 10px; }
.otp-row { display: flex; gap: 8px; margin-bottom: 8px; }
.otp-row input {
  flex: 1; min-width: 0; padding: 10px 14px; font-size: 16px;
  border: 2px solid var(--line); border-radius: 10px; font-family: inherit;
  background: #fff;
}
.otp-row input:focus:not(:focus-visible) { border-color: var(--cheese-deep); outline: none; }
.otp-row .btn-sm { white-space: nowrap; }
.otp-status { font-size: 12.5px; min-height: 18px; }

/* 모바일: 필터 칩 가로 스와이프 (세로 공간 절약) */
@media (max-width: 759px) {
  .category-chips, .sort-tabs {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; margin: 0 -16px; padding: 0 16px 4px;
  }
  .category-chips::-webkit-scrollbar, .sort-tabs::-webkit-scrollbar { display: none; }
  .category-chips .chip, .sort-tab { flex-shrink: 0; white-space: nowrap; }
}

/* ---------- 카드: 쿠팡 바로가기 + 스트레치 링크 ---------- */
.card { position: relative; }
.card-link { position: absolute; inset: 0; z-index: 1; border-radius: var(--radius); }
.card-go {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  display: inline-flex; align-items: center; gap: 3px;
  background: rgba(255, 255, 255, 0.94); border: 1.5px solid var(--ink);
  color: var(--ink); font-size: 11px; font-weight: 800;
  padding: 7px 11px; border-radius: 999px;
  box-shadow: 0 1.5px 0 var(--ink);
}
.card-go:hover { background: var(--cheese); }

/* ---------- 검색 자동완성 ---------- */
.suggest-box {
  position: absolute; top: calc(100% + 8px); left: -2px; right: -2px; z-index: 90;
  background: #fff; border: 2px solid var(--ink); border-radius: 14px;
  overflow: hidden; box-shadow: 0 10px 26px rgba(38, 32, 28, 0.2);
  text-align: left;
}
.suggest-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; cursor: pointer; font-size: 14px;
}
.suggest-item.on, .suggest-item:hover { background: var(--cheese-bg); }
.suggest-emoji { font-size: 20px; flex-shrink: 0; }
.suggest-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink); }
.suggest-price { font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; font-size: 13.5px; }
.suggest-atl { font-size: 10px; font-weight: 800; color: var(--green-text); background: var(--green-bg); border-radius: 999px; padding: 2px 7px; white-space: nowrap; }

/* ---------- 최근 본 상품 스트립 ---------- */
.recent-strip {
  display: flex; gap: 10px; overflow-x: auto; padding: 2px 0 6px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.recent-strip::-webkit-scrollbar { display: none; }
.recent-item {
  flex: 0 0 auto; display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 8px 13px;
}
.recent-item:hover { background: var(--cheese-bg); }
.recent-emoji { font-size: 22px; }
.recent-name { font-size: 12px; color: var(--ink-soft); display: inline-block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 130px; }
.recent-price { font-size: 13px; font-weight: 800; }

/* ---------- 핫딜 냥이 멘트 ---------- */
.hotdeal-cat {
  display: flex; align-items: center; gap: 10px;
  background: var(--cheese-bg); border-radius: 12px; padding: 10px 14px;
  font-size: 13.5px; color: var(--ink-soft); margin-top: 8px;
}
.hotdeal-cat strong { color: var(--ink); }

/* ---------- 상품 FAQ ---------- */
.product-faq { margin-top: 14px; }

/* ---------- 몰 비교 (쿠팡/네이버) ---------- */
.mall-mini {
  display: inline-block; font-size: 10.5px; font-weight: 800; vertical-align: 2px;
  padding: 2px 7px; border-radius: 999px; margin-left: 2px;
}
.mall-mini-coupang { background: var(--cheese-bg); color: var(--cheese-text); }
.mall-mini-naver { background: var(--naver-bg); color: var(--naver-text); }

.mall-compare { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 8px; max-width: 460px; }
.mall-row {
  display: flex; align-items: center; gap: 10px;
  border: 2px solid var(--line); border-radius: 14px; padding: 12px 16px;
  background: #fff; transition: transform 0.12s, box-shadow 0.12s;
}
.mall-row:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.mall-row.on { border-color: var(--ink); box-shadow: 0 3px 0 var(--ink); }
.mall-tag { font-size: 13px; font-weight: 900; flex-shrink: 0; min-width: 74px; }
.mall-coupang .mall-tag { color: var(--cheese-text); }
.mall-naver .mall-tag { color: var(--naver-text); }
.mall-price { font-size: 17px; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -0.3px; }
.mall-best {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--green-text); color: #fff; font-size: 10.5px; font-weight: 800;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.mall-cta {
  margin-left: auto; flex-shrink: 0; white-space: nowrap;
  font-size: 12.5px; font-weight: 800; color: var(--ink);
  border: 1.5px solid var(--ink); border-radius: 999px; padding: 6px 12px;
  background: #fff; transition: background 0.12s;
}
.mall-row:hover .mall-cta { background: var(--cheese-bg); }
.mall-row.on .mall-cta { background: var(--cheese); box-shadow: 0 2px 0 var(--ink); }
.mall-row.on:hover .mall-cta { background: var(--cheese); }
.mall-comment { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 12px; }
.mall-comment strong { color: var(--ink); }

.cap-naver { color: var(--naver-text); font-weight: 700; }
.chart-tooltip .tt-naver { color: #7CE3AE; font-size: 12px; }

/* ---------- 가입 동의 ---------- */
.consent-box { background: var(--bg-soft); border-radius: 12px; padding: 12px 14px; font-size: 13px; }
.consent-row { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; cursor: pointer; line-height: 1.5; }
.consent-row input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--cheese-deep); flex-shrink: 0; }
.consent-note { margin-top: 6px; padding-top: 8px; border-top: 1px dashed var(--line); font-size: 12px; color: var(--ink-soft); }

/* ---------- 홈: 사용 흐름 밴드 (비교 → 판정 → 알림을 실제 UI 어휘로 미리보기) ---------- */
.how-band {
  display: flex; align-items: stretch; justify-content: center; gap: 8px;
  background: var(--bg-soft); border-radius: var(--radius);
  padding: 22px 14px 20px; margin-top: 26px;
}
.how-step {
  flex: 1; max-width: 230px; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
}
.how-q { font-size: 12.5px; font-weight: 800; color: var(--cheese-text); }
.how-visual {
  min-height: 62px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
}
.how-a { font-size: 13.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.2px; }
.how-arrow { align-self: center; color: var(--muted); font-size: 18px; flex-shrink: 0; }

.hm-row {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 4px 12px; font-size: 12.5px; white-space: nowrap;
}
.hm-best { border-color: var(--ink); background: var(--cheese-bg); }
.hm-mall { font-weight: 900; font-size: 11.5px; color: var(--cheese-text); }
.hm-naver { color: var(--naver-text); }
.hm-price { font-weight: 800; font-variant-numeric: tabular-nums; }

.how-verdict {
  background: var(--green-text); color: #fff;
  font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 999px;
}
.how-dots { display: inline-flex; gap: 6px; padding: 2px; }
.how-dots i { width: 9px; height: 9px; border-radius: 50%; opacity: 0.4; }
.how-dots .d1 { background: var(--green); opacity: 1; outline: 2px solid var(--ink); outline-offset: 2px; }
.how-dots .d2 { background: var(--green); }
.how-dots .d3 { background: var(--cheese); }
.how-dots .d4 { background: var(--orange); }
.how-dots .d5 { background: var(--red); }
.how-spark { display: block; }
.how-toast {
  background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px;
  white-space: nowrap;
}
.how-note { text-align: center; font-size: 12.5px; color: var(--muted-text); margin-top: 12px; }
.how-note a { font-weight: 700; color: var(--cheese-text); }

/* 모바일: 단계를 [텍스트 | 비주얼] 가로 행으로 접어 세로 길이 1/3로 — 세로 스캔이 곧 순서라 화살표 불필요 */
@media (max-width: 759px) {
  .how-band { flex-direction: column; gap: 0; padding: 4px 18px; }
  .how-arrow { display: none; }
  .how-step {
    max-width: none;
    display: grid; grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "q v" "a v";
    column-gap: 12px; row-gap: 2px;
    align-items: center; padding: 13px 0; text-align: left;
  }
  .how-step ~ .how-step { border-top: 1px dashed var(--line); }
  .how-q { grid-area: q; align-self: end; }
  .how-a { grid-area: a; align-self: start; }
  .how-visual { grid-area: v; min-height: 0; gap: 4px; }
  .hm-row { padding: 3px 10px; font-size: 12px; }
  .how-spark { width: 78px; height: 29px; }
  .how-toast { padding: 4px 10px; }
}

/* ---------- 접근성 / 모션 ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
