/* ═══════════════════════════════════════
   COMPONENTS — Review Pages, Blog, etc.
═══════════════════════════════════════ */

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-100);
  padding: .7rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  list-style: none;
  font-size: 13px;
  align-items: center;
}
.breadcrumb li { color: var(--gray-400); }
.breadcrumb li a { color: var(--blue); }
.breadcrumb li a:hover { color: var(--blue-light); }
.breadcrumb li + li::before { content: "›"; margin-right: .3rem; }

/* ── REVIEW HERO ── */
.review-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.review-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.review-meta-top {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.review-cat-badge {
  background: #e6f2fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.review-updated {
  font-size: 12px;
  color: var(--gray-400);
}
.review-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.review-rating-large {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}
.rating-score-big {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.rating-stars-big { font-size: 22px; color: var(--amber); }
.review-author {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem;
  background: var(--gray-100);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text-muted);
}
.author-avatar {
  width: 36px; height: 36px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}

/* Review sidebar product box */
.review-sidebar-box {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.rsb-img {
  height: 140px;
  border-radius: var(--r-lg);
  margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.rsb-score {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.rsb-score .score-num { font-size: 2.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.rsb-score .score-stars { font-size: 18px; color: var(--amber); }
.rsb-score p { font-size: 13px; color: var(--gray-400); margin-top: .3rem; }
.rsb-criteria { list-style: none; margin-bottom: 1.2rem; }
.rsb-criteria li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}
.rsb-criteria .crit-label { color: var(--text-muted); }
.rsb-criteria .crit-bar-wrap { display: flex; align-items: center; gap: .5rem; }
.crit-bar {
  width: 80px; height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}
.crit-bar-fill { height: 100%; background: var(--blue); border-radius: 3px; }
.crit-score { font-size: 12px; font-weight: 600; color: var(--navy); }

/* ── REVIEW CONTENT ── */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
}
.review-content { max-width: none; }
.review-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2rem 0 .8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.review-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.review-content h3 { font-size: 1.1rem; color: var(--navy); margin: 1.5rem 0 .6rem; }
.review-content p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 1rem; }
.review-content ul, .review-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.review-content li { font-size: 15px; color: var(--text); margin-bottom: .4rem; line-height: 1.7; }

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.pros, .cons {
  border-radius: var(--r-lg);
  padding: 1.2rem;
}
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons { background: #fef2f2; border: 1px solid #fecaca; }
.pros h4 { color: var(--green); font-size: 14px; margin-bottom: .8rem; }
.cons h4 { color: var(--red); font-size: 14px; margin-bottom: .8rem; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li, .cons li { font-size: 13.5px; padding: .35rem 0; display: flex; gap: .5rem; }
.pros li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons li::before { content: "✕"; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* Verdict box */
.verdict-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  margin: 2rem 0;
}
.verdict-box .vb-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-light);
  margin-bottom: .6rem;
}
.verdict-box p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.7; margin-bottom: 1rem; }
.verdict-box .verdict-score {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.verdict-box .verdict-stars { font-size: 18px; color: var(--amber); }

/* ── TOC (Table of Contents) ── */
.toc-box {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
.toc-box h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: .8rem; }
.toc-box ol { padding-left: 1.2rem; }
.toc-box li { font-size: 13.5px; margin-bottom: .4rem; }
.toc-box a { color: var(--blue); }

/* ── STICKY SIDEBAR AD/CTA ── */
.sticky-sidebar { position: sticky; top: 80px; }
.sidebar-cta {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 1.3rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-cta h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.sidebar-cta p { font-size: 13px; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.sidebar-cta .price-big { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: .8rem; }

/* ── ALERT BOX ── */
.alert-box {
  display: flex;
  gap: .8rem;
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  margin: 1.5rem 0;
  font-size: 14px;
  line-height: 1.6;
}
.alert-box.info { background: #eff6ff; border-left: 4px solid var(--blue); color: #1e40af; }
.alert-box.warning { background: #fffbeb; border-left: 4px solid var(--amber); color: #92400e; }
.alert-box.success { background: #f0fdf4; border-left: 4px solid var(--green); color: #166534; }
.alert-box .ab-icon { font-size: 18px; flex-shrink: 0; }

/* ── DISCLOSURE BOX ── */
.disclosure-box {
  background: #f8f8f4;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: .8rem 1rem;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ── FAQ ACCORDION ── */
.faq-list { list-style: none; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 1.2rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  transition: background .15s;
}
.faq-question:hover { background: var(--gray-100); }
.faq-question .faq-arrow { font-size: 12px; transition: transform .2s; }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.2rem 1rem;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  margin-top: 3rem;
}
.pagination a, .pagination span {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  font-size: 14px;
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  transition: all .2s;
}
.pagination a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.pagination .active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── RESPONSIVE COMPONENTS ── */
@media (max-width: 768px) {
  .review-hero-inner { grid-template-columns: 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .pros-cons { grid-template-columns: 1fr; }
}
