/* =============================================
   BoschHedgeTrimmer.co.uk — style.css
   Shared stylesheet for all pages
   ============================================= */

/* RESET & ROOT */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-dark:   #1a3d2b;
  --green-mid:    #2d6a4f;
  --green-bright: #52b788;
  --green-light:  #b7e4c7;
  --green-pale:   #f0f7f2;
  --cream:        #faf8f3;
  --text-dark:    #1c2b22;
  --text-mid:     #3d5a47;
  --text-light:   #6b8f74;
  --amber:        #d4831a;
  --blue-mid:     #1a4a7a;
  --blue-pale:    #eaf1f8;
  --border:       #d8ead2;
}

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

a { color: inherit; text-decoration: none; }
p { margin-bottom: 0; }
strong { font-weight: 600; }

/* =============================================
   HEADER & NAV
   ============================================= */

header {
  background: var(--green-dark);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--green-bright);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.2rem;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

/* DROPDOWN NAV */
.nav-dropdown {
  position: relative;
  /* Extend the hover zone downward to cover the gap — this is what
     prevents the menu vanishing as the cursor moves down to click it */
  padding-bottom: 16px;
  margin-bottom: -16px;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  /* Match the line-height of other nav links exactly */
  line-height: 1;
}

.dropdown-menu {
  display: none;
  position: absolute;
  /* No gap — sits flush so hover zone is continuous */
  top: 100%;
  right: 0;
  background: var(--green-dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--green-bright);
  border-radius: 0 0 8px 8px;
  list-style: none;
  min-width: 190px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu li:last-child a { border-bottom: none; }

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  background: rgba(82,183,136,0.15);
  color: var(--green-bright);
}

/* Show on hover — desktop */
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Mobile — show inline, indented, when nav is open */
@media (max-width: 768px) {
  .nav-dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    background: rgba(0,0,0,0.15);
    min-width: 0;
  }
  .dropdown-menu li a {
    padding: 9px 18px 9px 28px;
    font-size: 0.82rem;
  }
}

/* =============================================
   AFFILIATE DISCLOSURE BAR
   ============================================= */

.disclosure {
  background: #fffbf0;
  border-top: 3px solid var(--amber);
  border-bottom: 1px solid #e8d8b0;
  padding: 12px 2rem;
  text-align: center;
}

.disclosure p {
  max-width: 960px;
  margin: 0 auto;
  font-size: 0.83rem;
  color: #5a4a20;
  line-height: 1.5;
}

.disclosure strong { color: var(--amber); }

/* =============================================
   HOMEPAGE HERO
   ============================================= */

.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #3a7d5a 100%);
  padding: 90px 2rem 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352b788' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(82, 183, 136, 0.18);
  border: 1px solid var(--green-bright);
  color: var(--green-bright);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  background: var(--green-bright);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 34px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}

.hero-cta:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 60px 2rem 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352b788' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--green-bright); }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 800px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 700px;
  font-weight: 300;
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */

section { padding: 70px 2rem; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

/* =============================================
   HOMEPAGE CATEGORY CARDS
   ============================================= */

.categories { background: var(--green-pale); }

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

.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 106, 79, 0.13);
  border-color: var(--green-bright);
}

.cat-icon {
  background: var(--green-dark);
  padding: 24px 24px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cat-emoji { font-size: 1.9rem; line-height: 1; }

.cat-icon-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.3;
}

.cat-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  flex: 1;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 14px;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.cat-link:hover { gap: 10px; }
.cat-link::after { content: '→'; }

/* =============================================
   USP STRIP (homepage)
   ============================================= */

.usp-strip {
  background: var(--green-dark);
  color: #fff;
  padding: 60px 2rem;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.usp-item { padding: 0.5rem; }
.usp-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.usp-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--green-bright);
}

.usp-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  line-height: 1.6;
}

/* =============================================
   GUIDE TEASERS (homepage)
   ============================================= */

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

.guide-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.guide-card:hover { border-color: var(--green-bright); }

.guide-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.5rem;
}

