/* ============================================
   PRINTER REVIEWS — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --clr-bg:        #f9f8f6;
  --clr-surface:   #ffffff;
  --clr-ink:       #1a1a1a;
  --clr-muted:     #6b6b6b;
  --clr-border:    #e2e0dc;
  --clr-accent:    #c0392b;
  --clr-accent-dk: #922b21;
  --clr-gold:      #b8860b;
  --clr-tag-bg:    #f0ece4;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.13);

  --radius:    6px;
  --radius-lg: 12px;
  --max-w:     1200px;
  --header-h:  68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { color: var(--clr-muted); font-size: 1rem; }

/* ── Layout Helpers ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--sm { padding: 48px 0; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 40px; height: 40px; flex-shrink: 0; }
.brand-name { font-family: var(--ff-head); font-size: 1.25rem; font-weight: 700; color: var(--clr-ink); letter-spacing: -.02em; }
.brand-name span { color: var(--clr-accent); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: .875rem; font-weight: 500; padding: 6px 14px;
  border-radius: var(--radius); color: var(--clr-muted);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--clr-ink); background: var(--clr-tag-bg); }
.nav-links a.btn-cta {
  background: var(--clr-accent); color: #fff; margin-left: 8px;
  padding: 7px 18px;
}
.nav-links a.btn-cta:hover { background: var(--clr-accent-dk); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav-toggle span { display: block; height: 2px; background: var(--clr-ink); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 60%, #3d2c2c 100%);
  color: #fff; padding: 96px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: var(--clr-accent); color: #fff; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: #e8c97a; font-style: normal; }
.hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: .9rem; transition: .2s; }
.btn-primary { background: var(--clr-accent); color: #fff; }
.btn-primary:hover { background: var(--clr-accent-dk); transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.3); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.stat-card strong { display: block; font-family: var(--ff-head); font-size: 2rem; color: #e8c97a; }
.stat-card span { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; }

/* ── SECTION LABELS ── */
.section-label { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--clr-accent); margin-bottom: 10px; }
.section-title { margin-bottom: 14px; }
.section-sub  { max-width: 560px; margin-bottom: 48px; }

/* ── REVIEW CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.card {
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-img {
  height: 180px; background: linear-gradient(135deg, #f5f0e8, #ede5d8);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.card-img svg { width: 90px; height: 90px; opacity: .7; }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--clr-accent); color: #fff;
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 20px;
}
.card-badge.best { background: var(--clr-gold); }
.card-body { padding: 22px; }
.card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.card-tag { font-size: .72rem; background: var(--clr-tag-bg); color: var(--clr-muted); padding: 3px 10px; border-radius: 20px; font-weight: 500; }
.card-stars { display: flex; gap: 2px; }
.card-stars svg { width: 13px; height: 13px; }
.card-title { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--clr-ink); }
.card-title:hover { color: var(--clr-accent); }
.card-desc { font-size: .875rem; color: var(--clr-muted); margin-bottom: 18px; line-height: 1.6; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-score { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; color: var(--clr-accent); }
.card-score span { font-size: .75rem; font-family: var(--ff-body); color: var(--clr-muted); font-weight: 400; }
.card-link { font-size: .82rem; font-weight: 600; color: var(--clr-accent); display: flex; align-items: center; gap: 4px; }
.card-link:hover { text-decoration: underline; }

/* ── CATEGORIES ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.cat-card {
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  cursor: pointer; transition: .2s; text-decoration: none; color: var(--clr-ink);
}
.cat-card:hover { border-color: var(--clr-accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cat-icon { width: 48px; height: 48px; margin: 0 auto 14px; }
.cat-name { font-family: var(--ff-head); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.cat-count { font-size: .78rem; color: var(--clr-muted); }

/* ── RATING TABLE ── */
.rating-table { width: 100%; border-collapse: collapse; }
.rating-table th { background: var(--clr-tag-bg); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--clr-muted); padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--clr-border); }
.rating-table td { padding: 14px 16px; border-bottom: 1px solid var(--clr-border); font-size: .9rem; }
.rating-table tr:hover td { background: var(--clr-tag-bg); }
.rating-bar { width: 100px; height: 6px; background: var(--clr-border); border-radius: 3px; display: inline-block; vertical-align: middle; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--clr-accent); border-radius: 3px; }

