/* ============================================================
   EntryGear Shop — Editorial Door Hardware Site Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #0d111a;
  --bg-2: #11161f;
  --surface: #161c28;
  --surface-2: #1d2433;
  --surface-3: #242c3d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #ecedf2;
  --text-soft: #c8ccd6;
  --muted: #8a93a4;
  --muted-2: #6c7689;
  --accent: #e0a04a;
  --accent-2: #f3c069;
  --accent-dark: #b97e30;
  --accent-glow: rgba(224, 160, 74, 0.18);
  --success: #59c285;
  --success-soft: rgba(89, 194, 133, 0.12);
  --danger: #e06868;
  --danger-soft: rgba(224, 104, 104, 0.12);
  --info: #6ea1ff;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.18);
  --shadow: 0 8px 26px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 18px 60px rgba(0, 0, 0, 0.38);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  background-image:
    radial-gradient(1100px 600px at 80% -10%, rgba(224, 160, 74, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(110, 161, 255, 0.05), transparent 60%);
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--accent-2); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 26, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
header.is-scrolled { background: rgba(13, 17, 26, 0.95); box-shadow: 0 6px 24px rgba(0,0,0,.32); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo:hover { color: var(--text); }
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(140deg, #1d2433, #11161f);
  padding: 3px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 2px 10px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.03);
}
.logo .logo-mark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.logo .logo-mark .logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  background: linear-gradient(120deg, #f4d6a2 0%, #e0a04a 60%, #b97e30 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.012em;
}
.logo .logo-mark .logo-tag {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-top: 4px;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color .18s ease, background .18s ease;
}
nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
nav a.nav-cta {
  margin-left: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #1a1208;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(224, 160, 74, 0.32), inset 0 1px 0 rgba(255,255,255,.18);
}
nav a.nav-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  color: #1a1208;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 880px) {
  nav {
    position: absolute;
    top: 100%;
    right: 16px;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    transform: translateY(-12px) scale(.97);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  header.nav-open nav { transform: translateY(8px) scale(1); opacity: 1; pointer-events: auto; }
  nav a { padding: 12px 14px; }
  nav a.nav-cta { margin: 6px 0 0 0; text-align: center; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.04);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(224, 160, 74, 0.16), transparent 60%),
    linear-gradient(120deg, rgba(13,17,26,0.96) 0%, rgba(13,17,26,0.78) 45%, rgba(13,17,26,0.45) 100%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 75%, var(--bg) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 90px 24px 110px;
  width: 100%;
}
.hero-emblem {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px 10px 10px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border-radius: 999px;
  width: fit-content;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 30px;
}
.hero-emblem-img {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(140deg, #1d2433, #11161f);
  padding: 4px;
  border: 1px solid rgba(224,160,74,.4);
  box-shadow: 0 0 0 4px rgba(224,160,74,.08), 0 4px 14px rgba(0,0,0,.5);
}
.hero-emblem-text {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-2);
  font-weight: 600;
}
.hero-emblem-text small { display: block; color: var(--muted); letter-spacing: 0.18em; font-size: 0.6rem; margin-top: 2px; font-weight: 500; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 600;
  font-variation-settings: 'opsz' 96;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 780px;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, #f4d6a2 0%, #e0a04a 50%, #b97e30 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
}
.hero p.lede {
  max-width: 600px;
  font-size: 1.14rem;
  color: var(--text-soft);
  line-height: 1.62;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.005em;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #1a1208;
  box-shadow: 0 8px 26px rgba(224, 160, 74, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); color: #1a1208; box-shadow: 0 12px 30px rgba(224, 160, 74, 0.4); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); color: var(--text); }

/* HERO PROMISE STRIP - replaces stats */
.hero-promise {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 920px;
}
.hero-promise-card {
  position: relative;
  padding: 22px 22px 22px 70px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease;
  overflow: hidden;
}
.hero-promise-card::before {
  content: '';
  position: absolute;
  left: 22px; top: 22px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(224,160,74,0.22), rgba(224,160,74,0.06));
  border: 1px solid rgba(224,160,74,0.28);
}
.hero-promise-card .ico {
  position: absolute;
  left: 22px; top: 22px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--accent-2);
  z-index: 1;
}
.hero-promise-card:hover { transform: translateY(-3px); border-color: rgba(224, 160, 74, 0.38); }
.hero-promise-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.hero-promise-text {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 760px) {
  .hero { min-height: 540px; }
  .hero-content { padding: 70px 24px 90px; }
  .hero-promise { grid-template-columns: 1fr; max-width: 100%; }
}

