/* ============================================
   PRESELL EIGHT REASONS — Solana Gear
   ============================================ */

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  /* Colors */
  --color-text: #000;
  --color-red: #c8102e;
  --color-title: #111111;
  --color-grey: #444444;
  --color-blue: #2072dc;
  --color-green: #2a7d4f;
  --color-yellow: #ffc107;
  --color-yellow-light: #fff3cd;
  --color-white: #ffffff;
  --color-bg: #f9f7f4;
  --color-black: #000;

  /* Typography */
  --font-title: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --font-ui: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;

  /* Layout */
  --wrapper-max: 1240px;
  --wrapper-px: 24px;
  --sidebar-width: 360px;
  --gap: 48px;
}

/* ============================================
   Reset / Base
   ============================================ */

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  color: var(--color-red);
  text-decoration: underline;
}

p {
  margin: 0;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

/* ============================================
   Wrapper
   ============================================ */
.wrapper {
  max-width: var(--wrapper-max);
  padding-inline: var(--wrapper-px);
  margin-inline: auto;
  width: 100%;
}

@media (max-width: 640px) {
  .wrapper {
    padding-inline: 16px;
  }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: static;
  z-index: 50;
  background-color: #fffdf9;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

/* Thin top accent bar */
.header-accent-bar {
  background-color: #c07820;
}
.header-accent-bar p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: 0.26px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-white);
  margin: 0;
  padding: 8.5px 0;
}
/* White main header: brand + trending */
.header-main {
  background-color: var(--color-white);
  padding: 10px 0;
  /* border-bottom: 1px solid #ebebeb; */
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  width: 338px;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .brand-logo {
    width: 198px;
  }

  .header-main {
    background-color: #1a1a1a;
    padding: 11px 0;
  }

  .header-trending {
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
    color: #fff;
    line-height: 1.4;
    white-space: normal;
  }

  .header-trending span {
    text-align: right;
    max-width: 125px;
    font-size: 12px;
  }

  .header-trending img {
    display: none;
  }
}

.header-brand-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Brand logo: ColdGear Review */
.brand-name {
  font-family: var(--font-title);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-cold {
  font-weight: 800;
  color: #2e5e2e;
}

.brand-gear {
  font-weight: 800;
  color: #c07820;
}

.brand-review {
  font-weight: 400;
  color: var(--color-title);
}

.brand-tagline {
  margin: 0;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888;
}

/* Trending label */
.header-trending {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-black);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-trending img {
  height: 18px;
  width: auto;
  display: inline;
}

/* Navigation bar */
.header-nav {
  background-color: var(--color-white);
  border-bottom: 3px solid #2e5e2e;
}

.header-nav .wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.header-nav .wrapper::-webkit-scrollbar {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  white-space: nowrap;
  border-top: 1px solid #dddddd;
}

.nav-links li a {
  display: block;
  padding: 10px 20px 10px 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 21.6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-title);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links li a:hover {
  color: #2e5e2e;
  text-decoration: none;
}

/* ============================================
   Article Section
   ============================================ */

/* Offset for sticky header so anchors land in the right spot */
#article,
#reasons,
#reviews,
#verdict {
  scroll-margin-top: 185px;
}

.article-section {
  padding: 21px 0 250px;
}

/* ============================================
   Article Content — full wrapper width (1100px)
   ============================================ */
.article-content {
  width: 100%;
}

/* ============================================
   Article Left Column — Typography
   ============================================ */

/* Hero image */
.hero-image-wrapper {
  position: relative;
  margin-bottom: 22px;
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  /* border-radius: 6px; */
  margin-bottom: 0;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

.audio-toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.editor-pick {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 19.8px;
}

.article-headline {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-title);
  margin-top: 18px;
  margin-bottom: 20px;
  max-width: 97%;
}

.headline-highlight {
  background-color: #fff28c;
  color: var(--color-title);
  padding: 0px 4px;
  font-style: normal;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.article-meta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 175%;
}

.author-role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #2e5e2e;
  line-height: 175%;
}

.article-mobile-rating {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-grey);
}

.article-mobile-rating img {
  height: 18px;
  display: inline;
}

.article-lead {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 27.9px;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-grey);
  margin-bottom: 22px;
}

.article-lead-mob {
  display: none;
}

.article-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 32.4px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #2a2a2a;
  margin-bottom: 25px;
}

.article-text.last {
  margin-bottom: 48px;
}

.article-text a {
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: none;
}

