/* ===========================
   Consumer Choices — Main Stylesheet
   =========================== */

/* --- CSS Variables --- */
:root {
  --color-purple: #6A15A9;
  --color-purple-dark: #321e41;
  --color-purple-hover: #551290;
  --color-blue: #2D53FE;
  --color-green: #84D321;
  --color-green-dark: #62A50E;
  --color-red: #EA1045;
  --color-cta: #fd3d69;
  --color-text: #444;
  --color-text-dark: #000;
  --color-text-mid: #4a4a4a;
  --color-text-light: #666;
  --color-text-muted: #999;
  --color-text-disclaimer: #888;
  --color-border: #dedede;
  --color-border-light: #f0f0f0;
  --color-highlight: #ffff00;
  --color-bg: #fff;
  --font-body: "Arimo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Rasa", Georgia, serif;
  --font-ui: "Arial", sans-serif;
  --shadow-card: 0 2px 13px rgba(0,0,0,0.06);
  --shadow-card-strong: 0 2px 13px rgba(0,0,0,0.05);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 93.75%; /* 15px base */ }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-blue); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-purple); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-purple-dark);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: 3.2rem; line-height: 1.2; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.33rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
hr { border: none; border-top: 1px solid var(--color-border); margin: 1.5em 0; }

/* --- Layout --- */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--wide { max-width: 1170px; }
.container--review { max-width: 860px; }
.section { padding: 30px 0; }
.section--hero { padding: 40px 0 20px; text-align: center; }

