/* ===============================
   GreenhouseMatch.com — main.css
   Palette: Deep Forest + Sage + Muted Brass

   Primary:      #1F4D3A  (Deep Forest)
   Primary-dk:   #17392C  (Evergreen / hover)
   Secondary:    #6F8F72  (Sage accent)
   Commercial:   #B88746  (Muted Brass)
   Commercial-dk:#8F6836  (Dark Brass / hover)
   Primary-lt:   #F3F7F3  (Green Mist)
   Accent-lt:    #E5EDE6  (Light Sage)
   Graphite:     #2F3A34  (Charcoal)
   Body bg:      #FCFDFB  (Warm White)
   Text:         #2F3A34  (Charcoal)
   Text-muted:   #607068  (Slate Green)
   Border:       #D7E0DA  (Soft Gray-Green)
   Card bg:      #FFFFFF

   Compatibility status colours remain semantic and separate from the
   brand palette (green = verified, amber = conditional, red = incompatible).
================================ */

/* ===============================
   Brand tokens
   Legacy token names are retained to avoid unnecessary selector/code churn.
================================ */

:root {
  --ss-forest: #1F4D3A;
  --ss-forest-dark: #17392C;
  --ss-cedar: #B88746;
  --ss-cedar-dark: #8F6836;
  --ss-amber: #6F8F72;
  --ss-amber-soft: #FBF6EC;
  --ss-sage: #E5EDE6;
  --ss-forest-mist: #F3F7F3;
  --ss-warm-white: #FCFDFB;
  --ss-graphite: #2F3A34;
  --ss-text: #2F3A34;
  --ss-muted: #607068;
  --ss-border: #D7E0DA;
  --ss-shop-border: #D9C5A8;
  --ss-shop-bg: #FDF9F2;
  --ss-shop-hover: #F5ECDD;
}

/* ===============================
   Base & Reset
================================ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #FCFDFB;
  color: #2F3A34;
}

/* ===============================
   Layout
================================ */

.container {
  max-width: 520px;
  margin: 40px auto;
  padding: 0 20px;
}

main.container {
  margin-top: 20px;
}

/* ===============================
   Header (Highlight-safe)
================================ */

.site-header {
  background: transparent;
  border-bottom: none;
  margin: 0;
  padding: 8px 0;
}

.header-highlight {
  min-height: 0;
  width: 100%;
  margin: 8px 0 0;
}

.footer-highlight {
  width: 100%;
  margin: 0 0 16px;
}

/* Self-contained sizing — deliberately NOT using .container, since
   .site-header .container and .site-footer .container resolve differently
   (header resets margin to 0 auto; footer inherits the base 40px auto). */
.header-highlight__inner,
.footer-highlight__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 10px 16px;
  background: #F3F7F3;
  border: 1px solid #DCE8DE;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  text-align: center;
}

.highlight-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.35; /* explicit — do not omit */
  color: #17392C;
}

