/* ============================================================
   GearPicks — Shared Stylesheet
   All pages import this file. Page-specific styles go in a
   small <style> block inside each HTML file.
   ============================================================ */

/* ---- Reset & Box Model ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- Design Tokens ---- */
:root {
  --bg:        #0d0f14;
  --surface:   #161922;
  --surface2:  #1e2230;
  --border:    #2a2f3e;
  --gold:      #f5a623;
  --gold-light:#ffc84a;
  --emerald:   #10b981;
  --red:       #ef4444;
  --accent:    #6366f1;
  --text:      #e8eaf0;
  --muted:     #7a8099;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --max-w:     900px;
  --transition: .2s ease;
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; color: #fff; }
.font-display { font-family: 'Playfair Display', serif; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-emerald{ color: var(--emerald); }
.text-red    { color: var(--red); }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- Section Label ---- */
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ---- Navigation ---- */
.site-nav {
  background: rgba(13,15,20,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f5a623, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-badge {
  background: var(--gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
/* Mobile hamburger (toggled by JS) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  max-width: var(--max-w);
  margin: 16px auto 0;
  padding: 0 24px;
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border); }

/* ---- Buttons ---- */
/* Amazon / Primary CTA */
.btn-amz {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF9900, #e47911);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  border: none;
  cursor: pointer;
}
.btn-amz:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,153,0,.35);
  text-decoration: none;
}
/* Small variant */
.btn-amz-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF9900, #e47911);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}
.btn-amz-sm:hover { opacity: .88; text-decoration: none; }

/* Outline button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245,166,35,.4);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(245,166,35,.08);
  border-color: var(--gold);
  text-decoration: none;
}

/* ---- Amazon Wordmark ---- */
.amz-wordmark {
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #232F3E;
  letter-spacing: -0.5px;
  line-height: 1;
}
.amz-wordmark .amz-smile {
  color: #FF9900;
  font-size: 0.55rem;
  display: block;
  text-align: center;
  letter-spacing: 3px;
  margin-top: -2px;
}
.btn-amz-sm .amz-wordmark { font-size: 0.82rem; }

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform .15s;
}
.card:hover {
  border-color: rgba(245,166,35,.3);
  transform: translateY(-2px);
}
.card-body { padding: 20px; }

/* ---- Rating Stars ---- */
.stars { display: flex; gap: 3px; }
.star  { color: var(--gold); font-size: 0.95rem; }

/* ---- Badges ---- */
.badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-best    { background: rgba(16,185,129,.15); color: #10b981; }
.badge-value   { background: rgba(99,102,241,.15);  color: #818cf8; }
.badge-premium { background: rgba(245,166,35,.15);  color: #f5a623; }
.badge-new     { background: rgba(239,68,68,.15);   color: #ef4444; }

/* ---- Tags ---- */
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 0.7rem;
  background: rgba(255,255,255,.05);
  color: var(--muted);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ---- Pros / Cons Lists ---- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.pros-list, .cons-list { list-style: none; }
.pros-list li, .cons-list li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
}
.pros-list li::before { content: '✓'; color: var(--emerald); font-weight: 700; flex-shrink: 0; }
.cons-list li::before { content: '✗'; color: var(--red);     font-weight: 700; flex-shrink: 0; }
.col-header { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 8px; }
.col-header.pro { color: var(--emerald); }
.col-header.con { color: var(--red); }

/* ---- Score Bars ---- */
.score-bars { display: flex; flex-direction: column; gap: 10px; }
.sbar-row { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; }
.sbar-label { width: 130px; color: var(--muted); flex-shrink: 0; }
.sbar-bg { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.sbar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold), #f97316); }
.sbar-num { width: 30px; text-align: right; font-weight: 700; color: var(--gold); }

/* ---- Metrics Grid ---- */
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.metric {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.metric-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.metric-value { font-size: 1.05rem; font-weight: 700; color: #fff; }
.metric.good .metric-value { color: var(--emerald); }

/* ---- Methodology Bar ---- */
.methodology-bar {
  background: rgba(99,102,241,.07);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 10px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.meth-item { text-align: center; }
.meth-num   { font-size: 1.4rem; font-weight: 800; color: #a5b4fc; display: block; line-height: 1; }
.meth-label { font-size: 0.7rem; color: var(--muted); display: block; margin-top: 3px; }

/* ---- Quick Picks Box ---- */
.quick-picks {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.quick-picks h3 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.qp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 10px; }
.qp-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition: border-color var(--transition);
}
.qp-item:hover { border-color: rgba(245,166,35,.3); }
.qp-item a { text-decoration: none; color: inherit; }
.qp-label { font-size: .65rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 3px; }
.qp-name  { font-size: .82rem; font-weight: 600; color: var(--text); display: block; }

/* ---- Kicker / Hero Badge ---- */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.3);
  color: #a5b4fc;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* ---- Alert / Info Box ---- */
.info-box {
  background: rgba(99,102,241,.07);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #a5b4fc;
  line-height: 1.7;
}
.warning-box {
  background: rgba(245,166,35,.07);
  border: 1px solid rgba(245,166,35,.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #fbbf24;
  line-height: 1.7;
}

/* ---- FAQ ---- */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 12px;
}
.faq-q {
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-q::before {
  content: 'Q';
  background: var(--gold);
  color: #000;
  font-size: .65rem;
  font-weight: 800;
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.faq-a { font-size: .85rem; color: var(--muted); line-height: 1.75; padding-left: 30px; }

/* ---- Verdict Box ---- */
.verdict-box {
  background: linear-gradient(135deg, rgba(245,166,35,.07), rgba(245,166,35,.02));
  border: 1px solid rgba(245,166,35,.25);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.verdict-box h2 { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.verdict-box p  { font-size: .9rem; color: #9ca3c8; line-height: 1.8; }

/* ---- Affiliate Notice ---- */
.affiliate-notice {
  background: rgba(245,166,35,.06);
  border: 1px solid rgba(245,166,35,.15);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: .78rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---- Divider ---- */
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  font-size: .78rem;
  line-height: 2;
}
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: var(--muted); font-size: .8rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .74rem; color: #4a5068; }

/* ---- Form Elements ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .84rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: .88rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-hint { font-size: .74rem; color: var(--muted); margin-top: 5px; }

/* ---- Submit Button ---- */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #f97316);
  color: #000;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,166,35,.3);
}

/* ---- Page Hero (for static pages) ---- */
.page-hero {
  padding: 56px 24px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1rem;
  color: #9ca3c8;
  line-height: 1.8;
  max-width: 640px;
}

/* ---- Content Prose ---- */
.prose { max-width: var(--max-w); margin: 0 auto; padding: 40px 24px; }
.prose h2 { font-size: 1.25rem; font-weight: 700; color: #fff; margin: 32px 0 12px; }
.prose h3 { font-size: 1rem; font-weight: 700; color: #dde0f0; margin: 24px 0 10px; }
.prose p  { font-size: .9rem; color: #9ca3c8; line-height: 1.85; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 20px; }
.prose li { font-size: .9rem; color: #9ca3c8; line-height: 1.75; margin-bottom: 6px; }
.prose strong { color: var(--text); }
.prose a { color: var(--gold); }

/* ---- Utility ---- */
.mt-0  { margin-top: 0; }         .mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }      .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }      .mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }    .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }   .mb-48 { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-sm  { font-size: .82rem; }
.text-xs  { font-size: .74rem; }
.w-full   { width: 100%; }
.hidden   { display: none; }

/* ---- Responsive ---- */
@media (max-width: 700px) {
  .nav-links   { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 16px; }
  .nav-toggle  { display: flex; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .methodology-bar { grid-template-columns: 1fr 1fr; }
  .pros-cons   { grid-template-columns: 1fr; }
  .qp-grid     { grid-template-columns: 1fr 1fr; }
  .page-hero h1{ font-size: 1.8rem; }
}