.guide-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.guide-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  font-weight: 300;
  flex: 1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
  margin-top: auto;
}

.guide-link:hover { gap: 10px; }
.guide-link::after { content: '→'; }

/* =============================================
   WHY / INTRO SECTION (inner pages)
   ============================================= */

.why-section { background: #fff; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

.pros-cons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pros, .cons {
  background: var(--green-pale);
  border-radius: 10px;
  padding: 20px 24px;
}

.cons { background: #fdf8f0; }

.pros h3, .cons h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.pros ul, .cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pros li, .cons li {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.5;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */

.products-section { background: var(--green-pale); }

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

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 28px rgba(45, 106, 79, 0.12);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green-dark);
  color: var(--green-bright);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 50px;
}

.product-badge.popular {
  background: var(--amber);
  color: #fff;
}

.product-header {
  padding: 24px 24px 0;
}

.product-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
  padding-right: 80px;
}

.product-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-body {
  padding: 16px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-body > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
}

.product-specs {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.product-specs li:last-child { border-bottom: none; }

.product-specs li span:first-child {
  color: var(--text-light);
  font-weight: 400;
}

.product-specs li span:last-child {
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
}

.product-notes {
  background: var(--green-pale);
  border-radius: 8px;
  padding: 12px 14px;
}

.product-notes p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.btn-amazon {
  display: block;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s;
  margin-top: auto;
}

.btn-amazon:hover { background: var(--green-mid); }

/* =============================================
   TIPS / GUIDE GRID
   ============================================= */

.guide-section { background: #fff; }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tip-card {
  background: var(--green-pale);
  border-radius: 10px;
  padding: 24px;
}

.tip-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.tip-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

/* =============================================
   CROSSLINK SECTION
   ============================================= */

.crosslink-section {
  background: var(--green-dark);
  text-align: center;
  padding: 60px 2rem;
}

.crosslink-section .section-title { color: #fff; }

.crosslink-section p {
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.crosslink-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--green-bright);
  color: var(--green-bright);
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--green-bright);
  color: var(--green-dark);
}

/* =============================================
   RANGE COMPARISON TABLE
   ============================================= */

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 700px;
}

.compare-table th {
  background: var(--green-dark);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  padding: 13px 16px;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.compare-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-weight: 300;
  vertical-align: middle;
  white-space: nowrap;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(240,247,242,0.5); }

.compare-table .highlight-row td {
  background: #e8f5ee;
  font-weight: 400;
  color: var(--text-dark);
}

.table-link {
  color: var(--green-mid);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.table-link:hover { color: var(--green-dark); }

/* Tier Badges */
.tier-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}

.tier-badge.easy {
  background: #e8f5ee;
  color: var(--green-mid);
}

.tier-badge.universal {
  background: #fff3e0;
  color: #b36b00;
}

.tier-badge.advanced {
  background: #fbe9e9;
  color: #a33030;
}

/* =============================================
   BATTERY TABLE
   ============================================= */

.battery-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.battery-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.battery-table th {
  background: var(--green-dark);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.battery-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-weight: 300;
}

.battery-table tr:last-child td { border-bottom: none; }
.battery-table tr:nth-child(even) td { background: var(--green-pale); }

.battery-table .highlight-row td {
  background: #f0f7ec;
  font-weight: 400;
  color: var(--text-dark);
}

/* =============================================
   COMPATIBILITY CARDS (battery page)
   ============================================= */

.compat-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: border-color 0.2s;
}

.compat-card:hover { border-color: var(--green-bright); }

.compat-icon { font-size: 2rem; flex-shrink: 0; }

.compat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.compat-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
}

.compat-link {
  margin-left: auto;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* =============================================
   INFO BOX
   ============================================= */

.info-box {
  background: #fffbf0;
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
}

.info-box p {
  font-size: 0.92rem;
  color: #5a4a20;
  line-height: 1.6;
}

/* =============================================
   GREEN VS BLUE COMPARE
   ============================================= */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.compare-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
}

