/*
Theme Name: The Off Grid Shop
Theme URI: https://theoffgridshop.co.uk
Author: The Off Grid Shop
Author URI: https://theoffgridshop.co.uk
Description: Custom theme for The Off Grid Shop — UK-based off-grid solar & electrical systems supplier. Victron Energy authorised dealer. Built from approved homepage prototype.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.1
License: Proprietary
License URI: https://theoffgridshop.co.uk
Text Domain: togs

Design System: Barlow Condensed / Barlow, amber/navy/cream palette with victron-blue accent.
*/

/* ===== DESIGN SYSTEM TOKENS ===== */
:root {
  /* Colours */
  --amber: #F5A623;
  --amber-dark: #C48A0E;
  --amber-glow: rgba(245, 166, 35, 0.25);
  --navy: #0D1B2A;
  --navy-mid: #152236;
  --navy-light: #1B2D44;
  --victron-blue: #4BA3E3;
  --text-light: #C8D4E0;
  --text-muted: #8A9BB0;
  --text-dark: #2A3040;
  --text-dark-muted: #5A6270;
  --white: #FFFFFF;
  --cream: #F5F3EF;
  --cream-border: #E8E4DD;
  --border: var(--cream-border);
  --heading-font: var(--font-display);

  /* Category icon colours */
  --cat-campervan: #E8913A;
  --cat-overlander: #5B8C3E;
  --cat-boat: #4BA3E3;
  --cat-shed: #8B6E52;
  --cat-upgrade: #0D1B2A;

  /* Status / state colours */
  --status-error:      #C0392B;
  --status-success:    #2E7D32;
  --status-success-bg: #E8F5E9;
  --status-info:       #4BA3E3; /* victron-blue, aliased for state semantics */

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  /* Layout */
  --max-width: 1400px;
  --section-padding: 4rem 2rem;
  --card-radius: 12px;
  --btn-radius: 4px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 100;
}
.announcement-bar span { display: flex; align-items: center; gap: 0.4rem; }
.announcement-bar .sep { opacity: 0.4; }

/* ===== NAV — LIGHT THEME ===== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-border);
  padding: 0 2rem;
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--amber);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  height: 18px;
  clip-path: polygon(0% 100%, 30% 30%, 46% 55%, 70% 10%, 100% 100%);
  background: var(--cream);
  transition: background 0.4s;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-the {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
  transition: color 0.4s;
}
.logo-name {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.4s;
}
.logo-name .grid-text {
  color: var(--amber-dark);
  transition: color 0.4s;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-dark-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--navy); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-dark-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-phone svg { width: 16px; height: 16px; }
.nav-phone:hover { color: var(--navy); }

.nav-trade-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(13,27,42,0.2);
  padding: 0.45rem 1rem;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.nav-trade-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber);
  background: var(--navy);
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(13,27,42,0.3);
}

.nav-cart {
  position: relative;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.4s;
}
.nav-cart svg { width: 22px; height: 22px; }
.nav-cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 101;
}
.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger-lines span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.active .hamburger-lines span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger-lines span:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-lines span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile slide-out menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--cream);
  z-index: 100;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 5rem 1.5rem 2rem;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .mobile-menu-cta {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber);
  background: var(--navy);
  padding: 0.8rem 1.5rem;
  border-radius: var(--btn-radius);
  margin-bottom: 1.5rem;
}
.mobile-menu .mobile-nav-links {
  list-style: none;
  margin-bottom: 1.5rem;
}
.mobile-menu .mobile-nav-links li { border-bottom: 1px solid var(--cream-border); }
.mobile-menu .mobile-nav-links a {
  display: block;
  padding: 0.85rem 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
}
.mobile-menu .mobile-nav-links a:hover { color: var(--amber-dark); }
.mobile-menu .mobile-nav-links a.guides-link {
  color: var(--amber-dark);
  font-weight: 600;
}

.mobile-menu .mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
}
.mobile-menu .mobile-phone svg { width: 18px; height: 18px; }

.mobile-menu .mobile-trade-btn {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid rgba(13,27,42,0.2);
  padding: 0.7rem 1.5rem;
  border-radius: var(--btn-radius);
  margin-top: 1rem;
}

/* ===== MEGA MENU ===== */
/* Overlay */
.mega-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.45);
  z-index: 98;
}
.mega-menu-overlay.mm-visible { display: block; }

/* Wrapper */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--cream, #faf9f6);
  border-top: 3px solid var(--amber);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.18);
}
.mega-menu.mm-open { display: block; }

/* Inner layout */
.mega-menu-inner {
  display: flex;
  max-width: var(--site-max-width, 1240px);
  margin: 0 auto;
  padding: 2rem;
  gap: 0;
}

/* Sidebar */
.mm-sidebar {
  flex: 0 0 220px;
  border-right: 1px solid var(--cream-border, #e8e4d9);
  padding-right: 1.5rem;
}
.mm-sidebar-section + .mm-sidebar-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-border, #e8e4d9);
}
.mm-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark, #1a1a2e);
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}
.mm-sidebar-item:hover,
.mm-sidebar-item.mm-active {
  background: rgba(13,27,42,0.05);
  color: var(--navy);
}
.mm-victron-item { font-weight: 700; color: var(--navy); }
.mm-victron-item:hover,
.mm-victron-item.mm-active { background: rgba(0, 95, 163, 0.08); }

/* Content area */
.mm-content {
  flex: 1;
  padding-left: 2rem;
  overflow: hidden;
}

/* Panels */
.mm-panel { display: none; }
.mm-panel.mm-panel-active { display: block; }
.mm-panel-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--amber);
}
.mm-heading-victron { border-bottom-color: var(--victron-blue, #005fa3); }

/* Image grid */
.mm-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.mm-image-card {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cream-border, #e8e4d9);
  transition: box-shadow 0.15s, transform 0.15s;
}
.mm-image-card:hover {
  box-shadow: 0 4px 16px rgba(13,27,42,0.12);
  transform: translateY(-2px);
}
.mm-image-holder,
.mm-image-holder img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--white, #fff);
  display: block;
}
.mm-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  text-align: center;
}
.mm-image-placeholder span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-dark-muted, #666);
  line-height: 1.3;
}
.mm-image-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark, #1a1a2e);
  padding: 0.4rem 0.5rem;
  background: var(--cream, #faf9f6);
  line-height: 1.3;
}

/* Kit grid */
.mm-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.mm-kit-card {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--cream-border, #e8e4d9);
  overflow: hidden;
  transition: box-shadow 0.15s, transform 0.15s;
}
.mm-kit-card:hover {
  box-shadow: 0 4px 16px rgba(13,27,42,0.12);
  transform: translateY(-2px);
}
.mm-kit-image {
  aspect-ratio: 4 / 3;
  background: var(--white, #fff);
  overflow: hidden;
}
.mm-kit-image img { width: 100%; height: 100%; object-fit: contain; }
.mm-kit-placeholder { font-size: 0.7rem; color: var(--text-dark-muted); padding: 0.5rem; display: block; }
.mm-kit-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.4rem 0.5rem 0;
  line-height: 1.3;
}
.mm-kit-spec { font-family: var(--font-body); font-size: 0.7rem; color: var(--text-dark-muted); padding: 0.2rem 0.5rem; }
.mm-kit-price { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; color: var(--green, #2a7d4f); padding: 0.2rem 0.5rem 0.5rem; }

/* Text grid */
.mm-text-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.mm-text-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white, #fff);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.mm-text-link:hover { background: rgba(13,27,42,0.05); border-color: var(--amber); color: var(--navy); }

/* View all link */
.mm-view-all {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.mm-view-all:hover { border-bottom-color: var(--amber-dark); }
.mm-view-all-victron { color: var(--victron-blue, #005fa3); }
.mm-view-all-victron:hover { border-bottom-color: var(--victron-blue, #005fa3); }

/* Nudge card */
.mm-nudge-card {
  margin-top: 1.5rem;
  background: var(--navy);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  max-width: 320px;
}
.mm-nudge-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.35rem;
}
.mm-nudge-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(250,249,246,0.8);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.mm-nudge-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.mm-nudge-link:hover { border-bottom-color: var(--amber); }

/* Guides mega menu */
.mm-guides-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  max-width: var(--site-max-width, 1240px);
  margin: 0 auto;
}
.mm-guide-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--amber-dark);
}
.mm-guide-heading a { color: inherit; text-decoration: none; }
.mm-guide-heading a:hover { color: var(--amber-dark); }
.mm-guide-placeholder { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-dark-muted); font-style: italic; margin-bottom: 0.75rem; }
.mm-guide-view-all { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; color: var(--amber-dark); text-decoration: none; }
.mm-guide-view-all:hover { text-decoration: underline; }

/* Nav chevron animation */
.nav-chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.has-mega-menu.mm-open .nav-chevron { transform: rotate(180deg); }

/* Mobile accordion */
.mobile-accordion { border-bottom: 1px solid rgba(13,27,42,0.08); }
.mobile-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}
.mobile-accordion-chevron { transition: transform 0.2s ease; flex-shrink: 0; color: var(--text-dark-muted); }
.mobile-accordion.mm-open .mobile-accordion-chevron { transform: rotate(180deg); }
.mobile-accordion-panel { display: none; padding: 0 1.5rem 0.75rem; }
.mobile-accordion-panel.mm-open { display: block; }
.mobile-accordion-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(13,27,42,0.05);
}
.mobile-accordion-link:last-child { border-bottom: none; }
.mobile-accordion-link:hover { color: var(--amber-dark); }
.mobile-victron-link { font-weight: 700; color: var(--navy); }
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(13,27,42,0.08);
}
.mobile-menu-link:hover { color: var(--amber-dark); }
.mobile-trade-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1.5px solid rgba(13,27,42,0.2);
  border-radius: var(--btn-radius);
  margin: 1rem 1.5rem;
  padding: 0.7rem 1.5rem;
  justify-content: center;
}