/* ============================================================
   AFFILIATE DISCLOSURE BAR
   ============================================================ */
.aff-bar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
}
.aff-bar strong { color: var(--accent-2); font-weight: 600; letter-spacing: 0.02em; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(224,160,74,0.28);
  border-radius: 999px;
  background: rgba(224,160,74,0.08);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.section-head .divider {
  margin: 22px auto 0;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .8;
}

/* ============================================================
   EDITOR'S TOP PICKS — magazine spotlight
   ============================================================ */
.spotlight-section {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(224,160,74,0.05), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.spotlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  min-height: 460px;
}
.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
  pointer-events: none;
}
.spotlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224,160,74,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.spotlight-card .spot-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  transition: transform .6s ease;
}
.spotlight-card:hover .spot-img { transform: scale(1.06); }
.spotlight-card.no-img .spot-img {
  background: linear-gradient(135deg, #2a3142, #11161f);
}
.spotlight-card.no-img .spot-img::after {
  content: '🔑';
  font-size: 4rem;
  opacity: 0.18;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.spotlight-card .spot-rank {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(13,17,26,0.78);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text);
}
.spotlight-card .spot-rank-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  background: linear-gradient(120deg, #f4d6a2 0%, #e0a04a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.spotlight-card .spot-rank-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.spotlight-card .spot-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 22px 22px 24px;
}
.spotlight-card .spot-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.spotlight-card .spot-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.36rem;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 12px;
}
.spotlight-card .spot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.spotlight-card .spot-stars {
  font-size: 0.92rem;
  color: var(--accent-2);
  font-weight: 600;
}
.spotlight-card .spot-stars .num { color: var(--text); margin-left: 4px; }
.spotlight-card .spot-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(224,160,74,0.14);
  border: 1px solid rgba(224,160,74,0.32);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.spotlight-card.is-hero {
  grid-row: span 2;
  min-height: 100%;
}
.spotlight-card.is-hero .spot-title { font-size: 1.85rem; }

@media (max-width: 980px) {
  .spotlight-grid { grid-template-columns: 1fr 1fr; }
  .spotlight-card.is-hero { grid-column: 1 / -1; grid-row: auto; min-height: 360px; }
}
@media (max-width: 620px) {
  .spotlight-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-section { padding: 80px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compare-table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
  overflow-x: auto;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  min-width: 880px;
  border-collapse: separate;
  border-spacing: 0;
}
.compare-table thead th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-align: left;
  padding: 16px 14px;
  font-weight: 600;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.compare-table thead th:first-child { border-top-left-radius: 10px; }
.compare-table thead th:last-child { border-top-right-radius: 10px; text-align: right; }
.compare-table tbody td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 0.94rem;
}
.compare-table tbody tr { cursor: pointer; transition: background .15s ease; }
.compare-table tbody tr:hover { background: rgba(224,160,74,0.04); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-rank {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--accent-2);
  width: 64px;
}
.compare-img, .compare-table img.compare-img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.compare-img.placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; opacity: .4;
}
.compare-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 4px;
}
.compare-brand-tag {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.compare-score {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--text);
}
.compare-bar {
  margin-top: 6px;
  height: 5px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
  max-width: 120px;
}
.compare-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}
.compare-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(224,160,74,0.12);
  border: 1px solid rgba(224,160,74,0.28);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.compare-link:hover { background: rgba(224,160,74,0.22); color: var(--accent-2); }
