/* ============================================
   BarrelCompare — Shared stylesheet
   Edit design tokens in :root to change brand-wide colours/fonts
   ============================================ */

:root {
  /* Brand colours — Option 02: Community & Warmth */
  --navy-900: #1e1e1e;
  --navy-800: #2c2c2c;
  --navy-700: #3a3a3a;
  --navy-600: #484848;
  --orange-500: #1abcb0;
  --orange-600: #15a99e;
  --blue-500: #1abcb0;
  --blue-600: #15a99e;
  --green-500: #25d366;
  --red-500: #ef4444;
  --white: #ffffff;
  --grey-100: #f5ecd7;
  --grey-200: #eeddc4;
  --grey-400: #9aa5b5;
  --grey-600: #6b5e4e;

  /* Text colours on dark backgrounds */
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-muted-dark: rgba(255, 255, 255, 0.65);
  /* Text colours on light/sand backgrounds */
  --text-on-light: #2c2c2c;
  --text-muted-light: #6b5e4e;

  /* Layout */
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1180px;

  /* Typography */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-on-dark);
  background: var(--navy-800);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { margin: 0 0 0.5em; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

/* ---- ALERTS TICKER ---- */
.alerts-bar {
  background: var(--orange-500);
  color: var(--navy-900);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}
.alerts-bar .live-tag {
  background: var(--navy-900);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: 12px;
}
.ticker {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
}
.ticker span { display: inline-flex; align-items: center; gap: 8px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- BETA BANNER ---- */
.beta-banner {
  background: var(--blue-600);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---- HEADER ---- */
.site-header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(44, 44, 44, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.logo .accent { color: var(--orange-500); }
.logo .tagline { display: block; font-size: 0.75rem; font-weight: 400; color: var(--text-muted-dark); margin-top: -2px; letter-spacing: 0.02em; }
.logo-standfirst { display: block; font-size: 0.8rem; font-style: italic; color: var(--orange-500); font-weight: 500; margin-top: 1px; letter-spacing: 0.01em; }

.nav-desktop { display: none; gap: 28px; align-items: center; }
.nav-desktop a { font-size: 0.95rem; color: var(--text-on-dark); transition: color 0.2s; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--orange-500); }
@media (min-width: 900px) { .nav-desktop { display: flex; } .menu-toggle { display: none; } }

.menu-toggle {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  color: inherit;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  padding: 80px 24px 24px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 99;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a { display: block; padding: 16px 0; font-size: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-mobile .whatsapp-cta { margin-top: 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
  text-align: center;
  min-height: 48px;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--blue-500); color: var(--white); }
.btn-primary:hover { background: var(--blue-600); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-orange { background: var(--orange-500); color: var(--navy-900); }
.btn-orange:hover { background: var(--orange-600); }
.btn-whatsapp { background: var(--green-500); color: var(--white); }
.btn-whatsapp:hover { background: #1eba56; }
.btn-block { display: flex; width: 100%; }

/* ---- HERO ---- */
.hero { padding: 64px 0 80px; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  color: #6fe39d;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { font-size: 2.25rem; max-width: 720px; margin: 0 auto 20px; }
.hero h1 .highlight { color: var(--orange-500); }
@media (min-width: 768px) { .hero h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4rem; } }

.hero p.lede { font-size: 1.125rem; max-width: 580px; margin: 0 auto 12px; color: var(--text-on-dark); }
.hero p.sub { font-size: 0.95rem; color: var(--text-muted-dark); margin: 0 auto 36px; }

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  padding: 48px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.page-header h1 { font-size: 2rem; max-width: 720px; margin: 0 auto 12px; }
.page-header h1 .accent { color: var(--orange-500); }
.page-header p { color: var(--text-muted-dark); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
@media (min-width: 768px) { .page-header { padding: 80px 0 56px; } .page-header h1 { font-size: 3rem; } }

/* ---- TERRITORY CHIPS ---- */
.territory-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 32px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--text-on-dark);
  font-weight: 500; font-size: 0.95rem;
  transition: all 0.2s;
}
.chip:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); }
.chip.active { background: var(--blue-500); border-color: var(--blue-500); color: var(--white); }
.chip.disabled { opacity: 0.55; cursor: not-allowed; }

.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 24px; }
.hero-meta { font-size: 0.85rem; color: var(--text-muted-dark); max-width: 520px; margin: 0 auto; }

.trustpilot-strip {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 32px; padding: 12px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px; font-size: 0.9rem; color: var(--text-muted-dark);
}
.trustpilot-star { color: #00b67a; font-size: 1.1rem; }

/* ---- TRUST STRIP ---- */
.trust-strip { background: var(--navy-700); padding: 40px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; }
.trust-stat .num { font-size: 2.25rem; font-weight: 800; color: var(--orange-500); display: block; }
.trust-stat .label { font-size: 0.8rem; color: var(--text-muted-dark); letter-spacing: 0.02em; }
@media (min-width: 768px) {
  .trust-stat .num { font-size: 3rem; }
  .trust-stat .label { font-size: 0.95rem; }
}

/* ---- SECTION HEADINGS ---- */
.section-eyebrow { color: var(--orange-500); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: 1.75rem; max-width: 640px; }
.section-title .accent { color: var(--blue-500); }
.section-lede { color: var(--text-muted-dark); max-width: 580px; font-size: 1.05rem; margin-bottom: 48px; }
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }

/* ---- HOW IT WORKS / GRID CARDS ---- */
.how-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--orange-500); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange-500); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 16px;
}
.step-card h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--text-on-light); }
.step-card p { color: var(--text-muted-light); margin: 0; font-size: 0.95rem; }