.article-text a:hover {
  text-decoration: underline;
}

.article-subheading {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-title);
  margin: 40px 0 16px;
  line-height: 1.3;
}
/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid #ded8cf;
  padding: 0 32px;
  margin-bottom: 48px;
  gap: 16px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  flex: 1;
  padding: 20px 0;
}

.stat-number {
  font-family: var(--font-title);
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  line-height: 54px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;

  color: #185b3b;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 21.6px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #888882;
  margin-top: 5px;
}

.stat-divider {
  width: 1px;
  align-self: stretch;
  background-color: #ded8cf;
  flex-shrink: 0;
}

/* ============================================
   Reasons Section (image + text rows)
   ============================================ */
.reasons-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;
}
.reasons-section {
  margin-top: 8px;
}

.reasons-heading {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  font-style: normal;
  line-height: 50.4px;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-title);
  padding-bottom: 19px;
  border-bottom: 2px solid #2e5e2e;
  margin-bottom: 24px;
}

.reason-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.reason-row:nth-child(even) {
  background-color: #f5f5f5;
}

.reason-row:not(.reason-row--reverse) .reason-image {
  order: -1;
}

.reason-image img,
.reason-image video,
.reason-image-mob img,
.reason-image-mob video {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}

.reason-image-mob {
  display: none;
}

.reason-content {
  display: flex;
  flex-direction: column;
}

.reason-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 19.8px;
  letter-spacing: 1.1px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #c07820;
}

.reason-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 900;
  font-style: normal;
  line-height: 40px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #1f1f1f;
  margin-bottom: 16px;
  margin-top: 6px;
}

.reason-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000;
  margin: 0;
}

.reason-body + .reason-body {
  margin-top: 14px;
}

.reason-body-brand {
  color: #1a5fb4;
  text-decoration: none;
  font-weight: 700;
}

.reason-body-brand:hover {
  color: #1a5fb4;
  text-decoration: none;
}

.reasons-cta {
  text-align: center;
  /* padding: 8px 0 48px; */
  grid-column: span 2;
}

.article-quote {
  font-family: var(--font-body);
  border-left: 4px solid #c07820;
  padding: 4px 28px;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #4a4a4a;
}
.article-quote-1 {
  font-family: var(--font-title);
  border-top: 2px solid #c07820;
  border-bottom: 1px solid #dddddd;
  padding: 18px 0px;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #2e5e2e;
}
.author-name-1 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: Regular;
  font-size: 13px;
  line-height: 23.4px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #888888;
}
@media (max-width: 640px) {
  .reason-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: start;
    margin-bottom: 48px;
    padding-bottom: 48px;
    /* border-bottom: 1px solid #ddd; */
  }
  .reason-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    line-height: 19.8px;
    letter-spacing: 1.1px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #c07820;
  }
  .reasons-heading {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    line-height: 50.4px;
    letter-spacing: 0;
    vertical-align: middle;
    color: var(--color-title);
    padding-bottom: 19px;
    border-bottom: 2px solid #2e5e2e;
    margin-bottom: 24px;
  }
  .reason-row,
  .reason-row--reverse {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .margin-bottom {
    margin-bottom: 0;
    padding-bottom: 40px;
  }
  .margin-bottom2 {
    margin-bottom: 0;
    padding-bottom: 42px;
  }
  .reason-image {
    display: none;
  }

  .reason-image-mob {
    display: block;
    margin: 14px 0;
  }
}

/* ============================================
   Reason Items (old list style — unused)
   ============================================ */
.reasons-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--color-white);
  border-radius: 8px;
  border-left: 4px solid var(--color-red);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.reason-number {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.reason-body {
  flex: 1;
}

.reason-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  margin: 0;
}

/* ============================================
   CTA / Attention Box
   ============================================ */
.attention-box {
  background: var(--color-yellow-light);
  border: 2px solid var(--color-yellow);
  border-radius: 8px;
  padding: 32px 28px;
  margin: 40px 0;
  text-align: center;
}

.attention-box p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-title);
  margin-bottom: 12px;
}

.go-to-offer {
  font-weight: 700;
}

.attention-box a.go-to-offer {
  color: var(--color-red);
  font-weight: 700;
  text-decoration: none;
}

/* ============================================
   Latest Update Box
   ============================================ */
.update-box {
  background: #e8f0e9;
  border: 1px solid var(--color-green);
  border-left: 4px solid var(--color-green);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 40px 0;
}