/* ── PROS/CONS ── */
.pro-con { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.pro-list, .con-list { background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 24px; }
.pro-list h4 { color: #27ae60; font-family: var(--ff-head); margin-bottom: 14px; }
.con-list h4 { color: var(--clr-accent); font-family: var(--ff-head); margin-bottom: 14px; }
.pro-list li, .con-list li { font-size: .9rem; padding: 6px 0; border-bottom: 1px solid var(--clr-border); display: flex; align-items: flex-start; gap: 8px; color: var(--clr-muted); }
.pro-list li:last-child, .con-list li:last-child { border-bottom: none; }
.pro-list li::before { content: '+'; color: #27ae60; font-weight: 700; }
.con-list li::before { content: '-'; color: var(--clr-accent); font-weight: 700; }

/* ── VERDICT BOX ── */
.verdict {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 36px; margin: 40px 0;
  display: flex; gap: 32px; align-items: center;
}
.verdict-score { text-align: center; flex-shrink: 0; }
.verdict-score strong { display: block; font-family: var(--ff-head); font-size: 3.5rem; color: #e8c97a; line-height: 1; }
.verdict-score span { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; }
.verdict-text h3 { color: #e8c97a; font-family: var(--ff-head); margin-bottom: 10px; }
.verdict-text p { color: rgba(255,255,255,.75); font-size: .95rem; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 14px 0; display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--clr-muted); }
.breadcrumb a { color: var(--clr-accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

/* ── PAGE HEADER ── */
.page-header { background: var(--clr-ink); color: #fff; padding: 64px 0 48px; }
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.65); max-width: 600px; font-size: 1.05rem; }

/* ── SIDEBAR LAYOUT ── */
.sidebar-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.sidebar-widget { background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-widget h4 { font-family: var(--ff-head); font-size: 1rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--clr-border); }
.sidebar-widget li a { display: block; font-size: .875rem; color: var(--clr-muted); padding: 7px 0; border-bottom: 1px solid var(--clr-border); transition: color .2s; }
.sidebar-widget li:last-child a { border-bottom: none; }
.sidebar-widget li a:hover { color: var(--clr-accent); }

/* ── ARTICLE CONTENT ── */
.article-content h2 { margin: 36px 0 14px; }
.article-content h3 { margin: 28px 0 10px; color: var(--clr-accent); }
.article-content p { margin-bottom: 18px; line-height: 1.75; }
.article-content ul { padding-left: 20px; margin-bottom: 18px; }
.article-content ul li { font-size: .95rem; color: var(--clr-muted); padding: 4px 0; list-style: disc; }
.article-content blockquote { border-left: 3px solid var(--clr-accent); padding: 14px 20px; background: var(--clr-tag-bg); border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; }
.article-content blockquote p { color: var(--clr-ink); font-style: italic; margin: 0; }

/* ── SPEC TABLE ── */
.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.spec-table tr:nth-child(odd) td { background: var(--clr-tag-bg); }
.spec-table td { padding: 11px 16px; font-size: .88rem; border-bottom: 1px solid var(--clr-border); }
.spec-table td:first-child { font-weight: 600; color: var(--clr-ink); width: 40%; }

/* ── DISCLOSURE BANNER ── */
.disclosure { background: #fffbf0; border: 1px solid #f0d080; border-radius: var(--radius); padding: 14px 20px; margin: 24px 0; font-size: .82rem; color: #7a6010; }
.disclosure strong { color: #5a4010; }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 48px 0 0; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); font-size: .875rem; font-weight: 600; border: 1px solid var(--clr-border); }
.pagination a:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.pagination .active { background: var(--clr-accent); color: #fff; border-color: var(--clr-accent); }

/* ── NEWSLETTER ── */
.newsletter { background: var(--clr-ink); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.newsletter h2 { color: #fff; margin-bottom: 10px; }
.newsletter p { color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 28px; }
.newsletter-form { display: flex; max-width: 420px; margin: 0 auto; gap: 10px; }
.newsletter-form input { flex: 1; padding: 12px 18px; border-radius: var(--radius); border: none; font-family: var(--ff-body); font-size: .9rem; }
.newsletter-form input:focus { outline: 2px solid var(--clr-gold); }
.newsletter-form button { background: var(--clr-accent); color: #fff; padding: 12px 22px; border-radius: var(--radius); font-weight: 600; font-size: .9rem; white-space: nowrap; transition: .2s; }
.newsletter-form button:hover { background: var(--clr-accent-dk); }

/* ── FOOTER ── */
.site-footer { background: #111; color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand-name { color: #fff; font-size: 1.15rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); margin: 14px 0; line-height: 1.7; }
.footer-addr { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.8; }
.footer-col h5 { font-family: var(--ff-head); color: #fff; font-size: .95rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: #fff; }

/* ── LEGAL PAGES ── */
.legal-body { max-width: 780px; }
.legal-body h2 { margin: 40px 0 14px; font-size: 1.4rem; }
.legal-body h3 { margin: 28px 0 10px; font-size: 1.1rem; color: var(--clr-muted); }
.legal-body p  { margin-bottom: 16px; line-height: 1.8; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body ul li { list-style: disc; padding: 4px 0; font-size: .95rem; color: var(--clr-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--clr-surface); border-bottom: 1px solid var(--clr-border); flex-direction: column; padding: 16px 24px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .pro-con { grid-template-columns: 1fr; }
  .verdict { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0 48px; }
  .section { padding: 56px 0; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-card { padding: 18px; }
}
