/* ============================================
   BUDGET TECH PICKS — Design System
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --bg-primary: #0a0a0b;
  --bg-secondary: #111113;
  --bg-tertiary: #161618;
  --border: #1c1c1f;
  --border-hover: #3f3f46;
  --text-primary: #e4e4e7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-faint: #52525b;
  --accent: #7c3aed;
  --accent-hover: #6d28d9;
  --accent-soft: rgba(139, 92, 246, 0.15);
  --accent-gradient: linear-gradient(135deg, #a78bfa, #60a5fa);
  --accent-text: #a78bfa;
  --green: #22c55e;
  --red: #ef4444;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1000px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ---------- Header ---------- */
.site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo img.logo-icon {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}

.site-logo .logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.header-cta {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm) !important;
  transition: background 0.2s !important;
}

.header-cta:hover {
  background: var(--accent-hover) !important;
}

/* ---------- Hero (Homepage) ---------- */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.page-header .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 12px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 16px;
  color: var(--text-muted);
}

/* ---------- Section Label ---------- */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 60px 0;
}

.newsletter h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.newsletter p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus {
  border-color: var(--accent);
}

.form-row input::placeholder {
  color: var(--text-faint);
}

.form-row button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s;
}

.form-row button:hover {
  background: var(--accent-hover);
}

.form-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 12px;
}

/* ---------- Categories Grid ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 60px;
}

.category-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: block;
}

.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--accent-soft);
}

.category-card-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.category-card-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-card-count {
  font-size: 12px;
  color: var(--text-faint);
}

/* ---------- Two-Track Grid (Desk Gear + Work Tools) ---------- */
.two-track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 60px;
}

@media (max-width: 700px) {
  .two-track-grid { grid-template-columns: 1fr; }
}

.track-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: block;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  color: inherit;
  text-decoration: none;
}

.track-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--accent-soft);
}

.track-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.track-card-icon {
  font-size: 28px;
}

.track-card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 100px;
}

.track-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.track-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.track-card-list {
  margin-bottom: 18px;
}

.track-card-list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 3px 0;
  list-style: none;
  position: relative;
  padding-left: 14px;
}

.track-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-text);
  font-size: 11px;
  top: 3px;
}

.track-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-text);
}

/* ---------- Section Header ---------- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-header .section-label {
  margin-bottom: 0;
}

.section-more {
  font-size: 13px;
  color: var(--accent-text);
  font-weight: 500;
  transition: color 0.2s;
}

.section-more:hover {
  color: var(--text-primary);
}

/* ---------- Work Tools Grid ---------- */
.tools-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  color: inherit;
  text-decoration: none;
}

.tool-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px) scale(1.005);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.tool-card-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tool-card-body {
  flex: 1;
}

.tool-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tool-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.tool-card-commission {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ---------- Homepage Picks Grid ---------- */
.picks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 860px;
}

.pick-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.pick-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Image — fixed compact height, flush to left side */
.pick-card-img-wrap {
  position: relative;
  width: 110px;
  min-width: 110px;
  flex-shrink: 0;
  overflow: hidden;
}

.pick-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.pick-card:hover .pick-card-img {
  transform: scale(1.04);
}

/* Rank badge — overlaid on image */
.pick-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  line-height: 1;
  letter-spacing: 0.4px;
}

/* Content area — fills remaining space, no border, no box */
.pick-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex: 1;
  min-width: 0;
}

/* Title */
.pick-card-body h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
  margin: 0;
  /* Prevent overflow wrap making card taller */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Meta: price + rating + reviews in one row */
.pick-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  flex-wrap: wrap;
}

.pick-card-price {
  color: var(--accent-text);
  font-weight: 600;
}

.pick-card-rating {
  color: var(--text-secondary);
}

.pick-card-reviews {
  color: var(--text-faint);
}

