:root {
  --bg: #0a0b0e;
  --bg-2: #111319;
  --surface: #161920;
  --surface-2: #1c2029;
  --ink: #f3f4f6;
  --muted: #9aa3b2;
  --line: #2a303c;
  --line-2: #3a4252;
  --red: #fb2840;
  --red-2: #ff4458;
  --red-soft: rgba(251, 40, 64, 0.16);
  --navy: #10151f;
  --navy-2: #182033;
  --ok: #3dd68c;
  --ok-soft: rgba(61, 214, 140, 0.12);
  --ok-line: rgba(61, 214, 140, 0.28);
  --warn: #f0b429;
  --warn-soft: rgba(240, 180, 41, 0.14);
  --solid: #f3f4f6;
  --solid-text: #0a0b0e;
  --max: 1180px;
  --display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 40px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 8% -8%, rgba(251, 40, 64, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(40, 70, 140, 0.16) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #07080a 100%);
  background-attachment: fixed;
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: none; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.header-row .wrap,
.site-header .wrap { width: min(1280px, calc(100% - 28px)); }

/* Top promo */
.promo {
  background: #050608;
  color: #f5c542;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--line);
}
.promo .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  text-align: center;
  flex-wrap: wrap;
}
.promo a { color: #ffe08a; border-bottom: 1px solid rgba(245, 197, 66, 0.45); }
.promo strong { color: #fff; }
.promo-pill {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 66, 0.45);
  color: #f5c542;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10, 11, 14, 0.82);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.04em;
}
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(15px, 1.7vw, 20px);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
.brand-name span { color: var(--red); }
.nav-tools {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
  justify-content: center;
}
.nav-tools a {
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
  white-space: nowrap;
}
.nav-tools a:hover,
.nav-tools a.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex: 0 1 auto;
  min-width: 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 650;
  color: var(--muted);
}
.chip strong { color: var(--ink); }
.search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  max-width: 280px;
  width: min(280px, 28vw);
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.search-trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--ink);
  opacity: 0.9;
}
.search-trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-trigger:hover {
  border-color: var(--red);
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(251, 40, 64, 0.2), 0 0 18px rgba(251, 40, 64, 0.12);
  color: var(--ink);
}
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
  justify-content: center;
}
.menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--ink);
}
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { background: var(--red-2); }
.btn-ink {
  background: var(--solid);
  color: var(--solid-text);
}
.btn-ghost {
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--muted); }
.btn-soft {
  background: var(--red-soft);
  color: #ff8a97;
}

.btn-gold {
  background: transparent;
  color: #f5c542;
  border-color: #f5c542;
}
.btn-gold:hover {
  background: rgba(245, 197, 66, 0.1);
}

