/* ============================================================
   EASY-EDIT VARIABLES
============================================================ */
:root {
  --page-bg:    #f6fafc;
  --blue:       #1a73e8;
  --green:      #09ae60;
  --green-dark: #078a4c;
  --red:        #dc3545;
  --teal:       #00b47a;
  --tp-green:   #00b67a;
  --card-border:#d0d5dd;
  --text:       #1a1a1a;
  --text-muted: #555;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: clip; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header img { height: 24px; width: auto; display: block; }

/* ============================================================
   PAGE LAYOUT
============================================================ */
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px 80px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

/* MAIN COLUMN */
.content-col {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 4px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.06);
}

/* SIDEBAR */
.sidebar {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 16px;
}
.sidebar-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 25px 25px 35px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
}
.sidebar-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.tp-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 4px;
}
.tp-star {
  width: 24px; height: 24px;
  background: var(--tp-green);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; line-height: 1;
}
.tp-label {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.sidebar-img {
  width: 85%;
  max-height: 180px;
  border-radius: 6px;
  margin: 0 auto 12px;
  display: block;
  object-fit: contain;
}
.sidebar-body-text {
  font-size: 16px;
  color: #333;
  text-align: center;
  line-height: 1.55;
  margin: 0 0 16px;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.content-col h1 {
  font-size: clamp(24px, 3.5vw, 33px);
  font-weight: 900;
  line-height: 1.2;
  color: #111;
  margin-bottom: 14px;
}
.article-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  margin-bottom: 16px;
}
.content-col h2 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  color: #111;
  margin: 20px 0 10px;
}
.content-col p {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}
.section-label {
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ============================================================
   AUTHOR BAR
============================================================ */
.author-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.author-bar img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
  display: block;
}

/* ============================================================
   #1 PICK BOX
============================================================ */
.pick-box {
  border: 4px solid #4075DC;
  border-radius: 4px;
  background: #fff;
  padding: 5px 22px 35px;
  margin: 34px 0;
  position: relative;
  box-shadow: 0 4px 24px rgba(64,117,220,0.18), 0 1px 6px rgba(64,117,220,0.10);
}
.pick-tab {
  position: absolute;
  top: -4px; left: -4px;
  background: #4075DC;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 22px;
  border-radius: 4px 0 4px 0;
}
.pick-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 0;
}
.pick-img-col {
  flex: 0 0 210px;
  text-align: center;
}
.pick-img-col img {
  width: 100%;
  max-height: 320px;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}
.pick-content-col { flex: 1; padding-top: 4px; }
.pick-product-name {
  display: block;
  font-size: 24px;
  font-weight: 800;
  text-decoration: underline;
  color: #111;
  margin-bottom: 14px;
}
.pick-checklist { list-style: none; padding: 0; margin: 0 0 22px; }
.pick-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #222;
  margin-bottom: 9px;
  line-height: 1.5;
}
.ci {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* ============================================================
   HOW WE TESTED SECTION
============================================================ */
    .how-we-tested {
      background: #fff;
      padding: 15px 0px 0px;
      margin: 28px 0 30px;
    }
    .hwt-title {
      font-size: clamp(20px, 2.5vw, 24px);
      font-weight: 800;
      color: #111;
      margin-bottom: 25px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--card-border);
      line-height: 1.2;
    }
    .hwt-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px 36px;
    }
    .hwt-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .hwt-check {
      width: 24px; height: 24px;
      flex-shrink: 0;
      margin-top: 1px;
      color: #222;
    }
    .hwt-item-title {
      display: block;
      font-size: 15px;
      font-weight: 700;
      color: #111;
      margin-bottom: 5px;
    }
    .hwt-item-desc {
      font-size: 14px;
      color: #444;
      line-height: 1.6;
      margin: 0;
    }
    @media (max-width: 600px) {
      .hwt-grid { grid-template-columns: 1fr; }
    }


/* ============================================================
   BUTTONS
============================================================ */
.btn-green {
  display: block;
  width: 100%;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: clamp(15px, 3.9vw, 20px);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 4px 0 #067040;
  transition: box-shadow 0.1s, transform 0.1s;
}
.btn-green:hover {
  box-shadow: 0 2px 0 #067040;
  transform: translateY(2px);
  text-decoration: none;
}

/* ============================================================
   PRODUCT CARDS
============================================================ */
.product-card {
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: #fff;
  padding: 28px 24px 36px;
  margin: 36px 0;
}