/* Tagline — single line, truncated if needed */
.pick-card-tagline {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA button — always visible, right side */
.pick-card-btn {
  display: inline-block;
  background: #FF9900;
  color: #111113;
  font-weight: 600;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 5px;
  transition: background 0.2s;
  white-space: nowrap;
  margin-left: auto;
  align-self: center;
}

.pick-card-btn:hover {
  background: #E68A00;
}

/* ---------- Picks Grid: Mobile ---------- */
@media (max-width: 540px) {
  .pick-card {
    flex-direction: column;
    align-items: stretch;
  }
  .pick-card-img-wrap {
    width: 100%;
    height: 160px;
  }
  .pick-card-body {
    padding: 12px 14px;
  }
  .pick-card-body h3 {
    white-space: normal;
    font-size: 13px;
  }
  .pick-card-tagline {
    white-space: normal;
  }
  .pick-card-btn {
    align-self: flex-start;
    margin-left: 0;
    margin-top: 2px;
    font-size: 12px;
    padding: 7px 16px;
  }
}

/* ---------- Sidebar Affiliate Card: Mobile ---------- */
@media (max-width: 700px) {
  .pick-card.affiliate-card {
    flex-direction: column;
    gap: 16px;
  }
  .pick-card-img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .pick-card-btn {
    width: 100%;
    text-align: center;
  }
}

/* ---------- Mobile Sticky Amazon Bar ---------- */
.mobile-cta-bar { display: none; }

@media (max-width: 700px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    z-index: 100;
  }
  .mobile-cta-bar a {
    display: block;
    background: #FF9900;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
  }
  body { padding-bottom: 72px; }
}

/* ---------- Review Page ---------- */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
}

@media (max-width: 700px) {
  .review-layout {
    grid-template-columns: 1fr;
  }
}

.review-main {}

.review-sidebar {
  position: sticky;
  top: 80px;
}

.review-header {
  margin-bottom: 32px;
}

.review-header .section-label {
  margin-bottom: 8px;
}

.review-header h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.review-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.review-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-meta-label {
  color: var(--text-faint);
}

.review-meta strong {
  font-weight: 600;
}

.rating-stars {
  color: #f59e0b;
  letter-spacing: -2px;
}

.rating-value {
  font-weight: 700;
  color: var(--text-primary);
}

.review-price-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
}

.price-label {
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.price-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.btn-affiliate {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-bottom: 12px;
}

.btn-affiliate:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-secondary {
  display: block;
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: var(--bg-secondary);
  transform: translateY(-1px);
}

.affiliate-disclaimer {
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.verdict-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
}

.verdict-box h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.verdict-score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.verdict-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.verdict-label {
  font-size: 14px;
  color: var(--text-muted);
}

.verdict-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.verdict-pros, .verdict-cons {
  font-size: 14px;
}

.verdict-pros h4, .verdict-cons h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.verdict-pros h4 { color: var(--green); }
.verdict-cons h4 { color: var(--red); }

.verdict-pros li, .verdict-cons li {
  color: var(--text-secondary);
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
}

.verdict-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.verdict-cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ---------- Review Content Sections ---------- */
.review-section {
  margin-bottom: 40px;
}

.review-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.review-section p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table th {
  text-align: left;
  padding: 10px 0;
  color: var(--text-faint);
  font-weight: 500;
  width: 40%;
}

.specs-table td {
  padding: 10px 0;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---------- Comparison Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 24px 0;
}

.comparison-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 13px;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .winner {
  color: var(--green);
  font-weight: 600;
}

/* ---------- About Page ---------- */
.about-content {
  padding: 40px 0 60px;
}

.about-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 40px;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-principles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.principle {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.principle-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.principle h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.principle p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- 404 Page ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.error-code {
  font-size: 96px;
  font-weight: 700;
  color: var(--border-hover);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.error-page p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 48px;
  margin-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand .site-logo {
  margin-bottom: 14px;
  display: flex;
}

.footer-brand .site-logo img {
  height: 28px;
  width: auto;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-faint);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: var(--text-faint);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--text-muted);
}

/* ---------- Utility ---------- */
.text-accent { color: var(--accent-text); }
.text-muted { color: var(--text-muted); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.font-bold { font-weight: 700; }

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

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .form-row {
    flex-direction: column;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-sidebar {
    position: static;
  }

  .verdict-proscons {
    grid-template-columns: 1fr;
  }
}
