@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --gold: #b5882a;
  --gold-light: #f4d03f;
  --cream: #faf8f3;
  --dark: #1a1a1a;
  --gray: #555;
  --gray-light: #e8e4dc;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 12px;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 17px;
  line-height: 1.7;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-light); }

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

/* ========== HEADER ========== */
header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.5px;
}

.logo span { color: var(--gold); }

nav { display: flex; gap: 28px; align-items: center; }

nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

nav a:hover { color: var(--green); }

nav .btn-nav {
  background: var(--green);
  color: white !important;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s;
}

nav .btn-nav:hover { background: var(--green-light); }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, #1b4332 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 60px 0; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 36px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px 0 36px;
}

/* ========== CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--green-pale), var(--gray-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-body { padding: 20px; }

.card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 8px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  color: var(--dark);
}

.card-excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.55;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #999;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more::after { content: ' →'; }

/* ========== RATING STARS ========== */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-num { font-weight: 700; color: var(--dark); }

/* ========== CTA BUTTON ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  background: var(--green-light);
  color: white;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #1a1a1a;
}

.btn-gold:hover {
  background: #c99a30;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}

.btn-outline:hover {
  background: var(--green);
  color: white;
}

/* ========== AFFILIATE BOX ========== */
.affiliate-box {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid var(--green-light);
  border-radius: var(--radius);
  padding: 28px;
  margin: 36px 0;
  text-align: center;
}

.affiliate-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--green);
}

.affiliate-box p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.affiliate-disclaimer {
  font-size: 0.78rem;
  color: #999;
  margin-top: 12px;
  font-style: italic;
}

/* ========== PROS CONS ========== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.pros, .cons {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.pros h4 { color: var(--green); margin-bottom: 12px; font-size: 1rem; }
.cons h4 { color: #c0392b; margin-bottom: 12px; font-size: 1rem; }

.pros ul, .cons ul { list-style: none; }

.pros ul li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.cons ul li::before { content: '✗ '; color: #c0392b; font-weight: 700; }

.pros ul li, .cons ul li {
  font-size: 0.92rem;
  padding: 4px 0;
  color: var(--gray);
}

/* ========== SCORE BOX ========== */
.score-box {
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin: 28px 0;
}

.score-box .score-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.score-box .score-label {
  font-size: 0.85rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ========== ARTICLE LAYOUT ========== */
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px;
}

.article-header { margin-bottom: 32px; }

.article-cat {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 10px;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: #999;
  flex-wrap: wrap;
}

.article-meta strong { color: var(--dark); }

.article-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 24px 0 32px;
}

.article-hero-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: var(--radius);
  margin: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--dark);
}

.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--green);
}

.article-body p { margin-bottom: 18px; color: #333; }

.article-body ul, .article-body ol {
  margin: 16px 0 18px 24px;
  color: #333;
}

.article-body li { margin-bottom: 6px; }

.article-body strong { color: var(--dark); }

.highlight-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: #2d4a3e;
}

/* ========== SIDEBAR ========== */
.article-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

.sidebar { }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 28px;
}

.sidebar-widget h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
  color: var(--dark);
}

.sidebar-links li {
  list-style: none;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.88rem;
}

.sidebar-links li:last-child { border-bottom: none; }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  background: var(--white);
  padding: 12px 24px;
  font-size: 0.83rem;
  color: #999;
  border-bottom: 1px solid var(--gray-light);
}

.breadcrumb a { color: var(--green); }
.breadcrumb span { margin: 0 6px; }

/* ========== CATEGORY PAGE ========== */
.cat-hero {
  background: linear-gradient(135deg, #1b4332, var(--green));
  color: white;
  padding: 60px 24px;
  text-align: center;
}

.cat-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.cat-hero p { opacity: 0.85; max-width: 540px; margin: 0 auto; }

/* ========== FOOTER ========== */
footer {
  background: #111;
  color: #ccc;
  padding: 56px 24px 24px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: #fff; font-size: 1.4rem; }
.footer-brand p { margin-top: 12px; font-size: 0.88rem; line-height: 1.6; color: #aaa; }

.footer-col h5 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #aaa; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #666;
  flex-wrap: wrap;
  gap: 10px;
}

.disclaimer {
  background: #1a1a1a;
  border-left: 3px solid var(--gold);
  padding: 12px 18px;
  font-size: 0.78rem;
  color: #888;
  margin-top: 20px;
  border-radius: 0 6px 6px 0;
  max-width: 1200px;
  margin: 20px auto 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .article-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  nav { gap: 14px; }
  nav a { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 12px 16px; gap: 10px; }
}

/* ========== TRUST BADGES ========== */
.trust-bar {
  background: var(--dark);
  color: #ccc;
  padding: 10px 24px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.trust-bar span { margin: 0 20px; }
.trust-bar strong { color: var(--gold-light); }

/* ========== TABLE ========== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th {
  background: var(--green);
  color: white;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.92rem;
  color: #333;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #f9f9f6; }

/* ========== FEATURED BADGE ========== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.badge-top { background: var(--gold); color: #1a1a1a; }
.badge-new { background: var(--green); color: white; }
.badge-hot { background: #e74c3c; color: white; }
