/*
Theme Name: BriefPick
Theme URI: https://briefpick.com
Author: BriefPick
Description: Clean, minimal Amazon affiliate review theme. Built for trust, speed, and conversion.
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: affiliate, reviews, minimal, blog, e-commerce
Text Domain: briefpick
*/

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --color-bg: #FFFFFF;
  --color-surface: #F7F8FA;
  --color-border: #E8EAED;
  --color-text: #1A1A1A;
  --color-text-muted: #6B7280;
  --color-accent: #1B4FD8;
  --color-accent-hover: #1540B0;
  --color-accent-light: #EEF2FF;
  --color-amber: #F59E0B;
  --color-amber-light: #FFFBEB;
  --color-green: #10B981;
  --color-red: #EF4444;
  --color-white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);

  --max-w-content: 780px;
  --max-w-wide: 1200px;
  --sidebar-w: 280px;

  --transition: 0.2s ease;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }
ul, ol { padding-left: 1.5rem; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  line-height: 1.3;
  color: var(--color-text);
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

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

.container--narrow {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HEADER
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
}

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

.site-logo__mark {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  letter-spacing: -0.5px;
}

.site-logo__text {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.site-logo__text span {
  color: var(--color-accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.site-nav a:hover { color: var(--color-accent); }
.site-nav a.active { color: var(--color-text); }

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.header-search:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* =============================================
   HERO
============================================= */
.hero {
  padding: 72px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero__search {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hero__search:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(27,79,216,0.1);
}

.hero__search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text);
  background: transparent;
}

.hero__search button {
  background: var(--color-accent);
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.hero__search button:hover { background: var(--color-accent-hover); }

/* =============================================
   CATEGORY PILLS
============================================= */
.category-bar {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.category-bar::-webkit-scrollbar { display: none; }

.category-bar__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
  white-space: nowrap;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.category-pill:hover,
.category-pill.active {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

/* =============================================
   PRODUCT CARDS
============================================= */
.section {
  padding: 56px 0;
}

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section__title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
}

.section__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-accent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-card__image-wrap {
  position: relative;
  background: var(--color-surface);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.product-card__image-wrap img {
  max-height: 160px;
  object-fit: contain;
  margin: 0 auto;
}

/* THE SIGNATURE ELEMENT: Quick Pick Badge */
.quickpick-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-accent);
  color: white;
  font-size: 11px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px 4px 8px;
  border-radius: var(--radius-full);
}

.quickpick-badge::before {
  content: '▲';
  font-size: 9px;
}

.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-text);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.product-card__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 10px;
}

.product-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--color-amber);
  font-size: 14px;
}

.rating-count {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.product-price {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
}

.product-price__original {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: var(--weight-normal);
  margin-right: 4px;
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-amber);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-amazon:hover {
  background: #E08E00;
  color: var(--color-text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   FEATURED (HERO PRODUCT)
============================================= */
.featured-review {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 56px;
}

.featured-review__image {
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 360px;
}

.featured-review__content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-review__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 20px;
}

.featured-review__title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: 1.25;
  margin-bottom: 12px;
}

.featured-review__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.featured-review__excerpt {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.verdict-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.verdict-box__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.verdict-box__score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.score-number {
  font-size: 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-accent);
  line-height: 1;
}

.score-bar-wrap {
  flex: 1;
}

.score-bar {
  height: 6px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.score-bar__fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: white;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,79,216,0.3);
}

/* =============================================
   COMPARISON TABLE
============================================= */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.comparison-table th {
  background: var(--color-surface);
  padding: 14px 20px;
  text-align: left;
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: middle;
}

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

.comparison-table tr:hover td { background: var(--color-surface); }

.comparison-table .best-pick td:first-child {
  border-left: 3px solid var(--color-accent);
}

.check { color: var(--color-green); font-weight: bold; }
.cross { color: var(--color-red); }

/* =============================================
   ARTICLE / REVIEW LAYOUT
============================================= */
.article-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 48px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 48px 24px;
  align-items: start;
}

.article-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.article-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--weight-medium);
}

.article-eyebrow a { color: var(--color-accent); }
.article-eyebrow__sep { color: var(--color-border); }

.article-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.article-meta__author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-weight: var(--weight-medium);
}

.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-accent);
  font-weight: var(--weight-bold);
}

.article-content h2 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin: 2rem 0 1rem;
  padding-top: 0.5rem;
  color: var(--color-text);
}

.article-content h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin: 1.5rem 0 0.75rem;
}

.article-content p { line-height: 1.8; color: #2D2D2D; }

.article-content ul,
.article-content ol {
  margin-bottom: 1.25rem;
  color: #2D2D2D;
}

.article-content li { margin-bottom: 0.4rem; }

/* =============================================
   SIDEBAR / TOC
============================================= */
.sidebar {
  position: sticky;
  top: 80px;
}

.toc {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.toc__title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.toc__list {
  list-style: none;
  padding: 0;
}

.toc__item {
  margin-bottom: 8px;
}

.toc__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: block;
  padding: 4px 0 4px 12px;
  border-left: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1.4;
}

.toc__link:hover,
.toc__link.active {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
}

.sidebar-widget {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

/* =============================================
   PROS / CONS
============================================= */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 2rem 0;
}

.pros, .cons {
  border-radius: var(--radius-lg);
  padding: 20px;
}

.pros {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.cons {
  background: #FFF1F2;
  border: 1px solid #FECDD3;
}

.pros__title, .cons__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.pros__title { color: var(--color-green); }
.cons__title { color: var(--color-red); }

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros li, .cons li {
  font-size: var(--text-sm);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 0;
}

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

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

/* =============================================
   AFFILIATE DISCLOSURE + CTA BOX
============================================= */
.disclosure-bar {
  background: var(--color-amber-light);
  border: 1px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: var(--text-xs);
  color: #92400E;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.buy-box {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 2rem 0;
}

.buy-box__info {}

.buy-box__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.buy-box__product {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: 4px;
}

.buy-box__price {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
}

.buy-box__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.btn-amazon--lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-amber);
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-amazon--lg:hover {
  background: #E08E00;
  color: var(--color-text);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  padding: 10px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--color-text);
  color: #9CA3AF;
  padding: 56px 0 32px;
}

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

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo__mark {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
}

.footer-logo__text {
  color: white;
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
}

.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: #6B7280;
  max-width: 280px;
}

.footer-col__title {
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: #6B7280;
  font-size: var(--text-sm);
  transition: color var(--transition);
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: #4B5563;
}

.footer-disclosure {
  font-size: var(--text-xs);
  color: #4B5563;
  max-width: 600px;
  line-height: 1.6;
}

/* =============================================
   UTILITIES
============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
}

.badge--new { background: #DCFCE7; color: #166534; }
.badge--sale { background: #FEE2E2; color: #991B1B; }
.badge--hot { background: #FEF3C7; color: #92400E; }

.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar { position: static; }

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

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

  .featured-review__image { min-height: 240px; }
}

@media (max-width: 768px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }

  .site-nav { display: none; }

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

  .product-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .buy-box {
    flex-direction: column;
    text-align: center;
  }

  .buy-box__actions { width: 100%; }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