/* Hero — Kakofind-style proportions */
.hero {
  padding: 28px 0 8px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 0;
}
.hero-brand {
  margin: 0 0 8px;
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}
.hero-brand span { color: var(--red); }
.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  max-width: 34ch;
  font-weight: 650;
  color: #b8c0cc;
}
.hero-copy .lede {
  margin: 0 0 20px;
  max-width: 48ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.lede {
  margin: 0 0 22px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 16.5px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 520px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(18, 21, 28, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 0 36px rgba(251, 40, 64, 0.16);
}
.hero-stats strong {
  display: block;
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(115deg, #ffffff 0%, #ffe4e8 35%, #fb2840 78%, #ff6b7a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  max-height: 62vh;
  isolation: isolate;
  overflow: visible;
}
.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 40, 64, 0.45) 0%, rgba(251, 40, 64, 0.14) 45%, transparent 72%);
  filter: blur(6px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  animation: glow-pulse 4.5s ease-in-out infinite;
}
.hero-mascot {
  position: relative;
  z-index: 1;
  width: auto;
  height: min(440px, 58vh);
  max-width: 280px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
  animation: mascot-float 5s ease-in-out infinite;
}
.float-chip {
  position: absolute;
  z-index: 2;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 16px;
  background: rgba(16, 18, 24, 0.94);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  animation: chip-float 4.2s ease-in-out infinite;
}
.float-chip svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.float-chip-1 { top: 10%; left: 6%; animation-delay: 0s; }
.float-chip-2 { top: 16%; right: 4%; animation-delay: 0.6s; }
.float-chip-3 { bottom: 14%; left: 2%; animation-delay: 1.1s; }
.float-chip-4 { bottom: 8%; right: 6%; animation-delay: 1.7s; }

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.tool-panel-wide { max-width: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-mascot,
  .hero-glow,
  .float-chip { animation: none; }
}

.tool-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tool-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.tool-tab {
  padding: 14px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}
.tool-tab.active {
  color: var(--ink);
  background: var(--surface);
  border-bottom-color: var(--red);
}
.tool-body { padding: 18px; }
.tool-body[hidden] { display: none; }
.field-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--muted);
}
.field {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--ink);
  outline: none;
}
.field:focus { border-color: var(--red); }
.field::placeholder { color: #6b7382; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.tool-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.tool-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}
.tool-result {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: var(--ok-soft);
  border: 1px solid var(--ok-line);
  font-size: 13.5px;
  display: none;
}
.tool-result.show { display: block; }
.tool-result a { color: #ff8a97; font-weight: 700; border-bottom: 1px solid currentColor; }
.tool-result.is-error {
  background: rgba(251, 40, 64, 0.12);
  border-color: rgba(251, 40, 64, 0.35);
}
.tool-result.is-ok {
  background: var(--ok-soft);
  border-color: var(--ok-line);
}
.convert-head { margin-bottom: 8px; }
.convert-meta { margin-bottom: 6px; font-size: 13px; color: var(--muted); }
.convert-meta code {
  color: var(--ink);
  font-size: 12.5px;
}
.convert-warn {
  margin: 0 0 8px;
  font-size: 12.5px;
  color: var(--warn);
}
.convert-source {
  margin: 0 0 10px;
  font-size: 12.5px;
  color: var(--muted);
}
.convert-source span {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}
.convert-source code {
  display: block;
  word-break: break-all;
  color: var(--ink);
  font-size: 12px;
}
.convert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.convert-url {
  display: block;
  word-break: break-all;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* Sections */
.section { padding: 42px 0; }
.section.tight { padding: 24px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.15;
  font-weight: 800;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.cat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-strip-row {
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  padding: 4px 2px 12px;
  margin-bottom: 8px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.cat-strip-row::-webkit-scrollbar { height: 4px; }
.cat-strip-row::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 999px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 13.5px;
  font-weight: 650;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.cat-chip svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
  flex: 0 0 auto;
}
.cat-chip .cat-count {
  color: var(--muted);
  font-weight: 600;
  font-size: 12.5px;
}
.cat-chip:hover {
  border-color: var(--muted);
  background: var(--surface-2);
}
.cat-chip.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 18px rgba(251, 40, 64, 0.35);
}
.cat-chip.active .cat-count,
.cat-chip.active svg { color: #fff; opacity: 1; }
.sheet-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 4px 0 16px;
  font-size: 13.5px;
  color: var(--muted);
}
.sheet-meta strong { color: var(--ink); }
.sheet-meta .sheet-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-2);
  font-weight: 700;
  font-size: 12.5px;
}
.sheet-meta .sheet-clear {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.sheet-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sheet-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
}
.find-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.find-card:hover {
  transform: none;
  border-color: transparent;
}
.find-media {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #2a2e38, #15181f);
  border: 1px solid var(--line);
}
.find-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.find-rating {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.find-rating svg {
  width: 12px;
  height: 12px;
  fill: #f5c542;
}
.find-ext {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  opacity: 0.85;
}
.find-body {
  padding: 12px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.find-cat {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.find-body h3 {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.3;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.find-foot {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.find-price {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.find-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.find-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #111318;
  border: 1px solid var(--line);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
}
.find-view i {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--red);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
}
.find-card:hover .find-view {
  border-color: var(--red);
}
.product-media {
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, #1a1e27, #12151c),
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.025) 8px, rgba(255,255,255,0.025) 9px);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  text-transform: none;
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.product-body { padding: 12px 14px 14px; }
.product-body h3 {
  margin: 0 0 6px;
  font-size: 14.5px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.product-meta strong { color: var(--ink); font-size: 15px; }

.widgets {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}
.widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.widget h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.015em;
  font-weight: 800;
}
.widget p { margin: 0 0 14px; color: var(--muted); font-size: 14.5px; }
.score-list { display: grid; gap: 10px; }
.score-row {
  display: grid;
  grid-template-columns: 88px 1fr 48px;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  font-weight: 650;
}
.score-bar {
  height: 10px;
  border-radius: 999px;
  background: var(--bg-2);
  overflow: hidden;
}
.score-bar i {
  display: block;
  height: 100%;
  background: var(--red);
  border-radius: inherit;
}
.score-row:nth-child(2) .score-bar i { background: #5b7cff; width: 81% !important; }
.score-row:nth-child(3) .score-bar i { background: var(--line-2); width: 65% !important; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.pillar .num {
  font-family: var(--display);
  font-size: 26px;
  color: var(--red);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 800;
}
.pillar h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.pillar p { margin: 0 0 14px; color: var(--muted); font-size: 14.5px; }

.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  font-size: 14px;
}
.compare th,
.compare td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.compare th {
  background: var(--bg-2);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.compare tr:last-child td { border-bottom: 0; }
.compare td:nth-child(3) { color: var(--ok); font-weight: 650; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: step;
}
.steps.steps-5 {
  grid-template-columns: repeat(5, 1fr);
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--solid);
  color: var(--solid-text);
  font-weight: 800;
  margin-bottom: 12px;
}
.step h3 { margin: 0 0 6px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.synonyms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}
.synonyms span {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--red-soft);
  color: #ff8a97;
  font-size: 13px;
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 10px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14.5px;
}

.cta-band {
  margin: 20px 0 10px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(145deg, #141a28 0%, #0c1018 100%);
  border: 1px solid var(--line);
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 18px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-weight: 800;
}
.cta-band p { margin: 0; color: rgba(255,255,255,0.72); max-width: 48ch; }
.cta-band .btn-red { background: var(--red); }

/* —— Kakofind-style home blocks —— */
.deals-jump {
  display: flex;
  justify-content: center;
  padding: 8px 0 4px;
}
.deals-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 0 0 1px rgba(251, 40, 64, 0.35), 0 0 28px rgba(251, 40, 64, 0.45);
  transition: transform 0.15s ease;
}
.deals-pill:hover { transform: translateY(-1px); }
.deals-pill span {
  display: inline-grid;
  place-items: center;
  min-width: 1.6em;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
  font-size: 13px;
}

.center-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 22px;
}
.center-head h2 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.center-head h2 em {
  font-style: normal;
  color: var(--red);
  text-shadow: 0 0 24px rgba(251, 40, 64, 0.35);
}
.center-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow-hot { background: var(--red); color: #fff; }

.verified-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(251, 40, 64, 0.45);
  background:
    radial-gradient(ellipse 60% 120% at 0% 50%, rgba(251, 40, 64, 0.14), transparent 60%),
    var(--surface);
  box-shadow: 0 0 24px rgba(251, 40, 64, 0.12);
  margin-bottom: 18px;
}
.verified-mascot {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(251, 40, 64, 0.35));
}
.verified-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ok);
  margin-bottom: 4px;
}
.verified-title span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ok);
  color: #04140c;
  font-size: 12px;
}
.verified-banner p { margin: 0; color: var(--muted); font-size: 14.5px; }
.verified-banner strong { color: var(--ink); }