.update-box-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 8px;
}

.update-box-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-title);
  margin: 0 0 4px;
  line-height: 1.7;
}

.update-box-text a {
  color: var(--color-green);
  font-weight: 600;
  text-decoration: none;
}

/* ============================================
   Reviews
   ============================================ */
.reviews-section {
  margin: 24px 0;
}

.review-box {
  background: var(--color-white);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.review-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 700;
  color: var(--color-title);
  font-size: 15px;
  margin-bottom: 2px;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-grey);
}

.review-rating-row img {
  height: 16px;
  display: inline;
}

.review-date {
  font-size: 13px;
  color: var(--color-grey);
  margin: 8px 0 2px;
}

/* ============================================
   Reviews Card
   ============================================ */
.reviews-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  background: var(--color-white);
  padding: 33px;
  margin-bottom: 48px;
}
.reviews-card-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 900;
  color: #1f1f1f;
  margin-bottom: 37px;
  margin-top: 0;
  line-height: 1.2;
  text-align: center;
  max-width: 630px;
  margin-inline: auto;
}

.review-item {
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
}

.review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333 0%, #666 100%);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.review-name-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.review-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 25.2px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--color-title);
}

.review-date-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: #999;
  line-height: 1.3;
}
.review-date-metaa {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 21.6px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #999;
}
.review-stars {
  font-size: 18px;
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 4px;
  line-height: 1;
}

.review-badges {
  display: flex;
  flex-direction: column;
}

.review-verified {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  line-height: 19.8px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #2a7d4f;
  margin-top: 4px;
}

.review-purchase {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #2a7d4f;
}

.review-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000;
  margin: 0;
}

/* ============================================
   Stock Alert
   ============================================ */
.stock-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: #fdf5e6;
  border: 1px solid #e09830;
  border-radius: 4px;
  padding: 16px 33px 18px 21px;
  margin-bottom: 48px;
}

.stock-alert-icon {
  font-family: var(--font-body);
  font-size: 16px;
  flex-shrink: 0;
  color: #856404;
  margin-top: 1px;
}

.stock-alert p {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  line-height: 22.4px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #6b4400;
  margin: 0;
}

.stock-alert strong {
  font-weight: 700;
}

/* ============================================
   Sticky CTA
   ============================================ */
.sticky-cta-section {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--color-white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 640px) {
  .sticky-cta-section.is-visible {
    display: block;
  }
}

.sticky-cta-btn {
  display: block;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 27px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 20px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background-color: #2e5e2e;
  padding: 53px 0 95px;
  text-align: center;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 14px;
  color: #808080;
  margin: 0 0 8px;
  line-height: 1.5;
}

.footer-legal {
  font-family: var(--font-body);
  font-size: 14px;
  color: #808080;
  margin: 0;
  line-height: 1.5;
}

.footer-legal a {
  color: #808080;
  text-decoration: underline;
}

.footer-legal a:hover {
  color: #808080;
  text-decoration: underline;
}
.text-footer {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #808080;
  margin-top: 18px;
  max-width: 1070px;
  margin-inline: auto;
}
.footer-dmca {
  margin-top: 30px;
}

.footer-dmca img {
  display: inline-block;
  height: 28px;
  width: auto;
}
/* ============================================
   Verdict CTA Section
   ============================================ */
.verdict-section {
  background-color: #2e5e2e;
  padding: 0;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
}

.verdict-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 240px;
  height: 240px;
  background-image: url("https://cdn.29next.store/media/woodranger/uploads/Overlay.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  pointer-events: none;
  z-index: 0;
}

.verdict-img-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.verdict-product-img {
  max-width: 400px;
  width: 100%;
  border-radius: 0;
  display: block;
}

.verdict-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  line-height: 19.8px;
  letter-spacing: 1.65px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.verdict-inner {
  max-width: 943px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 24px 56px;
  position: relative;
  z-index: 1;
}

.verdict-headline {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  margin: 0;
}

.verdict-subtext {
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.verdict-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}

.verdict-features li {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  padding: 7px 14px;
  white-space: nowrap;
}

.verdict-cta-btn {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  line-height: 27px;
  letter-spacing: 0.9px;
  text-align: center;
  text-decoration: none !important;
  padding: 15px;
  box-sizing: border-box;
}