/* --- Header --- */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
body:has(.review-container) .site-header { display: none; }
.site-header .container {
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.site-logo img { height: 40px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
.site-nav a:hover { color: var(--color-blue); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .site-nav.open { display: flex; }
}

/* --- Footer --- */
.site-footer {
  background: #fff;
  color: #000;
  padding: 50px 0;
  margin-top: 60px;
  font-size: 0.87rem;
  text-align: center;
}
.site-footer .container { max-width: 1170px; }
.site-footer a { color: #616161; text-decoration: none; }
.site-footer a:hover { color: #000; }
.footer-logo {
  display: none;
}
.footer-text {
  color: #000;
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-text p { margin-bottom: 10px; }
.footer-copyright {
  text-align: center;
  color: #616161;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

/* --- Hero Section --- */
.hero { text-align: center; padding: 30px 0 20px; }
.review-container .hero::before {
  content: "SPONSORED ADVERTISING CONTENT";
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.hero__sponsored {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.hero__title {
  font-family: var(--font-ui);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-purple-dark);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero__subtitle {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  color: var(--color-text-mid);
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero__image {
  margin: 10px auto 0;
  border-radius: 4px;
  max-width: 100%;
}

/* --- Info Bar --- */
.info-bar {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 6px 0;
  font-family: var(--font-ui);
  font-size: 0.93rem;
  color: var(--color-text-mid);
}
.info-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-bar__item svg {
  width: 17px;
  height: 17px;
  fill: var(--color-text-mid);
}
.info-bar__item:first-child { display: none; }
.info-bar__item a { color: var(--color-text-mid); font-weight: 600; }
.info-bar__item a:hover { color: var(--color-blue); }

/* --- Benefits Section --- */
.benefits {
  background: var(--color-bg);
  border: 6px solid var(--color-green);
  border-radius: 8px;
  padding: 30px 60px;
  margin: 20px 0;
  box-shadow: var(--shadow-card-strong);
}
.benefits__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-purple-dark);
  text-align: center;
  margin-bottom: 20px;
}
.benefits__list {
  padding-left: 0;
}
.benefits__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  padding: 10px 14px;
  margin-bottom: 6px;
}
.benefits__list li span {
  background-color: var(--color-highlight);
  padding: 2px 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.benefits__list li svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  fill: var(--color-green);
}

/* --- Buying Guide (shared base + color variants) --- */
.buying-guide { padding: 20px 0; }
.buying-guide--look-for,
.buying-guide--watch-out {
  background: var(--color-bg);
  border-radius: 4px;
  padding: 20px 70px;
  margin: 20px 0;
  box-shadow: var(--shadow-card-strong);
}
.buying-guide--look-for { border: 5px solid var(--color-green); }
.buying-guide--watch-out { border: 5px solid var(--color-red); }
.buying-guide h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
  margin-top: 30px;
}
.buying-guide h2:first-child {
  margin-top: 0;
}
.buying-guide h3 {
  font-size: 1.73rem;
  margin: 20px 0 10px;
  line-height: 1.6;
  background-color: var(--color-highlight);
  padding: 4px 8px;
  display: inline;
  position: relative;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.buying-guide--look-for h3 {
  margin-left: 36px;
}
.buying-guide--look-for h3::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2362A50E' d='M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.buying-guide--watch-out h3 {
  margin-left: 36px;
}
.buying-guide--watch-out h3::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23EA1045' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.buying-guide p {
  font-family: var(--font-ui);
  font-size: 1.07rem;
  color: var(--color-text-dark);
  line-height: 1.5;
  margin-bottom: 0.8em;
}
.buying-guide p strong,
.buying-guide p b {
  font-weight: 700;
}
.buying-guide p u,
.buying-guide p span[style*="underline"] {
  text-decoration: underline;
}

/* --- Citations --- */
.buying-guide > h2:first-child + ol,
.buying-guide > ol {
  list-style: decimal;
  padding-left: 2em;
  font-size: 0.85rem;
  line-height: 1.8;
  word-break: break-all;
}
.buying-guide > ol a { font-size: 0.85rem; }

/* --- Intro Text --- */
.intro-text {
  padding: 20px 0;
}
.intro-text p {
  font-family: var(--font-ui);
  font-size: 1.07rem;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 0.8em;
}
.intro-text p b,
.intro-text p strong {
  font-weight: 700;
}
.intro-text p u {
  text-decoration: underline;
}

/* --- Transition Text --- */
.transition-text {
  padding: 10px 0 20px;
}
.transition-text p {
  font-family: var(--font-ui);
  font-size: 1.07rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* --- Pre-Products Heading --- */
.pre-products {
  text-align: center;
  padding: 20px 0 10px;
}
.pre-products h2 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}
.pre-products p {
  font-family: var(--font-ui);
  font-size: 1.07rem;
  color: var(--color-text);
}

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 10px 0;
}

/* --- Hide rating bars, score circle & first CTA globally --- */
.rating-bars { display: none; }
.rating-bars + .product-card__cta { display: none; }
.product-card__header-cell:nth-child(2) { display: none; }

/* --- Product Card --- */
.product-card {
  background: var(--color-bg);
  border-radius: 4px;
  padding: 25px 50px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-card);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-card__title a {
  color: #0000ee;
  text-decoration: none;
}
.product-card__title a:hover {
  text-decoration: underline;
}
.product-card__title sup {
  font-size: 0.7em;
  color: var(--color-text-mid);
  font-weight: 400;
}
.product-card__brand {
  font-family: var(--font-ui);
  font-size: 0.93rem;
  color: var(--color-text-mid);
  margin-bottom: 16px;
}

/* Card header: image + grade */
.product-card__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  background: var(--color-bg);
}
.product-card__header-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  border-right: 1px solid var(--color-border-light);
}
.product-card__header-cell:last-child {
  border-right: none;
}
.product-card__image {
  width: 180px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: 4px;
}

/* Circular score */
.score-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.score-circle__ring {
  position: relative;
  width: 100px;
  height: 100px;
}
.score-circle__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-circle__ring .track {
  fill: none;
  stroke: #e8e8e8;
  stroke-width: 6;
}
.score-circle__ring .fill {
  fill: none;
  stroke: var(--color-green);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}
.score-circle__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-mid);
}
.score-circle__label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--color-text-mid);
  text-align: center;
}