.deal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.deal-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.deal-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  font-size: 13.5px;
}
.deal-tab svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex: 0 0 auto;
  opacity: 0.85;
}
.deal-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(251, 40, 64, 0.35), 0 0 22px rgba(251, 40, 64, 0.4);
}
.deal-tab.active svg { opacity: 1; }
.deal-nav { display: flex; gap: 8px; margin-left: auto; }
.icon-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.icon-round:hover {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
  box-shadow: 0 0 18px rgba(251, 40, 64, 0.4);
}
.icon-round:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.deal-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.deal-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.deal-media {
  position: relative;
  aspect-ratio: 1;
  background: #12151c;
  overflow: hidden;
}
.deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deal-off {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 16px rgba(251, 40, 64, 0.45);
}
.deal-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.deal-body h3 {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.deal-desc {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.deal-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.deal-rating svg {
  width: 14px;
  height: 14px;
  fill: #f5c542;
}
.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.deal-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.deal-was {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: line-through;
}
.deal-save {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--ok-soft);
  border: 1px solid var(--ok-line);
  color: var(--ok);
  font-size: 12px;
  font-weight: 800;
}
.deal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.deal-cta:hover { background: var(--red-2); }
.deals-pill-footer {
  box-shadow: 0 0 0 1px rgba(251, 40, 64, 0.35), 0 0 28px rgba(251, 40, 64, 0.45);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.cats-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}
.cats-head h2 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
}
.cats-head h2 em {
  font-style: normal;
  color: var(--red);
}
.cats-head p { margin: 0; color: var(--muted); max-width: 48ch; }
.cats-mascot {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(251, 40, 64, 0.4));
}