.verdict-disclaimer {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 21.6px;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ============================================
   Latest Update Bar
   ============================================ */
.latest-update-bar {
  display: flex;
  gap: 0;
  background-color: #f2f2f0;
  border-radius: 7px;
  overflow: hidden;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 23px 31px;
}

.latest-update-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 33px;
  min-width: 80px;
  flex-shrink: 0;
  border-right: 2px solid #bcbcbc;
}

.lud-month {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 8px;
}

.lud-day {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-title);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.lud-year {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: #b6b6b6;
  line-height: 1;
  letter-spacing: 0.13em;
}

.latest-update-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 16px;
}

.latest-update-badge {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-red);
}

.latest-update-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #2a2a2a;
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

.latest-update-text strong {
  color: var(--color-title);
  font-weight: 700;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .article-mobile-rating {
    display: flex;
  }
}

@media (max-width: 600px) {
  .footer-legal {
    font-family: var(--font-body);
    font-size: 11px;
    color: #777777;
    margin: 0;
    line-height: 1.5;
  }
  .footer-copyright {
    font-family: var(--font-body);
    margin: 0 0 8px;
    line-height: 1.5;
  }
  .verdict-features li {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    padding: 7px 14px;
    white-space: nowrap;
  }
  .verdict-inner {
    max-width: 943px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 24px 56px;
    position: relative;
    z-index: 1;
  }
  body {
    font-size: 16px;
  }

  .header-nav {
    display: none;
  }

  .header-main {
    border-bottom: 3px solid var(--color-black);
  }

  .header-brand-row {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 10px;
  }

  .brand-name {
    font-size: 30px;
    white-space: nowrap;
  }

  .header-trending {
    font-size: 13px;
    white-space: normal;
  }

  .header-trending img {
    height: 20px;
    display: none;
  }

  .article-section {
    padding-top: 24px;
    padding-bottom: 70px;
  }

  .article-headline {
    font-size: 24px;
    line-height: 26px;
  }

  .article-lead:not(.article-lead-mob) {
    display: none;
  }

  .article-lead-mob {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 27.9px;
    letter-spacing: 0%;
  }

  .article-text {
    font-size: 18px;
  }

  .reasons-cta {
    grid-column: span 1;
  }

  .reason-item {
    padding: 16px 14px;
    gap: 14px;
  }

  .reason-number {
    font-size: 28px;
    min-width: 36px;
  }

  .attention-box {
    padding: 24px 16px;
  }

  .cta-btn {
    display: block;
    text-align: center;
  }

  .reason-row .reasons-cta {
    display: none;
    text-align: center;
    padding: 8px 0 32px;
  }

  .verdict-headline {
    font-size: 24px;
  }
  .article-quote {
    padding-right: 0px;
  }
  .article-quote-1 {
    padding-right: 0px;
  }
  .verdict-product-img {
    max-width: 300px;
  }
  .latest-update-bar {
    margin-top: 24px;
    flex-direction: column;
    padding: 19px 13px 12px 14px;
  }

  .latest-update-date {
    padding: 0 0 19px 0;
    min-width: 68px;
    border-bottom: 2px solid #bcbcbc;
    border-right: unset;
  }

  .lud-day {
    font-size: 30px;
  }

  .latest-update-body {
    padding: 20px 0 0 0;
  }

  .no-border-mob {
    border: none !important;
    margin-bottom: 0;
  }
  .site-footer {
    padding: 39px 0;
  }
  .mob-hidden {
    display: none;
  }
}
/* Review quote inside reason */
.reason-review {
  background-color: #e8f2e8;
  padding: 14px 15px;
  border-left: 4px solid #2e5e2e;
  margin-top: 20px;
  margin-bottom: 10px;
}

.reason-review-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2e5e2e;
  margin-bottom: 8px;
}

.reason-review-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;

  line-height: 22px;
  letter-spacing: 0;
  color: #2e5e2e;
  margin: 0;
}

.reason-review-author {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;

  line-height: 24px;
  letter-spacing: 0;
  text-align: right;
  color: #2e5e2e;
  margin: 4px 0 0;
}

.reasons-cta {
  text-align: center;
  margin-top: 30px;
  grid-column: span 2;
}

.article-quote {
  font-family: var(--font-body);
  border-left: 4px solid #c07820;
  padding: 4px 28px;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #4a4a4a;
}

@media (max-width: 640px) {
  .reason-row,
  .reason-row--reverse {
    grid-template-columns: 1fr;
  }

  .reason-row .reason-image,
  .reason-row--reverse .reason-image {
    order: -1;
  }
}
.uses-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 8px 15px;
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.uses-list li {
  position: relative;
  padding-left: 15px;
  font-size: 13.5px;
  color: #1e1e1e;
  line-height: 1.4;
}

