/* Prime Gear Finds — shared styles */
:root {
  --ink: #1d2733;
  --muted: #5b6672;
  --brand: #0e5aa7;
  --brand-dark: #0a4076;
  --cta: #e8710a;
  --cta-dark: #c95f04;
  --ok: #1a8f4d;
  --bg: #ffffff;
  --bg-soft: #f4f7fa;
  --line: #e3e9ef;
  --radius: 12px;
  --maxw: 860px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); }

.disclosure-bar {
  background: #fdf6ec;
  border-bottom: 1px solid #f0e2c8;
  color: #7a6845;
  font-size: 12.5px;
  text-align: center;
  padding: 6px 14px;
  line-height: 1.4;
}

header.site {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.site-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--brand); }
nav.top a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-left: 16px;
}
nav.top a:hover { color: var(--brand); }

main { max-width: var(--maxw); margin: 0 auto; padding: 26px 18px 40px; }

.tag {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--brand);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
h1 { font-size: clamp(26px, 4.6vw, 38px); line-height: 1.18; letter-spacing: -0.5px; margin-bottom: 12px; }
.sub { color: var(--muted); font-size: 18.5px; margin-bottom: 18px; }
.byline {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: 13.5px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 10px 0; margin: 18px 0 24px;
  flex-wrap: wrap;
}
.stars { color: #f5a623; letter-spacing: 2px; font-size: 15px; }

h2 { font-size: clamp(21px, 3.4vw, 27px); line-height: 1.25; margin: 34px 0 12px; letter-spacing: -0.3px; }
h3 { font-size: 18.5px; margin: 22px 0 8px; }
p { margin-bottom: 14px; }
figure { margin: 22px 0; }
figure img { border-radius: var(--radius); margin: 0 auto; }
figcaption { text-align: center; color: var(--muted); font-size: 13px; margin-top: 8px; }

ul.checks { list-style: none; margin: 16px 0 20px; }
ul.checks li {
  padding-left: 30px; position: relative; margin-bottom: 10px;
}
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--ok); font-weight: 800; font-size: 18px;
}

.cta-block {
  background: linear-gradient(180deg, #f4f9ff, #eaf3fc);
  border: 1px solid #d3e4f5;
  border-radius: var(--radius);
  text-align: center;
  padding: 26px 20px;
  margin: 30px 0;
}
.cta-block .small { color: var(--muted); font-size: 13.5px; margin-top: 10px; margin-bottom: 0; }
.btn {
  display: inline-block;
  background: var(--cta);
  color: #fff !important;
  font-weight: 800;
  font-size: 19px;
  text-decoration: none;
  border-radius: 10px;
  padding: 16px 30px;
  box-shadow: 0 4px 14px rgba(232, 113, 10, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--cta-dark); transform: translateY(-1px); }
.btn.secondary { background: var(--brand); box-shadow: 0 4px 14px rgba(14, 90, 167, 0.3); }
.btn.secondary:hover { background: var(--brand-dark); }

.badges {
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px; margin-top: 14px;
}
.badges span::before { content: "✓ "; color: var(--ok); font-weight: 700; }

.steps { counter-reset: step; margin: 18px 0; }
.step {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px;
}
.step::before {
  counter-increment: step; content: counter(step);
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.step div { padding-top: 3px; }

.procon { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
@media (max-width: 640px) { .procon { grid-template-columns: 1fr; } }
.procon .col {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px;
}
.procon h3 { margin-top: 0; }
.procon ul { list-style: none; }
.procon li { padding-left: 26px; position: relative; margin-bottom: 8px; font-size: 15.5px; }
.pros li::before { content: "+"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.cons li::before { content: "–"; position: absolute; left: 0; color: #c0392b; font-weight: 800; }

.faq details {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 18px; margin-bottom: 10px; background: #fff;
}
.faq summary { font-weight: 700; cursor: pointer; font-size: 16px; }
.faq details p { margin: 10px 0 0; color: var(--muted); font-size: 15.5px; }

.verdict {
  border-left: 4px solid var(--ok);
  background: #f2faf5;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
}

/* home cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 26px 0; }
.card {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #fff; display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: 0 8px 24px rgba(29, 39, 51, 0.1); transform: translateY(-2px); }
.card img { aspect-ratio: 1; object-fit: cover; }
.card .body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.card .cat { font-size: 12px; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.card h3 { margin: 0; font-size: 18px; line-height: 1.3; }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }
.card .read { color: var(--cta); font-weight: 700; font-size: 14.5px; margin-top: 6px; }

.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--line);
  padding: 10px 14px; text-align: center; z-index: 50;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.07);
}
.sticky-cta .btn { font-size: 16px; padding: 12px 26px; }
body.has-sticky { padding-bottom: 76px; }

footer.site {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  margin-top: 30px;
}
.foot-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 26px 18px;
  color: var(--muted); font-size: 13px;
}
.foot-inner .links { margin-bottom: 12px; }
.foot-inner .links a { color: var(--muted); text-decoration: none; margin-right: 16px; }
.foot-inner .links a:hover { color: var(--brand); }

/* forms */
form.contact { max-width: 520px; }
form.contact label { display: block; font-weight: 700; font-size: 14.5px; margin: 14px 0 4px; }
form.contact input, form.contact textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 12px; font-size: 15.5px; font-family: inherit;
}
form.contact button {
  margin-top: 16px; border: 0; cursor: pointer;
}

.legal h2 { font-size: 20px; }
.legal p, .legal li { color: #3c4753; font-size: 15.5px; }
.legal ul { margin: 0 0 14px 22px; }
