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

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  /* Colors */
  --color-text: #2a2a2a;
  --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: "DM Serif Text", Georgia, serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --font-ui: "Open Sans", system-ui, sans-serif;

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

/* ============================================
   Reset / Base
   ============================================ */
*,
*::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: #fcf7f3;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: #1b68cc;
  text-decoration: underline;
}

p {
  margin: 0;
}

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

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

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Thin top accent bar */
.header-accent-bar {
  height: 4px;
  background-color: #1a1a1a;
}

/* White main header: brand + trending */
.header-main {
  background-color: #fcf7f3;
  padding: 15px 0 15px;
  border-bottom: 1px solid #ded8cf;
}

.header-inner {
  max-width: 1190px;
  padding-inline: 24px;
  margin-inline: auto;
  width: 100%;
}

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

.header-brand-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
/* Brand logo: ColdGear Review */
.brand-name {
  font-family: var(--font-title);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.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;
  margin-top: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888888;
}

/* Brand logo image */
.brand-logo {
  width: 258px;
  width: auto;
  display: block;
}

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

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

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

.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;
}

.nav-links li a {
  display: block;
  padding: 10px 18px 10px 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-title);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links li a:hover {
  color: var(--color-red);
  text-decoration: none;
}

/* ============================================
   Article Section
   ============================================ */
.article-section {
  padding: 40px 0 100px;
}

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

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

/* Hero video */
.video-wrapper {
  position: relative;
  margin-bottom: 28px;
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
}

.audio-toggle-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}

.audio-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.editor-pick {
  display: inline-block;
  background-color: #185b3b;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 4px 10px;
  border-radius: 2px;
}

.article-headline {
  font-family: var(--font-title);
  font-size: 54px;
  font-weight: 400;
  font-style: normal;
  line-height: 62px;
  letter-spacing: 0;
  color: var(--color-title);
  margin-top: 18px;
  margin-bottom: 20px;
}

.headline-highlight {
  background: none;
  color: #185b3b;
  font-style: italic;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 12px 0;
}

.author-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.article-meta-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.author-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0;
  color: #1a1a18;
}

.author-name::after {
  content: " | ";
  color: #888;
}

.author-role {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0;
  color: #1a1a18;
}

.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: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  letter-spacing: 0;
  color: #1a1a18;
  margin-bottom: 22px;
}

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

.show-mob {
  display: none;
}

.hide-mob {
  display: inline;
}

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

.text-mob {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
}

.article-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--color-text);
  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;
}

/* ============================================
   Trust Banner
   ============================================ */
.trust-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #185b3b;
  padding: 6px 60px;
  margin-top: 10px;
  margin-bottom: 28px;
}

.trust-banner::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #185b3b;
}

.trust-badge {
  width: 106px;
  height: 106px;
  flex-shrink: 0;
  display: block;
}

.trust-text {
  font-family: var(--font-ui);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}

.trust-text strong {
  color: #ffffff;
  font-weight: 700;
}

/* ============================================
   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: 34px 0;
}

.stat-number {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 51.12px;
  font-weight: 400;
  font-style: normal;
  line-height: 76.68px;
  letter-spacing: 0;
  text-align: center;
  color: #185b3b;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  color: #888882;
}

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

@media (max-width: 600px) {
  .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;
  }

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

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

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

.article-meta {
  justify-content: center;
}

}

/* ============================================
   Reasons Section (image + text rows)
   ============================================ */
.reasons-section {
  margin-top: 8px;
}

.reasons-heading {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 400;
  font-style: normal;
  line-height: 58px;
  letter-spacing: 0;
  color: #1a1a18;
  padding-bottom: 19px;
  border-bottom: 2px solid #185b3b;
  margin-bottom: 50px;
}

.reason-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 2px solid #185B3B;
}

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

.reason-image {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 378px;
  max-width: 100%;
}

/* Slika lijevo (prva u redu) */
.reason-row .reason-image:first-child {
  justify-self: start;
}

/* Slika desno (nije prva u redu) */
.reason-row .reason-image:not(:first-child) {
  justify-self: end;
}

.reason-image img,
.reason-image video {
  width: 100%;
  height: auto;
  display: block;
}

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

.reason-label {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #185b3b;
  margin-bottom: 8px;
  display: block;
}

.reason-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  font-style: normal;
  line-height: 34px;
  letter-spacing: 0;
  color: #1a1a18;
  margin-bottom: 25px;
  margin-top: 6px;
}

.reason-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--color-text);
  margin: 0;
}

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

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

.reason-body-brand:hover {
  color: #2560f6;
  text-decoration: underline;
}