.uses-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a7c3f;
  font-size: 14px;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .uses-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 20px;
    list-style: none;
    padding: 0;
    margin: 15px 0;
    grid-auto-flow: row;
  }
  .uses-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7c3f;
    font-size: 19px;
    line-height: 1.1;
  }
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  overflow: hidden;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

.comparison-header {
  background: transparent;
}

.comparison-header .comparison-col-feature {
  background: #f0ede8;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #333;
  text-transform: uppercase;
}

.comparison-header .comparison-col-product {
  background: #2e5e2e;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 21.6px;
  letter-spacing: 0.72px;
  color: #fff;
  text-transform: uppercase;
  vertical-align: middle;
}

.comparison-row {
  border-top: 1px solid #dddddd;
}

.comparison-row .comparison-col-feature {
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
  letter-spacing: 0;
  color: #4a4a4a;
  background: #fafaf8;
  vertical-align: middle;
}

.comparison-row .comparison-col-product {
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #2d5a3d;
  font-weight: 600;
  background: #fafaf8;
}
.bg-highlight {
  background-color: #f8f7f4 !important;
}
.comparison-check {
  font-weight: 700;
  margin-right: 2px;
}

/* ============================================
   RATINGS SUMMARY CARD (Reviews-1)
   ============================================ */

.ratings-summary-card {
  background: #fffdf9;
  border: 1px solid #dddddd;
  padding: 30px;
  margin-bottom: 50px;
}

.ratings-summary-title {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  font-style: normal;
  color: #111;
  margin: 0 0 30px;
  line-height: 39.6px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.ratings-summary-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}

/* --- Breakdown --- */
.ratings-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ratings-breakdown-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e1e1e1;
}

.ratings-breakdown-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #111;
  min-width: 120px;
  flex: 1;
}

.ratings-breakdown-score {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-left: auto;
}

/* --- Overall score --- */
.ratings-overall {
  text-align: center;
  padding: 0 16px;
}

.ratings-overall-score {
  font-family: var(--font-body);
  font-size: 64px;
  font-weight: 800;
  font-style: normal;
  line-height: 76.8px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #111;
  margin-bottom: 8px;
}

.ratings-overall-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #444;
  margin-top: 10px;
}

/* --- Photo single --- */
.ratings-photo-single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ratings-photo-single img {
  width: 100%;
  max-width: 345px;
  height: auto;
  display: block;
}

/* --- Individual reviews --- */
/* .ratings-reviews-list {
  border-top: 1px solid #e0ddd8;
} */

.ratings-review-item {
  padding: 20px 0;
  border-bottom: 1px solid #e0ddd8;
}

.ratings-review-item--last {
  border-bottom: none;
  padding-bottom: 0;
}

.ratings-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ratings-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #e0ddd8;
  flex-shrink: 0;
}

.ratings-review-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 25.2px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #111;
}

.ratings-review-badge {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 21.6px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #888;
}

.ratings-verified {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  line-height: 19.8px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #2a7d4f;
  margin: 6px 0 10px;
}

.ratings-review-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 26.25px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #333333;
}

/* ============================================
   STARS IMAGE
   ============================================ */

.tp-stars-img {
  height: 22px;
  width: auto;
  display: block;
}

.tp-stars-img--lg {
  height: 23px;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 960px) {
  .ratings-summary-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ratings-overall {
    padding: 0;
    border-top: none;
    border-bottom: none;
    padding: 20px 0;
    order: -1;
  }
}
@media (max-width: 768px) {
  .ratings-overall-label {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #444;
    margin-top: 10px;
  }
  .ratings-overall-score {
    font-family: var(--font-body);
    font-size: 70px;
    font-weight: 800;
    font-style: normal;
    line-height: 76.8px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #111;
    margin-bottom: 8px;
  }
  .ratings-summary-title {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    color: #111;
    margin: 0 0 30px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
  }

  .ratings-photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ratings-summary-card {
    padding: 20px 15px;
  }

  .ratings-breakdown-label {
    min-width: 110px;
    font-size: 15px;
  }
  .ratings-breakdown-score {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: #111;
    margin-left: auto;
  }
}
@media (max-width: 382px) {
  .ratings-summary-title {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    color: #111;
    margin: 0 0 20px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .sticky-cta-btn {
    display: block;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.9px;
    line-height: 27px;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 10px 15px;
  }
}

/* ============================================
   FIGMA UPDATE — NEW RULES (override above)
   ============================================ */

/* 1. Article section two-column layout */
.article-section .wrapper {
  overflow-x: hidden;
}

@media (min-width: 901px) {
  .article-section .wrapper {
    display: grid;
    grid-template-columns: 1fr 264px;
    gap: 93px;
    max-width: 1248px;
    overflow: visible;
    align-items: start;
  }
  .article-content {
    min-width: 0;
  }
}

/* 2. Article sidebar */
.article-sidebar {
  display: none;
}

@media (min-width: 901px) {
  .article-sidebar {
    display: block;
    position: sticky;
    top: 20px;
    align-self: start;
  }
}

.sidebar-product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.sidebar-body {
  border: 2px solid #000;
  border-top: none;
  padding: 16px;
  text-align: center;
}

.sidebar-product-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.3;
}

