/* =====================
   Base & Variables
===================== */

:root {
  --primary: #0f172a;
  --accent: #2563eb;
  --green: #16a34a;
  --bg: #f8fafc;
  --border: #e5e7eb;
  --muted: #6b7280;
  --text: #1f2937;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

ul {
  margin: 0;
  padding-left: 18px;
}

p {
  margin: 0 0 14px;
}

/* =====================
   Layout
===================== */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px;
}

/* =====================
   Header
===================== */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-left {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.update {
  font-size: 13px;
  color: var(--muted);
}

.header-cta {
  background: var(--green);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.header-cta:hover {
  background: #15803d;
}

/* =====================
   Hero
===================== */

.hero {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  margin-top: 24px;
}

.hero-badge {
  display: inline-block;
  background: var(--green);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 34px;
  margin: 0 0 12px;
  color: var(--primary);
}

.hero-desc {
  font-size: 17px;
  color: #374151;
  max-width: 900px;
}

/* =====================
   Content Blocks
===================== */

.content-block {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  margin-top: 28px;
}

.content-block h2 {
  margin-top: 0;
  font-size: 26px;
  color: var(--primary);
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

/* =====================
   Best Product Card
===================== */

.best-product {
  margin-top: 36px;
}

.best-badge {
  display: inline-block;
  background: var(--green);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.best-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
}

.product-image img {
  border-radius: 16px;
}

.product-content h2 {
  margin-top: 0;
  font-size: 26px;
  color: var(--primary);
}

/* Rating */
.rating {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 18px;
}

.score {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
}

.out-of {
  font-size: 18px;
  color: var(--muted);
}

.rating-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

/* Summary */
.summary {
  font-size: 16px;
  color: #374151;
}

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 22px 0;
}

.pros h4,
.cons h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.pros ul li,
.cons ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* CTA */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.disclaimer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

/* =====================
   Footer
===================== */

.site-footer {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 48px 16px;
}

/* =====================
   Responsive
===================== */

@media (max-width: 900px) {
  .best-card {
    grid-template-columns: 1fr;
  }

  .product-image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
  }

  .content-block h2 {
    font-size: 22px;
  }

  .score {
    font-size: 36px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .hero,
  .content-block,
  .best-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .header-inner {
/*    flex-direction: column;*/
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    display: flex;
  }


  .header-cta {
    width: 100%;
    text-align: center;
    display: none;
  }
  .site-header{
    position: relative;
  }
}
   .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #ffffff;
      border-top: 1px solid var(--border);
      box-shadow: 0 -8px 20px rgba(0,0,0,0.06);
      z-index: 999;
      display: none;
    }

    .sticky-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .sticky-text {
      font-size: 14px;
      color: var(--primary);
    }

    .sticky-btn {
      background: var(--green);
      color: #ffffff;
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
    }

    .sticky-btn:hover {
      background: #15803d;
    }

    /* Show mainly on mobile */
    @media (min-width: 900px) {
      .sticky-cta {
        display: none !important;
      }
    }
    .copy a{
      color: #666;
    }
    .footer-disclaimer{
      max-width: 1200px;
      width:94%;
      margin:0 auto;
      padding-bottom: 8px;
    }