/* Conditions box */
.conditions {
  grid-column: span 2;
  background-color: #f3f3f3;
  border-radius: 6px;
  padding: 30px 32px;
  margin-top: 30px;
}

.conditions-heading {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #185b3b;
  margin-bottom: 25px;
}

.conditions-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.conditions-list li {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #3f3f3f;
  padding-left: 20px;
  position: relative;
}

.conditions-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #185b3b;
  font-size: 24px;
  line-height: 22px;
}
@media (max-width: 900px) {
  .conditions {
  grid-column: span 2;
  background-color: #f3f3f3;
  border-radius: 6px;
  padding: 20px 22px;
  margin-top: 30px;
}
.conditions-list li {
  font-size: 18px;
  line-height: 26px;
}
}
@media (max-width: 640px) {
  .conditions {
    grid-column: span 1;
  }
  .conditions-list {
    grid-template-columns: 1fr;
    width: fit-content;
    margin: 0 auto;
  }
}

/* Review quote inside reason */
.reason-review {
  background-color: #E6F2EC;
  padding: 10px 15px;
  border-left: 4px solid #185B3B;
}

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

.reason-review-text {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 24px;
  letter-spacing: 0;
  color: #185b3b;
  margin: 0;
}

.reason-review-author {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 24px;
  letter-spacing: 0;
  text-align: right;
  color: #185b3b;
  margin: 4px 0 0;
}

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

.article-quote {
  font-family: var(--font-title);
  border-left: 4px solid var(--color-red);
  padding: 17px 28px;
  background: var(--color-white);
  margin-bottom: 32px;
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.5;
  color: var(--color-title);
}

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

  .reason-row .reason-image,
  .reason-row--reverse .reason-image {
    order: -1;
  }
}

/* ============================================
   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;
}

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

@keyframes pulse-btn {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

.cta-btn {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--color-white) !important;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 20px;
  border-radius: 2px;
  margin-top: 8px;
  transition: background-color 0.2s;
  line-height: 1.2;
  animation: pulse-btn 2s ease-in-out infinite;
}

.cta-btn:hover {
  background-color: #a30d25;
  text-decoration: none !important;
}

/* Reasons section CTA button */
.reasons-cta .cta-btn {
  display: block;
  width: 70%;
  margin-inline: auto;
  background-color: #185b3b;
  color: #ffffff !important;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  height: 50px;
  line-height: 50px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  padding: 0 24px;
  border-radius: 2px;
  transition: background-color 0.2s;
  margin-top: 20px;
}

.reasons-cta .cta-btn:hover {
  background-color: #0f3d28;
  text-decoration: none !important;
}

/* ============================================
   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 {
  background: var(--color-white);
  padding: 33px;
  margin-bottom: 48px;
}
.reviews-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  font-weight: 400;
  font-style: normal;
  line-height: 34px;
  letter-spacing: 0%;
  color: #1A1A18;
  margin-bottom: 16px;
  margin-top: 0;
}

.reviews-card-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 21px;
  border-bottom: 2px solid #185B3B80;
}

.reviews-card-stars {
  width: auto;
  display: block;
}

.reviews-card-rating-text {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0px;
  color: #1A1A18;
}

.review-item {
  padding:40px 0;
  border-bottom: 2px solid #185B3B80
}
.review-item:first-of-type {
  padding-top: 0;
}
.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: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: #185b3b;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 16px;
  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: 4px;
}

.review-name {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0%;
  color: #3F3F3F;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-stars-img {
  height: 13px;
  width: auto;
  display: block;
}

.review-verified-label {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #555;
}

.review-text {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0%;
  color: #3F3F3F;
  margin: 0;
  padding-top: 10px;
}

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

.stock-alert-icon {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  flex-shrink: 0;
  color: #856404;
  margin-top: 1px;
}

.stock-alert p {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.6;
  color: #664d03;
  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;
  }
  .review-item {
  padding:30px 0;
  border-bottom: 2px solid #185B3B80
}
.reviews-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 21px;
    border-bottom: 2px solid #185B3B80;
}
}

.sticky-cta-btn {
  display: block;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background-color: #185B3B;
  color: var(--color-white) !important;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 20px 0px;
  border-radius: 2px;
  transition: background-color 0.2s;
  line-height: 1.2;
  animation: pulse-btn 2.2s ease-in-out infinite;
}

.sticky-cta-btn:hover {
  background-color: #154e32;
  text-decoration: none !important;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background-color: #F2F2F2;
  padding: 60px 40px;
  text-align: center;
}

.footer-copyright {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: center;
  color: #9E9385;
  margin: 0 0 20px;
}

.footer-legal {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: center;
  color: #9E9385;
  margin: 0 0 20px;
}

.footer-disclosure {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: center;
  color: #9E9385;
  margin: 0;
}

.footer-legal a {
  color: #999999;
  text-decoration: none;
}

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

/* ============================================
   Verdict — Guarantee Banner + CTA Box
   ============================================ */