.cat-icon-grid {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 10px 8px;
}
.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
}
.cat-ico {
  width: 100%;
  aspect-ratio: 1;
  max-width: 72px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  place-items: center;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.cat-ico svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--ink);
}
.cat-tile:hover .cat-ico,
.cat-tile.active .cat-ico {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 18px rgba(251, 40, 64, 0.4);
  color: #fff;
}
.cat-tile:hover .cat-ico svg,
.cat-tile.active .cat-ico svg { color: #fff; }
.cat-tile:hover,
.cat-tile.active { color: var(--ink); }
.cat-tile-accent .cat-ico {
  border-color: rgba(251, 40, 64, 0.45);
}

.shelf-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(251, 40, 64, 0.2);
}
.shelf-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 340px;
  padding: 22px 18px 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 90% 55% at 50% 58%, rgba(251, 40, 64, 0.28) 0%, transparent 70%),
    linear-gradient(165deg, #161018 0%, #0a0b0e 55%, #12080c 100%);
  box-shadow:
    0 0 0 1px rgba(251, 40, 64, 0.08) inset,
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(251, 40, 64, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.shelf-banner:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 40, 64, 0.35);
  box-shadow:
    0 0 0 1px rgba(251, 40, 64, 0.14) inset,
    0 22px 48px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(251, 40, 64, 0.28);
}
.shelf-aura {
  position: absolute;
  inset: 28% -20% 8%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 50% 45%, rgba(255, 70, 90, 0.55) 0%, transparent 62%),
    radial-gradient(ellipse 70% 55% at 35% 60%, rgba(251, 40, 64, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 68% 52%, rgba(180, 20, 50, 0.4) 0%, transparent 50%);
  filter: blur(2px);
  animation: shelfPulse 5.5s ease-in-out infinite;
}
.shelf-aura::before,
.shelf-aura::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.7;
}
.shelf-aura::before {
  width: 70%;
  height: 42%;
  left: 15%;
  top: 28%;
  background: conic-gradient(from 120deg, transparent, rgba(251, 40, 64, 0.55), transparent 55%);
}
.shelf-aura::after {
  width: 48%;
  height: 36%;
  right: 10%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(255, 90, 110, 0.5), transparent 70%);
}
@keyframes shelfPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .shelf-aura { animation: none; }
}
.shelf-banner h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.shelf-hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 160px;
  margin: 4px 0 14px;
}
.shelf-hero img {
  width: min(168px, 78%);
  height: auto;
  max-height: 180px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 22px rgba(251, 40, 64, 0.35));
  transition: transform 0.25s ease;
}
.shelf-banner:hover .shelf-hero img {
  transform: translateY(-4px) scale(1.03);
}
.shelf-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 22px rgba(251, 40, 64, 0.35);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.shelf-banner:hover .shelf-cta {
  background: var(--red-2);
  box-shadow: 0 10px 28px rgba(251, 40, 64, 0.5);
}
.shelf-count {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 550;
}
.shelf-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.shelf-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.shelf-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.shelf-media {
  position: relative;
  aspect-ratio: 1;
  background: #12151c;
}
.shelf-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shelf-rating {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(0,0,0,0.72);
  font-size: 11.5px;
  font-weight: 700;
  color: #f5c542;
}
.shelf-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.shelf-body h4 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 650;
}
.shelf-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.shelf-meta strong { font-size: 15px; }
.shelf-k {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

.top10-grid { grid-template-columns: repeat(5, 1fr); }
.official-sheet {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 120% at 0% 50%, rgba(251, 40, 64, 0.12), transparent 55%),
    var(--surface);
}
.official-sheet h3 {
  margin: 8px 0 6px;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.official-sheet p { margin: 0; color: var(--muted); max-width: 56ch; }
.ok-text { color: var(--ok); }

.deals-section {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(251, 40, 64, 0.12), transparent 60%);
}