.sidebar-stars {
  height: 17px;
  width: 92px;
  display: block;
  margin-bottom: 6px;
  margin-inline: auto;
}

.sidebar-rating-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin: 7px 0 2px;
  line-height: 1;
  text-transform: uppercase;
}

.sidebar-review-count {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666;
  margin: 0 0 14px;
  line-height: 1;
  text-transform: uppercase;
}

.sidebar-cta-btn {
  --btn-color: #17b400;
  display: block;
  text-align: center;
  text-decoration: none !important;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f0f0f0 !important;
  box-shadow: 0 4px 0 0 #02021b;
  border-radius: 8px;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  animation: cta-pulse 1.8s ease-in-out infinite;
}

.sidebar-cta-btn:hover {
  animation-play-state: paused;
  color: #f0f0f0 !important;
  text-decoration: none !important;
}

.sidebar-cta-btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 0 #02021b;
}

.sidebar-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

/* 3. Reason rows: new grid, alternating backgrounds, new class names */
.reason-row {
  grid-template-columns: 370px 1fr;
}

.reason-row .reason-image--desk {
  order: -1;
}

.reason-row--reverse {
  background-color: #f5f5f5;
  padding: 1rem;
  margin-inline: -1rem;
}

/* 4. Reason image mob copy: hidden desktop, shown mobile */
.reason-image--desk {
  display: block;
}

.reason-image--mob-copy {
  display: none;
}

@media (max-width: 640px) {
  .reason-row,
  .reason-row--reverse {
    grid-template-columns: 1fr;
  }
  .reason-row:nth-child(even) {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .reasons-section {
    gap: 40px;
  }
  .reason-image--desk {
    display: none;
  }

  .reason-image--mob-copy {
    display: block;
    margin-bottom: 16px;
  }
}

/* 5. Reason row images/videos: 370x370 desktop, responsive mobile */
.reason-image--desk img,
.reason-image--desk video {
  width: 370px !important;
  height: 370px !important;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

@media (max-width: 640px) {
  .reason-image--mob-copy img,
  .reason-image--mob-copy video {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
  }
}

/* 6. .line elements */
.line {
  display: block;
  width: 2px;
  height: 74px;
  background: #5b5b5b;
  flex-shrink: 0;
}

/* @media (max-width: 640px) {
  .line {
    height: auto;
  }
} */

.reason-body-2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 18px;
  /* font-style: italic; */
  line-height: 1.7;
  color: #000;
}

/* 7. All CTA buttons */
.cta-btn,
.verdict-cta-btn,
.reviews-cta-btn,
.sticky-cta-btn {
  --btn-color: #17b400;
  color: #f0f0f0 !important;
  box-shadow: 0 4px 0 0 #02021b;
  border-radius: 8px;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  animation: cta-pulse 1.8s ease-in-out infinite;
}

.cta-btn:hover,
.verdict-cta-btn:hover,
.reviews-cta-btn:hover,
.sticky-cta-btn:hover {
  animation-play-state: paused;
  color: #f0f0f0 !important;
  text-decoration: none !important;
}

.cta-btn:active,
.verdict-cta-btn:active,
.reviews-cta-btn:active,
.sticky-cta-btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 0 #02021b;
}

.cta-btn,
.verdict-cta-btn,
.reviews-cta-btn {
  font-size: 28px;
  font-weight: 700;
}

.sticky-cta-btn {
  font-size: 28px;
}