/* Mobile smart search inside accordion */
.mobile-smart-search {
  padding: 12px 20px 8px 20px;
  border-bottom: 1px solid var(--cream);
}
.mobile-search-form {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--cream-border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}
.mobile-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text-dark);
  background: transparent;
}
.mobile-search-input::placeholder {
  color: var(--text-dark-muted);
}
.mobile-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--amber);
  border: none;
  cursor: pointer;
  color: var(--navy);
  flex-shrink: 0;
}

/* Section labels inside accordion */
.mobile-accordion-label {
  padding: 12px 20px 4px 20px;
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-dark);
}

/* TOGS brand link icon */
.mobile-togs-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--amber-dark);
}
.mobile-togs-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Shop All Products link — slightly different styling */
.mobile-shop-all {
  font-weight: 600;
  color: var(--text-dark-muted);
  border-top: 1px solid var(--cream-border);
  margin-top: 4px;
  padding-top: 12px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.6) 35%, rgba(13,27,42,0.15) 65%, transparent 100%),
    linear-gradient(to top, rgba(13,27,42,0.95) 0%, transparent 40%),
    url('assets/images/Solar_panels_van_hero.png') center bottom/cover no-repeat;
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-left { padding-bottom: 0; max-width: 680px; }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease-out 0.4s both;
}
.hero-headline .line-amber {
  color: var(--amber);
  display: block;
}
.hero-headline .line-thin {
  font-weight: 400;
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease-out 0.5s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease-out 0.6s both;
}

/* ===== CTA BUTTONS ===== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--amber);
  padding: 0.8rem 1.8rem;
  border-radius: var(--btn-radius);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.15) 100%);
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--amber-glow);
}
.cta-primary .arrow { transition: transform 0.3s; }
.cta-primary:hover .arrow { transform: translateX(4px); }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 0.8rem 1.8rem;
  border-radius: var(--btn-radius);
  text-decoration: none;
  transition: all 0.3s;
}
.cta-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
  padding: 0.65rem 2rem;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}
.trust-item .trust-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.trust-item .trust-icon svg { width: 18px; height: 18px; }
.trust-item.victron-item {
  color: var(--victron-blue);
  font-weight: 600;
}
.trust-star { color: #00B67A; }

/* ===== LIGHT SECTIONS ===== */
.light-sections { background: var(--cream); }

/* ===== BUILDER SECTION ===== */
.builder-section {
  background: var(--cream);
  padding: 1.75rem 2rem 2.5rem;
  border-bottom: 1px solid var(--cream-border);
}
.builder-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.builder-heading {
  text-align: center;
  margin-bottom: 1.25rem;
}
.builder-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.builder-section-sub {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  font-weight: 400;
}
.builder-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.builder-card {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--card-radius);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.builder-card:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(245,166,35,0.12);
  transform: translateY(-2px);
}
.builder-card.active {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px var(--amber);
}
.builder-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.3rem;
  transition: all 0.25s;
}
.builder-card-icon svg { width: 26px; height: 26px; }
.builder-card[data-type="campervan"] .builder-card-icon { background: var(--cat-campervan); }
.builder-card[data-type="overlander"] .builder-card-icon { background: var(--cat-overlander); }
.builder-card[data-type="boat"] .builder-card-icon { background: var(--cat-boat); }
.builder-card[data-type="shed"] .builder-card-icon { background: var(--cat-shed); }
.builder-card[data-type="upgrade"] .builder-card-icon { background: var(--cat-upgrade); }
.builder-card-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.builder-card-hint {
  font-size: 0.68rem;
  color: var(--text-dark-muted);
  font-weight: 400;
  line-height: 1.3;
}
.builder-card-count {
  font-size: 0.7rem;
  color: var(--text-dark-muted);
  margin-top: 0.1rem;
}
.builder-card-chevron {
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s;
  color: var(--amber);
}
.builder-card:hover .builder-card-chevron,
.builder-card.active .builder-card-chevron {
  opacity: 1;
  transform: translateY(0);
}
.builder-card-badge {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--amber);
  color: var(--navy);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

/* Expandable marketing panel */
.builder-panel-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.75rem;
}
.builder-panel-wrapper.open { max-height: 400px; }
.builder-panel {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-top: 3px solid var(--amber);
  border-radius: var(--card-radius);
  padding: 1.75rem 2rem;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
}
.builder-panel-img {
  border-radius: 8px;
  overflow: hidden;
  min-height: 200px;
}
.builder-panel-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.builder-panel-wrapper.open .builder-panel { opacity: 1; }
.builder-panel-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.builder-panel-body {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 720px;
}
.builder-panel-proof {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}
.builder-panel-proof-item {
  font-size: 0.78rem;
  color: var(--text-dark-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.builder-panel-proof-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.builder-panel-bottom {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.builder-panel-steps {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  line-height: 1.4;
}
.panel-reassurance {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--cream-border);
}
.panel-reassurance svg { flex-shrink: 0; width: 14px; height: 14px; }
.panel-reassurance span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  letter-spacing: 0.01em;
}
.builder-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.builder-panel-cta:hover {
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
  transform: translateY(-1px);
}
.builder-panel-cta svg { width: 16px; height: 16px; transition: transform 0.2s; }
.builder-panel-cta:hover svg { transform: translateX(3px); }

/* ===== SECTION TITLES ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-dark-muted);
  font-weight: 300;
  margin-top: 0.8rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PRODUCTS ===== */
.products-section {
  padding: 2.5rem 2rem 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: #D0CBC3;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.product-img {
  width: 100%;
  aspect-ratio: 1;
  background: #F0EDE8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--btn-radius);
  background: var(--victron-blue);
  color: var(--white);
}
.product-badge.kit { background: var(--amber); color: var(--navy); }
.product-info { padding: 1rem 1.2rem 1.2rem; }
.product-brand {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--victron-blue);
  margin-bottom: 0.3rem;
}
.product-brand.own { color: var(--amber-dark); }
.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.product-spec {
  font-size: 0.78rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.8rem;
}
.product-stock {
  font-size: 0.72rem;
  font-weight: 500;
  color: #5B8C3E;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}
.product-stock::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5B8C3E;
  flex-shrink: 0;
}
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
}
.product-price .from {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-dark-muted);
}
.add-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.add-btn:hover {
  background: var(--amber-dark);
  transform: scale(1.08);
}