/* Title block */
.product-card .product-card-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  text-decoration: underline;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-card .product-card-title a { color: #111; }
.product-card .product-card-subtitle {
  text-align: center;
  font-size: 19px;
  color: #555;
  font-weight: 600;
  margin-bottom: 22px;
}

/* 3 score boxes */
.score-row {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}
.score-box {
  flex: 1;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.score-box img { max-width: 100%; max-height: 170px; object-fit: contain; }
.score-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.score-grade {
  font-size: 70px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.score-number {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.mini-stars { display: flex; justify-content: center; gap: 2px; }
.mini-star {
  width: 20px; height: 20px;
  background: var(--tp-green);
  border-radius: 2px;
  color: #fff; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.mini-star.half { background: linear-gradient(90deg, var(--tp-green) 75%, #ccc 75%); }

/* Section divider */
.card-divider {
  border: none;
  border-top: 1px solid var(--card-border);
  margin: 22px 0 18px;
}
.card-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  margin-bottom: 14px;
}

/* Rating bars */
.rating-bars { margin: 0 0 4px; }
.rb-item { margin-bottom: 16px; }
.rb-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.rb-label { font-size: 14px; font-weight: 500; color: #333; }
.rb-score { font-size: 15px; font-weight: 700; color: var(--green); line-height: 1; }
.rb-denom { font-size: 11px; font-weight: 400; color: #999; }
.rb-track {
  height: 12px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.10);
}
.rb-fill {
  height: 100%;
  background: linear-gradient(90deg, #0bc870 0%, #09ae60 45%, #078a4c 100%);
  border-radius: 6px;
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pros / Cons */
.pros-cons-box {
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 20px 18px;
  margin: 14px 0;
}
.pros-cons-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pros-cons-heading.pros { color: var(--green); }
.pros-cons-heading.cons { color: var(--red); }
.pc-list { list-style: none; padding: 0; margin: 0; }
.pc-list li {
  display: flex; align-items: flex-start;
  gap: 11px; font-size: 15px; color: #333;
  margin-bottom: 11px; line-height: 1.5;
}
.pc-list li:last-child { margin-bottom: 0; }
.ic-check {
  width: 20px; height: 20px;
  border-radius: 50%; background: var(--green);
  color: #fff; font-size: 12px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.ic-x {
  width: 20px; height: 20px;
  border-radius: 3px; background: var(--red);
  color: #fff; font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* Conclusion */
.conclusion-heading {
  font-size: 15px; font-weight: 700;
  color: #111; margin: 4px 0 8px;
}

/* Special offer note */
.offer-note {
  border: 2px dashed var(--green);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 25px 0px 25px;
  font-size: 16px; color: #333; line-height: 1.6;
}

/* ============================================================
   COUPON BOX
============================================================ */
.coupon-wrap {
  position: relative;
  margin: 32px 0;
}
.coupon-box {
  position: relative;
  border: 3px dashed #4075DC;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.coupon-box::after {
  content: "EXCLUSIVE";
  position: absolute;
  top: 30px;
  right: -38px;
  width: 160px;
  background: linear-gradient(135deg, #f5a623 0%, #e8930d 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 7px 0;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1;
}
.coupon-scissors {
  position: absolute;
  top: -11px; left: 10px;
  background: #fff;
  padding: 2px 8px;
  font-size: 17px;
  color: #4075DC;
  line-height: 1;
  z-index: 2;
}
.coupon-body { padding: 22px; }
.coupon-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.coupon-img-wrap {
  display: block;
  flex-shrink: 0;
  width: 150px;
  border-radius: 8px;
  overflow: hidden;
}
.coupon-img {
  width: 100%;
  display: block;
}
.coupon-header {
  margin-bottom: 8px;
}
.coupon-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4075DC;
}
.coupon-title {
  display: block;
  font-size: 22px;
  font-weight: 800;
  text-decoration: underline;
  color: #111;
  margin-bottom: 6px;
}
.coupon-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}
.coupon-divider {
  border-top: 2px dashed var(--card-border);
  margin-bottom: 16px;
}
.coupon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 16px;
}
.coupon-benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #222;
  line-height: 1.4;
}
.coupon-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.coupon-disclaimer {
  padding-top: 10px;
  font-size: 13px !important;
  color: #999;
  font-style: italic;
  margin: 0;
  text-align: center;
}

/* ============================================================
   GUIDANCE CARDS
============================================================ */
.guidance-card {
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 20px 22px;
  margin: 25px 0;
}
.guidance-card.look-for { border: 2px solid var(--green); }
.guidance-card.avoid    { border: 2px solid var(--red); }
.guidance-card h2 { font-size: 17px; margin: 0 0 16px; }
.guidance-list { list-style: none; padding: 0; margin: 0; }
.guidance-list li {
  display: flex; align-items: flex-start;
  gap: 12px; font-size: 15px; color: #333;
  margin-bottom: 14px; line-height: 1.6;
}
.guidance-list li:last-child { margin-bottom: 0; }
.g-ic {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 13px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.g-ic.avoid { background: var(--red); border-radius: 3px; }

/* ============================================================
   SITE FOOTER
============================================================ */
.site-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 36px 16px 30px;
  margin-top: 120px;
  text-align: center;
}
.site-footer img { height: 22px; margin-bottom: 10px; display: block; margin-left: auto; margin-right: auto; }
.sf-copyright { font-size: 13px; color: #777; margin-bottom: 6px; }
.sf-links { font-size: 13px; margin-bottom: 14px; }
.sf-links a { color: #777; margin: 0 4px; }
.sf-legal { font-size: 12px; color: #999; font-style: italic; max-width: 700px; margin: 0 auto; }
.sf-legal p { margin-bottom: 6px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 800px) {
  .page-wrapper { flex-direction: column; padding: 10px 10px 30px; }
  .content-col { padding: 18px 14px; }
  .sidebar { display: none !important; }
  .pick-inner { flex-direction: column; align-items: center; margin-bottom: 14px; }
  .pick-img-col { width: 70%; max-width: 320px; flex: none; padding-top: 25px;}
  .pick-product-name { font-size: 20px; }
  .pick-checklist { text-align: left; width: 100%; }
  .pick-checklist li { justify-content: flex-start; }
  .special-offer-inner { flex-direction: column !important; }
  .special-offer-inner > div:first-child { width: 60% !important; flex: none !important; max-width: 180px; margin: 0 auto; }
  .coupon-grid { grid-template-columns: 1fr !important; }
  .coupon-header { padding-right: 65px; }
  .coupon-layout { flex-direction: column; align-items: center; }
  .coupon-img-wrap { width: 120px; }
  .score-row { flex-direction: column; }
  .product-card .product-card-title { font-size: 28px; }
  .product-card .product-card-subtitle { font-size: 18px; }
  .btn-green { white-space: normal; max-width: 100%; padding: 12px 0px 12px 0px; }
  .pick-box { padding-bottom: 20px }
}