.green-card { border-color: var(--green-bright); }
.blue-card  { border-color: #4a90c4; }

.compare-header {
  padding: 28px 28px 20px;
  text-align: center;
}

.green-card .compare-header { background: var(--green-dark); }
.blue-card  .compare-header { background: var(--blue-mid); }

.compare-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.compare-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.compare-subtitle {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-body { padding: 24px 28px; }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.compare-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.5;
}

.compare-verdict {
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.green-verdict {
  background: var(--green-pale);
  border-left: 4px solid var(--green-bright);
  color: var(--green-dark);
}

.blue-verdict {
  background: var(--blue-pale);
  border-left: 4px solid #4a90c4;
  color: var(--blue-mid);
}

/* =============================================
   FAQ (green-vs-blue page)
   ============================================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.97rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* =============================================
   SPEC YES / NO INDICATORS
   ============================================= */

.spec-yes {
  color: #2d6a4f;
  font-weight: 600;
}

.spec-no {
  color: #c0392b;
  font-weight: 600;
}

/* Equal-height card rows */
.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.product-grid-3 .product-card {
  display: flex;
  flex-direction: column;
}

.product-grid-3 .product-card .product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-grid-3 .product-card .btn-amazon {
  margin-top: auto;
}

/* Centred single card (Advanced model row) */
.product-grid-centered {
  display: flex;
  justify-content: center;
}

.product-grid-centered .product-card {
  width: calc(33.333% - 0.5rem);
  min-width: 280px;
}

@media (max-width: 900px) {
  .product-grid-3 {
    grid-template-columns: 1fr;
  }
  .product-grid-centered .product-card {
    width: 100%;
  }
}

/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  border-top: 3px solid var(--green-bright);
  z-index: 999;
  padding: 14px 2rem;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.cookie-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  font-weight: 300;
}

.cookie-text strong { color: #fff; }

.cookie-text a {
  color: var(--green-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-close {
  flex-shrink: 0;
  background: var(--green-bright);
  color: var(--green-dark);
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Source Sans 3', sans-serif;
}

.cookie-close:hover { background: #fff; }

@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-close { width: 100%; text-align: center; }
}

/* =============================================
   PRIVACY POLICY PAGE
   ============================================= */

.privacy-content { max-width: 800px; }

.privacy-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.privacy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.privacy-block p {
  font-size: 0.97rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
}

.privacy-block a { color: var(--green-mid); font-weight: 600; }

.privacy-list {
  list-style: none;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}

.privacy-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--green-bright);
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.about-main p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
}

.about-values {
  background: var(--green-pale);
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 2rem;
}

.about-values h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-values ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-values li {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.5;
}

.about-disclaimer {
  background: #fffbf0;
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-top: 2rem;
}

.about-disclaimer p {
  font-size: 0.88rem;
  color: #5a4a20;
  line-height: 1.6;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.sidebar-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.sidebar-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
}

.contact-email {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--green-dark);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s;
}

.contact-email:hover { background: var(--green-mid); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 40px 2rem;
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  max-width: 800px;
  margin: 0 auto 0.5rem;
  line-height: 1.7;
}

footer strong { color: rgba(255,255,255,0.85); }
footer a { color: var(--green-bright); }

.footer-small {
  margin-top: 1rem !important;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.35) !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .two-col       { grid-template-columns: 1fr; gap: 2rem; }
  .compare-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 0.75rem;
    border-bottom: 2px solid var(--green-bright);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  header { position: relative; }

  .hero       { padding: 50px 1.5rem 60px; }
  .page-hero  { padding: 40px 1.5rem 50px; }
  section     { padding: 50px 1.5rem; }

  .product-grid,
  .card-grid,
  .guides-grid { grid-template-columns: 1fr; }

  .compat-card { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .compat-link { margin-left: 0; }
}

@media (max-width: 480px) {
  .logo { font-size: 1rem; }
  .section-title { font-size: 1.5rem; }
  .crosslink-buttons { flex-direction: column; align-items: center; }
}
</style.css>