.compare-table tbody td:last-child { text-align: right; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.filter-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
}
.filter-select {
  padding: 10px 36px 10px 14px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a93a4' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color .18s ease;
}
.filter-select:focus { outline: 0; border-color: var(--accent); }
.filter-reset {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  transition: all .15s ease;
}
.filter-reset:hover { color: var(--text); border-color: var(--accent); background: rgba(224,160,74,0.06); }
.filter-results {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   PRODUCT CARDS GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224,160,74,0.4);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
}
.card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.08); }
.card-img-wrap.no-img {
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: 0.15;
  background: linear-gradient(135deg, #1d2433, #11161f);
}
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(13,17,26,0.85);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  padding: 5px 10px;
  border-radius: 999px;
}
.card-rating-badge {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #1a1208;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(224,160,74,0.32);
}
.card-rating-badge .si { font-size: 0.7rem; }

/* Price Badges */
.card-price-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.card-price-badge.is-best { background: rgba(110,161,255,0.18); border: 1px solid rgba(110,161,255,0.42); color: #a3c4ff; }
.card-price-badge.is-deal { background: rgba(224,104,104,0.18); border: 1px solid rgba(224,104,104,0.42); color: #ff9d9d; }
.card-price-badge.is-premium { background: rgba(224,160,74,0.18); border: 1px solid rgba(224,160,74,0.42); color: var(--accent-2); }
.card-price-badge.is-popular { background: rgba(167,139,250,0.18); border: 1px solid rgba(167,139,250,0.42); color: #c8b9ff; }
.card-price-badge.is-editor { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: #fff; }
.card-price-badge.is-value { background: rgba(89,194,133,0.16); border: 1px solid rgba(89,194,133,0.4); color: #80d8a3; }

.card-body {
  padding: 18px 18px 8px;
  flex-grow: 1;
}
.card-brand {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.28;
  color: var(--text);
  margin-bottom: 10px;
}
.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.86rem;
}
.stars-char { color: var(--accent-2); letter-spacing: 0.02em; }
.rating-num { font-weight: 700; color: var(--text); }
.rating-count { color: var(--muted); font-size: 0.78rem; }

.card-snippet {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.card-price-prefix {
  font-size: 0.62rem;
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.card-price-orig {
  font-size: 0.84rem;
  color: var(--muted-2);
  text-decoration: line-through;
}

.card-footer {
  padding: 0 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(224,160,74,0.12);
  border: 1px solid rgba(224,160,74,0.28);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all .18s ease;
}
.product-card:hover .btn-review {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #1a1208;
  border-color: transparent;
}

/* PAGINATION */
#pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 36px;
}
.page-btn {
  min-width: 38px;
  padding: 9px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all .15s ease;
}
.page-btn:hover { border-color: var(--accent); color: var(--accent-2); }
.page-btn.active { background: var(--accent); color: #1a1208; border-color: var(--accent); }
.page-btn.disabled { opacity: 0.4; cursor: default; }
.page-nav { padding: 9px 18px; }

.pg-empty {
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 36px 22px;
  text-align: center;
  color: var(--muted);
  margin-top: 14px;
}
.pg-empty-btn {
  margin-left: 10px;
  padding: 8px 14px;
  background: var(--accent);
  color: #1a1208;
  border-radius: 8px;
  font-weight: 600;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.page-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumb a { color: var(--text-soft); font-weight: 500; }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb sep { color: var(--muted-2); }
.breadcrumb span { color: var(--text); font-weight: 500; }

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  padding: 50px 0;
}
@media (max-width: 920px) { .product-layout { grid-template-columns: 1fr; gap: 32px; } }

.gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}
.gallery-main {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumb {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: border-color .18s ease;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(224,160,74,0.2); }
.gallery-thumb:hover { border-color: var(--line-strong); }

.product-info { padding: 6px 0; }
.p-brand {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-2);
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(224,160,74,0.32);
  border-radius: 999px;
  background: rgba(224,160,74,0.08);
}
.p-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.p-rating {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  font-size: 0.96rem;
}
.p-rating .stars-char { color: var(--accent-2); }
.p-rating .score { font-weight: 700; color: var(--text); }
.p-rating .reviews-ct { color: var(--muted); font-size: 0.86rem; }

/* Price Card */
.price-card {
  margin-bottom: 22px;
  padding: 20px 22px;
  background: linear-gradient(140deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.price-card-left { display: flex; flex-direction: column; gap: 6px; }
.price-card-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.price-card-value {
  display: flex; align-items: baseline; gap: 12px;
}
.price-card-value .est {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  background: linear-gradient(120deg, #f4d6a2, #e0a04a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.price-card-value .was {
  text-decoration: line-through;
  color: var(--muted-2);
  font-size: 0.95rem;
}
.price-card-value .save {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(89,194,133,0.16);
  border: 1px solid rgba(89,194,133,0.38);
  color: #80d8a3;
  padding: 5px 10px;
  border-radius: 999px;
}
.price-card-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  border: 1px solid rgba(224,160,74,0.34);
  background: rgba(224,160,74,0.08);
  padding: 8px 12px;
  border-radius: 999px;
}

.score-bar-wrap {
  margin-bottom: 22px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.score-bar-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.score-bar-track {
  height: 8px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.verdict-box {
  background: linear-gradient(140deg, rgba(224,160,74,0.07), rgba(224,160,74,0.01));
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 20px 22px;
  margin-bottom: 22px;
}
.verdict-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.verdict-text {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: -0.005em;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #1a1208;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(224,160,74,0.3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-buy:hover { transform: translateY(-2px); color: #1a1208; box-shadow: 0 12px 30px rgba(224,160,74,0.42); }
.btn-buy.alt {
  background: var(--surface-2);
  color: var(--accent-2);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.btn-buy.alt:hover { color: var(--accent-2); border-color: var(--accent); background: var(--surface-3); }
.btn-read-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: 999px;
  transition: all .18s ease;
}
.btn-read-reviews:hover { border-color: var(--accent); color: var(--accent-2); }
.cta-disclosure {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 12px 0 22px;
}

/* Features list */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}
@media (max-width: 540px) { .features-list { grid-template-columns: 1fr; } }
.features-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.45;
}
.features-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, rgba(224,160,74,0.3), transparent);
  border: 1px solid rgba(224,160,74,0.45);
  border-radius: 4px;
}
.features-list li::after {
  content: '✓';
  position: absolute;
  left: 2px; top: 5px;
  font-size: 0.74rem;
  color: var(--accent-2);
  font-weight: 700;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 14px;
}

/* PROS / CONS */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0 26px;
}
@media (max-width: 760px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.pros-box { border-top: 3px solid var(--success); }
.cons-box { border-top: 3px solid var(--danger); }
.box-head {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.16rem;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.pros-box .box-head { color: var(--success); }
.cons-box .box-head { color: var(--danger); }
.pros-box ul, .cons-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pros-box li, .cons-box li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.pros-box li:last-child, .cons-box li:last-child { border-bottom: 0; }
.pros-box li::before, .cons-box li::before {
  position: absolute;
  left: 4px; top: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}
.pros-box li::before { content: '+'; color: var(--success); }
.cons-box li::before { content: '−'; color: var(--danger); }

/* DIAGRAMS */
.diagrams-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 36px 0;
}
@media (max-width: 880px) { .diagrams-section { grid-template-columns: 1fr; } }
.diagram-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.diagram-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--text);
}
.diagram-sub {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Score breakdown bars */
.metric-row {
  display: grid;
  grid-template-columns: 130px 1fr 50px;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.metric-row:last-child { margin-bottom: 0; }
.metric-label {
  font-size: 0.86rem;
  color: var(--text-soft);
  font-weight: 500;
}
.metric-bar {
  height: 8px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.metric-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.metric-value {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent-2);
  text-align: right;
}

/* Donut chart */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}
.donut-wrap svg { width: 130px; height: 130px; flex-shrink: 0; }
.donut-bg { fill: none; stroke: var(--surface-2); stroke-width: 14; }
.donut-fg { fill: none; stroke-width: 14; stroke-linecap: round; transform: rotate(-90deg); transform-origin: center; }
.donut-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-anchor: middle;
  fill: var(--text);
}
.donut-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  fill: var(--muted);
  text-anchor: middle;
}
.donut-legend { font-size: 0.84rem; flex-grow: 1; }
.donut-legend-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.donut-legend-item:last-child { margin-bottom: 0; }
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 4px;
}
.legend-dot.pos { background: var(--success); }
.legend-dot.neg { background: var(--danger); }
.donut-legend-label { color: var(--text-soft); font-size: 0.86rem; }
.donut-legend-num { color: var(--text); font-weight: 700; margin-left: auto; font-family: var(--font-mono); }

/* Long-form description */
.product-desc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin: 30px 0;
}
.product-desc h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: #fff;
}
.product-desc p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.72;
  margin-bottom: 14px;
}
.product-desc p:last-child { margin-bottom: 0; }