@media (max-width: 600px) {
  .cta-btn,
  .verdict-cta-btn,
  .reviews-cta-btn {
    font-size: 22px;
    line-height: 28px;
  }

  .sticky-cta-btn {
    font-size: 16px;
  }
}

/* 8. Verdict section redesign */
.verdict-section {
  background-color: #fff8c7 !important;
  border: 2px dashed #000;
  border-radius: 0;
  text-align: left;
}

.verdict-section::before {
  display: none;
}

.verdict-inner {
  max-width: none;
  margin: 0;
  display: block;
  padding: 28px 51px 37px;
  position: static;
  align-items: unset;
  gap: unset;
}

@media (max-width: 600px) {
  .verdict-inner {
    padding: 20px 16px 24px;
  }
}

.verdict-headline {
  color: #1f1f1f;
  text-align: left;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  max-width: 600px;
}

.verdict-subtext {
  color: #000;
  text-align: left;
  margin-bottom: 20px;
  max-width: none;
}

.verdict-update {
  background-color: #ffef6a;
  padding: 10px;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.verdict-update-link {
  color: var(--color-blue);
  font-weight: 700;
}

.verdict-cta-btn {
  display: block;
  max-width: none;
  text-align: center;
  padding: 18px 24px;
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}

.verdict-disclaimer {
  color: #666;
  margin-top: 12px;
}

.verdict-label {
  color: #666 !important;
  margin-bottom: 12px;
}

/* 9. Reviews section redesign */
.reviews-card {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.review-item {
  background-color: #e4f6e3;
  padding: 25px 43px 22px 16px;
  margin-bottom: 18px;
  border-bottom: none;
}

.review-item:last-of-type {
  border-bottom: none;
}

.review-stars-img {
  height: 20px;
  width: 115px;
  display: block;
  margin-bottom: 10px;
}

.review-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: #111;
  /* margin: 0 0 6px; */
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.review-author-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.review-verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #3ab890;
}

.review-verified-check {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.reviews-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none !important;
  padding: 18px 24px;
  margin-top: 8px;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  /* text-transform: uppercase; */
}

/* 10. Footer: dark charcoal */
.site-footer {
  background-color: #3d3d3d !important;
}

.footer-links,
.footer-links a {
  color: #b0b0b0;
}

.footer-legal {
  color: #888888 !important;
  font-size: 14px;
  /* text-transform: uppercase; */
}

/* 11. Article-meta: desktop/mobile duplication */
.article-meta.article-meta--desk {
  display: none;
}

.article-meta.article-meta--mob {
  display: flex;
}

@media (min-width: 901px) {
  .article-meta.article-meta--desk {
    display: flex;
  }

  .article-meta.article-meta--mob {
    display: none;
  }
}

/* 12. Stock notice padding on mobile */
@media (max-width: 900px) {
  .stock-notice,
  .stock-alert {
    padding-inline: 16px;
  }
}

/* 13. Sticky CTA: only on mobile */
@media (min-width: 641px) {
  .sticky-cta-section.is-visible {
    display: none;
  }
}

/* ============================================
   STOCK NOTICE BAR
   ============================================ */
.stock-notice {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.stock-notice-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6c856b;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 31px;
  font-weight: 800;
  width: 52px;
}

.stock-notice-text {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  color: #42413e;
  margin: 0;
  padding: 6px 9px 6px 17px;
  background-color: #e4f6e3;
}

.stock-notice-link {
  color: #2072dc;
  font-weight: 700;
  text-decoration: none;
}

.stock-notice-link:hover {
  text-decoration: underline;
  color: #2072dc;
}

.stock-notice-text--mob {
  display: none;
}

@media (max-width: 900px) {
  .stock-notice {
    padding-inline: 16px;
  }
  .stock-notice-text--desk {
    display: none;
  }
  .stock-notice-text--mob {
    display: block;
    font-size: 12px;
    padding: 5px 9px 5px 9px;
    width: 100%;
  }
}

/* ============================================
   AS ADVERTISED ON — Seen section
   ============================================ */
#seen-section {
  padding-bottom: 31px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 26px;
}

.seen-title {
  font-family: var(--font-ui);
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 11px;
}

.seen-image--mobile {
  display: none;
}

@media (max-width: 640px) {
  #seen-section {
    padding-bottom: 20px;
    margin-bottom: 18px;
  }

  .seen-image--desktop {
    display: none;
  }

  .seen-image--mobile {
    display: block;
    width: 100%;
    /* max-width: 264px; */
    margin-inline: auto;
  }
}