/* ===== AI DESIGN TOOL ===== */
.design-tool-section {
  padding: 5rem 2rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.design-tool-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(245,166,35,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(75,163,227,0.04) 0%, transparent 70%);
}
.design-tool-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  background: var(--navy-mid);
  border: 2px solid var(--amber);
  border-radius: 20px;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.design-tool-inner::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: var(--amber);
  opacity: 0.08;
  z-index: 0;
}
.dt-left, .dt-right { position: relative; z-index: 1; }
.dt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.dt-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1rem;
}
.dt-title .amber { color: var(--amber); }
.dt-body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 460px;
}
.dt-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--amber);
  padding: 1.1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.dt-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.15) 100%);
}
.dt-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--amber-glow);
}
.dt-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.dt-step {
  background: rgba(13,27,42,0.6);
  border: 1px solid rgba(200,212,224,0.06);
  border-radius: var(--card-radius);
  padding: 1.5rem;
}
.dt-step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--amber);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.dt-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.dt-step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.reviews-score { display: flex; align-items: center; gap: 1rem; }
.reviews-big-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  color: var(--amber-dark);
  line-height: 1;
}
.reviews-meta .stars { color: var(--amber); font-size: 1.2rem; letter-spacing: 2px; }
.reviews-meta .reviews-count { font-size: 0.85rem; color: var(--text-dark-muted); margin-top: 0.2rem; }
.trustpilot-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #00B67A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--card-radius);
  padding: 1.8rem;
}
.review-stars { color: var(--amber-dark); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-text {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.review-author { font-size: 0.8rem; font-weight: 600; color: var(--text-dark-muted); }
.review-author .author-type { font-weight: 400; color: var(--amber-dark); }

/* ===== TRADE BANNER ===== */
.trade-section {
  padding: 0 2rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.trade-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(75,163,227,0.2);
  border-radius: 16px;
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.trade-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--victron-blue), var(--amber));
}
.trade-left .trade-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--victron-blue);
  margin-bottom: 0.5rem;
}
.trade-left .trade-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.trade-left .trade-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}
.trade-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--victron-blue);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
}
.trade-cta:hover {
  background: var(--victron-blue);
  color: var(--navy);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #070E17;
  border-top: 1px solid rgba(200,212,224,0.06);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(200,212,224,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GENERIC PAGE CONTENT ===== */
.page-content {
  background: var(--cream);
  padding: 4rem 2rem;
}
.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-dark);
}
.page-content-inner h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.page-content-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.page-content-inner h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.page-content-inner p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.page-content-inner a { color: var(--amber-dark); text-decoration: underline; }
.page-content-inner a:hover { color: var(--amber); }
.page-content-inner ul, .page-content-inner ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}
.page-content-inner li { margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.6; }
.page-content-inner img { border-radius: 8px; margin: 1.5rem 0; }

/* ===== 404 PAGE ===== */
.error-404-content {
  background: var(--cream);
  padding: 6rem 2rem;
  text-align: center;
}
.error-404-content h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 6rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-404-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}
.error-404-content p {
  font-size: 1rem;
  color: var(--text-dark-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-404-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SEARCH FORM ===== */
.search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
}
.search-form .search-field {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--btn-radius);
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
}
.search-form .search-field:focus { border-color: var(--amber); }
.search-form .search-submit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--amber);
  color: var(--navy);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all 0.3s;
}
.search-form .search-submit:hover {
  background: var(--amber-dark);
}

/* ===== WooCommerce Basic Support ===== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: var(--font-body);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--btn-radius);
}
.woocommerce-message {
  background: rgba(91,140,62,0.1);
  border: 1px solid #5B8C3E;
  color: var(--text-dark);
}
.woocommerce-info {
  background: rgba(75,163,227,0.1);
  border: 1px solid var(--victron-blue);
  color: var(--text-dark);
}
.woocommerce-error {
  background: rgba(220,53,69,0.1);
  border: 1px solid #DC3545;
  color: var(--text-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; padding: 0 2rem 3rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .design-tool-inner { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trade-banner { flex-direction: column; text-align: center; padding: 2.5rem 2rem; }
}

@media (max-width: 900px) {
  .builder-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .announcement-bar { font-size: 0.7rem; gap: 1rem; }
  .announcement-bar .hide-mobile { display: none; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { min-height: 75vh; }
  .hero-content { padding: 0 1.25rem 2.5rem; }
  .hero-headline { font-size: clamp(2.8rem, 10vw, 4rem); }
  .trust-bar-inner { gap: 0.75rem 1.5rem; justify-content: center; }
  .trust-item { font-size: 0.68rem; }
  .trust-bar { padding: 0.5rem 1rem; }
  .builder-row { grid-template-columns: 1fr; }
  .builder-panel { grid-template-columns: 1fr; }
  .builder-panel-img { height: 160px; }
  .builder-panel-wrapper.open { max-height: 800px; }
  .products-section { padding: 3rem 1.25rem 4rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-info { padding: 0.8rem; }
  .product-name { font-size: 0.88rem; }
  .builder-card { padding: 1rem 0.75rem 0.85rem; }
  .builder-card-icon { width: 44px; height: 44px; }
  .builder-card-icon svg { width: 22px; height: 22px; }
  .builder-card-label { font-size: 0.8rem; }
  .builder-card-hint { font-size: 0.65rem; }
  .builder-card-count { font-size: 0.65rem; }
  .builder-panel { padding: 1.25rem 1rem; }
  .nav-trade-btn { font-size: 0.65rem; padding: 0.35rem 0.6rem; }
  .nav-phone { display: none !important; }
  .nav-cta { font-size: 0.65rem; padding: 0.4rem 0.7rem; }
  .nav-inner { height: 54px; }
  .logo-name { font-size: 1rem; }
  .logo-icon { width: 34px; height: 34px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .design-tool-section { padding: 3rem 1.25rem; }
  .design-tool-inner { padding: 2rem 1.5rem; }
  .dt-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .hero-ctas { flex-direction: column; }
  .cta-primary, .cta-ghost { justify-content: center; text-align: center; }
}

@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; gap: 0.75rem; }
}

@media (max-width: 400px) {
  .nav-trade-btn { display: none; }
  .nav-cta { font-size: 0.6rem; padding: 0.35rem 0.6rem; }
  .logo-name { font-size: 0.9rem; }
}

/* =============================================
   SHOP / CATEGORY ARCHIVE PAGES
   archive-product.php styles — Session 8
   ============================================= */

.shop-page { background: var(--cream); min-height: 60vh; }

.shop-breadcrumb { padding: 1rem 2rem 0; max-width: 1400px; margin: 0 auto 1rem; }
.shop-breadcrumb-inner { font-size: 0.78rem; color: var(--text-dark-muted); }
.shop-breadcrumb a { color: var(--amber-dark); text-decoration: none; }
.shop-breadcrumb a:hover { text-decoration: underline; }
.shop-breadcrumb .sep { margin: 0 0.4rem; color: var(--cream-border); }
.shop-breadcrumb .current { color: var(--text-dark-muted); }

.shop-search-grid {
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 0 0.15rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
}
.shop-help-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-help-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 0.3rem;
}
.shop-help-body {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0 0 0.6rem;
}
.shop-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  align-self: flex-start;
  background: var(--amber);
  color: var(--navy);
  border-radius: 4px;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.shop-help-btn:hover {
  background: var(--amber-dark);
}

.shop-search-card {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-left: 3px solid var(--amber);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.shop-search-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.shop-search-head svg {
  flex-shrink: 0;
  color: var(--amber-dark);
}
.shop-search-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-dark);
}
.shop-search-helper {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.shop-search-form { display: flex; gap: 0.5rem; }
.shop-search-input {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 6px;
  padding: 0.9rem 1.2rem;
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  outline: none;
}
.shop-search-input:focus { border-color: var(--amber); }
.shop-search-input::placeholder { color: var(--text-dark-muted); }
.shop-search-btn {
  width: 38px;
  height: 38px;
  background: var(--amber);
  border-radius: 6px;
  border: none;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.shop-search-btn:hover { background: var(--amber-dark); }
.shop-search-pills { display: flex; gap: 0.4rem; margin-top: 0.5rem; flex-wrap: wrap; }
.search-pill { background: var(--cream); border: 1px solid var(--cream-border); border-radius: 20px; padding: 0.2rem 0.6rem; font-size: 0.65rem; color: var(--text-dark-muted); text-decoration: none; transition: all 0.2s; }
.search-pill { cursor: pointer; }
.search-pill:hover { border-color: var(--amber); color: var(--amber-dark); }

.shop-heading-row { padding: 0 2rem; max-width: 1400px; margin: 0 auto 0.25rem; }
.shop-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: 0.02em; color: var(--navy); line-height: 1; margin: 0; }
.shop-desc { font-size: 0.88rem; color: var(--text-dark-muted); margin-top: 0.35rem; max-width: 600px; }
.shop-desc p { margin: 0; }

.shop-layout { --shop-sidebar-col: 220px; --shop-col-gap: 1.5rem; padding: 0 2rem 3rem; max-width: 1400px; margin: 0 auto; }
.shop-toolbar-row { padding-left: calc(var(--shop-sidebar-col) + var(--shop-col-gap)); margin: 0 0 0.75rem; }
.shop-layout-inner { display: grid; grid-template-columns: var(--shop-sidebar-col) minmax(0, 1fr); column-gap: var(--shop-col-gap); align-items: start; }
.shop-main { align-self: start; min-width: 0; margin-left: 0; padding-left: 0; }

.shop-filter-toggle { display: none; align-items: center; gap: 0.5rem; background: var(--white); border: 1.5px solid var(--cream-border); border-radius: 8px; padding: 0.6rem 1rem; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); cursor: pointer; width: 100%; justify-content: center; margin-bottom: 1rem; transition: border-color 0.2s; }
.shop-filter-toggle:hover { border-color: var(--amber); }
.shop-filter-toggle .filter-count { background: var(--amber); color: var(--navy); font-size: 0.65rem; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.shop-sidebar-header { display: none; }
.shop-sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 80px; align-self: start; }