/* REVIEWS */
.reviews-section { margin: 40px 0; }
.reviews-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: #fff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 18px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
}
.review-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.reviewer-name {
  font-weight: 700;
  color: var(--text);
  font-size: 0.96rem;
}
.review-date {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-mono);
}
.review-stars {
  color: var(--accent-2);
  margin-bottom: 8px;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.review-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}
.review-text {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* RELATED */
.related-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 70px 0;
  margin-top: 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease;
}
.related-card:hover { transform: translateY(-4px); border-color: rgba(224,160,74,0.4); }
.related-img { aspect-ratio: 4 / 3; background: var(--surface-2); overflow: hidden; }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.related-card:hover .related-img img { transform: scale(1.06); }
.related-body { padding: 14px 16px 16px; }
.related-brand {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  margin-bottom: 6px;
  font-weight: 600;
}
.related-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-stars {
  color: var(--accent-2);
  font-size: 0.84rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.related-link {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.related-card:hover .related-link { color: var(--accent-2); }

/* ============================================================
   STATIC PAGES (about/privacy/terms/cookies)
   ============================================================ */
.static-hero {
  background:
    radial-gradient(1100px 360px at 80% 0%, rgba(224,160,74,0.1), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 70px 0 50px;
  text-align: center;
}
.static-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.022em;
  color: #fff;
  margin-bottom: 14px;
}
.static-hero p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}
.static-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 24px;
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.78;
}
.static-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 36px 0 14px;
}
.static-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  margin: 24px 0 10px;
}
.static-content p { margin-bottom: 14px; }
.static-content ul { margin: 12px 0 14px 22px; }
.static-content li { margin-bottom: 8px; }
.static-content a { color: var(--accent-2); border-bottom: 1px dashed rgba(224,160,74,0.5); }
.static-content a:hover { border-bottom-color: var(--accent); }
.static-content strong { color: var(--text); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 70px 0 26px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 380px;
}
.footer-disclaimer {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 0.84rem !important;
  color: var(--text-soft) !important;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.012em;
}
.footer-logo .logo-mark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.footer-logo .logo-mark .logo-name {
  background: linear-gradient(120deg, #f4d6a2 0%, #e0a04a 60%, #b97e30 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.18rem;
  font-weight: 700;
}
.footer-logo .logo-mark .logo-tag {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-top: 4px;
}
.footer-logo-img {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(140deg, #1d2433, #11161f);
  padding: 3px;
  border: 1px solid var(--line-strong);
}
footer h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 18px;
}
footer ul { list-style: none; padding: 0; }
footer li { margin-bottom: 10px; }
footer a {
  color: var(--text-soft);
  font-size: 0.92rem;
  transition: color .15s ease;
}
footer a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.84rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent-2); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 22px;
  right: 22px;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1000;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
#cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-soft);
  min-width: 240px;
}
.cookie-text a { color: var(--accent-2); }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept, .cookie-decline {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: all .15s ease;
}
.cookie-accept {
  background: var(--accent);
  color: #1a1208;
  border-color: var(--accent);
}
.cookie-accept:hover { background: var(--accent-2); border-color: var(--accent-2); }
.cookie-decline { background: transparent; color: var(--text-soft); }
.cookie-decline:hover { background: var(--surface-2); }

/* ============================================================
   UTILITIES
   ============================================================ */
.divider {
  margin: 22px auto 0;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .8;
}
::selection { background: rgba(224,160,74,0.32); color: #fff; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 999px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--surface-3); }