/* ============================================
   ARTICLE-META — Desktop & Mobile variants
   ============================================ */
.article-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.article-meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-meta-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.article-meta-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
}

.article-meta-text .author-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #777;
  line-height: 1.3;
}

.article-meta-stars {
  display: block;
  height: 16px;
  width: 92px;
}

.article-meta-read {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #777;
  white-space: nowrap;
  flex-shrink: 0;
}

.article-meta-right-mob {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

@media (max-width: 640px) {
  .article-meta-text .author-name {
    font-size: 10px;
    max-width: 175px;
  }

  .article-meta-stars {
    height: 14px;
    width: 78px;
  }

  .article-meta-read {
    font-size: 10px;
    line-height: 1;
  }

  .article-meta-avatar {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   HEADER — Dark redesign
   ============================================ */
.header-accent-bar {
  display: none;
}

.site-header {
  background-color: #1e1e1e;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); */
}

.header-main {
  background-color: #1e1e1e;
}

.brand-cold {
  color: #ffffff;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.45);
}

.header-trending {
  color: #ffffff;
}

.header-nav {
  background-color: #1e1e1e;
  border-bottom: 3px solid #333;
}

.nav-links {
  border-top: 1px solid #333;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.75);
}

.nav-links li a:hover {
  color: #ffffff;
}
@media (max-width: 600px) {
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px;
    flex: 1;
    padding: 10px 0;
  }
  .stat-label {
    margin-top: 0px;
  }
  .trust-text {
    font-family: var(--font-ui);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
  }
  .trust-badge {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: block;
  }
  .stats-bar {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0px;
    margin-bottom: 24px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .article-meta-text {
    display: block;
  }
  .author-name {
    display: block;
  }

  .author-name-mob {
    display: inline;
  }

  .author-role {
    display: block;
    font-size: 12px;
    line-height: 20px;
  }

  .article-meta {
    justify-content: space-between;
    align-items: center;
  }
  /* .reason-body-2 {
    align-items: stretch;
  } */
}

.article-intro {
  margin-top: 20px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-intro-p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  color: var(--color-text);
}

.article-intro-p b {
  font-weight: 700;
}

/* ============================================
   REASON LIST — two-column bullet list
   ============================================ */
.reason-list {
  display: flex;
  gap: 12px 24px;
  margin: 15px 0;
}

.reason-list ul {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reason-list ul li {
  position: relative;
  padding-left: 14px;
  font-family: var(--font-body);
  font-size: 18px;
  color: #1e1e1e;
  line-height: 1.4;
}

.reason-list ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a7c3f;
  font-size: 14px;
  line-height: 1.2;
}
.reason-note {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 15px;
}

@media (max-width: 640px) {
  .stock-notice-icon {
    font-size: 27px;
    width: 27px;
  }
  .article-headline {
    margin-top: 3px;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.8px;
  }
  .hero-image-wrapper {
    position: relative;
    margin-bottom: 20px;
    width: 110%;
    max-width: 110%;
    margin-inline: -16px;
    height: 220px;
    object-fit: cover;
  }
  .verdict-section {
    margin-inline: -16px;
  }
  .verdict-headline {
    font-size: 26px;
    text-align: center;
  }
  .verdict-subtext {
    font-size: 18px;
    text-align: center;
  }
  .verdict-update {
    padding: 12px;
    font-size: 18px;
    text-align: center;
  }
  .reviews-card-title {
    margin-bottom: 20px;
  }
  .review-item {
    padding: 25px 27px 22px 16px;
  }
  .review-stars-img {
    margin-bottom: 8px;
  }
  .review-title {
    font-size: 16px;
    line-height: 1.4;
  }
  .review-text {
    font-size: 16px;
    line-height: 1.4;
  }
}


/* ================================
   CTA PULSE ANIMATION — REUSABLE
   Promijeni samo --btn-color
   ================================ */

.cta-pulse {
  --btn-color: rgba(23, 180, 0, 0.4); /* ← JEDINO OVO MIJENJAJ */

  background-color: var(--btn-color);
  color: #fff;
  border: 2px solid var(--btn-color);
  animation: cta-pulse 1.8s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%,
  100% {
    background-color: var(--btn-color);
    color: #fff;
    border-color: var(--btn-color);
  }
  50% {
    background-color: color-mix(in srgb, var(--btn-color) 40%, transparent);
    color: #fff;
    border-color: var(--btn-color);
  }
}
