/* ===================================================================
   국산수산 — Claude-inspired Design System
   웜 크림 배경 + 코랄 포인트 + 오션 블루 서브 + 미니멀 타이포
   =================================================================== */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.css');

:root {
  /* Surface / Background */
  --c-bg: #FAF9F5;
  --c-surface: #FFFFFF;
  --c-surface-muted: #F3F1EA;
  --c-surface-alt: #EDE9DF;

  /* Ink (텍스트) */
  --c-ink: #1F1E1D;
  --c-ink-soft: #44423F;
  --c-muted: #8B8780;
  --c-subtle: #B4B0A8;

  /* Border */
  --c-border: #E6E3DB;
  --c-border-strong: #D7D3C8;

  /* Brand — 클로드 코랄(주 CTA) */
  --c-primary: #D97757;
  --c-primary-hover: #C46444;
  --c-primary-soft: #F3E3D9;

  /* Sub — 오션 블루(수산 브랜드 식별) */
  --c-ocean: #1E3A52;
  --c-ocean-hover: #15293C;
  --c-ocean-soft: #DCE6ED;

  /* States */
  --c-sale: #DC2626;      /* 할인율 */
  --c-success: #0F8A5F;   /* 판매중/적립 */
  --c-warn: #B45309;      /* 한정 */
  --c-info: #0369A1;      /* 무료배송 */

  /* Radius / Shadow */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(27, 26, 24, 0.04), 0 2px 8px rgba(27, 26, 24, 0.04);
  --shadow-lift: 0 4px 16px rgba(27, 26, 24, 0.08);
  --shadow-fab: 0 8px 24px rgba(27, 26, 24, 0.12);
}

* { -webkit-tap-highlight-color: transparent; }

html, body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', sans-serif;
  background: var(--c-bg);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'tnum' 1;
}

body {
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
  min-height: 100vh;
}

/* ===================== Typography ===================== */
.h-display { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
.h-section { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
.h-card    { font-size: 14px; font-weight: 600; line-height: 1.35; }
.t-body    { font-size: 14px; line-height: 1.55; color: var(--c-ink-soft); }
.t-meta    { font-size: 12px; color: var(--c-muted); }
.t-price   { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.t-strike  { font-size: 12px; color: var(--c-muted); text-decoration: line-through; }
.t-sale    { font-size: 14px; font-weight: 800; color: var(--c-sale); }

/* ===================== Layout ===================== */
.app-shell { max-width: 480px; margin: 0 auto; background: var(--c-bg); position: relative; }

/* 상단 헤더 */
.app-header {
  position: sticky; top: 0; z-index: 40;
  height: 56px;
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.app-header-inner { display: flex; align-items: center; gap: 4px; padding: 0 12px; height: 100%; }
.app-logo { font-size: 18px; font-weight: 800; letter-spacing: -0.03em; color: var(--c-ink); }
.app-logo em { color: var(--c-primary); font-style: normal; }

/* 하단 탭바 */
.app-tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  max-width: 480px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--c-border);
  padding-bottom: env(safe-area-inset-bottom);
  display: grid; grid-template-columns: repeat(5, 1fr);
  height: 64px;
}
.tab-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--c-muted); font-size: 11px; font-weight: 500; }
.tab-item.active { color: var(--c-ink); }
.tab-item .tab-icon { width: 22px; height: 22px; stroke-width: 1.75; }
.tab-item.active .tab-icon { stroke-width: 2.25; }

/* 플로팅 */
.fab-stack { position: fixed; right: 12px; bottom: calc(80px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 8px; z-index: 45; }
.fab {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-surface); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-fab);
  color: var(--c-ink-soft);
}
.fab.primary { background: var(--c-primary); color: #fff; border-color: transparent; }

/* ===================== Buttons ===================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 48px; padding: 0 18px; border-radius: var(--r-md); font-weight: 600; font-size: 15px; transition: transform .05s, background .15s, color .15s; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-hover); }
.btn-ocean { background: var(--c-ocean); color: #fff; }
.btn-ocean:hover { background: var(--c-ocean-hover); }
.btn-ghost { background: var(--c-surface); color: var(--c-ink); border: 1px solid var(--c-border-strong); }
.btn-ghost:hover { background: var(--c-surface-muted); }
.btn-block { width: 100%; }
.btn-sm { height: 36px; padding: 0 12px; font-size: 13px; border-radius: var(--r-sm); }

/* 하단 고정 CTA 바 */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 48;
  max-width: 480px; margin: 0 auto;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 8px;
}