.filter-group { background: var(--white); border: 1.5px solid var(--cream-border); border-radius: 12px; padding: 1rem; }
.filter-group-title { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 0.65rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.filter-group-title svg { color: var(--text-dark-muted); transition: transform 0.2s; }
.filter-options { display: flex; flex-direction: column; }
.filter-option { display: flex; align-items: center; gap: 0.45rem; font-size: 0.8rem; color: var(--text-dark); padding: 0.25rem 0; cursor: pointer; }
.filter-option:hover { color: var(--navy); }
.filter-checkbox { display: none; }
.filter-check { width: 15px; height: 15px; border: 1.5px solid var(--cream-border); border-radius: 3px; flex-shrink: 0; position: relative; transition: all 0.15s; }
.filter-checkbox:checked + .filter-check { background: var(--amber); border-color: var(--amber); }
.filter-checkbox:checked + .filter-check::after { content: ''; position: absolute; left: 4px; top: 1px; width: 5px; height: 9px; border: solid var(--navy); border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.filter-label { flex: 1; }
.filter-count { color: var(--text-dark-muted); font-size: 0.72rem; }
.filters-clear { font-size: 0.78rem; color: var(--amber-dark); text-decoration: none; display: inline-block; margin-top: 0.5rem; }
.filters-clear:hover { text-decoration: underline; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}
.shop-result-count { font-size: 0.8rem; color: var(--text-dark-muted); margin: 0; padding: 0; }
.shop-result-count .woocommerce-result-count { margin: 0; padding: 0; display: block; }
.shop-sort { margin: 0; }
.shop-sort .woocommerce-ordering { margin: 0; float: none; }
.shop-toolbar .woocommerce-result-count,
.shop-toolbar .woocommerce-ordering {
  float: none;
  clear: none;
  width: auto;
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.shop-sort select, .shop-sort .orderby {
  border: 1.5px solid var(--cream-border);
  border-radius: 6px;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Barlow', var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%238A9BB0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  outline: none;
}
.shop-sort select:hover, .shop-sort .orderby:hover,
.shop-sort select:focus, .shop-sort .orderby:focus {
  border-color: var(--amber);
  outline: none;
}
.shop-sort select option, .shop-sort .orderby option {
  font-family: 'Barlow', var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
}

.shop-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0; padding: 0; }

.shop-product-card { background: var(--white); border: 1.5px solid var(--cream-border); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
.shop-product-card:hover { transform: translateY(-2px); border-color: #D0CBC3; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

.shop-card-img { aspect-ratio: 1; background: #F0EDE8; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-placeholder { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--cream-border); text-transform: uppercase; letter-spacing: 0.1em; }

.shop-badge { position: absolute; top: 0.6rem; left: 0.6rem; font-family: var(--font-display); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.25rem 0.5rem; border-radius: 4px; z-index: 2; }
.badge-amber { background: rgba(245,166,35,0.15); color: var(--amber-dark); }
.badge-victron { background: rgba(75,163,227,0.15); color: var(--victron-blue); }
.shop-badge + .shop-badge { left: auto; right: 0.6rem; }

.shop-card-body { padding: 0.75rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; }
.shop-card-brand { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--amber-dark); margin-bottom: 0.15rem; }
.shop-card-brand.brand-victron { color: var(--victron-blue); }
.shop-card-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--navy); line-height: 1.2; margin-bottom: 0.4rem; }
.shop-card-price { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.35rem; }
.shop-card-price .price-from { font-size: 0.72rem; font-weight: 400; color: var(--text-dark-muted); margin-right: 0.15rem; }
.shop-card-price del { color: var(--text-dark-muted); font-weight: 400; font-size: 0.85rem; }
.shop-card-price ins { text-decoration: none; }
.shop-card-price .woocommerce-Price-amount { font-family: var(--font-display); }
.shop-card-price .woocommerce-Price-currencySymbol { font-weight: 700; }

.shop-card-stock { display: flex; align-items: center; gap: 0.3rem; font-size: 0.72rem; font-weight: 500; color: var(--text-dark-muted); margin-top: auto; }
.stock-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.stock-dot.stock-in { background: #5B8C3E; }
.stock-dot.stock-low { background: var(--amber); }
.stock-dot.stock-out { background: #D44; }

.shop-pagination { margin-top: 2rem; display: flex; justify-content: center; }
.shop-pagination .page-numbers { list-style: none; display: flex; gap: 0.35rem; padding: 0; margin: 0; }
.shop-pagination .page-numbers li { list-style: none; }
.shop-pagination .page-numbers a, .shop-pagination .page-numbers span { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1.5px solid var(--cream-border); border-radius: 6px; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--text-dark); background: var(--white); text-decoration: none; transition: all 0.15s; }
.shop-pagination .page-numbers a:hover { border-color: var(--amber); color: var(--amber-dark); }
.shop-pagination .page-numbers .current { background: var(--amber); border-color: var(--amber); color: var(--navy); }

.shop-no-products { text-align: center; padding: 4rem 2rem; }
.shop-no-products h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; }
.shop-no-products p { color: var(--text-dark-muted); margin-bottom: 1.5rem; }
.shop-back-link { color: var(--amber-dark); text-decoration: none; font-weight: 500; }
.shop-back-link:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .shop-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .shop-breadcrumb, .shop-search-grid, .shop-heading-row, .shop-layout { padding-left: 1.25rem; padding-right: 1.25rem; }
  .shop-search-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .shop-toolbar-row { padding-left: 0; margin-bottom: 0.75rem; }
  .shop-layout-inner { grid-template-columns: 1fr; }
  .shop-filter-toggle { display: flex; }
  .shop-sidebar { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 1000; padding: 1rem; overflow-y: auto; gap: 0.75rem; }
  .shop-sidebar.active { display: flex; }
  .shop-sidebar-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 0.75rem; border-bottom: 1.5px solid var(--cream-border); margin-bottom: 0.5rem; }
  .sidebar-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; color: var(--navy); }
  .sidebar-close { background: none; border: none; padding: 0.5rem; cursor: pointer; color: var(--text-dark-muted); }
  .shop-product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .shop-card-body { padding: 0.6rem 0.75rem 0.75rem; }
  .shop-card-name { font-size: 0.85rem; }
  .shop-card-price { font-size: 1rem; }
}
@media (max-width: 520px) {
  .shop-product-grid { grid-template-columns: 1fr; }
  .shop-search-pills { display: none; }
}

/* ==========================================================================
   SINGLE PRODUCT PAGE - single-product.php (v6 design)
   ========================================================================== */

.sp-page {
  background: var(--cream);
  padding: 1rem 0 3rem;
}

.sp-page .page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Breadcrumb */
.sp-breadcrumb {
  font-size: 12px;
  color: var(--text-dark-muted);
  padding: 1rem 0 1.25rem;
}
.sp-breadcrumb a {
  color: var(--text-dark-muted);
  text-decoration: none;
}
.sp-breadcrumb a:hover {
  color: var(--amber);
}
.sp-breadcrumb em {
  margin: 0 6px;
  font-style: normal;
}

/* Product Header - two-column */
.sp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Gallery */
.sp-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sp-gallery-main .sp-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sp-gallery-placeholder {
  font-size: 13px;
  color: var(--text-dark-muted);
  text-align: center;
  padding: 2rem;
}
.sp-placeholder-icon {
  font-size: 64px;
  opacity: 0.15;
  display: block;
  margin-bottom: 1rem;
}
.sp-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.sp-thumb {
  width: 72px;
  height: 72px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}
.sp-thumb.active {
  border-color: var(--victron-blue);
  box-shadow: 0 0 0 2px rgba(75, 163, 227, 0.25);
}
.sp-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sp-thumb-empty {
  cursor: default;
  opacity: 0.4;
}

