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

:root {
  --brand:    #C0392B;
  --brand-dk: #A93226;
  --brand-lt: #F5EDE9;
  --dark:     #1A1A1A;
  --mid:      #555555;
  --light:    #888888;
  --border:   #E8E2DC;
  --bg:       #FAFAF8;
  --white:    #FFFFFF;
  --card-bg:  #FFFFFF;
  --radius:   14px;
  --radius-sm:8px;
  --shadow:   0 2px 12px rgba(0,0,0,.07);
  --shadow-md:0 4px 24px rgba(0,0,0,.10);
  --font-body:'Inter', system-ui, sans-serif;
  --font-head:'Playfair Display', Georgia, serif;
  --nav-h:    68px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Container ───────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 17px; font-weight: 600;
  color: var(--dark); flex-shrink: 0;
}
.logo-icon { width: 36px; height: auto; }
.nav-links {
  display: flex; gap: 32px; flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 15px; color: var(--mid);
  transition: color .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-search-btn {
  margin-left: auto; color: var(--mid);
  display: flex; align-items: center;
  transition: color .2s;
}
.nav-search-btn:hover { color: var(--brand); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--brand-lt);
  padding: 60px 0 0;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  color: var(--brand); text-transform: uppercase; margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15; color: var(--dark); margin-bottom: 20px;
}
.hero h1 em { color: var(--brand); font-style: italic; }
.hero-sub { color: var(--mid); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: var(--white);
  padding: 13px 24px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--brand-dk); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--brand);
  padding: 13px 24px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  border: 2px solid var(--brand); cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--brand); color: var(--white); }