.verdict {
  margin-top: 48px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.verdict::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%23000000' stroke-width='3' stroke-dasharray='2%2c 7' stroke-linecap='round'/%3e%3c/svg%3e");
  pointer-events: none;
  z-index: 10;
}

/* Part 1 — green guarantee banner */
.verdict-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(to bottom, #185b3b, #227B50);
  padding: 0px 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.verdict-badge-img {
  width: 252px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.verdict-text {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 20px;
  font-style: normal;
  line-height: 28px;
  letter-spacing: 0%;
  color: #ffffff;
  margin: 0;
}

.verdict-text strong {
  font-weight: 700;
}

.verdict-link {
  color: #5691FF;
  font-weight: 600;

}

.verdict-link:hover {
  color: #257aea;
}

/* Part 2 — white CTA content */
.verdict-content {
  background-color: #FFFAF3;
  padding: 28px 60px;
  text-align: center;
}

.verdict-eyebrow {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #185B3B;
  margin: 0 0 8px;
}

.verdict-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: normal;
  line-height: 34px;
  letter-spacing: 0%;
  text-align: center;
  color: #1A1A18;
  margin: 0 0 14px;
}

.verdict-body {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #3F3F3F;
  margin: 0 0 18px;
}

.verdict-features {
      display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 100px;
    margin: 30px auto 30px;
    padding: 0;
    list-style: none;
}

.verdict-features li {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 26px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #3F3F3F;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verdict-check-img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  display: block;
}

.verdict-cta {
  display: block;
  width: 86%;
  background-color: #185b3b;
  color: #ffffff;
  text-align: center;
  padding: 0 24px;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 50px;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  margin: 0 auto;
  margin-bottom: 10px;
  transition: background-color 0.15s;
  animation: pulse-btn 2.2s ease-in-out infinite;
}

.verdict-cta:hover {
  background-color: #114530;
  color: #ffffff;
  text-decoration: none;
}

.verdict-fine-print {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #3F3F3F;
  margin: 0 0 14px;
}

.verdict-stock-bar {

  border-radius: 4px;
  padding: 10px 12px;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 12px;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color-text);
}

.verdict-stock-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background-color: #185b3b;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .verdict-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(to bottom, #185b3b, #20744c);
  padding: 0px 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
  .verdict-body {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  color: #3F3F3F;
  margin: 0 0 0px;
}
.footer-copyright {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: center;
  color: #9E9385;
  margin: 0 0 6px;
}
  .verdict-stock-bar {

  border-radius: 4px;
  padding: 0px 5px;
  padding-top: 20px;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 12px;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color-text);
}
  .verdict-guarantee {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }
  .verdict-content {
    padding: 24px 16px;
  }
  .verdict-features {
    grid-template-columns: 1fr;
  }
  .verdict-fine-print {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 18px;
  line-height: 26px;
}
}

/* ============================================
   Verdict CTA Section
   ============================================ */
.verdict-section {
  background-color: #111111;
  padding: 0;
  text-align: center;
  border-radius: 4px;
}

.verdict-img-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 40px;
}

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

.verdict-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4840a;
  margin: 0;
  line-height: 1;
}

.verdict-inner {
  max-width: 944px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 36px 24px 56px;
}