.deals-page-hero {
  padding-top: 28px;
  padding-bottom: 8px;
}
.deals-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}
.deals-page-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 900;
}
.deals-page-hero h1 em {
  font-style: normal;
  color: var(--red);
  text-shadow: 0 0 28px rgba(251, 40, 64, 0.4);
}
.deals-lede {
  max-width: 52ch;
  white-space: normal;
}
.deals-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.deals-stat {
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}
.deals-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.deals-stat span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.deals-hero-art {
  display: grid;
  place-items: center;
  min-height: 260px;
  position: relative;
}
.deals-hero-art::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 40, 64, 0.45), transparent 70%);
  filter: blur(8px);
}
.deals-hero-art img {
  position: relative;
  height: 260px;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(251, 40, 64, 0.35));
}
.deals-find-bar {
  margin-bottom: 14px;
}
.deals-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .deals-hero-grid { grid-template-columns: 1fr; }
  .deals-hero-art { display: none; }
  .deals-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deals-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.page-hero {
  padding: 36px 0 10px;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: none;
  font-weight: 800;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .page-hero h1 {
    white-space: normal;
    font-size: clamp(22px, 6vw, 28px);
  }
}
.page-hero .lede {
  margin-bottom: 14px;
  max-width: none;
  white-space: nowrap;
  font-size: 15px;
}
@media (max-width: 960px) {
  .page-hero .lede {
    white-space: normal;
  }
}
.updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 12px;
}
.updated i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}

.prose {
  max-width: 68ch;
}
.prose h2 {
  margin: 28px 0 10px;
  font-size: 20px;
}
.prose p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.prose a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.finder-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin: 18px 0 8px;
}
.finder-shell .field { min-height: 56px; }
.qc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.qc-grid-all {
  margin-top: 0;
  max-height: none;
}
.qc-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, #1c212b, #12151c);
  overflow: hidden;
  display: block;
  padding: 0;
  color: var(--muted);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
a.qc-tile:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  color: var(--ink);
}
.qc-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0e1015;
}
.qc-tile-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.qc-tile-empty {
  display: grid;
  place-items: end start;
  padding: 10px;
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.coupon-grid-single {
  grid-template-columns: 1fr;
  max-width: 520px;
}
.coupon-card {
  background: var(--surface);
  border: 1px dashed var(--line-2);
  border-radius: 16px;
  padding: 18px;
}
.coupon-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--warn-soft);
  color: var(--warn);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.coupon-card h3 { margin: 0; font-size: 17px; }
.coupon-card p { margin: 0; color: var(--muted); font-size: 14px; }