.hero-stats { display: flex; gap: 40px; }
.hero-stat-num { font-size: 28px; font-weight: 700; color: var(--brand); }
.hero-stat-lbl { font-size: 13px; color: var(--mid); margin-top: 2px; }
.hero-img {
  border-radius: var(--radius) var(--radius) 0 0; overflow: hidden;
  height: 420px;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder {
  width: 100%; height: 100%; background: linear-gradient(135deg,#C0392B22 0%,#C0392B44 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}

/* ── Trust Bar ───────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-icon { font-size: 20px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--dark); }
.trust-item span   { font-size: 13px; color: var(--light); }

/* ── Section Titles ───────────────────────────────────────────────────────── */
.section-title { font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px); color: var(--dark); margin-bottom: 6px; }
.section-sub   { font-size: 15px; color: var(--mid); margin-bottom: 32px; }

/* ── Search Bar ──────────────────────────────────────────────────────────── */
.search-section { padding: 40px 0 0; background: var(--bg); }
.search-wrap {
  max-width: 700px; margin: 0 auto; padding: 0 24px;
}
.search-form { display: flex; align-items: center; background: var(--white); border: 1.5px solid var(--border); border-radius: 50px; padding: 4px 4px 4px 20px; gap: 8px; box-shadow: var(--shadow); }
.search-form svg { color: var(--light); flex-shrink: 0; }
.search-form input { flex: 1; border: none; background: none; font-size: 15px; color: var(--dark); outline: none; padding: 10px 0; }
.search-form input::placeholder { color: var(--light); }
.search-form button { background: var(--brand); color: #fff; border: none; border-radius: 50px; padding: 10px 20px; font-size: 14px; cursor: pointer; white-space: nowrap; }
.trending-tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.trending-label { font-size: 14px; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 4px; }
.tag-pill { background: #EEE8E0; color: var(--dark); padding: 6px 14px; border-radius: 50px; font-size: 13px; transition: background .2s; cursor: pointer; border: none; }
.tag-pill:hover { background: var(--brand-lt); }

/* ── Categories Grid ─────────────────────────────────────────────────────── */
.categories-section { padding: 56px 0; }
.categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 32px;
}
.cat-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  cursor: pointer;
}
.cat-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-icon { font-size: 22px; color: var(--brand); flex-shrink: 0; width: 28px; text-align: center; }
.cat-name { font-weight: 600; font-size: 15px; color: var(--dark); }
.cat-count { font-size: 12px; color: var(--light); margin-top: 2px; }
.cat-badge { background: #EEE8E0; color: var(--mid); font-size: 10px; padding: 2px 8px; border-radius: 4px; margin-top: 4px; display: inline-block; }

/* ── Products Grid ───────────────────────────────────────────────────────── */
.products-section { padding: 56px 0; }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 32px;
}
.product-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s, transform .15s;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-img {
  width: 100%; height: 200px; overflow: hidden; background: #f5f0eb;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--border);
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}
.product-body { padding: 18px 20px 20px; }
.product-cat  { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--brand); text-transform: uppercase; margin-bottom: 8px; }
.product-name { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }
.product-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.stars { color: var(--brand); font-size: 13px; }
.review-count { font-size: 13px; color: var(--light); }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-size: 18px; font-weight: 700; color: var(--brand); }
.product-price-orig { font-size: 13px; color: var(--light); text-decoration: line-through; margin-left: 4px; }
.btn-check-price {
  background: var(--brand); color: #fff;
  padding: 9px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; border: none; cursor: pointer;
  white-space: nowrap; transition: background .2s;
}
.btn-check-price:hover { background: var(--brand-dk); }
.see-all-wrap { text-align: center; margin-top: 8px; }
.btn-see-all {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--brand); color: var(--brand);
  background: transparent; padding: 11px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s;
}
.btn-see-all:hover { background: var(--brand); color: #fff; }

/* ── Guides / Blog ───────────────────────────────────────────────────────── */
.guides-section { padding: 56px 0; }
.guide-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-bottom: 32px;
}
.guide-featured-text { display: flex; flex-direction: column; justify-content: center; }
.guide-category-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--brand); text-transform: uppercase; margin-bottom: 12px; }
.guide-featured-text h2 {
  font-family: var(--font-head); font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.2; color: var(--dark); margin-bottom: 14px;
}
.guide-featured-text p { color: var(--mid); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.guide-meta { font-size: 13px; color: var(--light); display: flex; gap: 16px; margin-bottom: 20px; }
.btn-read-guide {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff;
  padding: 12px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 500; border: none; cursor: pointer;
  align-self: flex-start; transition: background .2s;
}
.btn-read-guide:hover { background: var(--brand-dk); }
.guide-featured-img {
  border-radius: var(--radius); overflow: hidden; height: 320px;
}
.guide-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.guide-img-placeholder {
  width: 100%; height: 100%; background: linear-gradient(135deg,#8B4513 0%,#C0392B 100%);
  display: flex; align-items: center; justify-content: center; font-size: 72px;
}

.guides-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.guide-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s, transform .15s;
}
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-card-img { height: 180px; overflow: hidden; background: #f5f0eb; }
.guide-card-img img { width: 100%; height: 100%; object-fit: cover; }
.guide-card-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 48px; background: linear-gradient(135deg,#C0392B22,#C0392B55);
}
.guide-card-body { padding: 18px 20px 20px; }
.guide-card-body h3 { font-family: var(--font-head); font-size: 18px; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.guide-card-body p { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ── Newsletter Banner ───────────────────────────────────────────────────── */
.newsletter-banner { background: var(--brand-lt); padding: 60px 24px; text-align: center; }
.newsletter-banner h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px); color: var(--dark); margin-bottom: 12px; }
.newsletter-banner p  { color: var(--mid); font-size: 15px; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 8px; max-width: 560px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1; min-width: 220px;
  padding: 13px 18px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 15px; background: #fff; outline: none;
}
.newsletter-form input:focus { border-color: var(--brand); }
.newsletter-form button {
  background: var(--brand); color: #fff;
  padding: 13px 24px; border-radius: 8px;
  font-size: 15px; font-weight: 500; border: none; cursor: pointer;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--brand-dk); }
.subscribe-success { color: var(--brand); margin-top: 16px; font-weight: 500; }

/* ── Site Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--white); border-top: 1px solid var(--border); padding: 48px 32px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-col h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { font-size: 14px; color: var(--mid); transition: color .2s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 13px; color: var(--light);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--light); transition: color .2s; }
.footer-legal a:hover { color: var(--brand); }

/* ── Product Detail ──────────────────────────────────────────────────────── */
.product-detail { padding: 40px 0 60px; }
.product-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.product-detail-img {
  border-radius: var(--radius); overflow: hidden; background: #f5f0eb;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info h1 { font-family: var(--font-head); font-size: 28px; color: var(--dark); margin-bottom: 12px; }
.product-detail-info .product-cat { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.product-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.product-rating-row .stars { font-size: 16px; }
.product-short-desc { color: var(--mid); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.product-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.product-price-big { font-size: 32px; font-weight: 700; color: var(--brand); }
.product-price-was { font-size: 16px; color: var(--light); text-decoration: line-through; }
.btn-buy-now {
  display: block; width: 100%; text-align: center;
  background: var(--brand); color: #fff;
  padding: 15px; border-radius: 10px;
  font-size: 16px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s; margin-bottom: 12px;
}
.btn-buy-now:hover { background: var(--brand-dk); }
.affiliate-note { font-size: 12px; color: var(--light); text-align: center; margin-bottom: 24px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.pros-box, .cons-box { background: var(--bg); border-radius: var(--radius-sm); padding: 16px; }
.pros-box h4 { color: #27AE60; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.cons-box h4 { color: var(--brand); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.pros-box li::before { content: '✓ '; color: #27AE60; font-weight: 700; }
.cons-box li::before { content: '✗ '; color: var(--brand); font-weight: 700; }
.pros-box li, .cons-box li { font-size: 13px; color: var(--mid); margin-bottom: 6px; line-height: 1.5; }
.product-description { padding: 40px 0; border-top: 1px solid var(--border); }
.product-description h2 { font-family: var(--font-head); font-size: 24px; margin-bottom: 20px; }
.product-description h3 { font-size: 18px; font-weight: 600; margin: 20px 0 10px; }
.product-description p  { color: var(--mid); line-height: 1.8; margin-bottom: 14px; }
.product-description ul { margin-bottom: 14px; padding-left: 20px; list-style: disc; }
.product-description ul li { color: var(--mid); margin-bottom: 6px; }

/* ── Breadcrumbs ─────────────────────────────────────────────────────────── */
.breadcrumb { padding: 16px 0; font-size: 13px; color: var(--light); }
.breadcrumb a { color: var(--light); transition: color .2s; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { margin: 0 6px; }

/* ── Page Header ─────────────────────────────────────────────────────────── */
.page-header { padding: 40px 0 32px; }
.page-header h1 { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px); color: var(--dark); margin-bottom: 8px; }
.page-header p  { color: var(--mid); font-size: 16px; }

/* ── Filters ─────────────────────────────────────────────────────────────── */
.filters-bar { display: flex; gap: 12px; flex-wrap: wrap; padding: 16px 0 24px; align-items: center; }
.filter-select { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; background: #fff; color: var(--dark); cursor: pointer; outline: none; }
.filter-select:focus { border-color: var(--brand); }
.results-count { font-size: 14px; color: var(--light); margin-left: auto; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.pagination { display: flex; gap: 4px; justify-content: center; padding: 32px 0; }
.pagination a, .pagination span {
  padding: 8px 14px; border-radius: 6px;
  font-size: 14px; border: 1.5px solid var(--border);
  color: var(--mid); background: #fff; transition: all .2s;
}
.pagination a:hover    { border-color: var(--brand); color: var(--brand); }
.pagination .current   { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ── Van Builds ──────────────────────────────────────────────────────────── */
.builds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.build-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1.5px solid var(--border);
  transition: box-shadow .2s, transform .15s;
}
.build-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.build-img { height: 200px; overflow: hidden; background: #f0ebe3; }
.build-img img { width: 100%; height: 100%; object-fit: cover; }
.build-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; background: linear-gradient(135deg,#C0392B22,#C0392B44); }
.build-body { padding: 18px 20px 20px; }
.build-body h3 { font-family: var(--font-head); font-size: 18px; color: var(--dark); margin-bottom: 6px; }
.build-van-info { font-size: 13px; color: var(--light); margin-bottom: 10px; }
.build-body p   { font-size: 14px; color: var(--mid); line-height: 1.6; }
.build-stats { display: flex; gap: 16px; margin-top: 12px; }
.build-stat { font-size: 12px; color: var(--light); }
.build-stat strong { color: var(--dark); }

/* ── Build Planner ───────────────────────────────────────────────────────── */
.planner-section { padding: 48px 0; }
.planner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.planner-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.planner-card h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 6px; }
.planner-card p  { color: var(--mid); font-size: 14px; margin-bottom: 20px; }
.checklist-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; }
.checklist-item label { font-size: 14px; color: var(--dark); cursor: pointer; flex: 1; }
.checklist-item .item-cat { font-size: 11px; color: var(--light); }

/* ── Search Page ─────────────────────────────────────────────────────────── */
.search-hero { background: var(--brand-lt); padding: 48px 0; }
.search-hero h1 { font-family: var(--font-head); font-size: 32px; color: var(--dark); margin-bottom: 20px; text-align: center; }
.search-hero .search-form { max-width: 600px; margin: 0 auto; }

/* ── Blog / Guide Detail ─────────────────────────────────────────────────── */
.blog-detail-wrap {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px;
  padding: 40px 0 60px;
}
.blog-body h1 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 40px); margin-bottom: 12px; }
.blog-body h2 { font-family: var(--font-head); font-size: 24px; margin: 32px 0 12px; }
.blog-body h3 { font-size: 18px; font-weight: 600; margin: 24px 0 10px; }
.blog-body p  { color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.blog-body ul, .blog-body ol { padding-left: 20px; color: var(--mid); margin-bottom: 16px; }
.blog-body ul li, .blog-body ol li { margin-bottom: 6px; }
.blog-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.blog-hero-img img { width: 100%; max-height: 420px; object-fit: cover; }
.blog-sidebar { position: sticky; top: 88px; }
.sidebar-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.sidebar-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }

/* ── About / Static Pages ────────────────────────────────────────────────── */
.static-content { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.static-content h1 { font-family: var(--font-head); font-size: 36px; margin-bottom: 24px; }
.static-content h2 { font-family: var(--font-head); font-size: 24px; margin: 32px 0 12px; }
.static-content p  { color: var(--mid); line-height: 1.8; margin-bottom: 16px; }

/* ── Affiliate Redirect ──────────────────────────────────────────────────── */
.redirect-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.redirect-card { text-align: center; padding: 48px; }
.redirect-card .spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--brand); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 20px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Utility ─────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner           { grid-template-columns: 1fr; }
  .hero-img             { height: 260px; border-radius: var(--radius); }
  .trust-bar-inner      { grid-template-columns: repeat(2,1fr); }
  .categories-grid      { grid-template-columns: repeat(2,1fr); }
  .products-grid        { grid-template-columns: repeat(2,1fr); }
  .guide-featured       { grid-template-columns: 1fr; }
  .footer-inner         { grid-template-columns: repeat(2,1fr); }
  .blog-detail-wrap     { grid-template-columns: 1fr; }
  .product-detail-inner { grid-template-columns: 1fr; }
  .builds-grid          { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .nav-links            { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px 24px; border-bottom: 1px solid var(--border); z-index: 99; }
  .nav-links.open       { display: flex; }
  .nav-hamburger        { display: flex; }
  .nav-inner            { padding: 0 16px; gap: 16px; }
  .categories-grid      { grid-template-columns: 1fr; }
  .products-grid        { grid-template-columns: 1fr; }
  .guides-grid          { grid-template-columns: 1fr; }
  .footer-inner         { grid-template-columns: 1fr 1fr; }
  .footer-bottom        { flex-direction: column; gap: 12px; text-align: center; }
  .builds-grid          { grid-template-columns: 1fr; }
  .planner-grid         { grid-template-columns: 1fr; }
  .pros-cons            { grid-template-columns: 1fr; }
  .trust-bar-inner      { grid-template-columns: 1fr 1fr; }
}

/* ── Critical SVG logo fix ───────────────────────────────────────────────── */
.nav-logo svg,
.logo-icon {
  width: 36px !important;
  height: 26px !important;
  min-width: 36px;
  min-height: 26px;
  max-width: 36px;
  max-height: 26px;
  display: block;
  flex-shrink: 0;
  overflow: hidden;
}

/* Prevent any SVG inside the page from unexpectedly growing */
header svg,
nav svg {
  overflow: hidden;
}