/* ---- WHY US ---- */
.why-section { background: var(--navy-900); }
.why-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card { padding: 24px; }
.why-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(245,166,35,0.12); color: var(--orange-500);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: var(--text-muted-dark); font-size: 0.92rem; margin: 0; }

/* ---- SUPPLIER CARDS ---- */
.supplier-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .supplier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .supplier-grid { grid-template-columns: repeat(3, 1fr); } }

.supplier-card {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.supplier-card:hover { border-color: rgba(245,166,35,0.4); transform: translateY(-2px); }
.supplier-card.pending { opacity: 0.85; border-style: dashed; }
.supplier-card .badge {
  display: inline-block; align-self: flex-start;
  background: var(--orange-500); color: var(--navy-900);
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 12px;
}
.supplier-card .badge.pending-badge { background: rgba(255,255,255,0.1); color: var(--text-muted-dark); }
.supplier-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.supplier-card .supplier-meta { color: var(--text-muted-dark); font-size: 0.9rem; margin-bottom: 20px; }
.supplier-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.supplier-card .price { font-size: 2rem; font-weight: 800; color: var(--orange-500); }
.supplier-card .price-label { color: var(--text-muted-dark); font-size: 0.95rem; }
.supplier-card .transit { color: var(--text-muted-dark); font-size: 0.9rem; margin-bottom: 20px; }
.supplier-card ul { padding-left: 0; list-style: none; margin: 0 0 20px; flex-grow: 1; }
.supplier-card ul li { padding: 6px 0; font-size: 0.95rem; }
.supplier-card ul li::before { content: "✓"; color: var(--green-500); font-weight: 700; margin-right: 8px; }
.supplier-card .cta-row { display: flex; gap: 8px; margin-top: auto; }

/* ---- COMPARE PAGE FILTERS ---- */
.filter-bar {
  background: var(--navy-700);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 80px;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(17, 42, 77, 0.95);
}
.filter-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.filter-row label { font-size: 0.85rem; color: var(--text-muted-dark); margin-right: 4px; }
.filter-row select {
  background: var(--navy-900); color: var(--text-on-dark);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px; border-radius: 8px; font-size: 0.95rem;
  cursor: pointer;
}
.filter-row select:hover { border-color: rgba(255,255,255,0.3); }
.filter-row .results-count { margin-left: auto; font-size: 0.9rem; color: var(--text-muted-dark); }

/* ---- FAQ ---- */
.faq-section { background: var(--navy-800); }
details {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 12px;
  transition: background 0.2s;
}
details[open] { background: rgba(255,255,255,0.07); }
summary {
  font-weight: 600; font-size: 1.05rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; font-size: 1.5rem; color: var(--orange-500);
  transition: transform 0.2s; flex-shrink: 0;
}
details[open] summary::after { content: "−"; }
details p { color: var(--text-muted-dark); margin: 16px 0 0; font-size: 0.95rem; }
details ul { color: var(--text-muted-dark); padding-left: 20px; margin-top: 12px; }
details ul li { margin-bottom: 6px; }

.faq-category { margin-bottom: 48px; }
.faq-category h2 { font-size: 1.5rem; color: var(--orange-500); margin-bottom: 20px; }

/* ---- FORMS ---- */
.form-wrapper { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text-on-dark); }
.form-group label .required { color: var(--orange-500); margin-left: 4px; }
.form-group small { display: block; color: var(--text-muted-dark); font-size: 0.8rem; margin-top: 6px; }
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--text-on-dark);
  padding: 14px 16px; border-radius: var(--radius);
  font-size: 1rem; font-family: var(--font);
  transition: border-color 0.2s, background 0.2s;
}
.form-control:focus { outline: none; border-color: var(--orange-500); background: rgba(255,255,255,0.08); }
.form-control::placeholder { color: rgba(255,255,255,0.4); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.checkbox-row { display: flex; align-items: flex-start; gap: 12px; }
.checkbox-row input { margin-top: 4px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--orange-500); }
.checkbox-row label { font-size: 0.9rem; color: var(--text-muted-dark); margin: 0; font-weight: 400; }