/* ===================== Cards ===================== */
.card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; }
.card-muted { background: var(--c-surface-muted); border-color: transparent; }

/* 상품 카드 (2단 그리드) */
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 12px; }
.prod-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; position: relative; }
.prod-card .thumb { position: relative; aspect-ratio: 1 / 1; background: var(--c-surface-muted); overflow: hidden; }
.prod-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-card .badges { position: absolute; top: 8px; left: 8px; display: flex; flex-wrap: wrap; gap: 4px; max-width: calc(100% - 16px); }
.prod-card .actions { position: absolute; bottom: 8px; right: 8px; display: flex; gap: 6px; }
.prod-card .actions .chip-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.92); border: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; color: var(--c-ink); }
.prod-card .info { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 4px; }
.prod-card .name { font-size: 13.5px; font-weight: 500; color: var(--c-ink); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em; }
.prod-card .price-row { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.prod-card .sale { font-weight: 800; color: var(--c-sale); font-size: 13px; }
.prod-card .price { font-size: 16px; font-weight: 800; color: var(--c-ink); letter-spacing: -0.02em; }
.prod-card .strike { font-size: 11.5px; color: var(--c-muted); text-decoration: line-through; }
.prod-card .meta { display: flex; align-items: center; gap: 6px; margin-top: 2px; font-size: 11.5px; color: var(--c-muted); }
.prod-card .tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }

