:root {
  --primary: #2d7a1f;
  --primary-dark: #1e5514;
  --primary-light: #4a9e35;
  --secondary: #ff6b00;
  --amazon: #ff9900;
  --text: #222;
  --text-light: #666;
  --border: #e0e0e0;
  --bg-light: #f7fdf4;
  --bg-white: #fff;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 20px rgba(0,0,0,0.13);
  --radius: 10px;
  --max-width: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color: var(--text); background: #fff; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.3rem; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; line-height: 1.2; color: var(--text); }
h2 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 700; line-height: 1.3; color: var(--text); }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 0.95rem; font-weight: 600; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3rem 0; }
.section-title { margin-bottom: 2rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--text-light); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media(max-width:768px) { .two-col,.three-col { grid-template-columns:1fr; } }

/* ===== HEADER ===== */
header {
  background: #fff;
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo .logo-sub { color: var(--text); font-weight: 400; }

/* ===== NAV ===== */
nav { display: flex; align-items: center; gap: 0.1rem; flex-wrap: wrap; }
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  padding: 0.45rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  white-space: nowrap;
}
.nav-item > a:hover { background: var(--bg-light); color: var(--primary); text-decoration: none; }
.nav-item.active > a { color: var(--primary); }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 210px;
  z-index: 300;
  padding: 0.4rem 0;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text);
}
.dropdown a:hover { background: var(--bg-light); color: var(--primary); text-decoration: none; }
.dropdown-divider { height: 1px; background: var(--border); margin: 0.3rem 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}
@media(max-width:900px) {
  .nav-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--primary);
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  nav.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-item > a { width: 100%; padding: 0.6rem 0.5rem; }
  .dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 0.3rem 0;
    margin: 0.25rem 0 0.5rem;
  }
  .dropdown.mob-open { display: block; }
  .dropdown a { padding: 0.45rem 1.25rem; }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  font-size: 0.82rem;
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.2rem; align-items: center; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: '›'; color: var(--text-light); margin-right: 0.2rem; }
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span[aria-current] { color: var(--text-light); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #5ab332 100%);
  color: #fff;
  padding: 4rem 1.25rem 3.5rem;
  text-align: center;
}
.hero h1 { color: #fff; font-size: clamp(1.8rem, 4.5vw, 3rem); margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.hero p { font-size: 1.1rem; opacity: 0.92; max-width: 620px; margin: 0 auto 2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; }
.hero-stat span { font-size: 0.85rem; opacity: 0.8; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 12px rgba(45,122,31,0.35); }
.btn-amazon {
  background: var(--amazon);
  color: #111;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
}
.btn-amazon:hover { background: #e68900; box-shadow: 0 4px 16px rgba(255,153,0,0.45); color: #111; }
.btn-amazon::before { content: ''; }
.btn-outline { background: #fff; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary-dark); }
.btn-white:hover { background: #e8f5e9; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.badge-green { background: var(--primary); color: #fff; }
.badge-orange { background: var(--secondary); color: #fff; }
.badge-blue { background: #1565c0; color: #fff; }
.badge-yellow { background: #f9a825; color: #111; }
.badge-new { background: #c62828; color: #fff; }

/* ===== PRODUCT CARDS ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-badges { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; flex-direction: column; gap: 0.35rem; z-index: 1; }
.card-img-wrap {
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 4.5rem;
  color: var(--primary);
}
.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-brand { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.25rem; }
.card-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.35; flex: 1; }
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--primary); text-decoration: none; }
.card-specs { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.9rem; }
.spec-tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-light);
}
.spec-tag.sans-fil { background: #e3f2fd; color: #1565c0; border-color: #bbdefb; }
.spec-tag.connecte { background: #f3e5f5; color: #6a1b9a; border-color: #e1bee7; }
.spec-tag.awd { background: #e8f5e9; color: #1b5e20; border-color: #c8e6c9; }
.spec-tag.pente { background: #fff3e0; color: #e65100; border-color: #ffe0b2; }
.card-stars { display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.75rem; }
.stars { color: #f5a623; font-size: 0.95rem; letter-spacing: -1px; }
.star-count { color: var(--text-light); font-size: 0.78rem; }
.card-price { margin-bottom: 1rem; }
.price-current { font-size: 1.45rem; font-weight: 800; color: var(--primary); }
.price-orig-row { display: flex; align-items: center; gap: 0.5rem; }
.price-original { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; }
.price-discount { background: #e8f5e9; color: var(--primary-dark); font-size: 0.78rem; font-weight: 700; padding: 0.15rem 0.4rem; border-radius: 4px; }
.card-cta { display: grid; grid-template-columns: 1fr auto; gap: 0.5rem; }
.card-cta .btn-amazon { padding: 0.6rem 1rem; font-size: 0.85rem; }
.card-cta .btn-outline { padding: 0.6rem 0.9rem; font-size: 0.82rem; }

/* ===== CATEGORY PAGE ===== */
.cat-header { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 2.5rem 0; }
.cat-header h1 { margin-bottom: 0.75rem; }
.cat-header .desc { color: var(--text-light); max-width: 750px; font-size: 1rem; }
.cat-meta-chips { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }
.chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.chip strong { color: var(--text); }

/* ===== PRODUCT PAGE ===== */
.product-page-hero { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.product-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
@media(max-width:768px) { .product-layout { grid-template-columns: 1fr; } }
.product-img-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  font-size: 7rem;
  color: var(--primary);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-info h1 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); margin-bottom: 0.5rem; }
.product-tagline { color: var(--text-light); margin-bottom: 1rem; font-style: italic; }
.product-rating { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; }
.rating-num { font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.rating-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: -1px; }
.rating-reviews { font-size: 0.82rem; color: var(--text-light); }
.price-box {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.price-main-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.4rem; }
.price-main { font-size: 2.1rem; font-weight: 800; color: var(--primary); }
.price-was { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.price-save { background: #e8f5e9; color: var(--primary-dark); font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.85rem; }
.price-date { font-size: 0.75rem; color: var(--text-light); }
.affiliate-disclosure-small { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 0.5rem; }
.affiliate-disclosure-small a { color: var(--text-light); text-decoration: underline; }

/* Product content tabs */
.product-tabs-wrap { border-bottom: 2px solid var(--border); margin-bottom: 2rem; overflow-x: auto; }
.product-tabs { display: flex; gap: 0; white-space: nowrap; }
.product-tabs a {
  padding: 0.8rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  display: inline-block;
}
.product-tabs a:hover { color: var(--primary); text-decoration: none; }
.product-tabs a.active { color: var(--primary); border-bottom-color: var(--primary); }

/* Specs */
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.specs-table tr:nth-child(even) td { background: var(--bg-light); }
.specs-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.specs-table td:first-child { font-weight: 600; color: var(--text-light); width: 42%; }
.specs-table tr:last-child td { border-bottom: none; }

/* Pros/Cons */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
@media(max-width:600px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-box, .cons-box { padding: 1.25rem; border-radius: var(--radius); }
.pros-box { background: #e8f5e9; border-left: 4px solid #2e7d32; }
.cons-box { background: #fff8e1; border-left: 4px solid #f57c00; }
.pros-box h3 { color: #2e7d32; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.cons-box h3 { color: #e65100; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; margin: 0; }
.pros-box li { padding: 0.3rem 0; font-size: 0.9rem; padding-left: 1.2rem; position: relative; }
.pros-box li::before { content: '✓'; position: absolute; left: 0; color: #2e7d32; font-weight: 700; }
.cons-box li { padding: 0.3rem 0; font-size: 0.9rem; padding-left: 1.2rem; position: relative; }
.cons-box li::before { content: '✗'; position: absolute; left: 0; color: #e65100; font-weight: 700; }

/* ===== COMPARISON TABLE ===== */
.table-wrap { overflow-x: auto; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 600px; }
.comp-table th { background: var(--primary); color: #fff; padding: 0.75rem 1rem; text-align: left; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.comp-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.comp-table tr:nth-child(even) td { background: var(--bg-light); }
.comp-table tr:hover td { background: #e8f5e9; }
.comp-table td:first-child a { font-weight: 600; color: var(--text); }
.comp-table td:first-child a:hover { color: var(--primary); }
.check { color: #2e7d32; font-weight: 700; }
.cross { color: #c62828; }
.comp-table .btn-amazon { padding: 0.4rem 0.9rem; font-size: 0.78rem; }

/* ===== FAQ ===== */
.faq-section { max-width: 820px; margin: 0 auto; }
.faq-list { margin-top: 1.5rem; }
details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item summary {
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--primary); flex-shrink: 0; margin-left: 1rem; }
details.faq-item[open] summary::after { content: '−'; }
details.faq-item .faq-answer { padding-bottom: 1.25rem; color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius);
  margin: 3rem 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p { opacity: 0.9; margin-bottom: 1.75rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ===== INFO BOX ===== */
.info-box {
  background: #e3f2fd;
  border-left: 4px solid #1565c0;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #1a237e;
}
.warning-box {
  background: #fff3e0;
  border-left: 4px solid #ef6c00;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #bf360c;
}
.affiliate-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  font-size: 0.8rem;
  color: #5d4037;
  margin: 1rem 0;
}

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.blog-card-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.blog-card-body { padding: 1.35rem; }
.blog-cat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); font-weight: 700; margin-bottom: 0.5rem; }
.blog-card-title { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.6rem; }
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--primary); text-decoration: none; }
.blog-excerpt { font-size: 0.87rem; color: var(--text-light); margin-bottom: 0.75rem; line-height: 1.6; }
.blog-meta { font-size: 0.78rem; color: var(--text-light); }

/* Article */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 2.5rem 1.25rem; }
.article-header { margin-bottom: 2rem; }
.article-header h1 { margin-bottom: 0.75rem; }
.article-meta-bar { display: flex; gap: 1.25rem; flex-wrap: wrap; color: var(--text-light); font-size: 0.85rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.article-body h2 { font-size: 1.4rem; margin: 2rem 0 0.9rem; padding-left: 0.9rem; border-left: 4px solid var(--primary); }
.article-body h3 { font-size: 1.1rem; margin: 1.5rem 0 0.6rem; color: var(--primary-dark); }
.article-body p { line-height: 1.75; color: #333; }
.article-body ul, .article-body ol { margin-bottom: 1rem; }
.article-body li { margin-bottom: 0.4rem; line-height: 1.65; }
.article-cta {
  background: var(--bg-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2rem 0;
  text-align: center;
}
.article-cta h3 { margin-bottom: 0.5rem; color: var(--primary); }
.article-cta p { margin-bottom: 1rem; color: var(--text-light); }

/* ===== FOOTER ===== */
footer { background: #152b0b; color: #b0b8a8; padding: 3.5rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; color: #8a9a80; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: #8a9a80; font-size: 0.85rem; }
.footer-col a:hover { color: #c8e6c9; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: #5d7050;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: #5d7050; }
.footer-legal a:hover { color: #8a9a80; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.separator { height: 1px; background: var(--border); margin: 2rem 0; }

/* Empty category */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-light); }
.empty-state-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.empty-state h2 { margin-bottom: 0.75rem; color: var(--text); }

/* Trust signals */
.trust-bar { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.trust-items { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; font-weight: 500; color: var(--text-light); }
.trust-item span:first-child { font-size: 1.4rem; }

/* Sticky buy box on mobile */
@media(max-width:768px) {
  .sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 2px solid var(--primary);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
    z-index: 100;
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }
  .sticky-cta .price-sticky { font-weight: 800; font-size: 1.2rem; color: var(--primary); flex-shrink: 0; }
  .sticky-cta .btn-amazon { flex: 1; padding: 0.75rem 1rem; font-size: 0.95rem; }
  body { padding-bottom: 80px; }
}
@media(min-width:769px) { .sticky-cta { display: none; } }

/* ===== RELATED PRODUCTS ===== */
.related-section { padding: 2.5rem 0; border-top: 1px solid var(--border); }
.related-section h2 { margin-bottom: 1.5rem; }

/* ===== NOTICE ===== */
.notice-bar {
  background: #e8f5e9;
  border-bottom: 1px solid #c8e6c9;
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
  text-align: center;
  color: var(--primary-dark);
}