.site-footer {
  margin-top: 40px;
  padding: 34px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(8, 9, 12, 0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}
.site-footer h4 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.site-footer a {
  display: block;
  padding: 4px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  max-width: 36ch;
}
.legal {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}
.legal a {
  display: inline;
  padding: 0;
  font-weight: 600;
  color: var(--muted);
}

/* Command palette — Kakofind-style browse (no image search) */
.cmd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 10vh 16px 24px;
}
.cmd-overlay.open { display: flex; }
.cmd-box {
  width: min(640px, 100%);
  background: #12141a;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: min(720px, 86vh);
}
.cmd-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 14px 0;
  padding: 0 12px 0 14px;
  min-height: 48px;
  border-radius: 14px;
  background: #1a1d26;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cmd-search-ico {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--brand);
}
.cmd-search-ico svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.cmd-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 12px 0;
  font-size: 15px;
  background: transparent;
  color: var(--ink);
}
.cmd-box input::placeholder { color: var(--muted); }
.cmd-esc {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: transparent;
  cursor: pointer;
}
.cmd-esc:hover { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.cmd-body {
  flex: 1;
  overflow: auto;
  padding: 16px 14px 18px;
}
.cmd-block { margin-top: 4px; }
.cmd-block + .cmd-block { margin-top: 18px; }
.cmd-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cmd-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cmd-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1d26;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
}
.cmd-pill:hover,
.cmd-pill.active {
  border-color: rgba(255, 255, 255, 0.22);
  background: #222632;
}
.cmd-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.cmd-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1d26;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
}
.cmd-cat:hover,
.cmd-cat.active {
  border-color: rgba(255, 255, 255, 0.18);
  background: #222632;
}
.cmd-cat svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
  color: rgba(255, 255, 255, 0.88);
}
.cmd-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.cmd-shortcut {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1d26;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
}
.cmd-shortcut:hover,
.cmd-shortcut.active {
  border-color: rgba(255, 255, 255, 0.18);
  background: #222632;
}
.cmd-shortcut-ico {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(232, 48, 66, 0.18);
  color: var(--brand);
}
.cmd-shortcut-ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cmd-results {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cmd-section {
  padding: 8px 4px 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cmd-empty {
  padding: 18px 8px;
  color: var(--muted);
  font-size: 14px;
}
.cmd-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 650;
  background: transparent;
}
.cmd-item:hover,
.cmd-item.active {
  background: #1a1d26;
  border-color: rgba(255, 255, 255, 0.08);
}
.cmd-item > span:last-child {
  color: var(--muted);
  font-weight: 500;
  font-size: 12.5px;
  flex: 0 0 auto;
}
.cmd-suggest-text { font-weight: 700; }
.cmd-suggest-text::before {
  content: "↗ ";
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .cmd-overlay { padding: 8vh 10px 16px; }
  .cmd-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cmd-shortcuts { grid-template-columns: 1fr; }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(300px, 88vw);
  background: var(--surface);
  z-index: 80;
  padding: 18px;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.2s ease;
}
.mobile-nav.open { transform: translateX(0); display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 8px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 70;
  display: none;
}
.side-dock {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-dock-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(22, 25, 32, 0.92);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.side-dock-btn svg {
  width: 22px;
  height: 22px;
  display: block;
  overflow: visible;
}
.side-dock-btn:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  background: var(--surface-2);
}
.side-dock-discord:hover {
  background: #5865f2;
  border-color: #5865f2;
}
.side-dock-sheet:hover {
  background: var(--red);
  border-color: var(--red);
}
@media (max-width: 720px) {
  .side-dock {
    right: 10px;
    bottom: 16px;
    top: auto;
    transform: none;
  }
  .side-dock-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 960px) {
  .nav-tools, .chip { display: none; }
  .search-trigger {
    display: inline-flex;
    min-width: 0;
    flex: 1;
    max-width: 220px;
  }
  .search-trigger span { font-size: 13px; }
  .menu-btn { display: inline-flex; }
  .hero-grid,
  .widgets,
  .pillars,
  .steps,
  .steps.steps-5,
  .product-grid,
  .qc-grid,
  .coupon-grid,
  .footer-grid,
  .cta-band,
  .shelf-row,
  .verified-banner {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    min-height: 0;
    gap: 8px;
  }
  .hero-stage {
    order: -1;
    height: 360px;
    max-height: 46vh;
  }
  .hero-mascot {
    height: min(300px, 40vh);
    max-width: 200px;
  }
  .hero-glow {
    width: 240px;
    height: 240px;
  }
  .hero-stats { max-width: none; }
  .float-chip { width: 52px; height: 52px; }
  .float-chip svg { width: 24px; height: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .top10-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
  .sheet-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .qc-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding-top: 16px; }
  .cat-icon-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .cats-head { grid-template-columns: 1fr; }
  .cats-mascot { display: none; }
  .shelf-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .shelf-card {
    flex: 0 0 min(160px, 42vw);
    scroll-snap-align: start;
  }
  .shelf-banner { min-height: 280px; }
  .shelf-banner h3 { font-size: 22px; }
  .shelf-hero { min-height: 130px; }
  .shelf-hero img { max-height: 140px; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .cat-icon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .top10-grid { grid-template-columns: 1fr 1fr; }
  .sheet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-row { min-height: 60px; }
  .brand-name { font-size: 18px; }
}

/* ---------- Item detail page ---------- */
.item-section { padding-top: 18px; }
.item-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
}
.item-crumbs a:hover { color: var(--ink); }
.crumb-sep { opacity: 0.45; }
.item-loading,
.item-missing {
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.item-missing h1 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 28px;
}
.item-missing .btn { margin-top: 18px; }

.item-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: start;
}
.item-gallery {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 84px;
}
.item-shot {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.item-shot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #0e1015;
  display: block;
}
.item-shot-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.item-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.item-thumbs button {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
}
.item-thumbs button.is-on {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.item-thumbs button.is-empty { display: none; }
.item-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-box {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}
.item-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.item-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.item-badge-cat { color: var(--ink); }
.item-badge-qc {
  color: var(--ok);
  border-color: var(--ok-line);
  background: var(--ok-soft);
}
.item-badge-hot {
  color: #ffd0d6;
  border-color: rgba(251, 40, 64, 0.45);
  background: var(--red-soft);
}
.buy-box h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.item-full-title {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.item-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.item-star { color: #f5c542; }
.item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 16px;
}
.item-price {
  font-size: clamp(34px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.item-icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
}
.item-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.item-icon-btn.is-copied {
  border-color: var(--ok-line);
  color: var(--ok);
  background: var(--ok-soft);
}
.item-cta-stack { display: grid; gap: 10px; }
.item-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  width: 100%;
  font-size: 16px;
  font-weight: 800;
  position: relative;
}
.item-buy-k {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
}
.item-buy-ext {
  position: absolute;
  right: 16px;
  opacity: 0.85;
  font-size: 15px;
}
.item-qc-link {
  justify-content: center;
  min-height: 46px;
}
.item-seller {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 12px;
}
.item-seller-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.item-seller-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}
.item-seller strong {
  display: block;
  font-size: 14px;
}
.item-trusted {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--ok-soft);
  color: var(--ok);
  border: 1px solid var(--ok-line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.similar-head {
  align-items: end;
}
.similar-head h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.similar-ico {
  width: 18px;
  height: 14px;
  border-radius: 3px;
  background:
    linear-gradient(var(--red), var(--red)) 0 0 / 100% 3px no-repeat,
    linear-gradient(var(--red), var(--red)) 0 5.5px / 100% 3px no-repeat,
    linear-gradient(var(--red), var(--red)) 0 11px / 100% 3px no-repeat;
  flex: 0 0 auto;
}
.similar-nav {
  display: flex;
  gap: 8px;
}
.similar-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}
.similar-arrow:hover {
  border-color: var(--muted);
  background: var(--surface-2);
}
.similar-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.similar-card {
  flex: 0 0 min(180px, 46vw);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.similar-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.similar-media {
  aspect-ratio: 1;
  background: #0e1015;
}
.similar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.similar-body {
  padding: 12px 12px 14px;
}
.similar-body h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.similar-body strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .item-grid { grid-template-columns: 1fr; }
  .item-gallery { position: static; }
}

/* ---------- PWA install ---------- */
.pwa-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 85;
  width: min(540px, calc(100% - 24px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px 14px 12px 16px;
}
.pwa-banner.is-off { display: none; }
.pwa-banner img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex: 0 0 44px;
  background: var(--red);
  border: 1px solid var(--line);
}
.pwa-banner p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  min-width: 0;
  flex: 1;
  color: var(--ink);
}
.pwa-banner p span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.pwa-banner .btn {
  min-height: 40px;
  padding: 0 16px;
  flex: 0 0 auto;
}
.pwa-dismiss {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 10px;
  font-size: 20px;
  line-height: 1;
}
.pwa-dismiss:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.ios-guide {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 86;
  width: min(420px, calc(100% - 24px));
  transform: translateX(-50%);
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 14px 14px 12px;
  color: var(--ink);
}
.ios-guide.is-on { display: block; }
.ios-guide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.ios-guide-top p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.ios-guide img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--bg-2);
  display: block;
}
.ios-guide ol {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.ios-guide li { margin: 0 0 4px; }
.ios-guide b { font-weight: 800; color: var(--ink); }

@media (max-width: 720px) {
  .pwa-banner,
  .ios-guide {
    bottom: 72px;
  }
}