/* 상품 카드 가로스크롤 */
.prod-rail { display: flex; gap: 10px; padding: 0 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.prod-rail::-webkit-scrollbar { display: none; }
.prod-rail > .prod-card { flex: 0 0 140px; scroll-snap-align: start; }

/* 리스트형 랭킹 */
.rank-list { display: flex; flex-direction: column; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); margin: 0 12px; overflow: hidden; }
.rank-item { display: grid; grid-template-columns: 28px 64px 1fr auto; gap: 10px; align-items: center; padding: 10px 12px; border-bottom: 1px solid var(--c-border); }
.rank-item:last-child { border-bottom: 0; }
.rank-num { font-weight: 800; font-size: 15px; color: var(--c-ink); letter-spacing: -0.02em; }
.rank-num.top3 { color: var(--c-primary); }
.rank-thumb { width: 64px; height: 64px; border-radius: var(--r-sm); background: var(--c-surface-muted); overflow: hidden; }
.rank-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rank-info .name { font-size: 13.5px; font-weight: 500; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rank-info .price { font-size: 14.5px; font-weight: 800; margin-top: 2px; }

/* ===================== Badges ===================== */
.badge { display: inline-flex; align-items: center; padding: 3px 8px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: -0.01em; line-height: 1; }
.badge-hot      { background: #FDECEA; color: var(--c-sale); }
.badge-new      { background: #E6F4EC; color: var(--c-success); }
.badge-best     { background: #FFF2DE; color: var(--c-warn); }
.badge-limited  { background: #EEE6FA; color: #6D28D9; }
.badge-gift     { background: #FCE7F3; color: #BE185D; }
.badge-today    { background: #E0F2FE; color: var(--c-info); }
.badge-free     { background: var(--c-ocean-soft); color: var(--c-ocean); }
.badge-combine  { background: var(--c-surface-alt); color: var(--c-ink-soft); }
.badge-sale     { background: var(--c-sale); color: #fff; }
.badge-sale-pct { background: var(--c-primary); color: #fff; padding: 4px 8px; font-size: 12px; font-weight: 800; }

/* ===================== Section ===================== */
.section { padding: 28px 0 4px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; padding: 0 16px 12px; }
.section-head .more { font-size: 12.5px; color: var(--c-muted); display: inline-flex; align-items: center; gap: 2px; }

/* ===================== Banner ===================== */
.hero-banner { padding: 8px 12px 0; }
.hero-slide {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16 / 9; background: var(--c-ocean-soft);
}
.hero-slide .hero-text { position: absolute; left: 20px; bottom: 18px; right: 20px; color: #fff; }
.hero-slide .hero-text .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.hero-slide .hero-text .title { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; margin-top: 4px; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.hero-dots { display: flex; justify-content: center; gap: 6px; padding: 10px 0 4px; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-border-strong); }
.hero-dot.active { width: 16px; background: var(--c-primary); border-radius: 3px; }

/* ===================== Quick Menu ===================== */
.quick-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 16px 12px 4px; }
.quick-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 8px 4px; }
.quick-ico { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--c-surface); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-ink-soft); }
.quick-label { font-size: 11.5px; color: var(--c-ink-soft); font-weight: 500; letter-spacing: -0.01em; }

/* ===================== Reward CTA ===================== */
.reward-card {
  margin: 0 12px;
  background: linear-gradient(135deg, #FFF6ED 0%, #FDE7D7 100%);
  border: 1px solid #F6D5B8;
  border-radius: var(--r-lg);
  padding: 18px 16px;
  display: flex; align-items: center; gap: 14px;
}
.reward-card .emoji { font-size: 32px; line-height: 1; }
.reward-card .title { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.reward-card .sub   { font-size: 12.5px; color: var(--c-ink-soft); margin-top: 2px; }

/* ===================== Category Chips ===================== */
.chip-row { display: flex; gap: 6px; padding: 8px 12px; overflow-x: auto; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  height: 34px; padding: 0 14px;
  display: inline-flex; align-items: center;
  border-radius: var(--r-pill);
  background: var(--c-surface); border: 1px solid var(--c-border);
  font-size: 13px; font-weight: 500; color: var(--c-ink-soft);
  white-space: nowrap;
}
.chip.active { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

/* ===================== Photo Review Rail ===================== */
.photo-rail { display: flex; gap: 8px; padding: 0 12px; overflow-x: auto; scrollbar-width: none; }
.photo-rail::-webkit-scrollbar { display: none; }
.photo-rail .cell { flex: 0 0 120px; aspect-ratio: 1/1; border-radius: var(--r-md); overflow: hidden; background: var(--c-surface-muted); }
.photo-rail .cell img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== Footer ===================== */
.site-foot { padding: 32px 16px 28px; color: var(--c-muted); font-size: 12px; line-height: 1.7; }
.site-foot .brand { font-weight: 700; color: var(--c-ink); margin-bottom: 6px; }
.site-foot .links { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.site-foot .links a { color: var(--c-ink-soft); font-weight: 500; }
.site-foot .biz { display: grid; grid-template-columns: 72px 1fr; gap: 2px 10px; }
.site-foot .biz dt { color: var(--c-muted); }
.site-foot .biz dd { color: var(--c-ink-soft); }

/* ===================== Utility ===================== */
.divider-thick { height: 10px; background: var(--c-surface-muted); margin: 24px 0 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===================== Enhanced Visuals ===================== */

/* 시네마틱 히어로 */
.hero-cinema {
  position: relative;
  height: 480px;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(217,119,87,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(30,58,82,0.35) 0%, transparent 50%),
    linear-gradient(180deg, #0F2436 0%, #1E3A52 50%, #2D5778 100%);
  color: #fff;
}
.hero-cinema::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><circle cx='100' cy='100' r='1.5' fill='%23ffffff' opacity='0.08'/><circle cx='40' cy='60' r='1' fill='%23ffffff' opacity='0.06'/><circle cx='160' cy='30' r='0.8' fill='%23ffffff' opacity='0.05'/><circle cx='30' cy='150' r='1.2' fill='%23ffffff' opacity='0.05'/><circle cx='170' cy='170' r='0.9' fill='%23ffffff' opacity='0.07'/></svg>");
  pointer-events: none;
}
.hero-cinema::after {
  content: '';
  position: absolute; left: -50%; right: -50%; bottom: -50%; top: 40%;
  background: radial-gradient(ellipse at center, rgba(217,119,87,0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-cinema .wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent 0%, rgba(250,249,245,0.1) 50%, #FAF9F5 100%);
}
.hero-cinema .inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 24px;
}
.hero-cinema .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  width: fit-content;
}
.hero-cinema .headline {
  font-size: 34px; font-weight: 900; line-height: 1.15;
  letter-spacing: -0.03em;
  margin-top: 16px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-cinema .headline .accent { color: #FFC9A8; display: block; }
.hero-cinema .sub {
  font-size: 14.5px; line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-top: 14px; max-width: 320px;
}
.hero-cinema .cta-row { margin-top: 24px; display: flex; gap: 8px; }
.hero-cinema .cta-primary {
  display: inline-flex; align-items: center; gap: 6px;
  height: 44px; padding: 0 22px;
  border-radius: 999px;
  background: #fff; color: var(--c-ink);
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-cinema .cta-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  height: 44px; padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 14px; font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-cinema .stats {
  position: absolute; bottom: 80px; left: 24px; right: 24px;
  display: flex; gap: 20px; z-index: 2;
}
.hero-cinema .stats .stat { }
.hero-cinema .stats .n { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.hero-cinema .stats .l { font-size: 11px; opacity: 0.75; margin-top: 2px; }

/* 물고기 실루엣 장식 */
.hero-cinema .fish-deco {
  position: absolute; right: -20px; top: 40px;
  width: 200px; height: 200px;
  opacity: 0.15;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23FFC9A8'><path d='M80 50c0-5-10-12-20-12s-25 5-35 12c10 7 25 12 35 12s20-7 20-12zM60 50c0-1 1-2 2-2s2 1 2 2-1 2-2 2-2-1-2-2zM20 40l-8-5v30l8-5c3 2 6 3 10 3V37c-4 0-7 1-10 3z'/></svg>") no-repeat center/contain;
  transform: rotate(-12deg);
}

/* 트러스트 바 (히어로 하단) */
.trust-bar {
  margin: -50px 12px 0;
  position: relative; z-index: 3;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(27,26,24,0.08), 0 2px 8px rgba(27,26,24,0.04);
  padding: 18px 16px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.trust-bar .cell { text-align: center; }
.trust-bar .cell .ico {
  width: 40px; height: 40px; margin: 0 auto 8px;
  border-radius: 12px;
  background: var(--c-surface-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.trust-bar .cell .tit { font-size: 12px; font-weight: 700; color: var(--c-ink); }
.trust-bar .cell .des { font-size: 10.5px; color: var(--c-muted); margin-top: 1px; line-height: 1.3; }

/* 카테고리 쇼케이스 타일 */
.cat-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 12px; }
.cat-tile {
  position: relative;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 14px;
  color: #fff;
  background-size: cover; background-position: center;
}
.cat-tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%);
}
.cat-tile .label {
  position: relative; z-index: 2;
  font-size: 16px; font-weight: 800; letter-spacing: -0.02em;
}
.cat-tile .emoji {
  position: absolute; right: 12px; top: 12px;
  font-size: 32px; z-index: 2; opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.cat-tile.blue  { background: linear-gradient(135deg, #1E3A52 0%, #3B6180 100%); }
.cat-tile.warm  { background: linear-gradient(135deg, #7A2818 0%, #C44837 100%); }
.cat-tile.green { background: linear-gradient(135deg, #1E4A3E 0%, #3D7560 100%); }
.cat-tile.purple{ background: linear-gradient(135deg, #2D1B4A 0%, #5B3D87 100%); }
.cat-tile.coral { background: linear-gradient(135deg, #8B3A1F 0%, #D97757 100%); }
.cat-tile.teal  { background: linear-gradient(135deg, #0F3B3F 0%, #2D7073 100%); }

/* 프로모션 밴드 (풀블리드) */
.promo-band {
  background: linear-gradient(135deg, #1E3A52 0%, #2D5778 100%);
  color: #fff;
  padding: 32px 20px;
  position: relative; overflow: hidden;
}
.promo-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 20%, rgba(217,119,87,0.35) 0%, transparent 50%);
}
.promo-band .content { position: relative; z-index: 2; }
.promo-band .tag { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; color: #FFC9A8; }
.promo-band .title { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.25; margin-top: 6px; }
.promo-band .desc { font-size: 13px; line-height: 1.6; opacity: 0.85; margin-top: 10px; max-width: 280px; }
.promo-band .cta {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px;
  padding: 10px 18px;
  background: #fff; color: var(--c-ink);
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
}

/* 브랜드 스토리 */
.brand-story {
  padding: 40px 20px;
  text-align: center;
}
.brand-story .tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.25em;
  color: var(--c-ocean);
}
.brand-story .title {
  font-size: 24px; font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.3;
  margin-top: 10px;
}
.brand-story .title em {
  font-style: normal; color: var(--c-primary);
}
.brand-story .desc {
  font-size: 13.5px; line-height: 1.75; color: var(--c-ink-soft);
  margin-top: 14px;
}
.brand-story .values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 24px;
  text-align: left;
}
.brand-story .values .v { }
.brand-story .values .v .n { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; color: var(--c-ocean); }
.brand-story .values .v .t { font-size: 11px; font-weight: 700; margin-top: 2px; }
.brand-story .values .v .d { font-size: 10.5px; color: var(--c-muted); margin-top: 1px; line-height: 1.4; }

/* 프로덕트 카드 개선 (hover, 그림자) */
.prod-card { transition: transform 0.2s, box-shadow 0.2s; }
.prod-card:active { transform: scale(0.98); }

/* 스페셜 딜 카드 (풀 폭) */
.deal-card {
  margin: 0 12px;
  background: linear-gradient(135deg, #FFF6ED 0%, #FDE7D7 50%, #F6D5B8 100%);
  border-radius: 20px;
  padding: 20px 20px 0;
  overflow: hidden;
  position: relative;
  display: flex; gap: 16px;
  min-height: 140px;
}
.deal-card .info { flex: 1; padding-bottom: 20px; }
.deal-card .label { font-size: 10.5px; font-weight: 800; letter-spacing: 0.15em; color: var(--c-primary); }
.deal-card .title { font-size: 18px; font-weight: 900; line-height: 1.25; margin-top: 4px; }
.deal-card .sub { font-size: 12.5px; color: var(--c-ink-soft); margin-top: 6px; line-height: 1.5; }
.deal-card .cta { display: inline-flex; align-items: center; gap: 2px; margin-top: 12px; font-size: 12.5px; font-weight: 700; color: var(--c-primary); }
.deal-card .img {
  width: 120px; align-self: flex-end;
  filter: drop-shadow(0 8px 16px rgba(217,119,87,0.25));
}

/* 리뷰 카드 (세로 stack) */
.review-peek {
  padding: 0 12px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.review-peek .item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 12px;
}
.review-peek .item .stars { color: var(--c-warn); font-size: 12px; }
.review-peek .item .body { font-size: 12.5px; line-height: 1.5; margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.review-peek .item .meta { font-size: 10.5px; color: var(--c-muted); margin-top: 6px; }

/* 섹션 제목 한 단계 업그레이드 */
.section-head { padding-top: 4px; }
.section-head .h-section { position: relative; }
.section-head .h-section::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 20px; height: 2px; background: var(--c-primary); border-radius: 2px;
}

/* 랭킹 스타일 업그레이드 (TOP 3 강조) */
.rank-num.top3 {
  background: linear-gradient(135deg, #D97757 0%, #C46444 100%);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.rank-num { font-variant-numeric: tabular-nums; }

/* 앱 다운로드 배너 */
.app-cta {
  margin: 24px 12px 0;
  border-radius: 20px;
  padding: 24px 20px;
  background: linear-gradient(135deg, #1F1E1D 0%, #2B2A29 100%);
  color: #fff;
  display: flex; align-items: center; gap: 16px;
}
.app-cta .phone-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.app-cta .title { font-size: 14.5px; font-weight: 800; letter-spacing: -0.01em; }
.app-cta .sub { font-size: 11.5px; opacity: 0.7; margin-top: 2px; }
.app-cta .go {
  background: #fff; color: var(--c-ink);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}

/* 빠른 메뉴 강화 */
.quick-grid { gap: 2px; }
.quick-item { padding: 10px 4px; }
.quick-ico {
  width: 52px; height: 52px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(27,26,24,0.06);
  transition: transform 0.15s;
}
.quick-item:active .quick-ico { transform: scale(0.92); }

/* 리워드 카드 업그레이드 */
.reward-card {
  padding: 20px 18px;
  background:
    radial-gradient(ellipse at 100% 100%, rgba(217,119,87,0.15) 0%, transparent 60%),
    linear-gradient(135deg, #FFF6ED 0%, #FDE7D7 100%);
  position: relative; overflow: hidden;
}
.reward-card::before {
  content: '🎁';
  position: absolute; right: -10px; bottom: -20px;
  font-size: 100px; opacity: 0.08;
  transform: rotate(-15deg);
}
.reward-card .emoji { font-size: 36px; filter: drop-shadow(0 4px 8px rgba(217,119,87,0.3)); }