/* Grade badge */
.grade {
  text-align: center;
}
.grade__value {
  font-family: var(--font-ui);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-purple-dark);
  line-height: 1;
}
.grade__label {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* Rating bars */
.rating-bars { margin: 16px 0; }
.rating-bar {
  display: grid;
  grid-template-columns: 180px 1fr 70px;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 2px solid rgba(74,74,74,0.15);
}
.rating-bar:last-child { border-bottom: none; }
.rating-bar__label {
  font-family: var(--font-ui);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--color-text-mid);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.rating-bar__track {
  height: 22px;
  background: var(--color-border-light);
  border-radius: 20px;
  overflow: visible;
  position: relative;
}
.rating-bar__fill {
  height: 22px;
  background: linear-gradient(to right, var(--color-green), var(--color-green-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  position: relative;
}
.rating-bar__fill::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  border-right: 2px dotted var(--color-green-dark);
}
.rating-bar__pct {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 1;
}
.rating-bar__score {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-mid);
  text-align: right;
}

/* Pros + Overall two-column layout */
.product-card__pros-overall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 20px 0;
}
.product-card__pros-overall .pros-cons {
  margin: 0;
  padding-right: 30px;
  border-right: 1px solid var(--color-border-light);
}
.product-card__pros-overall .product-card__overall {
  padding: 0 0 0 30px;
}

/* Pros & Cons */
.pros-cons { margin: 20px 0; }
.pros-cons__section { margin-bottom: 24px; }
.pros-cons__title {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pros-cons__title--pros { color: var(--color-green-dark); }
.pros-cons__title--cons { color: var(--color-red); }
.pros-cons__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  color: var(--color-text-mid);
  line-height: 1.5;
}
.pros-cons__list li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
.pros-cons__list--pros svg { fill: var(--color-green-dark); }
.pros-cons__list--cons svg { fill: var(--color-red); }

/* Overall section */
.product-card__overall {
  padding: 12px 0;
}
.product-card__overall-title {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-purple-dark);
  margin-bottom: 12px;
}
.product-card__overall-text {
  font-family: var(--font-ui);
  font-size: 1.07rem;
  color: var(--color-text);
  line-height: 1.5;
}
.product-card__overall-text .disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
}
.product-card__overall-text p:last-child {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  line-height: 1.4;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cta);
  color: var(--color-bg);
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-cta:hover {
  color: var(--color-bg);
}
.btn-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.product-card__cta { text-align: center; padding-top: 16px; }

/* --- Tooltip / Help --- */
.ht {
  text-decoration: none;
  font-weight: bold;
  position: relative;
  color: var(--color-purple);
  padding-right: 5px;
  display: inline-block;
  cursor: help;
}
.ht::after {
  content: "?";
  position: absolute;
  right: -6px;
  top: 10px;
  font-size: 12px;
  transform: translateY(-80%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--color-purple);
  line-height: 13.5px;
  text-align: center;
  color: var(--color-purple);
  font-family: var(--font-body);
}
.hc {
  display: none;
  position: absolute;
  left: -20px;
  top: 25px;
  border: 2px solid var(--color-purple);
  border-radius: 4px;
  box-shadow: 10px 10px 40px 0 rgba(113, 120, 129, 0.5);
  padding: 15px 20px;
  background: var(--color-bg);
  min-width: 500px;
  font-size: 1.07rem;
  line-height: 1.33;
  text-align: left;
  color: var(--color-text);
  font-weight: normal;
  z-index: 5;
  font-family: var(--font-body);
}
.review-container .ht::after { top: -2px; right: -10px; }
.review-container .hc {
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 4px;
  padding: 12px;
  font-size: 0.93rem;
  border: none;
  font-style: normal;
  top: 10px;
  left: -40px;
}

/* --- Yellow Highlight --- */
.highlight { background-color: var(--color-highlight); }

/* --- Article Content --- */
.article-content {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text);
}
.article-content h2 {
  font-family: var(--font-ui);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-purple-dark);
  margin: 32px 0 16px;
}
.article-content h3 {
  font-family: var(--font-ui);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-purple-dark);
  margin: 24px 0 12px;
}
.article-content p { margin-bottom: 1.2em; }
.article-content ul, .article-content ol {
  padding-left: 24px;
  margin-bottom: 1.2em;
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 0.5em; }
.article-content img {
  margin: 20px 0;
  border-radius: 4px;
}
.article-content a { color: var(--color-purple); text-decoration: underline; }
.article-content blockquote {
  border-left: 4px solid var(--color-purple);
  padding: 12px 20px;
  margin: 20px 0;
  color: #555;
  font-style: italic;
}