/* Badge */
.sp-badge {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.sp-badge--victron {
  background: var(--victron-blue);
  color: #FFFFFF;
}
.sp-badge--amber {
  background: var(--amber);
  color: var(--navy);
}

/* Brand, title, SKU */
.sp-brand {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--victron-blue);
  margin-bottom: 6px;
}
.sp-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.sp-sku {
  font-size: 12px;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

/* Price */
.sp-price {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 2px;
}
.sp-price .woocommerce-Price-amount {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
.sp-price-vat {
  font-size: 12px;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

/* Stock */
.sp-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.sp-stock--in {
  color: #5B8C3E;
}
.sp-stock--out {
  color: #C0392B;
}
.sp-stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sp-stock--in .sp-stock-dot {
  background: #5B8C3E;
}
.sp-stock--out .sp-stock-dot {
  background: #C0392B;
}

/* Qty + Add to basket */
.sp-cart-form {
  margin-bottom: 1rem;
}
.sp-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #FFFFFF;
}
.sp-qty-btn {
  width: 36px;
  height: 44px;
  border: none;
  background: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}
.sp-qty-val {
  width: 44px;
  height: 44px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  -moz-appearance: textfield;
}
.sp-qty-val::-webkit-outer-spin-button,
.sp-qty-val::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sp-atb {
  flex: 1;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 6px;
  height: 44px;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--amber);
  color: var(--navy);
  transition: background-color 0.2s;
}
.sp-atb:hover {
  background-color: var(--amber-dark);
}

/* Doc links */
.sp-doc-links {
  display: flex;
  gap: 16px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sp-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--victron-blue);
  text-decoration: none;
}
.sp-doc-link:hover {
  text-decoration: underline;
}
.sp-doc-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Price match */
.sp-price-match {
  font-size: 12px;
  color: var(--text-dark-muted);
  margin-bottom: 1.25rem;
}
.sp-price-match a {
  color: var(--victron-blue);
  text-decoration: none;
  font-weight: 500;
}
.sp-price-match a:hover {
  text-decoration: underline;
}

/* Key specs */
.sp-key-specs {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.sp-key-specs-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-muted);
  margin-bottom: 10px;
}
.sp-key-spec-row {
  display: flex;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.sp-key-spec-row:last-child {
  border-bottom: none;
}
.sp-ks-label {
  font-size: 13px;
  color: var(--text-dark-muted);
  width: 180px;
  flex-shrink: 0;
}
.sp-ks-value {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* Trust row */
.sp-trust-row {
  display: flex;
  gap: 20px;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.sp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 500;
}
.sp-trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Section blocks */
.sp-section {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.sp-section-label {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}
.sp-section-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.sp-body-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Spec table */
.sp-spec-table {
  width: 100%;
  border-collapse: collapse;
}
.sp-spec-table tr {
  border-bottom: 1px solid var(--border);
}
.sp-spec-table tr:last-child {
  border-bottom: none;
}
.sp-spec-table td {
  padding: 10px 0;
  font-size: 14px;
  vertical-align: top;
}
.sp-spec-table td:first-child {
  color: var(--text-dark-muted);
  width: 280px;
  padding-right: 1rem;
}
.sp-spec-table td:last-child {
  font-weight: 500;
  color: var(--text-dark);
}
.sp-spec-collapsed {
  display: none;
}
.sp-spec-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--victron-blue);
  cursor: pointer;
  margin-top: 12px;
  padding: 8px 0;
  border: none;
  background: none;
}
.sp-spec-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.sp-spec-toggle.open svg {
  transform: rotate(180deg);
}

/* System diagram */
.sp-system-diagram {
  margin-top: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: 8px;
  text-align: center;
}
.sp-diagram-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sp-d-box {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sp-d-highlight {
  background: var(--victron-blue);
  color: #FFFFFF;
}
.sp-d-muted {
  background: #FFFFFF;
  color: var(--text-dark-muted);
  border: 1px solid var(--border);
}
.sp-d-arrow {
  font-size: 16px;
  color: var(--text-dark-muted);
}

/* Compatibility list */
.sp-compat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-compat-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sp-compat-list li:last-child {
  border-bottom: none;
}
.sp-compat-check {
  color: #5B8C3E;
  font-weight: 700;
  font-size: 14px;
}

/* Sizing */
.sp-sizing-box {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1rem;
}
.sp-sizing-note {
  font-size: 13px;
  color: var(--text-dark-muted);
}

/* Guide link */
.sp-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--victron-blue);
  text-decoration: none;
  margin-top: 0.75rem;
}
.sp-guide-link:hover {
  text-decoration: underline;
}

/* Frequently bought together */
.sp-fbt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.sp-fbt-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}
.sp-fbt-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.sp-fbt-link:hover .sp-fbt-name {
  color: var(--victron-blue);
}
.sp-fbt-img {
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  border-radius: 6px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sp-fbt-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sp-fbt-placeholder {
  font-size: 24px;
  opacity: 0.15;
}
.sp-fbt-brand {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber-dark);
  margin-bottom: 2px;
}
.sp-fbt-name {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.sp-fbt-price {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.sp-fbt-add {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--victron-blue);
  margin-top: 6px;
  text-decoration: none;
  cursor: pointer;
}
.sp-fbt-add:hover {
  text-decoration: underline;
}

/* Kits grid */
.sp-kits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.sp-kit-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}
.sp-kit-card:hover {
  border-color: var(--amber);
}
.sp-kit-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-kit-icon svg {
  width: 18px;
  height: 18px;
}
.sp-kit-name {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}
.sp-kit-from {
  font-size: 11px;
  color: var(--text-dark-muted);
}

/* Design tool CTA */
.sp-design-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.sp-cta-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 22px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sp-cta-sub {
  font-size: 14px;
  color: #C8D4E0;
  line-height: 1.5;
}
.sp-cta-btn {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--amber);
  color: var(--navy);
  border: 2px solid var(--amber);
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s;
}
.sp-cta-btn:hover {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
}

/* Reviews */
.sp-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
}
.sp-reviews-score {
  text-align: right;
}
.sp-reviews-score-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: flex-end;
}
.sp-reviews-num {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
}
.sp-reviews-stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 2px;
}
.sp-reviews-count {
  font-size: 13px;
  color: var(--text-dark-muted);
}
.sp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.sp-review-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
}
.sp-review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.sp-review-author {
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
}
.sp-review-type {
  font-size: 11px;
  color: var(--text-dark-muted);
}
.sp-review-stars-sm {
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.sp-review-text {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.55;
  flex: 1;
}
.sp-reviews-footer {
  text-align: center;
  margin-top: 1.25rem;
}

/* ===== SUPPORT PAGE (sup- prefix) ===== */

.sup-page {
  background: var(--cream);
  padding: 1rem 0 3rem;
}

.sup-page .page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sup-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  padding: 1.25rem 0 0;
}
.sup-breadcrumb a {
  color: var(--text-dark-muted);
  text-decoration: none;
}
.sup-breadcrumb a:hover {
  color: var(--amber);
}
.sup-breadcrumb-sep {
  margin: 0 0.4rem;
}

.sup-header {
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.sup-section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.sup-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.sup-subtitle {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  margin: 0;
}

.sup-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 1.25rem;
}

/* Contact Cards */
.sup-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.sup-contact-card {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.sup-card-icon {
  color: var(--navy);
  margin-bottom: 12px;
}

.sup-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 4px;
}

.sup-card-number {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
}

.sup-card-hours,
.sup-card-detail {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  margin: 0 0 4px;
}

.sup-card-link {
  font-size: 0.8rem;
  color: var(--amber-dark);
  text-decoration: none;
}
.sup-card-link:hover {
  color: var(--amber);
}

.sup-coming-soon {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--cream);
  padding: 2px 10px;
  border-radius: 4px;
}

/* FAQ Section */
.sup-faq-section {
  margin-bottom: 2.5rem;
}

.sup-faq-card {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: 12px;
  overflow: hidden;
}

.sup-faq-item {
  border-bottom: 1px solid var(--cream-border);
}
.sup-faq-item:last-child {
  border-bottom: none;
}

.sup-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}
.sup-faq-question:hover {
  background: var(--cream);
}

