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

:root {
  --forest: #1a2e1a;
  --moss: #3d5c2e;
  --sage: #7a9e6a;
  --cream: #f5f0e8;
  --sand: #e8dcc8;
  --rust: #c4622d;
  --stone: #8c8075;
  --white: #fafaf7;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--forest);
  line-height: 1.7;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,46,26,0.08);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--forest);
  text-decoration: none;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  text-decoration: none;
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s;
}

nav ul a:hover { opacity: 1; }

/* ARTICLE HERO */
.article-hero {
  background: var(--forest);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--moss);
  border-radius: 50%;
  opacity: 0.2;
}

.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: var(--sage); text-decoration: none; }

.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.article-hero h1 em {
  font-style: italic;
  color: var(--rust);
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  position: relative;
  z-index: 1;
}

/* HERO IMAGE */
.hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* QUICK PICKS */
.quick-picks {
  background: var(--sand);
  padding: 3rem;
}

.quick-picks-inner { max-width: 900px; margin: 0 auto; }

.quick-picks h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.pick-item {
  background: var(--white);
  padding: 1rem;
  border-left: 3px solid var(--rust);
}

.pick-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.4rem;
}

.pick-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
}

/* ARTICLE BODY */
.article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.intro {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--sand);
}

/* PRODUCT CARDS */
.product-card {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--sand);
}

.product-card:last-of-type { border-bottom: none; }

.rank-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.rank-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
}

.rank-badge {
  background: var(--rust);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

.product-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.product-price {
  font-size: 0.9rem;
  color: var(--stone);
  margin-bottom: 1.2rem;
}

.product-img-wrap {
  width: 100%;
  height: 220px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card p { margin-bottom: 1rem; font-size: 0.95rem; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.pros { background: rgba(61,92,46,0.08); border-left: 3px solid var(--moss); padding: 1.2rem; }
.cons { background: rgba(196,98,45,0.08); border-left: 3px solid var(--rust); padding: 1.2rem; }

.pros h4, .cons h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pros h4 { color: var(--moss); }
.cons h4 { color: var(--rust); }

.pros ul, .cons ul { list-style: none; font-size: 0.85rem; }
.pros ul li::before { content: "✓ "; color: var(--moss); font-weight: 700; }
.cons ul li::before { content: "✗ "; color: var(--rust); font-weight: 700; }
.pros ul li, .cons ul li { margin-bottom: 0.4rem; }

.verdict-box {
  background: var(--forest);
  color: var(--cream);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.verdict-text { font-size: 0.85rem; opacity: 0.8; }
.verdict-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.buy-btn {
  display: inline-block;
  background: var(--rust);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}

.buy-btn:hover { background: #b5561f; }

/* AFFILIATE NOTICE */
.affiliate-notice {
  background: var(--cream);
  border-left: 3px solid var(--stone);
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 2.5rem;
}

/* RELATED ARTICLES */
.related {
  background: var(--sand);
  padding: 4rem 3rem;
}

.related h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--forest);
  text-align: center;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.related-card {
  background: var(--white);
  text-decoration: none;
  color: var(--forest);
  padding: 1.5rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}

.related-card:hover { border-color: var(--rust); }

.related-cat {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}

.related-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* FOOTER */
footer {
  background: var(--forest);
  color: rgba(245,240,232,0.5);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer .logo { font-size: 1.1rem; color: var(--cream); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(245,240,232,0.5); text-decoration: none; }
.footer-links a:hover { color: var(--cream); }
.footer-affiliate { font-size: 0.75rem; max-width: 380px; }

/* CATEGORY PAGE */
.cat-hero {
  background: var(--forest);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cat-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: var(--moss);
  border-radius: 50%;
  opacity: 0.25;
}

.cat-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cat-hero h1 em { font-style: italic; color: var(--rust); }

.cat-hero p {
  color: rgba(245,240,232,0.6);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.articles-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 2.5rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.article-card {
  text-decoration: none;
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgba(26,46,26,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,46,26,0.1);
}

.card-img {
  height: 180px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

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

.card-cat-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--rust);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
}

.card-body { padding: 1.5rem; }

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.card-body p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-meta {
  font-size: 0.75rem;
  color: var(--stone);
  display: flex;
  gap: 1rem;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { display: none; }
  .article-hero, .cat-hero { padding: 3rem 1.5rem; }
  .quick-picks, .related { padding: 2rem 1.5rem; }
  .article-body, .articles-section { padding: 2.5rem 1.5rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .verdict-box { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