.form-success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid var(--green-500);
  color: #6fe39d;
  padding: 16px 20px; border-radius: var(--radius);
  margin-bottom: 24px;
}
.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--red-500);
  color: #ff8888;
  padding: 16px 20px; border-radius: var(--radius);
  margin-bottom: 24px;
}

/* ---- CARDS / GENERIC ---- */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.card-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- COMPARE PREVIEW (homepage) ---- */
.compare-preview { background: var(--navy-700); }

/* ---- FINAL CTA ---- */
.final-cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  text-align: center;
}
.final-cta h2 { font-size: 2rem; margin-bottom: 16px; }
@media (min-width: 768px) { .final-cta h2 { font-size: 2.75rem; } }
.final-cta p { color: var(--text-muted-dark); max-width: 540px; margin: 0 auto 32px; font-size: 1.1rem; }
.final-cta .cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---- FOOTER ---- */
footer { background: var(--navy-900); padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-col h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange-500); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 6px 0; }
.footer-col a { color: var(--text-muted-dark); font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-tagline { color: var(--text-muted-dark); font-size: 0.95rem; max-width: 320px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 0.85rem; color: var(--text-muted-dark);
}
.footer-bottom .disclosure { max-width: 640px; }

/* ---- ARTICLE / PROSE ---- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.75rem; margin-top: 48px; margin-bottom: 16px; color: var(--orange-500); }
.prose h3 { font-size: 1.25rem; margin-top: 32px; margin-bottom: 12px; }
.prose p, .prose li { color: var(--text-on-dark); font-size: 1.05rem; line-height: 1.7; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 20px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 4px solid var(--orange-500);
  padding: 8px 20px;
  margin: 24px 0;
  background: rgba(245,166,35,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted-dark); font-style: italic;
}
.prose strong { color: var(--white); font-weight: 700; }

/* ---- WHITE BACKGROUND SECTIONS ---- */
.hero-white {
  background: #ffffff;
  color: var(--navy-900);
}
.hero-white .hero-badge { background: rgba(37, 211, 102, 0.12); color: #1a7a3e; }
.hero-white .hero-badge .dot { background: #25a855; }
.hero-white h1 { color: var(--navy-900); }
.hero-white .highlight { color: var(--orange-500); }
.hero-white .lede { color: var(--navy-800); }
.hero-white .sub { color: var(--grey-600); }
.hero-white .hero-meta { color: var(--grey-600); }
.hero-white .chip { background: rgba(6,19,39,0.06); border-color: rgba(6,19,39,0.15); color: var(--navy-800); }
.hero-white .chip:hover { background: rgba(6,19,39,0.1); border-color: rgba(6,19,39,0.3); }
.hero-white .chip.active { background: var(--blue-500); border-color: var(--blue-500); color: var(--white); }
.hero-white .btn-secondary { color: var(--navy-800); border-color: rgba(6,19,39,0.3); }

.section-white { background: #ffffff; }
.section-white .section-eyebrow { color: var(--orange-500); }
.section-white .section-title { color: var(--navy-900); }
.section-white .section-lede { color: var(--grey-600); }
.section-white .step-card { background: var(--grey-100); border-color: var(--grey-200); }
.section-white .step-card h3 { color: var(--text-on-light); }
.section-white .step-card p { color: var(--text-muted-light); }

/* ---- REVIEWS STRIP (B9) ---- */
.reviews-strip-section { background: var(--navy-700); padding: 64px 0; }
.reviews-scroll-container {
  min-height: 120px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  min-width: 260px;
  max-width: 320px;
  flex-shrink: 0;
}
.review-stars { color: var(--orange-500); font-size: 1rem; margin-bottom: 8px; }
.review-text { color: var(--text-on-dark); font-size: 0.95rem; margin-bottom: 10px; font-style: italic; }
.review-meta { color: var(--text-muted-dark); font-size: 0.8rem; margin: 0; }

/* ---- STAR RATING KEY ---- */
.star-legend {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 22px; font-size: 0.8rem; color: var(--text-muted-dark); margin-top: 20px;
}
.star-legend span { display: inline-flex; align-items: center; gap: 4px; }
.rating-note { margin-top: 24px; text-align: center; color: var(--text-muted-dark); font-size: 0.82rem; font-style: italic; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---- SUPPLIER RATING ROW ---- */
.supplier-rating-row { display:flex; align-items:center; gap:10px; padding:10px 0; border-top:1px solid rgba(255,255,255,0.08); border-bottom:1px solid rgba(255,255,255,0.08); margin-bottom:16px; }
.supplier-star-display { color:var(--orange-500); font-size:1rem; letter-spacing:1px; line-height:1; }
.supplier-rating-label { font-size:0.8rem; color:var(--text-muted-dark); }
.supplier-rating-label a { color:var(--orange-500); text-decoration:none; }
.supplier-rating-label a:hover { text-decoration:underline; }

/* ---- BARREL CARD IMAGES ---- */
.barrel-img { width: 100%; height: 180px; object-fit: contain; border-radius: var(--radius); margin-bottom: 20px; display: block; background: transparent; }

/* ---- TRUSTPILOT SECTION (B10) ---- */
.trustpilot-section { background: var(--navy-900); padding: 48px 0; }

/* ---- COMING SOON ---- */
.coming-soon-block {
  background: rgba(245,166,35,0.05);
  border: 1.5px dashed rgba(245,166,35,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  max-width: 640px;
  margin: 40px auto;
}
.coming-soon-block h2 { color: var(--orange-500); margin-bottom: 12px; }
.coming-soon-block p { color: var(--text-muted-dark); margin-bottom: 20px; }

/* ---- ACCESSIBILITY ---- */
:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   SITEWIDE LIGHT MODE — all charcoal → sand beige (#F5ECD7)
   ============================================================ */
body { background: #f5ecd7; color: var(--text-on-light); }

/* Header */
.site-header { background: #f5ecd7; border-bottom: 1px solid rgba(0,0,0,0.08); }
.logo { color: var(--text-on-light); }
.logo .tagline, .logo-standfirst { color: var(--text-muted-light); }
.nav-desktop a { color: var(--text-on-light); }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--orange-500); }
.menu-toggle { background: rgba(0,0,0,0.06); color: var(--text-on-light); }
.nav-mobile { background: #f5ecd7; }
.nav-mobile a { color: var(--text-on-light); border-bottom-color: rgba(0,0,0,0.08); }

/* Mobile scroll nav */
.nav-scroll-bar { background: #f5ecd7; border-bottom: 1px solid rgba(0,0,0,0.08); }
.nav-scroll-bar a, .nav-scroll-bar button { color: var(--text-muted-light); }
.nav-scroll-bar a.active { color: var(--orange-500); border-bottom-color: var(--orange-500); }
.nav-scroll-bar a:hover { color: var(--text-on-light); }

/* Search toggle */
.search-toggle { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.14); color: var(--text-on-light); }
.search-toggle:hover { background: rgba(0,0,0,0.1); }

/* Hero */
.hero { background: #f5ecd7; }
.hero h1 { color: var(--text-on-light); }
.hero p.lede, .hero p.sub { color: var(--text-muted-light); }
.hero .hero-meta { color: var(--text-muted-light); }
.hero .hero-badge { background: rgba(0,0,0,0.06); color: var(--text-muted-light); }
.hero .hero-badge .dot { background: rgba(0,0,0,0.25); }
.hero .trustpilot-strip { background: rgba(0,0,0,0.05); color: var(--text-muted-light); }
.hero .chip { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.12); color: var(--text-on-light); }
.hero .chip:hover { border-color: rgba(0,0,0,0.25); background: rgba(0,0,0,0.08); }

/* Page header (inner pages) */
.page-header { background: linear-gradient(180deg, #eeddc4 0%, #f5ecd7 100%); }
.page-header h1 { color: var(--text-on-light); }
.page-header p { color: var(--text-muted-light); }

/* Trust strip */
.trust-strip { background: #ffffff; }
.trust-stat .label { color: var(--text-on-light); }

/* Section headings */
h2.section-title, .section-title { color: var(--text-on-light); }
.section-lede { color: var(--text-muted-light); }

/* Step cards */
.step-card { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.step-card h3 { color: var(--text-on-light); }
.step-card p { color: var(--text-muted-light); }

/* Why section */
.why-section { background: #f5ecd7; }
.why-card h3 { color: var(--text-on-light); }
.why-card p { color: var(--text-muted-light); }

/* Supplier cards */
.supplier-card { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.supplier-card:hover { border-color: rgba(26,188,176,0.4); }
.supplier-card h3 { color: var(--text-on-light); }
.supplier-card .supplier-meta { color: var(--text-muted-light); }
.supplier-card .price-label { color: var(--text-muted-light); }
.supplier-card .transit { color: var(--text-muted-light); }
.supplier-card ul li { color: var(--text-on-light); }
.supplier-card .badge.pending-badge { background: rgba(0,0,0,0.08); color: var(--text-muted-light); }
.supplier-rating-row { border-color: rgba(0,0,0,0.08); }
.supplier-rating-label { color: var(--text-muted-light); }

/* Filter bar */
.filter-bar { background: #eeddc4 !important; border-bottom-color: rgba(0,0,0,0.08); }
.filter-row label { color: var(--text-muted-light); }
.filter-row select { background: #ffffff; color: var(--text-on-light); border-color: rgba(0,0,0,0.12); }
.filter-row .results-count { color: var(--text-muted-light); }

/* Compare preview */
.compare-preview { background: #eeddc4; }

/* FAQ */
.faq-section { background: #f5ecd7; }
details { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
details[open] { background: rgba(0,0,0,0.07); }
summary { color: var(--text-on-light); }
details p, details ul { color: var(--text-muted-light); }

/* Forms */
.form-group label { color: var(--text-on-light); }
.form-group small { color: var(--text-muted-light); }
.form-control { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.12); color: var(--text-on-light); }
.form-control:focus { background: rgba(0,0,0,0.06); border-color: var(--orange-500); }
.form-control::placeholder { color: rgba(0,0,0,0.3); }
.checkbox-row label { color: var(--text-muted-light); }

/* Generic cards */
.card { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }

/* Reviews */
.reviews-strip-section { background: #f5ecd7; }
.review-card { background: #ffffff; border-color: rgba(0,0,0,0.1); }
.review-text { color: var(--text-on-light); }
.review-meta { color: var(--text-muted-light); }
.star-legend { color: var(--text-muted-light); }
.rating-note { color: var(--text-muted-light); }

/* Trustpilot section */
.trustpilot-section { background: #f5ecd7; }

/* Final CTA */
.final-cta { background: linear-gradient(135deg, #eeddc4 0%, #f5ecd7 100%); }
.final-cta h2 { color: var(--text-on-light); }
.final-cta p { color: var(--text-muted-light); }
.btn-secondary { color: var(--text-on-light); border-color: rgba(0,0,0,0.25); }
.btn-secondary:hover { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.4); }

/* Prose / article */
.prose h3 { color: var(--text-on-light); }
.prose p, .prose li { color: var(--text-on-light); }
.prose strong { color: var(--text-on-light); }
.prose blockquote { color: var(--text-muted-light); background: rgba(26,188,176,0.05); }

/* Coming soon */
.coming-soon-block p { color: var(--text-muted-light); }

/* Footer */
footer { background: #eeddc4; border-top: 1px solid rgba(0,0,0,0.08); }
.footer-col a { color: var(--text-muted-light); }
.footer-col a:hover { color: var(--text-on-light); }
.footer-tagline { color: var(--text-muted-light); }
.footer-bottom { border-top-color: rgba(0,0,0,0.08); color: var(--text-muted-light); }