.sup-faq-chevron {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sup-faq-item.active .sup-faq-chevron {
  transform: rotate(180deg);
}

.sup-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.sup-faq-item.active .sup-faq-answer {
  max-height: 300px;
}

.sup-faq-answer p {
  padding: 0 1.25rem 1rem;
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin: 0;
}

/* Contact Form */
.sup-form-section {
  margin-bottom: 2.5rem;
}

.sup-form-card {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.sup-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sup-form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.sup-optional {
  color: var(--text-muted);
  font-weight: 400;
}

.sup-form-field input,
.sup-form-field select,
.sup-form-field textarea {
  width: 100%;
  border: 1.5px solid var(--cream-border);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  box-sizing: border-box;
}
.sup-form-field input:focus,
.sup-form-field select:focus,
.sup-form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.sup-form-field input::placeholder,
.sup-form-field textarea::placeholder {
  color: var(--text-muted);
}

.sup-form-full {
  margin-bottom: 1rem;
}

.sup-submit {
  display: block;
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.sup-submit:hover {
  background: var(--amber-dark);
  box-shadow: 0 4px 16px var(--amber-glow);
}

/* Design Tool CTA */
.sup-cta-section {
  margin-bottom: 2rem;
}

.sup-design-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.sup-cta-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.sup-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.sup-cta-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0 0 1.25rem;
}

.sup-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.sup-cta-btn:hover {
  background: var(--amber-dark);
  box-shadow: 0 4px 16px var(--amber-glow);
}

/* Support Page Responsive */
@media (max-width: 768px) {
  .sup-contact-grid {
    grid-template-columns: 1fr;
  }
  .sup-form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE (abt- prefix) ===== */

.abt-page {
  background: var(--cream);
  padding: 1rem 0 3rem;
}

.abt-page .page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.abt-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  padding: 1.25rem 0 0;
}
.abt-breadcrumb a {
  color: var(--text-dark-muted);
  text-decoration: none;
}
.abt-breadcrumb a:hover {
  color: var(--amber);
}
.abt-breadcrumb-sep {
  margin: 0 0.4rem;
}

.abt-header {
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.abt-section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.abt-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.abt-subtitle {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

.abt-section {
  margin-bottom: 2.5rem;
}

.abt-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 1.25rem;
}

/* Value Cards */
.abt-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.abt-value-card {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.abt-value-icon {
  color: var(--navy);
  margin-bottom: 10px;
}

.abt-icon-victron {
  color: var(--victron-blue);
}

.abt-value-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 6px;
}

.abt-value-desc {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin: 0;
  line-height: 1.5;
}

/* Approach Card */
.abt-approach-card {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: 12px;
  padding: 2rem;
}

.abt-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.abt-approach-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 6px;
}

.abt-approach-desc {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin: 0;
  line-height: 1.5;
}

/* Victron Dealer Card */
.abt-victron-card {
  background: var(--white);
  border: 2px solid var(--victron-blue);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.abt-victron-icon {
  flex-shrink: 0;
}

.abt-victron-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 6px;
}

.abt-victron-desc {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin: 0;
  line-height: 1.5;
}

/* Design Tool CTA */
.abt-cta-section {
  margin-bottom: 2rem;
}

.abt-design-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.abt-cta-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.abt-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.abt-cta-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0 0 1.25rem;
}

.abt-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.abt-cta-btn:hover {
  background: var(--amber-dark);
  box-shadow: 0 4px 16px var(--amber-glow);
}

/* About Page Responsive */
@media (max-width: 768px) {
  .abt-value-grid {
    grid-template-columns: 1fr;
  }
  .abt-approach-grid {
    grid-template-columns: 1fr;
  }
  .abt-victron-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   SINGLE PRODUCT - Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .sp-page .page-wrap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .sp-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .sp-fbt-grid,
  .sp-kits-grid,
  .sp-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-design-cta {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .sp-trust-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .sp-reviews-header {
    flex-direction: column;
    gap: 0.75rem;
  }
  .sp-reviews-score {
    text-align: left;
  }
  .sp-reviews-score-top {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .sp-fbt-grid,
  .sp-kits-grid,
  .sp-reviews-grid {
    grid-template-columns: 1fr;
  }
  .sp-title {
    font-size: 24px;
  }
  .sp-price {
    font-size: 28px;
  }
  .sp-spec-table td:first-child {
    width: 140px;
  }
  .sp-ks-label {
    width: 120px;
  }
  .sp-doc-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   LEGAL / POLICY PAGES (lp- prefix)
   Used by: page.php for Delivery, Returns, Terms, Privacy
   ============================================ */

.lp-page {
  background: var(--cream);
  padding: 0 1.5rem 3rem;
}

.lp-container {
  max-width: 800px;
  margin: 0 auto;
}

.lp-breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
}

.lp-breadcrumb a {
  color: var(--victron-blue);
  text-decoration: none;
}

.lp-breadcrumb a:hover {
  text-decoration: underline;
}

.lp-breadcrumb-sep {
  margin: 0 0.375rem;
}

.lp-header {
  margin-bottom: 2rem;
}

.lp-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.375rem;
}

.lp-updated {
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.75rem;
}

.lp-accent {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.lp-content {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 2rem 2.25rem;
}

/* Headings inside the content card */
.lp-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--navy);
  margin: 2rem 0 0.875rem;
  line-height: 1.3;
}

.lp-content h2:first-child {
  margin-top: 0;
}

.lp-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
  margin: 1.5rem 0 0.625rem;
  line-height: 1.4;
}

/* Body text */
.lp-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 1rem;
}

/* Links */
.lp-content a {
  color: var(--victron-blue);
  text-decoration: none;
}

.lp-content a:hover {
  text-decoration: underline;
}

/* Lists */
.lp-content ul,
.lp-content ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.lp-content li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

/* Section dividers — WordPress will output <hr> between sections */
.lp-content hr {
  border: none;
  border-top: 1px solid var(--cream-border);
  margin: 1.5rem 0;
}

/* Tables */
.lp-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1rem 0 1.5rem;
}

.lp-content thead tr {
  border-bottom: 2px solid var(--cream-border);
}

.lp-content th {
  text-align: left;
  padding: 0.625rem 0.75rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-content td {
  padding: 0.625rem 0.75rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream-border);
}

.lp-content tbody tr:last-child td {
  border-bottom: none;
}

/* Contact footer at bottom of content card */
.lp-contact-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-border);
}

.lp-contact-footer p {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin: 0;
}

.lp-contact-footer a {
  color: var(--victron-blue);
  font-weight: 600;
  text-decoration: none;
}

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

/* Responsive */
@media (max-width: 768px) {
  .lp-content {
    padding: 1.5rem 1.25rem;
  }

  .lp-page {
    padding: 0 1rem 2rem;
  }
}

@media (max-width: 520px) {
  .lp-content {
    padding: 1.25rem 1rem;
  }

  .lp-content h2 {
    font-size: 1.2rem;
  }
}

/* ============================================
   LEARNING CENTRE — Hub & Guide Pages (gc- prefix)
   Used by: archive-guide.php, single-guide.php
   ============================================ */

/* --- Hub Page (archive-guide.php) --- */

.gc-hub {
  background: var(--cream);
  padding: 0 1.5rem 3rem;
}

.gc-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gc-breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
}

.gc-breadcrumb a {
  color: var(--victron-blue);
  text-decoration: none;
}

.gc-breadcrumb a:hover {
  text-decoration: underline;
}

.gc-breadcrumb-sep {
  margin: 0 0.375rem;
}

.gc-hero {
  text-align: center;
  padding: 1.5rem 0 2.5rem;
}

.gc-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.gc-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}

.gc-hero-subtitle {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gc-hero-subtitle a {
  color: var(--victron-blue);
  text-decoration: none;
  font-weight: 600;
}

.gc-hero-subtitle a:hover {
  text-decoration: underline;
}

/* Search & filter bar */
.gc-filters {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.gc-search-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.gc-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dark-muted);
  pointer-events: none;
}

.gc-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.gc-search-input:focus {
  border-color: var(--victron-blue);
}

.gc-search-input::placeholder {
  color: var(--text-muted);
}

.gc-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gc-pill {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dark-muted);
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  padding: 0.375rem 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.gc-pill:hover {
  border-color: var(--amber);
  color: var(--text-dark);
}

.gc-pill-active {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  font-weight: 600;
}

.gc-pill-active:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

/* Hidden state for filtered cards */
.gc-category-card.gc-hidden {
  display: none;
}

/* No results message */
.gc-no-results {
  text-align: center;
  padding: 2rem;
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .gc-filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }

  .gc-pill {
    flex-shrink: 0;
  }
}

/* Category cards */
.gc-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.gc-category-card {
  margin-bottom: 0;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
}

.gc-category-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.25rem;
}

.gc-category-icon {
  color: var(--amber);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.gc-category-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.gc-category-desc {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin: 0 0 1.25rem;
  padding-left: 2rem;
}

/* Guide card grid */
.gc-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-left: 2rem;
}

.gc-guide-card {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  padding: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.gc-guide-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}

.gc-guide-thumb {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.gc-guide-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.gc-guide-card .gc-guide-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  margin: 0 0 0.375rem;
  line-height: 1.3;
}

.gc-guide-card .gc-guide-excerpt {
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
  margin: 0;
  line-height: 1.5;
}

/* Empty state */
.gc-empty-state {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin-left: 2rem;
}

.gc-empty-state p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Planned guide titles (pre-publication) */
.gc-planned-guides {
  padding-left: 2rem;
}

.gc-planned-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.gc-planned-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 1.5rem;
}

.gc-planned-list li {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--cream-border);
  line-height: 1.4;
}

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

/* View all link */
.gc-view-all {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--victron-blue);
  text-decoration: none;
  margin-top: 0.75rem;
  padding-left: 2rem;
}

.gc-view-all:hover {
  text-decoration: underline;
}

/* Design Tool CTA (shared hub + guide) */
.gc-cta-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin: 1.25rem 0 0;
}