/* --- Post Grid (Homepage / Archives) --- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px 0;
}
.post-card {
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.post-card:hover {
  box-shadow: 0 15px 45px -5px rgba(7,10,25,0.25);
  transform: translateY(-2px);
}
.post-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: 0 3px 12px -1px rgba(7,10,25,0.2), 0 22px 27px -20px rgba(7,10,25,0.2);
  transition: all 0.3s ease;
}
.post-card__image:hover {
  filter: brightness(1.07);
}
.post-card__category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-purple);
  margin: 12px 0 4px;
}
.post-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-purple-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--color-purple); }
.post-card__excerpt {
  font-size: 0.93rem;
  color: var(--color-text-light);
  line-height: 1.5;
}
.post-card__meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* --- Author Archive --- */
.author-bio {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}
.author-bio__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-bio__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-purple-dark);
  margin-bottom: 4px;
}
.author-bio__text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* --- Static Pages --- */
.page-content {
  font-family: var(--font-ui);
  font-size: 1.07rem;
  line-height: 1.6;
  color: var(--color-text);
  padding: 20px 0 40px;
}
.page-content h1 {
  font-family: var(--font-ui);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-purple-dark);
  margin-bottom: 20px;
}
.page-content h2 {
  font-family: var(--font-ui);
  font-size: 1.8rem;
  margin: 28px 0 12px;
}
.page-content h3 {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  margin: 20px 0 10px;
}
.page-content p { margin-bottom: 1em; }
.page-content ul, .page-content ol {
  padding-left: 24px;
  margin-bottom: 1em;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content a { color: var(--color-purple); text-decoration: underline; }

/* --- Contact Form --- */
.contact-form { max-width: 600px; margin: 0 auto; }
.contact-form label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--color-text-mid);
  margin-bottom: 4px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-purple);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  background: var(--color-purple);
  color: var(--color-bg);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover { background: var(--color-purple-hover); }

/* --- Responsive --- */
@media (max-width: 768px) {
  h1, .hero__title { font-size: 2.2rem; }
  h2, .benefits__title, .buying-guide h2 { font-size: 1.6rem; }

  .product-card__header {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 0;
  }
  .product-card__header-cell:nth-child(2) { display: none; }
  .product-card__header-cell:first-child { border-right: 1px solid var(--color-border-light); }
  .product-card__image { width: 160px; max-height: 200px; margin: 0 auto; }

  .info-bar { display: flex; justify-content: center; gap: 20px; font-size: 0.85rem; }

  .benefits__list li {
    display: block;
    position: relative;
    padding-left: 42px;
  }
  .benefits__list li svg {
    position: absolute;
    left: 14px;
    top: 14px;
  }
  .benefits__list li span {
    display: inline;
  }

  .grade__label { font-size: 0.7rem; white-space: nowrap; }
  .hc { min-width: 280px; left: -10px; }

  .product-card__pros-overall {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .author-bio { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 544px) {
  .container { padding: 0 16px; }
  .product-card { padding: 16px 14px; }
  .benefits,
  .buying-guide--look-for,
  .buying-guide--watch-out { padding: 16px 14px; }
  .btn-cta { width: 100%; justify-content: center; font-size: 1rem; padding: 12px 20px; }
}

/* --- Rating images (A-rating bars with product images) --- */
.a-rating { border-bottom: 2px solid rgba(74,74,74,0.29); }
.a-rating .rating-bar__fill::after { border-color: transparent; }
.a-rating-image {
  border: 1px solid rgba(74,74,74,0.29);
  border-radius: 30px;
  overflow: hidden;
}

/* --- Icon box (used in info bar, benefits) --- */
.icon-box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.icon-box svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.icon-box__title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-mid);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Footer Disclaimers --- */
.footer-disclaimer {
  font-size: 0.75rem;
  margin-top: 8px;
  line-height: 1.4;
  color: var(--color-text-disclaimer);
}
.footer-note {
  font-size: 0.8rem;
  margin-top: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* --- Tracking / Hidden --- */
.hidden { display: none; visibility: hidden; }
.pixel { display: none; }