@media (max-width: 480px) {
  .highlight-text {
    font-size: 0.8rem;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header-nav a {
  font-weight: 500;
  text-decoration: none;
}

.site-header img {
  height: 38px;
  width: auto;
  margin-right: 6px;
}

.site-nav a {
  font-weight: 500;
  text-decoration: none;
  opacity: 0.85;
}

.site-nav a:hover {
  text-decoration: underline;
  opacity: 1;
}

.site-nav {
  margin-left: auto;
}

.site-nav a {
  margin-left: 18px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===============================
   Header spacing fix
================================ */

.site-header .container {
  margin: 0 auto;
  padding: 0;
}

/* ===============================
   Typography
================================ */

h1 {
  text-align: center;
  font-size: 2rem;
  color: #1F4D3A;
  margin-bottom: 10px;
}

h2 {
  color: #1F4D3A;
  margin-top: 40px;
  margin-bottom: 15px;
}

h3 {
  color: #1F4D3A;
  margin-top: 30px;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 10px 0;
}

a {
  color: #1F4D3A;
}

a:hover {
  color: #17392C;
}

.hint {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #607068;
  text-align: center;
  font-style: italic;
}

.hint a {
  color: #1F4D3A;
}

.intro {
  text-align: center;
  margin-bottom: 30px;
  color: #607068;
}

/* ===============================
   Forms & Inputs
================================ */

label {
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

input[type="number"],
input[type="date"] {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #CBD6CF;
  border-radius: 8px;
  background: #fff;
}

input:focus {
  outline: none;
  border-color: #1F4D3A;
  box-shadow: 0 0 0 3px rgba(31, 77, 58, 0.16);
}

/* ===============================
   Select (Dropdowns)
================================ */

select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 40px 12px 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #2F3A34;
  background-color: #fff;
  border: 1px solid #CBD6CF;
  border-radius: 8px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #607068 50%),
    linear-gradient(135deg, #607068 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

select:focus {
  outline: none;
  border-color: #1F4D3A;
  box-shadow: 0 0 0 3px rgba(31, 77, 58, 0.16);
}

select:disabled {
  background-color: #EFF2EF;
  color: #87968E;
  cursor: not-allowed;
}

label select {
  margin-top: 6px;
}

/* ===============================
   Hub & Cross-Navigation Links
================================ */

.hub-link {
  margin: 18px 0 28px;
  font-size: 0.95rem;
  color: #607068;
  text-align: center;
}

.hub-link a {
  font-weight: 600;
  color: #1F4D3A;
  text-decoration: none;
}

.hub-link a:hover {
  text-decoration: underline;
  color: #17392C;
}

/* Dense variant — used as an ADDITIONAL class alongside .hub-link,
   e.g. <div class="hub-link hub-link--dense">. Every rule here is
   scoped as a descendant of .hub-link--dense specifically, so it can
   never affect the base .hub-link or .hint (both possibly reused
   elsewhere on the site) on pages that don't explicitly opt in.
   Intended for dense site-wide navigation link lists on
   legal/utility pages, to de-emphasize it relative to the page's
   actual content without hiding it. Hover color uses the site's
   existing primary accent. */

.hub-link--dense {
  margin: 14px 0 20px;
}

.hub-link--dense .hint {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 600;
  color: #87968E;
  margin: 0 0 4px;
}

.hub-link--dense p:not(.hint) {
  font-size: 0.72rem;
  color: #87968E;
  line-height: 1.7;
}

.hub-link--dense a {
  color: #607068;
  font-weight: 500;
}

.hub-link--dense a:hover {
  color: #17392C;
  text-decoration: underline;
}

/* ===============================
   Results Box
================================ */

.result {
  margin-top: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-size: 1.05rem;
}

.result p {
  margin: 8px 0;
}

/* ===============================
   Tool List (Homepage)
================================ */

.tools {
  margin-top: 40px;
}

.tool-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-list li {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.tool-list a {
  display: block;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.tool-list a:hover {
  background: #F3F7F3;
}

.source-card-list strong,
.source-card-description {
  display: block;
}

.source-card-list strong {
  color: #1F4D3A;
}

.source-card-description {
  margin-top: 5px;
  color: #607068;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===============================
   Equipment List (compact catalog)
   Use instead of .tool-list on pages with
   many product/affiliate links (50+).
   Flat rows with inline links instead of cards.
================================ */

.equipment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.equipment-list li {
  padding: 7px 0;
  border-bottom: 1px solid #E2E8E3;
  font-size: 0.95rem;
  line-height: 1.55;
}

.equipment-list li:last-child {
  border-bottom: none;
}

.equipment-list a {
  color: #1F4D3A;
  text-decoration: none;
  font-weight: 600;
}

.equipment-list a:hover {
  color: #8F6836;
  text-decoration: underline;
}

.equipment-list .eq-desc {
  color: #607068;
  font-weight: 400;
}

.equipment-list .eq-browse {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 10px;
  background: #F3F7F3;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* ===============================
   Footer
================================ */

.site-footer {
  background: transparent;
  border-top: none;
  margin-top: 40px;
}

.site-footer .container {
  text-align: center;
  padding: 10px 0;
}

.footer-links {
  font-size: 0.8rem;
  color: #87968E;
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer-links a {
  color: #607068;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.75rem;
  color: #87968E;
  margin: 0;
}

/* ===============================
   Mobile
================================ */

@media (max-width: 400px) {
  .container {
    margin: 25px auto;
    padding: 0 15px;
  }

  h1 {
    font-size: 1.6rem;
  }
}

/* ===============================
   Mobile Header
================================ */

@media (max-width: 480px) {

  .header-inner {
    padding: 6px 0;
  }

  .site-header img {
    height: 32px;
  }
}

/* =========================
   Tool list grouping labels
   ========================= */

.tool-group {
  list-style: none;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.6;
}

.tool-group + li {
  margin-top: 0.25rem;
}

.related-calculators {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: #607068;
}

.related-calculators a {
  font-weight: 500;
}

/* ===============================
   Homepage Enhancements
   =============================== */

.hero {
  margin-bottom: 35px;
}

.hero h1 {
  margin-bottom: 12px;
}

.hero .intro {
  font-size: 1.05rem;
}

/* ===============================
   Category Hub
   =============================== */

.categories {
  margin-top: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.category-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.category-card:hover {
  background: #F3F7F3;
}

.category-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.category-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #607068;
}

/* ===============================
   Popular Tools
   =============================== */

.popular-tools {
  margin-top: 45px;
}

.popular-tools .tool-list li {
  margin-bottom: 10px;
}

/* ===============================
   Authority Content
   =============================== */

.authority {
  margin-top: 45px;
  font-size: 0.95rem;
  color: #607068;
}

.authority p {
  margin-bottom: 12px;
}

.authority a {
  font-weight: 500;
}

/* ===============================
   Supplies / Equipment Callout Box
   =============================== */

.supplies-callout {
  background: #F3F7F3;
  padding: 20px 24px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid #1F4D3A;
}

.supplies-callout h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.supplies-callout h3 {
  margin-top: 0;
}

.supplies-callout p {
  margin-bottom: 16px;
}

.supplies-callout p:last-child {
  margin-bottom: 0;
}

/* Affiliate links inside callout: inherit forest, but brass on hover for action signal */
.supplies-callout a {
  color: #1F4D3A;
  font-weight: 600;
}

.supplies-callout a:hover {
  color: #8F6836;
}


/* Button links inside supplies callouts must retain button contrast.
   The generic .supplies-callout a rule is intentionally overridden here. */
.supplies-callout a.button--primary,
.supplies-callout a.button--primary:hover {
  color: #fff;
  text-decoration: none;
}

.supplies-callout a.button--secondary {
  color: #1F4D3A;
  text-decoration: none;
}

.supplies-callout a.button--secondary:hover {
  color: #17392C;
  text-decoration: none;
}

/* All affiliate links rendered as .button keep button styling and never
   inherit the inline /go/ underline treatment. */
a.button[href^="/go/"],
a.button[href^="/go/"]:hover {
  text-decoration: none;
}

/* ===============================
   FAQ Section
   =============================== */

.faq {
  margin-top: 45px;
}

.faq h3 {
  margin-top: 22px;
  margin-bottom: 6px;
  font-size: 1rem;
}

.faq p {
  margin-top: 0;
  font-size: 0.95rem;
  color: #607068;
}

/* ===============================
   Comparison Tables (SEO)
================================ */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.95rem;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

thead {
  background: #F3F7F3;
}

th,
td {
  padding: 12px 14px;
  text-align: left;
}

th {
  font-weight: 600;
  color: #1F4D3A;
}

/* Affiliate links in table cells */
td a {
  color: #1F4D3A;
  font-weight: 600;
  text-decoration: none;
}

td a:hover {
  color: #8F6836;
  text-decoration: underline;
}

tbody tr:not(:last-child) {
  border-bottom: 1px solid #E2E8E3;
}

tbody tr strong {
  color: #2F3A34;
}

@media (max-width: 480px) {
  table {
    font-size: 0.9rem;
  }
}

/* ===============================
   Tooltip (calculator hints)
================================ */

.tooltip {
  position: relative;
  display: inline-block;
  margin-left: 4px;
  cursor: help;
  font-size: 0.9em;
  opacity: 0.7;
}

.tooltip:hover {
  opacity: 1;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 125%;
  transform: translateX(-50%);
  min-width: 220px;
  max-width: 280px;
  padding: 8px 10px;
  background: #2F3A34;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.4;
  border-radius: 6px;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 10;
}

.tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 115%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #2F3A34 transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.tooltip:hover::after,
.tooltip:hover::before {
  opacity: 1;
}

/* ===============================
   Primary Tool Highlight Box
   =============================== */

.primary-tool {
  margin: 1.75rem 0 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #E2E8E3;
  border-left: 4px solid #1F4D3A;
  background-color: #FCFDFB;
  border-radius: 6px;
}

.primary-tool__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #607068;
  margin-bottom: 0.35rem;
}

.primary-tool__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.primary-tool__title a {
  color: #2F3A34;
  text-decoration: none;
}

.primary-tool__title a:hover {
  text-decoration: underline;
}

.primary-tool__description {
  font-size: 0.9rem;
  color: #607068;
  margin: 0;
}

.primary-tool + section {
  margin-top: 2.5rem;
}

/* ===============================
   Calculator Teaser
================================ */

.calculator-teaser {
  margin: 40px 0;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.calculator-teaser h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #1F4D3A;
  text-align: center;
}

.calculator-teaser p {
  text-align: center;
  font-size: 0.95rem;
  color: #607068;
  margin-bottom: 20px;
}

.calculator-teaser .calculator-form {
  display: grid;
  gap: 16px;
}

.calculator-teaser .calculator-form label {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.calculator-teaser .calculator-form input[type="number"] {
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #CBD6CF;
  border-radius: 8px;
  width: 100%;
}

.calculator-teaser .teaser-result {
  margin-top: 20px;
  padding: 16px;
  background: #FCFDFB;
  border-radius: 10px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  font-size: 0.95rem;
}

.calculator-teaser .teaser-result p {
  margin: 6px 0;
  line-height: 1.4;
}

.calculator-teaser .teaser-result strong {
  color: #2F3A34;
}

@media (max-width: 480px) {
  .calculator-teaser {
    padding: 16px;
  }

  .calculator-teaser h2 {
    font-size: 1.3rem;
  }

  .calculator-teaser p {
    font-size: 0.9rem;
  }

  .calculator-teaser .calculator-form input[type="number"] {
    font-size: 0.95rem;
    padding: 8px 10px;
  }
}

/* ===============================
   Buttons
   Primary = Deep Forest (main action)
   Secondary = Forest-tinted (navigation / lower priority)
================================ */

.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  background-color: #1F4D3A;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background-color: #17392C;
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background-color: #F3F7F3;
  color: #1F4D3A;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background-color: #DCE8DE;
  color: #1F4D3A;
}

/* ===============================
   Calculator breakdown toggle
================================ */

.calc-toggle {
  border: none;
  cursor: pointer;
}

.calc-breakdown {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #E2E8E3;
  border-radius: 10px;
  background: #FCFDFB;
}

.calc-breakdown .muted {
  color: #607068;
  font-weight: 500;
  font-size: 0.95rem;
}

/* ===============================
   Call-to-Action Wrappers
=============================== */

.hero-cta {
  text-align: center;
  margin-top: 20px;
}

.calculator-teaser-cta,
.calculator-cta {
  text-align: center;
  margin: 18px 0 28px;
}


.guide-cta {
  text-align: center;
  margin: 18px 0 28px;
  padding: 20px;
  border: 1px solid #D7E0DA;
  border-left: 4px solid #B88746;
  border-radius: 10px;
  background: #FDF9F2;
}

.guide-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.guide-cta-actions .button {
  margin: 0;
}


.faq-cta {
  text-align: center;
  margin: 18px 0 28px;
}

/* ===============================
   Lead Capture / Email Form
================================ */

.lead-capture {
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.lead-capture form {
  display: grid;
  gap: 16px;
}

.lead-capture label {
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-capture input[type="text"],
.lead-capture input[type="email"] {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #CBD6CF;
  border-radius: 8px;
  width: 100%;
}

.lead-capture button {
  display: inline-block;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  background-color: #1F4D3A;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.lead-capture button:hover {
  background-color: #17392C;
}

/* ===============================
   Download Report Form Spacing
================================ */

#downloadReportForm label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

#downloadReportForm input {
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  border: 1px solid #CBD6CF;
  border-radius: 8px;
}

#downloadReportForm button {
  margin-top: 10px;
}

/* ===============================
   Calculator Form (shared)
================================ */

.calculator-form {
  display: grid;
  gap: 16px;
}

.calculator-form label {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.calculator-form input[type="text"],
.calculator-form input[type="email"],
.calculator-form input[type="number"],
.calculator-form input[type="date"] {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #CBD6CF;
  border-radius: 8px;
  background: #fff;
}

.calculator-form input:focus,
.calculator-form select:focus {
  outline: none;
  border-color: #1F4D3A;
  box-shadow: 0 0 0 3px rgba(31, 77, 58, 0.16);
}

/* Result container */
.calculator-result {
  margin-top: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-size: 1.05rem;
}

.calculator-result p {
  margin: 8px 0;
}

/* Generic muted helper */
.muted {
  color: #607068;
  font-weight: 500;
  font-size: 0.95rem;
}

.calculator-form label input[type="checkbox"] {
  margin: 0;
}

/* ===============================
   Quick Start Box
   =============================== */

.quick-start-box {
  margin: 28px 0 35px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #F3F7F3 0%, #DCE8DE 100%);
  border-left: 4px solid #1F4D3A;
  border-radius: 10px;
}

.quick-start-label {
  margin: 0 0 6px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #17392C;
}

.quick-start-text {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  color: #17392C;
  line-height: 1.5;
}

.quick-start-text:last-child {
  margin-bottom: 0;
}

.quick-start-text a {
  color: #1F4D3A;
  font-weight: 600;
  text-decoration: underline;
}

.quick-start-text a:hover {
  color: #8F6836;
}

/* ===============================
   Section Headers
   =============================== */

.calculators-section {
  margin-top: 45px;
}

.section-heading {
  font-size: 1.5rem;
  color: #1F4D3A;
  margin: 0 0 6px 0;
  text-align: center;
}

.section-intro {
  text-align: center;
  color: #607068;
  font-size: 0.95rem;
  margin: 0 0 22px 0;
}

/* ===============================
   Calculator Card Grid
   =============================== */

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .calculator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   Calculator Cards
   =============================== */

.calc-card {
  display: block;
  background: #fff;
  border: 1px solid #E2E8E3;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
  position: relative;
}

.calc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #1F4D3A;
}

.calc-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1;
}

.calc-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1F4D3A;
  margin: 0 0 8px 0;
}

.calc-card__desc {
  font-size: 0.9rem;
  color: #607068;
  margin: 0;
  line-height: 1.5;
}

.calc-card__tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background: #F3F7F3;
  color: #1F4D3A;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Primary card variant (advanced calculator, featured) */
.calc-card--primary {
  background: linear-gradient(135deg, #F3F7F3 0%, #DCE8DE 100%);
  border-color: #1F4D3A;
  border-width: 2px;
}

.calc-card--primary:hover {
  border-color: #17392C;
}

/* Urgent card variant (seasonal, limited) */
.calc-card--urgent {
  background: linear-gradient(135deg, #FBF6EC 0%, #E5EDE6 100%);
  border-color: #8F6836;
  border-width: 2px;
}

.calc-card--urgent:hover {
  border-color: #8F6836;
}

.calc-card__tag--urgent {
  background: #FBF6EC;
  color: #8F6836;
}

/* ===============================
   Tips Section
   =============================== */

.tips-section {
  margin-top: 45px;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tip-card {
  background: #fff;
  border: 1px solid #E2E8E3;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.tip-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1F4D3A;
  margin: 0 0 8px 0;
}

.tip-card p {
  font-size: 0.9rem;
  color: #607068;
  margin: 0;
  line-height: 1.5;
}

/* ===============================
   Mobile optimizations
   =============================== */

@media (max-width: 480px) {
  .quick-start-box {
    padding: 14px 16px;
  }

  .section-heading {
    font-size: 1.3rem;
  }

  .calc-card {
    padding: 16px;
  }

  .calc-card__title {
    font-size: 1rem;
  }

  .calc-card__desc {
    font-size: 0.85rem;
  }
}

/* ===============================
   Commercial /go/ link treatment
================================ */

a[href^="/go/"] {
  color: #1F4D3A;
  font-weight: 600;
  text-decoration: none;
}

a[href^="/go/"]:hover {
  color: #8F6836;
  text-decoration: underline;
}

/* Primary CTA buttons stay forest. Commercial CTAs remain identifiable through
   their shop treatment/external-arrow cue; brass is reserved for supporting accents. */
.button--shop,
a.button--shop[href^="/go/"] {
  background: var(--ss-forest);
  color: #fff;
  border-color: var(--ss-forest);
  text-decoration: none;
}

.button--shop:hover,
a.button--shop[href^="/go/"]:hover {
  background: var(--ss-forest-dark);
  color: #fff;
  border-color: var(--ss-forest-dark);
  text-decoration: none;
}

/* Legacy /go/ buttons retain button contrast. */
a.btn-primary[href^="/go/"],
a.button--primary[href^="/go/"] {
  color: #fff;
  text-decoration: none;
}

a.btn-primary[href^="/go/"]:hover,
a.button--primary[href^="/go/"]:hover {
  color: #fff;
  text-decoration: none;
}

/* ===============================
   Result formatting helpers
   (used by calculator result blocks)
================================ */

.result-card {
  margin-top: 12px;
}

.result-label {
  margin: 0 0 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f172a;
}

.result-big {
  margin: 0 0 8px;
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
}

.result-muted {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(15, 23, 42, 0.75);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 16px;
  margin-top: 10px;
}

.result-grid > div {
  padding: 6px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.result-subblock {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

/* ===============================
   Shop Pill & Chip
   Reusable affiliate/result pills and static shortcut chips.
   Existing color variants remain available across the tool system.
================================ */

.ext-arrow {
  font-size: 0.78em;
  opacity: 0.55;
  margin-left: 4px;
  display: inline-block;
  transition: opacity 0.12s ease;
}

a:hover .ext-arrow {
  opacity: 0.9;
}

/* ---- Pill ---- */

.shop-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px 9px;
  border-radius: 11px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

a.shop-pill,
a.shop-pill:hover {
  text-decoration: none;
}

.shop-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -6px rgba(15, 23, 42, 0.18);
}

.shop-pill--cool {
  background: #F3F7F3;
  border-color: #E5EDE6;
}

.shop-pill--heat {
  background: #FBF6EC;
  border-color: #E5EDE6;
}

.shop-pill--neutral {
  background: #FCFDFB;
  border-color: #E2E8E3;
}

.shop-pill__name {
  font-weight: 700;
  font-size: 0.92rem;
}

.shop-pill--cool .shop-pill__name { color: #8F6836; }
.shop-pill--heat .shop-pill__name { color: #8F6836; }
.shop-pill--neutral .shop-pill__name { color: #2F3A34; }

.shop-pill__tag {
  font-size: 0.75rem;
  font-weight: 600;
}

.shop-pill--cool .shop-pill__tag { color: #8F6836; }
.shop-pill--heat .shop-pill__tag { color: #8F6836; }
.shop-pill--neutral .shop-pill__tag { color: #607068; }

/* ---- Chip ---- */

.shop-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s ease;
}

a.shop-chip,
a.shop-chip:hover {
  text-decoration: none;
}

.shop-chip--cool {
  background: #fff;
  border-color: #E5EDE6;
  color: #8F6836;
}
.shop-chip--cool:hover { background: #F3F7F3; }

.shop-chip--heat {
  background: #fff;
  border-color: #E5EDE6;
  color: #8F6836;
}
.shop-chip--heat:hover { background: #FBF6EC; }

.shop-chip--neutral {
  background: #fff;
  border-color: #E2E8E3;
  color: #2F3A34;
}
.shop-chip--neutral:hover { background: #FCFDFB; }

/* Lock text color against the global a[href^="/go/"]:hover rule —
   same specificity-matching technique as the text-decoration fix above. */
a.shop-chip--cool,
a.shop-chip--cool:hover { color: #8F6836; }

a.shop-chip--heat,
a.shop-chip--heat:hover { color: #8F6836; }

a.shop-chip--neutral,
a.shop-chip--neutral:hover { color: #2F3A34; }



.shop-chip--commercial {
  background: #fff;
  border-color: var(--ss-shop-border);
  color: var(--ss-cedar-dark);
}

.shop-chip--commercial:hover {
  background: var(--ss-shop-hover);
  border-color: var(--ss-cedar);
  color: var(--ss-cedar-dark);
}

a.shop-chip--commercial,
a.shop-chip--commercial:hover {
  color: var(--ss-cedar-dark);
}


/* Lead-in label that sits above a chip row. */
.shop-chip-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #2F3A34;
  margin: 18px 0 8px;
}

.shop-chip-label:first-child {
  margin-top: 0;
}

@media (max-width: 480px) {
  .shop-pill-row,
  .shop-chip-row {
    gap: 10px;
  }
}

/* ===============================
   Shared Homepage / Methodology
================================ */

.home-hero {
  padding: 16px 0 4px;
}

.hero-kicker {
  margin: 0 0 8px;
  text-align: center;
  color: #8F6836;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-hero h1 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.button--primary {
  background: #1F4D3A;
  color: #fff;
  border-color: #1F4D3A;
}

.button--primary:hover {
  background: #17392C;
  color: #fff;
  border-color: #17392C;
}

.button--secondary {
  background: #fff;
  color: #1F4D3A;
  border-color: #C8D9CD;
}

.button--secondary:hover {
  background: #F3F7F3;
  color: #17392C;
  border-color: #AEC8B6;
}

.home-paths {
  margin-top: 42px;
}

.category-grid--paths {
  gap: 16px;
}

.category-card--static {
  border: 1px solid #D7E0DA;
  border-top: 4px solid #B88746;
}

.category-card--static:hover {
  background: #fff;
}

.category-card__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #8F6836;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.trust-callout {
  margin-top: 30px;
  background: #F3F7F3;
  border-color: #C8D9CD;
  border-left-color: #8F6836;
}

.decision-tools {
  margin-top: 45px;
}

.tool-status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.tool-status-card {
  position: relative;
  padding: 18px 18px 18px 54px;
  background: #fff;
  border: 1px solid #E2E8E3;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.04);
}

.tool-status-card__number {
  position: absolute;
  left: 16px;
  top: 20px;
  color: #8F6836;
  font-weight: 800;
  font-size: 0.82rem;
}

.tool-status-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.tool-status-card p {
  margin: 0;
  color: #607068;
  font-size: 0.92rem;
}

.home-authority strong {
  color: #2F3A34;
}

.methodology-hero {
  margin-bottom: 28px;
}

.methodology-summary {
  padding: 18px 20px;
  background: #F3F7F3;
  border-left: 4px solid #1F4D3A;
  border-radius: 8px;
}

.methodology-summary h2 {
  margin-top: 0;
}

.source-hierarchy {
  padding-left: 0;
  list-style: none;
  counter-reset: source-step;
}

.source-hierarchy li {
  position: relative;
  margin: 0 0 12px;
  padding: 14px 14px 14px 50px;
  background: #fff;
  border: 1px solid #E2E8E3;
  border-radius: 8px;
  counter-increment: source-step;
}

.source-hierarchy li::before {
  content: counter(source-step);
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1F4D3A;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.source-hierarchy strong,
.source-hierarchy span {
  display: block;
}

.source-hierarchy span {
  margin-top: 3px;
  color: #607068;
  font-size: 0.9rem;
  line-height: 1.45;
}

.methodology-note {
  margin: 20px 0 0;
  padding: 16px 18px;
  background: #FBF6EC;
  border-left: 4px solid #B88746;
  border-radius: 8px;
}

.methodology-note strong {
  color: #8F6836;
}

.methodology-note p {
  margin-bottom: 0;
}

.status-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.status-item {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #E2E8E3;
  border-left-width: 4px;
  border-radius: 8px;
}

.status-item h3 {
  margin: 0 0 5px;
  font-size: 0.9rem;
  letter-spacing: 0.015em;
}

.status-item p {
  margin: 0;
  color: #607068;
  font-size: 0.9rem;
}

.status-item--approved,
.status-item--verified {
  border-left-color: #1F4D3A;
}

.status-item--caution,
.status-item--adapter,
.status-item--specific {
  border-left-color: #8F6836;
}

.status-item--no {
  border-left-color: #9f1239;
}

.status-item--unknown {
  border-left-color: #607068;
}

.methodology-checklist {
  columns: 2;
  column-gap: 28px;
  padding-left: 20px;
}

.methodology-checklist li {
  break-inside: avoid;
  margin-bottom: 7px;
}

@media (max-width: 480px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .methodology-checklist {
    columns: 1;
  }
}

/* ===============================
   Electrical Trade Finder
================================ */
.finder-hero {
  margin-bottom: 22px;
}

.finder-tool {
  margin-top: 30px;
}

.finder-form {
  margin-top: 22px;
}

.field-help {
  display: block;
  margin-top: 5px;
  color: #607068;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
}

.finder-actions,
.finder-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.finder-actions {
  margin-top: 4px;
}

.finder-actions--utility {
  justify-content: space-between;
  gap: 12px 18px;
  padding-top: 2px;
}

.finder-auto-note {
  margin: 0;
  flex: 1 1 360px;
}

.finder-reset {
  appearance: none;
  border: 0;
  padding: 4px 0;
  background: transparent;
  color: #1F4D3A;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.finder-reset:hover {
  color: #8F6836;
}

.finder-results {
  margin-top: 24px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.finder-results-summary {
  padding: 20px;
  background: #F3F7F3;
  border: 1px solid #C8D9CD;
  border-left: 4px solid #1F4D3A;
  border-radius: 10px;
}

.finder-results-summary .result-big {
  color: #1F4D3A;
  font-size: 1.65rem;
}

.finder-warning {
  margin-top: 12px;
  padding: 13px 15px;
  background: #FBF6EC;
  border: 1px solid #E2CFB5;
  border-left: 4px solid #B88746;
  border-radius: 8px;
  color: #8F6836;
  font-size: 0.92rem;
  line-height: 1.55;
}

.finder-result-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.finder-result-card {
  padding: 18px;
  background: #fff;
  border: 1px solid #E2E8E3;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.05);
}

.finder-result-card--best {
  border: 2px solid #1F4D3A;
  box-shadow: 0 5px 16px rgba(14, 116, 144, 0.12);
}

.finder-result-card__topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.finder-rank {
  color: #8F6836;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.finder-status {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.finder-status--approved {
  background: #e8f3ed;
  color: #17633b;
  border: 1px solid #b6ddc7;
}

.finder-status--unknown {
  background: #EFF2EF;
  color: #607068;
  border: 1px solid #CBD6CF;
}

.finder-status--adapter {
  background: #FBF6EC;
  color: #8F6836;
  border: 1px solid #E2CFB5;
}

.finder-status--no {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

.finder-result-card h3 {
  margin: 0 0 4px;
  color: #1F4D3A;
  font-size: 1.15rem;
}

.finder-class {
  margin: 0 0 12px;
  color: #607068;
  font-size: 0.86rem;
  font-weight: 600;
}

.finder-note {
  margin: 10px 0 0;
  color: #607068;
  font-size: 0.9rem;
}

.finder-result-actions {
  margin-top: 15px;
}

.finder-result-actions .button {
  min-height: 39px;
  padding: 8px 13px;
  font-size: 0.86rem;
}

.finder-source-link {
  display: inline-flex;
  align-items: center;
  min-height: 39px;
  color: #1F4D3A;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.finder-source-link:hover {
  color: #17392C;
}

.finder-verification-note {
  margin: 14px 0 0;
  color: #607068;
  font-size: 0.82rem;
  text-align: center;
}

.finder-empty {
  padding: 20px;
  background: #FBF6EC;
  border: 1px solid #E2CFB5;
  border-left: 4px solid #B88746;
  border-radius: 10px;
}

.finder-empty .result-big {
  color: #8F6836;
  font-size: 1.45rem;
}

.finder-explanation {
  margin-top: 42px;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  min-width: 760px;
}

.source-links li {
  margin-bottom: 10px;
  line-height: 1.55;
}

.source-links a {
  font-weight: 700;
}

.tool-status-card--live {
  border-left: 4px solid #B88746;
}

.tool-status-card--live h3 a {
  color: #1F4D3A;
  text-decoration: none;
}

.tool-status-card--live h3 a:hover {
  color: #8F6836;
  text-decoration: underline;
}

.tool-status-card__live-label {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 6px;
  background: #FBF6EC;
  color: #8F6836;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .finder-actions,
  .finder-result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .finder-result-actions .button {
    width: 100%;
  }

  .finder-actions--utility {
    display: flex;
  }

  .finder-source-link {
    min-height: auto;
    padding: 5px 0;
  }

  .finder-result-card__topline {
    align-items: flex-start;
  }

  .finder-status {
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 10px;
  }

  .header-nav {
    white-space: nowrap;
    font-size: 0.78rem;
  }
}

.finder-actions button {
  font: inherit;
  cursor: pointer;
}

/* ===============================
   Compatibility Finder Controls
================================ */
.finder-direction {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.finder-direction legend {
  margin-bottom: 10px;
  color: #2F3A34;
  font-weight: 800;
}

.finder-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.finder-mode-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 70px;
  padding: 12px 13px;
  background: #fff;
  border: 1px solid #CBD6CF;
  border-radius: 9px;
  cursor: pointer;
}

.finder-mode-option:hover {
  border-color: #8F6836;
  background: #FCFDFB;
}

.finder-mode-option input {
  width: auto;
  margin: 4px 0 0;
  flex: 0 0 auto;
  accent-color: #1F4D3A;
}

.finder-mode-option span {
  display: block;
  color: #2F3A34;
  font-weight: 750;
  line-height: 1.35;
}

.finder-mode-option small {
  display: block;
  margin-top: 3px;
  color: #607068;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
}

.finder-mode-option:has(input:checked) {
  background: #F3F7F3;
  border-color: #1F4D3A;
  box-shadow: inset 0 0 0 1px #1F4D3A;
}

.finder-warning--neutral {
  background: #F3F7F3;
  border-color: #C8D9CD;
  border-left-color: #8F6836;
  color: #2F3A34;
}

.finder-result-actions--sources {
  margin-top: 10px;
}

.source-separator {
  margin: 0 5px;
  color: #87968E;
}

.category-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.category-card__actions .button {
  margin: 0;
}

@media (max-width: 620px) {
  .finder-mode-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-inner {
    align-items: flex-start;
  }

  .header-nav {
    max-width: 165px;
    white-space: normal;
    text-align: right;
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .header-nav span {
    margin: 0 1px;
  }

  .category-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .category-card__actions .button {
    width: 100%;
  }
}

/* ===============================
   Electrical trade content / model pages
================================ */

.content-hero {
  margin-bottom: 26px;
}

.content-card-grid,
.comparison-card-grid,
.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0 26px;
}

.content-card,
.comparison-card,
.spec-card {
  background: #fff;
  border: 1px solid #E2E8E3;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.04);
}

/* Prevent long technical labels/values from escaping narrow spec cards. */
.spec-card {
  min-width: 0;
}

.content-card {
  border-top: 3px solid #B88746;
}

.content-card__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #8F6836;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.content-card h3,
.comparison-card h3 {
  margin-top: 0;
}

.content-card h3 a {
  color: #1F4D3A;
  text-decoration: none;
}

.content-card h3 a:hover {
  color: #8F6836;
  text-decoration: underline;
}

.content-card p:last-child,
.comparison-card p:last-child,
.comparison-card ul:last-child,
.spec-card small:last-child {
  margin-bottom: 0;
}

.comparison-card {
  border-left: 4px solid #1F4D3A;
}

.comparison-card:nth-child(even) {
  border-left-color: #8F6836;
}

.comparison-card ul {
  padding-left: 20px;
}

.comparison-card li {
  margin-bottom: 7px;
}

.spec-card span,
.spec-card strong,
.spec-card small {
  display: block;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.spec-card span {
  color: #607068;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-card strong {
  margin: 5px 0 6px;
  color: #1F4D3A;
  font-size: 1.15rem;
}

.spec-card small {
  color: #607068;
  line-height: 1.45;
}

@media (min-width: 700px) {
  .content-card-grid,
  .comparison-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===============================
   Compatibility finder / calculator controls
================================ */
.finder-status--caution {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}

.finder-result-card .finder-result-actions--sources {
  align-items: center;
}

.finder-result-card .finder-result-actions--sources .button {
  margin-left: auto;
}

@media (max-width: 620px) {
  .finder-result-card .finder-result-actions--sources .button {
    margin-left: 0;
  }
}



/* Keep long technical strings contained without splitting normal words
   into awkward fragments. */
.spec-card {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}





/* ===============================
   Horizontal calculator result cards
   Full-width rows prevent manufacturer/model labels from becoming
   narrow vertical columns. Static content spec cards remain 1-up/2-up.
================================ */

.finder-results .spec-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.finder-results .spec-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(120px, 0.45fr) minmax(0, 1.65fr);
  align-items: center;
  column-gap: 22px;
  row-gap: 4px;
  padding: 16px 18px;
}

.finder-results .spec-card h3 {
  margin: 0;
  color: var(--ss-forest);
  font-size: 1rem;
  line-height: 1.3;
}

.finder-results .spec-card strong {
  margin: 0;
  white-space: nowrap;
  font-size: 1.15rem;
}

.finder-results .spec-card small {
  margin: 0;
  line-height: 1.45;
}

/* On narrower screens the card remains full width, but its contents stack
   naturally rather than forcing three compressed columns. */
@media (max-width: 760px) {
  .finder-results .spec-card {
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 5px;
  }

  .finder-results .spec-card strong {
    white-space: normal;
  }
}

/* ===============================
   Selector tool layout
================================ */

.tool-input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}


.result-matches {
  margin-top: 24px;
}

.result-matches > h2,
.result-matches > h3 {
  text-align: left;
}


@media (max-width: 700px) {
  .tool-input-grid {
    grid-template-columns: 1fr;
  }
}


/* Greenhouse comparison: contain wide tables without widening result cards. */
body[data-tool="greenhouse-compare"] .calculator-result,
body[data-tool="greenhouse-compare"] .result-card,
body[data-tool="greenhouse-compare"] .comparison-table-scroll,
body[data-tool="greenhouse-compare"] .comparison-card-grid,
body[data-tool="greenhouse-compare"] .comparison-card {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

body[data-tool="greenhouse-compare"] .comparison-card-grid {
  width: 100%;
}

.comparison-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 10px;
}

.comparison-scroll-note {
  flex: 1 1 230px;
  margin: 0;
  font-size: 0.86rem;
}

.comparison-print-button {
  flex: 0 0 auto;
}

.comparison-toolbar-actions,
.comparison-view-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.comparison-toolbar-actions {
  justify-content: flex-end;
}

.comparison-view-button[aria-pressed="true"] {
  background: #1F4D3A;
  color: #fff;
  border-color: #1F4D3A;
}

.comparison-view-button[aria-pressed="true"]:hover {
  background: #17392C;
  color: #fff;
  border-color: #17392C;
}

.comparison-view-status {
  margin: 0 0 10px;
  font-size: 0.86rem;
}

@media (max-width: 700px) {
  body[data-tool="greenhouse-compare"] .comparison-table th:first-child,
  body[data-tool="greenhouse-compare"] .comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff;
    box-shadow: 1px 0 0 #E2E8E3;
  }

  body[data-tool="greenhouse-compare"] .comparison-table thead th:first-child {
    z-index: 2;
    background: #F3F7F3;
  }
}

@media (max-width: 520px) {
  .guide-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guide-cta-actions .button,
  .comparison-print-button {
    width: 100%;
  }

  .comparison-toolbar-actions,
  .comparison-view-toggle {
    width: 100%;
  }

  .comparison-view-toggle .comparison-view-button {
    flex: 1 1 0;
  }
}

@media print {
  body[data-tool="greenhouse-compare"] #header,
  body[data-tool="greenhouse-compare"] #footer,
  body[data-tool="greenhouse-compare"] main.container > .hint,
  body[data-tool="greenhouse-compare"] main.container > .hero,
  body[data-tool="greenhouse-compare"] main.container > section:not(.finder-tool),
  body[data-tool="greenhouse-compare"] .finder-tool > h2,
  body[data-tool="greenhouse-compare"] .finder-form > .tool-input-grid,
  body[data-tool="greenhouse-compare"] .finder-actions--utility,
  body[data-tool="greenhouse-compare"] .comparison-toolbar,
  body[data-tool="greenhouse-compare"] .finder-result-actions {
    display: none !important;
  }

  body[data-tool="greenhouse-compare"] main.container {
    max-width: none;
    margin: 0;
    padding: 0;
  }

  body[data-tool="greenhouse-compare"] .finder-tool,
  body[data-tool="greenhouse-compare"] .finder-form,
  body[data-tool="greenhouse-compare"] .finder-results,
  body[data-tool="greenhouse-compare"] .result-card {
    margin: 0;
    padding: 0;
    box-shadow: none;
  }

  body[data-tool="greenhouse-compare"] .comparison-table-scroll {
    overflow: visible;
  }

  body[data-tool="greenhouse-compare"] .comparison-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: 8.5pt;
  }

  body[data-tool="greenhouse-compare"] .comparison-table th,
  body[data-tool="greenhouse-compare"] .comparison-table td {
    padding: 5px;
    overflow-wrap: anywhere;
  }

  body[data-tool="greenhouse-compare"] .comparison-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-tool="greenhouse-compare"] .comparison-card {
    break-inside: avoid;
    box-shadow: none;
  }
}

/* ===============================
   Greenhouse Layout Planner
   Scoped to the Batch 9 planner so shared tool/result styles remain unchanged.
================================ */
body[data-tool="greenhouse-layout-planner"] .layout-plan {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #D7E0DA;
  border-radius: 10px;
  background: #F3F7F3;
}

body[data-tool="greenhouse-layout-planner"] .layout-plan__length {
  margin-bottom: 10px;
  color: #607068;
  font-size: 0.86rem;
  font-weight: 700;
}

body[data-tool="greenhouse-layout-planner"] .layout-plan__row {
  display: flex;
  min-height: 150px;
  border: 2px solid #1F4D3A;
  background: #fff;
  overflow: hidden;
}

body[data-tool="greenhouse-layout-planner"] .layout-plan-segment {
  display: flex;
  min-width: 52px;
  padding: 12px 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

body[data-tool="greenhouse-layout-planner"] .layout-plan-segment + .layout-plan-segment {
  border-left: 1px solid #D7E0DA;
}

body[data-tool="greenhouse-layout-planner"] .layout-plan-segment--grow {
  background: #E7F1E8;
  color: #17392C;
}

body[data-tool="greenhouse-layout-planner"] .layout-plan-segment--aisle {
  background: #F7F4EE;
  color: #6D5536;
}

body[data-tool="greenhouse-layout-planner"] .layout-plan-segment span {
  font-weight: 800;
}

body[data-tool="greenhouse-layout-planner"] .layout-plan-segment small {
  margin-top: 4px;
  color: inherit;
  opacity: 0.84;
}

body[data-tool="greenhouse-layout-planner"] .layout-plan__reserve {
  margin-top: 10px;
  padding: 9px 10px;
  border: 1px dashed #B7C4BB;
  border-radius: 8px;
  background: #fff;
  color: #607068;
  font-size: 0.86rem;
}

@media (max-width: 620px) {
  body[data-tool="greenhouse-layout-planner"] .layout-plan {
    padding: 12px;
  }

  body[data-tool="greenhouse-layout-planner"] .layout-plan__row {
    min-height: 120px;
  }

  body[data-tool="greenhouse-layout-planner"] .layout-plan-segment {
    min-width: 38px;
    padding: 10px 4px;
    font-size: 0.78rem;
  }

  body[data-tool="greenhouse-layout-planner"] .layout-plan-segment small {
    font-size: 0.7rem;
  }
}