.gc-cta-card .gc-section-label {
  color: var(--amber-dark);
}

.gc-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.gc-cta-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.gc-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.gc-cta-btn:hover {
  box-shadow: 0 4px 16px var(--amber-glow);
}

/* --- Single Guide Page (single-guide.php) --- */

.gc-guide-page {
  background: var(--cream);
  padding: 0 1.5rem 3rem;
}

.gc-guide-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gc-guide-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

/* Disclaimer */
.gc-disclaimer {
  background: #FFF8EB;
  border: 1.5px solid var(--amber);
  border-radius: 8px;
  padding: 0.875rem 1.125rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.gc-disclaimer strong {
  color: var(--navy);
}

.gc-disclaimer a {
  color: var(--victron-blue);
  font-weight: 600;
  text-decoration: none;
}

.gc-disclaimer a:hover {
  text-decoration: underline;
}

/* Guide main content */
.gc-guide-main {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 2rem 2.25rem;
}

.gc-guide-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.375rem, 3.5vw, 1.75rem);
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.gc-quick-answer {
  background: var(--cream);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--amber);
}

.gc-quick-answer p {
  margin: 0;
}

.gc-guide-hero-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.gc-guide-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Guide body content — inherits from lp-content patterns */
.gc-guide-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--navy);
  margin: 2rem 0 0.875rem;
  line-height: 1.3;
}

.gc-guide-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
  margin: 1.5rem 0 0.625rem;
  line-height: 1.4;
}

.gc-guide-body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 1rem;
}

.gc-guide-body a {
  color: var(--victron-blue);
  text-decoration: none;
}

.gc-guide-body a:hover {
  text-decoration: underline;
}

.gc-guide-body ul,
.gc-guide-body ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.gc-guide-body li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.gc-guide-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1rem 0 1.5rem;
}

.gc-guide-body thead tr {
  border-bottom: 2px solid var(--cream-border);
}

.gc-guide-body th {
  text-align: left;
  padding: 0.625rem 0.75rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gc-guide-body td {
  padding: 0.625rem 0.75rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream-border);
}

.gc-guide-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Sidebar */
.gc-sidebar {
  position: sticky;
  top: 80px;
}

.gc-sidebar-section {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.gc-sidebar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}

.gc-sidebar-link {
  display: block;
  font-size: 0.875rem;
  color: var(--victron-blue);
  text-decoration: none;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--cream-border);
  line-height: 1.4;
}

.gc-sidebar-link:last-child {
  border-bottom: none;
}

.gc-sidebar-link:hover {
  text-decoration: underline;
}

.gc-sidebar-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.gc-sidebar-cta-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.gc-sidebar-cta p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.gc-sidebar-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.gc-sidebar-cta-btn:hover {
  box-shadow: 0 4px 12px var(--amber-glow);
}

.gc-sidebar-back {
  display: block;
  font-size: 0.8125rem;
  color: var(--victron-blue);
  text-decoration: none;
  font-weight: 600;
}

.gc-sidebar-back:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .gc-hub {
    padding: 0 1rem 2rem;
  }

  .gc-categories-grid {
    grid-template-columns: 1fr;
  }

  .gc-planned-guides {
    padding-left: 0;
  }

  .gc-planned-list {
    grid-template-columns: 1fr;
  }

  .gc-guides-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0;
  }

  .gc-category-desc {
    padding-left: 0;
  }

  .gc-empty-state {
    margin-left: 0;
  }

  .gc-view-all {
    padding-left: 0;
  }

  .gc-guide-layout {
    grid-template-columns: 1fr;
  }

  .gc-sidebar {
    position: static;
  }

  .gc-guide-main {
    padding: 1.5rem 1.25rem;
  }

  .gc-cta-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .gc-guides-grid {
    grid-template-columns: 1fr;
  }

  .gc-category-card {
    padding: 1.25rem 1rem;
  }

  .gc-guide-main {
    padding: 1.25rem 1rem;
  }
}

/* ============================================
   BLOG — Posts page & single post (bl- prefix)
   Used by: home.php, single.php
   ============================================ */

.bl-page,
.bl-single {
  background: var(--cream);
  padding: 0 1.5rem 3rem;
}

.bl-container,
.bl-single-container {
  max-width: 1400px;
  margin: 0 auto;
}

.bl-single-container {
  max-width: 800px;
}

.bl-breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
}

.bl-breadcrumb a {
  color: var(--victron-blue);
  text-decoration: none;
}

.bl-breadcrumb a:hover {
  text-decoration: underline;
}

.bl-breadcrumb-sep {
  margin: 0 0.375rem;
}

/* Blog hub hero */
.bl-hero {
  text-align: center;
  padding: 1.5rem 0 2.5rem;
}

.bl-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.bl-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}

.bl-hero-subtitle {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Post card grid */
.bl-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.bl-post-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.bl-post-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}

.bl-post-thumb {
  height: 180px;
  overflow: hidden;
}

.bl-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bl-post-thumb-placeholder {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.bl-post-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bl-post-date {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.bl-post-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.bl-post-excerpt {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin: 0 0 auto;
}

.bl-read-more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--victron-blue);
  margin-top: 0.75rem;
}

/* Pagination */
.bl-pagination {
  text-align: center;
  margin-bottom: 2rem;
}

.bl-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.bl-pagination a,
.bl-pagination span {
  font-size: 0.875rem;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  text-decoration: none;
}

.bl-pagination a {
  color: var(--victron-blue);
  background: var(--white);
  border: 1px solid var(--cream-border);
}

.bl-pagination a:hover {
  border-color: var(--amber);
}

.bl-pagination .current {
  background: var(--amber);
  color: var(--navy);
  font-weight: 600;
}

/* Empty state */
.bl-empty-state {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.bl-empty-state p {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  margin: 0;
  line-height: 1.6;
}

/* Blog CTA (shared listing + single) */
.bl-cta-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
}

.bl-cta-card .bl-section-label {
  color: var(--amber-dark);
}

.bl-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.bl-cta-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.bl-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.bl-cta-btn:hover {
  box-shadow: 0 4px 16px var(--amber-glow);
}

/* --- Single Post (single.php) --- */

.bl-article {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
}

.bl-article-header {
  margin-bottom: 1.5rem;
}

.bl-article-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.375rem, 3.5vw, 1.75rem);
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.bl-article-hero {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.bl-article-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article body — same typography as legal/guide pages */
.bl-article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--navy);
  margin: 2rem 0 0.875rem;
  line-height: 1.3;
}

.bl-article-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
  margin: 1.5rem 0 0.625rem;
  line-height: 1.4;
}

.bl-article-body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 1rem;
}

.bl-article-body a {
  color: var(--victron-blue);
  text-decoration: none;
}

.bl-article-body a:hover {
  text-decoration: underline;
}

.bl-article-body ul,
.bl-article-body ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.bl-article-body li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.bl-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.bl-article-body blockquote {
  border-left: 3px solid var(--amber);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--cream);
  border-radius: 0 8px 8px 0;
}

.bl-article-body blockquote p {
  margin: 0;
  color: var(--text-dark);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .bl-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bl-page,
  .bl-single {
    padding: 0 1rem 2rem;
  }

  .bl-article {
    padding: 1.5rem 1.25rem;
  }

  .bl-cta-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .bl-posts-grid {
    grid-template-columns: 1fr;
  }

  .bl-article {
    padding: 1.25rem 1rem;
  }
}

/* ============================================
   TRADE ACCOUNT PAGE (tr- prefix)
   Used by: page-trade.php
   ============================================ */

.tr-page {
  background: var(--cream);
}

/* Navy hero */
.tr-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3rem 1.5rem;
  text-align: center;
}

.tr-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.tr-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.tr-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}

.tr-hero-subtitle {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto;
}

.tr-gradient-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--victron-blue), var(--amber));
  margin: 2rem auto 0;
  max-width: 300px;
  border-radius: 2px;
}

.tr-gradient-stripe-small {
  max-width: 200px;
  margin: 1.5rem auto 0;
}

.tr-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* Benefits grid */
.tr-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.tr-benefit-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.tr-benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(75, 163, 227, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--victron-blue);
  margin-bottom: 0.75rem;
}

.tr-benefit-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 0.375rem;
}

.tr-benefit-desc {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin: 0;
}

/* Who is this for */
.tr-who-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.tr-who-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.tr-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
}

.tr-who-item {
  font-size: 0.9375rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tr-check {
  color: var(--victron-blue);
  font-weight: 700;
}

/* Design tool for trade */
.tr-design-card {
  background: var(--white);
  border: 1px solid var(--victron-blue);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.tr-design-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.tr-design-desc {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin: 0;
}

/* Apply CTA */
.tr-apply-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--victron-blue);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.tr-apply-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.tr-apply-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 1.25rem;
}