.verdict-headline {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.verdict-subtext {
  max-width: 550px;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0;
}

.verdict-price-row {
  display: flex;
  align-items: end;
  gap: 12px;
  justify-content: center;
}

.verdict-price-old {
  font-family: var(--font-ui);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.verdict-price-now {
  font-family: var(--font-ui);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.verdict-price-badge {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  background-color: var(--color-red);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
/*  */
.verdict-cta-btn {
  display: block;
  width: 100%;
  background-color: var(--color-red);
  color: #ffffff !important;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  text-align: center;
  padding: 20px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background-color 0.2s;
  box-sizing: border-box;
  max-width: 294px;
  line-height: 1.2;
}

.verdict-cta-btn:hover {
  background-color: #a50d25;
}

.verdict-disclaimer {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   Latest Update Bar
   ============================================ */
.latest-update-bar {
  padding: 22px 32px;
  line-height: 1.6;
}

.latest-update-badge {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 21px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background-color: var(--color-red);
  color: #ffffff;
  padding: 0 7px;
  border-radius: 3px;
  white-space: nowrap;
  margin-right: 6px;
  position: relative;
  top: -1px;
}

.latest-update-text {
  display: inline;
  font-family: var(--font-body);
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
}

.latest-update-text strong {
  color: #111111;
  font-weight: 700;
}

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

  .wrapper {
    padding-inline: 20px;
  }

  .article-section {
    padding: 32px 0 80px;
  }

  .article-headline {
    font-size: 38px;
    line-height: 48px;
  }

  .article-lead {
    font-size: 18px;
    line-height: 26px;
  }

  .trust-banner {
    padding: 5px 10px;
    gap: 15px;
  }

  .stats-bar {
    gap: 16px;
    padding: 30px 0px;
  }

  .stat-number {
    font-size: 40px;
    line-height: 52px;
  }
  .stat-label {

    font-size: 16px;

}
  .reasons-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .reason-row,
  .reason-row--reverse {
    gap: 20px;
  }

  .reason-image {
    width: 320px;
  }
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    flex: 1;
    padding: 0px 0;
}
  .reason-title {
    font-size: 20px;
    line-height: 28px;
  }

  .verdict-content {
    padding: 28px 28px;
  }

  .verdict-title {
    font-size: 26px;
    line-height: 34px;
  }

  .verdict-cta {
    font-size: 17px;
    line-height: 25px;
    width: 100%;
    padding: 15px 0px;
  }

  .reviews-card {
    padding: 24px;
    margin-bottom: 32px;
  }

  .reviews-card-title {
    font-size: 32px;
    line-height: 40px;
  }

  .site-footer {
    padding: 40px 24px;
    padding-bottom: 100px;
  }
}

/* ============================================
   Responsive — Small Tablet (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .article-headline {
    font-size: 30px;
    line-height: 38px;
  }

  .article-lead {
    font-size: 17px;
    line-height: 25px;
  }

  .reasons-heading {
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    padding-bottom: 25px;
  }

  .reason-row,
  .reason-row--reverse {
    gap: 25px;
  }

  .reason-row--last {
    border-bottom: none;
    margin-bottom: 10px !important;
  }

  .reason-image {
    width: 100%;
  }

  .reason-title {
    font-size: 26px;
    line-height: 36px;
  }

  .reason-body {
    font-size: 18px;
    line-height: 26px;
  }

  .verdict-guarantee {
    padding: 20px;
    gap: 14px;
  }

  .verdict-badge-img {
    width: 214px;
  }

  .verdict-text {
    font-size: 18px;
    line-height: 26px;
  }

  .verdict-content {
    padding: 24px 20px;
  }

  .verdict-features {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0px 20px;
    margin-bottom: 30px;
  }


}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .header-nav {
    display: none;
  }

  .header-main {
        border-bottom: 1px solid #ded8cf;
  }

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

  .brand-logo {
    width: 190px;
  }

  .header-trending {
    font-size: 9px;
    line-height: 12px;
    gap: 5px;
    flex-shrink: 0;
  }

  .header-trending img {
    height: 16px;
    width: 32px !important;
  }

  .brand-name {
    font-size: 21px;
    white-space: nowrap;
  }
.brand-tagline {
    margin: 0;
    margin-top: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 5.5px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #888888;
}

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

  .hero-video {
    width: 100vw;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .reviews-card {
    margin-left: -20px;
    margin-right: -20px;
  }

  .article-headline {
    font-size: 32px;
    text-align: center;
  }

  .editor-pick {
    display: table;
    margin: 0 auto;
  }

  .article-lead:not(.article-lead-mob) {
            font-size: 18px;
        line-height: 26px;
        text-align: center;
  }

  .article-lead-mob {
    display: block;
    font-size: 16px;
  }

  .show-mob {
    display: block;
  }

  .hide-mob {
    display: none;
  }

  .article-text {
    font-size: 18px;
    text-align: center;
    line-height: 26px;
  }

  .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;
  }

  .verdict-headline {
    font-size: 24px;
  }
  .article-quote {
    padding-right: 44px;
  }

  .verdict-img-wrap {
    padding-top: 28px;
    max-width: 302px;
    margin-inline: auto;
  }
  .latest-update-bar {
    padding: 0;
    margin-top: 24px;
  }
}

@media (max-width: 376px) {
  .verdict-cta-btn {
    font-size: 15px;
  }


.header-trending{
  gap: 6px;
}
    .brand-name {
        font-size: 19.4px;
    }
    .brand-tagline{
              letter-spacing: 0.1px;
    }

.display-lg_subtotal{
  margin-bottom: 20px;
}

.main-description a {
      letter-spacing: -0.5px;
}
    
}