.tr-apply-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.tr-apply-btn:hover {
  box-shadow: 0 4px 16px var(--amber-glow);
}

.tr-apply-phone {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .tr-hero {
    padding: 2rem 1rem;
  }

  .tr-container {
    padding: 0 1rem 2rem;
  }

  .tr-benefits-grid {
    grid-template-columns: 1fr;
  }

  .tr-who-grid {
    grid-template-columns: 1fr;
  }

  .tr-apply-card {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   KIT PRODUCT PAGE (kt- prefix)
   Used by: single-product-kit.php
   ============================================ */

.kt-page {
  background: var(--cream);
  padding: 0 1.5rem 3rem;
}

.kt-container {
  max-width: 1400px;
  margin: 0 auto;
}

.kt-breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
}

.kt-breadcrumb a {
  color: var(--victron-blue);
  text-decoration: none;
}

.kt-breadcrumb a:hover {
  text-decoration: underline;
}

.kt-breadcrumb-sep {
  margin: 0 0.375rem;
}

/* Kit header - 2 column */
.kt-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.kt-gallery {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.kt-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.kt-gallery-placeholder {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

.kt-gallery-placeholder svg {
  margin-bottom: 0.5rem;
}

.kt-gallery-placeholder span {
  display: block;
  font-size: 0.8125rem;
}

/* Purchase info */
.kt-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.kt-badge-amber {
  background: var(--amber);
  color: var(--navy);
}

.kt-badge-victron {
  background: var(--victron-blue);
  color: var(--white);
}

.kt-brand {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-dark);
  margin-bottom: 0.25rem;
}

.kt-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.375rem, 3.5vw, 1.75rem);
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 0.25rem;
}

.kt-sku {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

.kt-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.kt-price-vat {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-dark-muted);
}

.kt-stock {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.kt-stock-in {
  color: #5B8C3E;
}

.kt-stock-out {
  color: #C0392B;
}

/* Key specs summary */
.kt-specs-summary {
  background: var(--cream);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.kt-spec-item {
  font-size: 0.8125rem;
}

.kt-spec-label {
  color: var(--text-dark-muted);
}

.kt-spec-value {
  color: var(--navy);
  font-weight: 600;
}

/* Dual CTAs */
.kt-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.kt-cta-primary {
  display: block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: box-shadow 0.2s;
}

.kt-cta-primary:hover {
  box-shadow: 0 4px 16px var(--amber-glow);
}

.kt-cart-form {
  display: flex;
  gap: 0.5rem;
}

.kt-cart-form .quantity {
  width: 48px;
}

.kt-cart-form .quantity input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--cream-border);
  border-radius: 6px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.kt-cta-secondary {
  flex: 1;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.625rem 1.25rem;
  border: 1.5px solid var(--cream-border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.kt-cta-secondary:hover {
  border-color: var(--navy);
}

.kt-cta-hint {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

/* Content cards */
.kt-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.kt-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  margin-bottom: 0.375rem;
}

.kt-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

/* Kit contents */
.kt-contents-grid {
  margin-top: 0.5rem;
}

.kt-contents-desc {
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.kt-contents-placeholder,
.kt-upgrades-placeholder,
.kt-powers-placeholder,
.kt-reviews-placeholder {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.kt-contents-placeholder p,
.kt-upgrades-placeholder p,
.kt-powers-placeholder p,
.kt-reviews-placeholder p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Not included */
.kt-not-included-text {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.kt-not-included-callout {
  background: #FFF8EB;
  border: 1.5px solid var(--amber);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.kt-not-included-callout svg {
  color: var(--amber-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.kt-not-included-callout div {
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Powers content */
.kt-powers-content {
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.kt-powers-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-style: italic;
}

/* Design tool CTA */
.kt-design-cta {
  background: var(--navy);
  border: 2px solid var(--amber);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.kt-design-cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.kt-design-cta-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 1.25rem;
}

.kt-design-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.kt-design-cta-btn:hover {
  box-shadow: 0 4px 16px var(--amber-glow);
}

.kt-design-cta-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Expansion path */
.kt-expansion {
  background: var(--white);
  border: 1px solid var(--victron-blue);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kt-expansion-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 0.25rem;
}

.kt-expansion-desc {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin: 0;
}

.kt-expansion-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--victron-blue);
  text-decoration: none;
  white-space: nowrap;
}

.kt-expansion-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .kt-page {
    padding: 0 1rem 2rem;
  }

  .kt-header {
    grid-template-columns: 1fr;
  }

  .kt-gallery {
    min-height: 240px;
  }

  .kt-specs-summary {
    grid-template-columns: 1fr;
  }

  .kt-expansion {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .kt-design-cta {
    padding: 2rem 1.5rem;
  }

  .kt-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 520px) {
  .kt-card {
    padding: 1.25rem 1rem;
  }

  .kt-cart-form {
    flex-direction: column;
  }

  .kt-cart-form .quantity {
    width: 100%;
  }
}

/* ============================================
   DESIGN TOOL PAGE (dt- prefix)
   Used by: page-design-tool.php
   Note: scoped under .dt-page to avoid collisions with existing homepage dt- styles.
   ============================================ */

.dt-page {
  background: var(--cream);
}

/* Hero */
.dt-page .dt-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
}

.dt-page .dt-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.dt-page .dt-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.dt-page .dt-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}

.dt-page .dt-hero-subtitle {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto 1.5rem;
}

.dt-page .dt-hero-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dt-page .dt-hero-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  background: rgba(245, 166, 35, 0.1);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.dt-page .dt-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* Coming Soon */
.dt-page .dt-coming-soon {
  background: var(--white);
  border: 2px solid var(--amber);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.dt-page .dt-coming-soon-icon {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.dt-page .dt-coming-soon-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.dt-page .dt-coming-soon-text {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.dt-page .dt-coming-soon-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--victron-blue);
  text-decoration: none;
}

.dt-page .dt-coming-soon-link:hover {
  text-decoration: underline;
}

/* Section headings */
.dt-page .dt-section {
  margin: 2.5rem 0;
}

.dt-page .dt-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

/* 4-step process */
.dt-page .dt-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.dt-page .dt-step {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.dt-page .dt-step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.dt-page .dt-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 0.375rem;
}

.dt-page .dt-step-desc {
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin: 0;
}

/* Feature cards */
.dt-page .dt-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.dt-page .dt-feature-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.dt-page .dt-feature-card svg {
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.dt-page .dt-feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 0.375rem;
}

.dt-page .dt-feature-desc {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin: 0;
}

/* Entry point cards */
.dt-page .dt-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.dt-page .dt-entry-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s;
  cursor: pointer;
}

.dt-page .dt-entry-card:hover {
  border-color: var(--amber);
}

.dt-page .dt-entry-icon {
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.dt-page .dt-entry-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.dt-page .dt-entry-desc {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.dt-page .dt-entry-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--victron-blue);
}

/* Abroad callout */
.dt-page .dt-abroad-card {
  background: var(--white);
  border: 1px solid var(--victron-blue);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.25rem;
}

.dt-page .dt-abroad-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 0.375rem;
}

.dt-page .dt-abroad-desc {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin: 0;
}

/* Contact CTA */
.dt-page .dt-contact-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 1.25rem;
}

.dt-page .dt-contact-cta .dt-section-label {
  color: var(--amber-dark);
}

.dt-page .dt-contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.dt-page .dt-contact-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.dt-page .dt-contact-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dt-page .dt-contact-btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.dt-page .dt-contact-btn-primary:hover {
  box-shadow: 0 4px 16px var(--amber-glow);
}

.dt-page .dt-contact-btn-secondary {
  display: inline-block;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 0.2s;
}

.dt-page .dt-contact-btn-secondary:hover {
  border-color: var(--white);
}

/* Product page design tool CTA (in single-product.php) */
.sp-design-tool-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.625rem 1.25rem;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--victron-blue);
  background: transparent;
  border: 1.5px solid var(--victron-blue);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
}

.sp-design-tool-cta:hover {
  background: var(--victron-blue);
  color: var(--white);
}

.sp-design-tool-cta svg {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .dt-page .dt-hero {
    padding: 2.5rem 1rem 2rem;
  }

  .dt-page .dt-container {
    padding: 0 1rem 2rem;
  }

  .dt-page .dt-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dt-page .dt-features-grid {
    grid-template-columns: 1fr;
  }

  .dt-page .dt-entry-grid {
    grid-template-columns: 1fr;
  }

  .dt-page .dt-coming-soon {
    flex-direction: column;
  }

  .dt-page .dt-contact-cta {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .dt-page .dt-steps-grid {
    grid-template-columns: 1fr;
  }
}
