/* ============================================================================
   1.  TOKENS
   ============================================================================ */
:root {
  /* Brand */
  --c-navy:        #2A3350;
  --c-navy-deep:   #1A2138;
  --c-cobalt:      #445BC8;
  --c-cobalt-2:    #6779DC;   /* hover / lighter */
  --c-cobalt-deep: #2F4099;
  --c-lime:        #5EB927;
  --c-lime-deep:   #4A9520;
  --c-lime-light:  #bfe69f;
  --c-bg:          #F1F1F6;

  /* Neutrals */
  --c-text:        #2A3350;
  --c-muted:       #6B7280;
  --c-line:        #E2E2EA;
  --c-line-soft:   #EEEEF3;
  --c-white:       #FFFFFF;

  /* Type */
  --f-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --f-body:    'Barlow', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --max-w: 1475px;
  --pad-x: 48px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(42,51,80,0.04), 0 0 0 1px rgba(42,51,80,0.04);
  --shadow-md: 0 4px 12px -2px rgba(42,51,80,0.08), 0 0 0 1px rgba(42,51,80,0.04);
  --shadow-lg: 0 16px 40px -12px rgba(42,51,80,0.18), 0 0 0 1px rgba(42,51,80,0.05);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================================
   2.  RESET + BASE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-white);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.15s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--c-cobalt); outline-offset: 2px; border-radius: 2px; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); box-sizing: content-box; }

/* ============================================================================
   3.  UTILITY BAR  —  thin navy strip
   ============================================================================ */
.util {
  background: var(--c-navy-deep);
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 500;
  padding: 9px 0;
}
.util-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.util .links { display: flex; gap: 22px; }
.util a:hover { color: var(--c-white); }
.util .right { display: flex; align-items: center; gap: 18px; }
.util .phone { font-family: var(--f-mono); color: var(--c-white); font-weight: 500; }
.util .phone strong { color: var(--c-lime); margin-right: 6px; font-weight: 700; }
.util .sep { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }

/* ============================================================================
   4.  HEADER
   ============================================================================ */
.header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  padding: 20px 0;
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
.logo { display: flex; align-items: center; }
.logo img { height: 36px; width: auto; display: block; }

/* Search */
.search {
  display: flex;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
  max-width: 640px;
  width: 100%;
  justify-self: center;
}
.search:focus-within { border-color: var(--c-cobalt); background: var(--c-white); }
.search-pick {
  border-right: 1px solid var(--c-line);
  padding: 0 16px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  background: transparent;
  outline: none;
  cursor: pointer;
}
.search input {
  flex: 1;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--f-body);
  border: none; outline: none; background: transparent;
  color: var(--c-text);
}
.search button {
  background: var(--c-cobalt);
  color: var(--c-white);
  padding: 0 28px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.15s var(--ease);
}
.search button:hover { background: var(--c-cobalt-deep); }

/* Header icons */
.h-icons { display: flex; gap: 4px; align-items: center; }
.h-icons a,
.h-icons button {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 600;
  transition: all 0.15s var(--ease);
  cursor: pointer;
}
.h-icons a:hover,
.h-icons button:hover { background: var(--c-bg); color: var(--c-text); }
.h-icons .h-search-toggle { display: none; }  /* desktop: hidden — search is always visible */
.h-icons .ic {
  width: 22px; height: 22px;
  display: block;
  stroke-width: 1.6;
}
.h-icons .badge {
  position: absolute;
  top: 2px; right: 6px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: var(--c-cobalt);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--f-mono);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ============================================================================
   5.  NAV
   ============================================================================ */
.nav {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  position: sticky; top: 0; z-index: 40;
}
.nav .wrap { display: flex; align-items: center; position: relative; }
.nav-menu {
  display: flex;
  align-items: stretch;
  flex: 1;
}
.nav-menu > li { position: relative; }
.nav-menu > li.right { margin-left: auto; }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-text);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.15s var(--ease);
  white-space: nowrap;
}
.nav-menu > li > a:hover { color: var(--c-cobalt); }
.nav-menu > li > a.active { color: var(--c-cobalt); border-bottom-color: var(--c-cobalt); }
.nav-menu > li.has-sub > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  transition: transform 0.15s var(--ease);
}
.nav-menu > li.has-sub.open > a::after { transform: rotate(180deg); opacity: 1; }
@media (hover: hover) and (min-width: 901px) {
  .nav-menu > li.has-sub:hover > a::after,
  .nav-menu > li.has-sub:focus-within > a::after { transform: rotate(180deg); opacity: 1; }
}
.nav-sub {
  display: none;
  position: absolute;
  top: calc(100% + 1px); left: 0;
  min-width: 240px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-top: 2px solid var(--c-cobalt);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  z-index: 50;
}
.nav-menu > li.open > .nav-sub { display: block; }
@media (hover: hover) and (min-width: 901px) {
  .nav-menu > li:hover > .nav-sub,
  .nav-menu > li:focus-within > .nav-sub { display: block; }
}
.nav-sub li { position: relative; }
.nav-sub a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--c-text);
  letter-spacing: 0;
  text-transform: none;
  border: none;
  transition: all 0.1s var(--ease);
}
.nav-sub a:hover { background: var(--c-bg); color: var(--c-cobalt); padding-left: 22px; }
.nav-sub li.has-sub > a::after {
  content: '›';
  font-size: 16px;
  font-weight: 700;
  opacity: 0.5;
  transition: transform 0.15s var(--ease);
}
.nav-sub li.has-sub.open > a::after { transform: rotate(90deg); opacity: 1; }
.nav-sub .nav-sub-2 {
  display: none;
  position: absolute;
  top: -8px; left: 100%;
  min-width: 220px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  margin-left: 1px;
}
.nav-sub li.open > .nav-sub-2 { display: block; }
@media (hover: hover) and (min-width: 901px) {
  .nav-sub li:hover > .nav-sub-2,
  .nav-sub li:focus-within > .nav-sub-2 { display: block; }
}
.nav .industry-cta {
  color: var(--c-cobalt);
}
.nav .industry-cta::after {
  content: '→' !important;
  border: none !important;
  width: auto !important; height: auto !important;
  font-size: 14px !important;
  opacity: 1 !important;
  transition: transform 0.15s var(--ease);
}
.nav .industry-cta:hover::after { transform: translateX(3px) rotate(0) !important; }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  margin-left: auto;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 1px;
  transition: all 0.2s var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================================
   6.  HERO  —  asymmetric split, live-pricing preview on right
   ============================================================================ */
.hero {
  background:
    radial-gradient(ellipse at 100% 30%, rgba(68,91,200,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 80%, rgba(94,185,39,0.05) 0%, transparent 50%),
    var(--c-white);
  padding: 60px 0 70px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
/* Graph paper pattern — diagonal gridlines in #F1F1F6 (lines at 45° / 135°, still 90° apart) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#F1F1F6 1px, transparent 1px),
    linear-gradient(90deg, #F1F1F6 1px, transparent 1px);
  background-size: 150px 150px;
  background-position: -1px -1px;
  z-index: 1;
  pointer-events: none;
}
/* Blue chevron wedge on the right — sits behind the pricing card, notch points to where the card overlaps */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 30%;
  background: var(--c-bg);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero left */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(68,91,200,0.10);
  color: var(--c-cobalt-deep);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--c-lime); border-radius: 50%; }
.hero h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 0.95;
  letter-spacing:0.015em;
  color: var(--c-navy);
  margin-bottom: 22px;
  font-size:60pt;
  //*text-transform: uppercase;*//
}
.hero h1 .accent { color: var(--c-lime); }
.hero .sub {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--c-muted);
  max-width: 650x;
  margin-bottom: 28px;
}
.bullets {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 32px; max-width: 540px;
}
.bullets li {
  display: flex; flex-direction: column; gap: 4px;
}
.bullets .b-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--c-cobalt);
  line-height: 1;
}
.bullets .b-num.lime { color: var(--c-lime-deep); }
.bullets .b-label {
  font-size: 12px;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--c-cobalt);
  color: var(--c-white);
  padding: 15px 28px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all 0.15s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--c-cobalt-deep); transform: translateY(-1px); box-shadow: 0 10px 20px -8px rgba(68,91,200,0.5); }
.btn-secondary {
  background: var(--c-white);
  color: var(--c-text);
  padding: 15px 28px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  transition: all 0.15s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--c-cobalt); color: var(--c-cobalt); }

/* Hero right — live pricing preview card */
.preview {
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.preview-head {
  padding: 18px 22px;
  background: var(--c-navy);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: space-between;
}
.preview-head .title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.preview-head .live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-lime);
}
.preview-head .live::before {
  content: ''; width: 7px; height: 7px;
  background: var(--c-lime);
  border-radius: 50%;
  animation: pulse 1.6s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.preview-body { padding: 4px 0; }
.preview-row {
  padding: 11px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--c-line-soft);
  transition: background 0.15s var(--ease);
}
.preview-row:last-child { border-bottom: none; }
.preview-row .cat {
  font-family: var(--f-display);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--c-cobalt-deep);
  background: rgba(68,91,200,0.10);
  padding: 4px 8px;
  border-radius: 99px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.15s var(--ease);
}
.preview-row .name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.3;
}
.preview-row .price {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-navy);
  white-space: nowrap;
  transition: color 0.15s var(--ease);
}
.preview-row.featured { background: rgba(94,185,39,0.06); }
.preview-row.featured .price { color: var(--c-lime-deep); }
.preview-row.featured .cat {
  background: var(--c-lime);
  color: var(--c-navy);
}
.enquire-btn {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cobalt);
  padding: 6px 11px;
  border: 1px solid var(--c-cobalt);
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.15s var(--ease);
}
.enquire-btn:hover {
  background: var(--c-cobalt);
  color: var(--c-white);
}
.preview-row.featured .enquire-btn {
  border-color: var(--c-lime-deep);
  color: var(--c-lime-deep);
}
.preview-row.featured .enquire-btn:hover {
  background: var(--c-lime);
  color: var(--c-navy);
  border-color: var(--c-lime);
}
/* Hover any preview-row → turn green like the featured row */
.preview-row:hover { background: rgba(94,185,39,0.06); }
.preview-row:hover .price { color: var(--c-lime-deep); }
.preview-row:hover .cat { background: var(--c-lime); color: var(--c-navy); }
.preview-row:hover .enquire-btn { border-color: var(--c-lime-deep); color: var(--c-lime-deep); }
.preview-row:hover .enquire-btn:hover { background: var(--c-lime); color: var(--c-navy); border-color: var(--c-lime); }
.preview-foot {
  padding: 14px 22px;
  background: var(--c-bg);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-muted);
}
.preview-foot a {
  color: var(--c-cobalt);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 4px;
}
.preview-foot a::after { content: '→'; transition: transform 0.15s var(--ease); }
.preview-foot a:hover::after { transform: translateX(3px); }

/* ============================================================================
   7.  STATS BAND  —  big-number proof points
   ============================================================================ */
.stats {
  background:
    radial-gradient(ellipse at 90% 30%, rgba(255,255,255,0.10) 0%, transparent 55%),
    linear-gradient(135deg, #384CAA 0%, #2E3D88 100%);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0em;
  color: var(--c-white);
  margin-bottom: 8px;
}
.stat-num .plus {
  font-size: 32px;
  vertical-align: top;
  font-weight: 800;
  color: var(--c-lime);
  margin-left: 2px;
  letter-spacing: 0;
}
.stat-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ============================================================================
   8.  INDUSTRIES BAND  —  icon cards with product counts
   (uses shared .section/.section-head — see section 11)
   ============================================================================ */
.ib-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ib-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 14px 22px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: all 0.2s var(--ease);
}
.ib-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-cobalt);
  box-shadow: var(--shadow-md);
}
.ib-ic {
  width: 38px; height: 38px;
  color: var(--c-lime);
  margin-bottom: 14px;
  transition: color 0.15s var(--ease);
}
.ib-card:hover .ib-ic { color: var(--c-cobalt); }
.ib-ic svg { width: 100%; height: 100%; }
.ib-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-navy);
  line-height: 1.2;
  margin-bottom: 5px;
}
.ib-count {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ============================================================================
   9.  CATEGORIES
   ============================================================================ */
.section { padding: 70px 0; }
.section.alt { background: var(--c-bg); }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}
.section-head .kicker {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cobalt);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.section-head .sub { font-size: 15px; color: var(--c-muted); max-width: 1475px; }
.view-all {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cobalt);
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--c-cobalt);
  white-space: nowrap;
}
.view-all::after { content: '→'; transition: transform 0.15s var(--ease); }
.view-all:hover::after { transform: translateX(3px); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-cobalt);
  box-shadow: var(--shadow-md);
}
.cat-card .img {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-white);
  color: var(--c-muted);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
}
.cat-card .img::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1px dashed var(--c-line);
  border-radius: var(--r-sm);
  pointer-events: none;
  transition: border-color 0.2s var(--ease);
}
.cat-card .img > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-card .img:has(> img)::before { display: none; }
.cat-card:hover .img::before { border-color: var(--c-cobalt); }
.cat-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; }
.cat-card .meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.cat-card .meta .chip {
  padding: 2px 8px;
  background: rgba(68,91,200,0.10);
  color: var(--c-cobalt-deep);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cat-card h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--c-navy);
  line-height: 1.05;
  margin: 4px 0 4px;
}
.cat-card p { font-size: 13px; color: var(--c-muted); line-height: 1.5; margin-bottom: 4px; }
.cat-card .arrow {
  margin-top: 8px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cobalt);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s var(--ease);
}
.cat-card .arrow::after { content: '→'; }
.cat-card:hover .arrow { gap: 10px; }

/* ============================================================================
   10.  B2B FEATURE BAND
   ============================================================================ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat-card {
  padding: 30px 26px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: all 0.2s var(--ease);
}
.feat-card:hover { border-color: var(--c-cobalt); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feat-card .ic {
  width: 44px; height: 44px;
  background: var(--c-cobalt);
  color: var(--c-white);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.feat-card.lime .ic { background: var(--c-lime); color: var(--c-navy); }
.feat-card h4 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 8px;
  line-height: 1.1;
}
.feat-card p { font-size: 13px; color: var(--c-muted); line-height: 1.55; }

/* ============================================================================
   11.  BULK PRICING STRIP  —  the single dramatic cobalt block
   ============================================================================ */
.bulk {
  background:
    radial-gradient(ellipse at 90% 30%, rgba(255,255,255,0.10) 0%, transparent 55%),
    linear-gradient(135deg, #384CAA 0%, #2E3D88 100%);
  color: var(--c-white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.bulk-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.bulk-left .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.14);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.bulk-left .kicker::before { content: ''; width: 6px; height: 6px; background: var(--c-lime); border-radius: 50%; }
.bulk-left h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.bulk-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 1475px;
  margin-bottom: 24px;
  line-height: 1.55;
}
.tier-ladder {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 700px;
}
.tier {
  padding: 14px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-sm);
  transition: all 0.15s var(--ease);
}
.tier:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.tier .qty {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.tier .save {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-lime);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1;
}
.bulk-cta {
  background: var(--c-white);
  color: var(--c-cobalt-deep);
  padding: 17px 32px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all 0.15s var(--ease);
  white-space: nowrap;
}
.bulk-cta:hover { background: var(--c-lime); color: var(--c-navy); transform: translateY(-1px); }

/* ============================================================================
   12.  PRODUCTS  —  bestsellers
   ============================================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.2s var(--ease);
}
.prod-card:hover { border-color: var(--c-cobalt); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.prod-card .img {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-white);
  color: var(--c-muted);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.prod-card .img::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px dashed var(--c-line);
  border-radius: var(--r-sm);
  pointer-events: none;
  transition: border-color 0.2s var(--ease);
}
.prod-card .img > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-card .img:has(> img)::before { display: none; }
.prod-card:hover .img::before { border-color: var(--c-cobalt); }
.prod-card .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--c-cobalt);
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 2px;
  z-index: 2;
}
.prod-card .badge.lime { background: var(--c-lime); color: var(--c-navy); }
.prod-card .body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod-card .sku {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.prod-card .name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--c-navy);
  line-height: 1.2;
  margin: 2px 0 4px;
}
.prod-card .specs { font-size: 12px; color: var(--c-muted); line-height: 1.5; flex: 1; margin-bottom: 8px; }
.prod-card .row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--c-line-soft);
}
.prod-card .price {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-navy);
  line-height: 1;
}
.prod-card .price small {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0;
}
.prod-card .stock {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--c-lime-deep);
}
.prod-card .stock::before { content: ''; width: 6px; height: 6px; background: var(--c-lime); border-radius: 50%; }

/* ============================================================================
   13.  INDUSTRIES
   ============================================================================ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ind-card {
  padding: 22px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.ind-card:hover { transform: translateY(-3px); border-color: var(--c-cobalt); box-shadow: var(--shadow-md); }
.ind-card .num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--c-cobalt);
  line-height: 1;
  margin-bottom: 4px;
}
.ind-card .label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--c-navy);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.ind-card .skus {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ============================================================================
   14.  ACCOUNT CTA
   ============================================================================ */
.account {
  background: linear-gradient(135deg, #384CAA 0%, #2E3D88 100%);
  color: var(--c-white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.account::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 100%, rgba(255,255,255,0.10) 0%, transparent 60%),
              radial-gradient(ellipse at 0% 0%, rgba(94,185,39,0.14) 0%, transparent 50%);
  pointer-events: none;
}
.account-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.account-text .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.10);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.account-text .kicker::before { content: ''; width: 6px; height: 6px; background: var(--c-lime); border-radius: 50%; }
.account-text h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.account-text h2 .accent { color: var(--c-lime); }
.account-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 26px;
  line-height: 1.55;
  max-width: 480px;
}
.perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 480px; }
.perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}
.perks li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--c-lime);
  color: var(--c-navy);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.account-form {
  background: var(--c-white);
  color: var(--c-text);
  padding: 32px;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.35);
}
.account-form h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.account-form .form-sub { font-size: 13px; color: var(--c-muted); margin-bottom: 20px; }
.account-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.account-form .single { margin-bottom: 12px; }
.account-form input,
.account-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 14px;
  background: var(--c-white);
  color: var(--c-text);
  outline: none;
  transition: border 0.15s var(--ease);
}
.account-form input:focus,
.account-form select:focus { border-color: var(--c-cobalt); box-shadow: 0 0 0 3px rgba(68,91,200,0.12); }
.account-form button {
  width: 100%;
  background: var(--c-cobalt);
  color: var(--c-white);
  padding: 14px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  margin-top: 8px;
  transition: all 0.15s var(--ease);
}
.account-form button:hover { background: var(--c-cobalt-deep); transform: translateY(-1px); }
.account-form .helper { font-size: 11px; color: var(--c-muted); margin-top: 12px; text-align: center; }

/* ============================================================================
   15.  FOOTER
   ============================================================================ */
.footer {
  background: var(--c-navy-deep);
  color: rgba(255,255,255,0.62);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand img { height: 36px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 18px;
}
.footer-brand .parent {
  font-size: 11px;
  color: var(--c-lime);
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
}
.footer-brand .parent a { color: inherit; text-decoration: underline; }
.footer h5 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 9px; font-size: 13px; }
.footer ul li a:hover { color: var(--c-white); }
.footer-bottom {
  margin-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .legal a { margin-left: 12px; }
.footer-bottom .legal a:hover { color: var(--c-white); }

/* ============================================================================
   16.  RESPONSIVE
   ============================================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .ib-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--c-white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s var(--ease);
    z-index: 50;
  }
  .nav.open .nav-menu {
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    padding: 8px 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav-menu > li { width: 100%; border-bottom: 1px solid var(--c-line-soft); }
  .nav-menu > li:last-child { border-bottom: none; }
  .nav-menu > li.right { margin-left: 0; }
  .nav-menu > li > a {
    width: 100%;
    padding: 14px 20px;
    justify-content: space-between;
  }
  .nav-sub,
  .nav-sub .nav-sub-2 {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--c-bg);
    padding: 4px 0;
    min-width: 0;
    margin: 0;
    display: none;
  }
  .nav-menu > li.open > .nav-sub,
  .nav-sub li.open > .nav-sub-2 { display: block; }
  .nav-sub a { padding-left: 36px; }
  .nav-sub-2 a { padding-left: 52px; }
  .nav .industry-cta { background: var(--c-bg); justify-content: center; }

  /* Nav bar — add label on the left so it doesn't look empty, style burger as a real button */
  .nav .wrap::before {
    content: "Browse Categories";
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--c-text);
  }
  .nav-burger {
    gap: 4px;
  }
  .nav-burger:hover,
  .nav-burger[aria-expanded="true"] { background: transparent; }
  .nav-burger span { width: 20px; }

  /* Header — drop search to its own row so it has room to breathe */
  .header { padding: 14px 0; }
  .header-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
  }
  .header-row > .logo  { grid-row: 1; grid-column: 1; }
  .header-row > .h-icons { grid-row: 1; grid-column: 2; justify-self: end; }
  .header-row > .search { grid-row: 2; grid-column: 1 / -1; max-width: 100%; display: none; }
  .header.search-open .header-row > .search { display: flex; }
  .h-icons .h-search-toggle { display: flex; }   /* show search-toggle button on mobile/tablet */
  .search input { padding: 11px 14px; font-size: 14px; }
  .search button { padding: 0 18px; font-size: 13px; }
}
@media (max-width: 600px) {
  /* Today's Wholesale Pricing — at very narrow widths, stack each row to 2 lines */
  .preview-head { padding: 14px 18px; }
  .preview-head .title { font-size: 12px; }
  .preview-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 7px;
    column-gap: 10px;
    padding: 12px 16px;
  }
  .preview-row .name { grid-row: 1; grid-column: 1; font-size: 13px; font-weight: 600; line-height: 1.3; }
  .preview-row .price { grid-row: 1; grid-column: 2; justify-self: end; align-self: center; }
  .preview-row .cat { grid-row: 2; grid-column: 1; justify-self: start; align-self: center; }
  .enquire-btn { grid-row: 2; grid-column: 2; justify-self: end; align-self: center; font-size: 10px; padding: 5px 10px; }
  .preview-foot { padding: 12px 16px; flex-wrap: wrap; gap: 6px; font-size: 11px; }
}
@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat { border-right: none; padding: 0 16px; border-bottom: 1px solid var(--c-line-soft); padding-bottom: 28px; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; padding-bottom: 0; }
  .stat-num { font-size: 42px; }
  .stat-num .plus { font-size: 24px; }
  .util .links { display: none; }
  .util-row { justify-content: center; }
  .h-icons { justify-self: end; }
  .section { padding: 40px 0; }
  .section-head { grid-template-columns: 1fr; }
  .bullets { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ib-grid { grid-template-columns: repeat(2, 1fr); }
  .ib-head h2 { font-size: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .bulk-grid { grid-template-columns: 1fr; }
  .tier-ladder { grid-template-columns: repeat(2, 1fr); }
  .account-grid { grid-template-columns: 1fr; gap: 36px; }
  .perks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .logo img { height: 36px; }
}
@media (max-width: 480px) {
  .cat-grid, .prod-grid, .ind-grid, .ib-grid { grid-template-columns: 1fr; }
  .bullets { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Hide icon text labels (Quote/Account/Cart) — keep icons + badges */
  .h-icons a > span:not(.badge) { display: none; }
  .h-icons a { padding: 8px 10px; }
  .h-icons .badge { top: 0; right: 0; }
  .logo img { height: 30px; }
  .search button { padding: 0 14px; }
}

/* ============================================================================
   13.  CATEGORY PAGE  —  reusable for all categories (Batteries, Inverters, etc.)
        Sections:  breadcrumb · category hero · sidebar filters · product list
                   list rows · pagination · mobile filter drawer
   ============================================================================ */

/* --- Breadcrumb ----------------------------------------------------------- */
.breadcrumb {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  padding: 12px 0;
  font-size: 13px;
}
.breadcrumb .wrap { display: flex; align-items: center; gap: 8px; color: var(--c-muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-cobalt); }
.breadcrumb .bc-sep { color: var(--c-line); }
.breadcrumb .bc-current { color: var(--c-text); font-weight: 600; }

/* --- Category hero -------------------------------------------------------- */
.cat-hero {
  background:
    radial-gradient(ellipse at 100% 100%, rgba(68,91,200,0.05) 0%, transparent 60%),
    var(--c-white);
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--c-line);
}
.cat-hero .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.cat-hero-text .kicker {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(68,91,200,0.10);
  color: var(--c-cobalt-deep);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.cat-hero-text h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 0.98;
  color: var(--c-navy);
  margin-bottom: 12px;
  letter-spacing: 0.005em;
}
.cat-hero-text .sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-muted);
  max-width: 1475px;
}
.cat-hero-stats { display: flex; gap: 28px; }
.cat-hero-stats li { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; line-height: 1; }
.cat-hero-stats strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--c-cobalt);
}
.cat-hero-stats span {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Layout: sidebar + main ----------------------------------------------- */
.cat-page { padding: 32px 0 60px; }
.cat-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

/* --- Filter sidebar ------------------------------------------------------- */
.filter-sidebar {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 0;
  position: sticky;
  top: 12px;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
}
.filter-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 18px 14px;
  border-bottom: 1px solid var(--c-line-soft);
}
.filter-head h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-navy);
}
.filter-clear {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-cobalt);
}
.filter-clear:hover { color: var(--c-cobalt-deep); text-decoration: underline; }

.filter-group {
  padding: 16px 18px;
  border-bottom: 1px solid var(--c-line-soft);
}
.filter-group:last-child { border-bottom: none; }
.filter-group h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 10px;
}
.filter-list { display: flex; flex-direction: column; gap: 4px; }
.filter-list label {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--c-text);
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: color 0.12s var(--ease);
}
.filter-list label:hover { color: var(--c-cobalt); }
.filter-list input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--c-cobalt);
  cursor: pointer;
}
.filter-list em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
}
.filter-show-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-cobalt);
  margin-top: 8px;
  padding-top: 4px;
}
.filter-show-more:hover { text-decoration: underline; }
.filter-toggle {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 0;
  font-size: 13.5px;
  cursor: pointer;
}
.filter-toggle input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--c-cobalt);
}

/* --- Product main area ---------------------------------------------------- */
.prod-main { min-width: 0; /* allow grid to shrink */ }
.prod-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.filter-toggle-btn {
  display: none;  /* hidden on desktop, shown on mobile */
  align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
  background: var(--c-bg);
}
.filter-toggle-btn:hover { background: var(--c-white); border-color: var(--c-cobalt); color: var(--c-cobalt); }
.filter-toggle-btn svg { width: 18px; height: 18px; }
.result-count { font-size: 13px; color: var(--c-muted); }
.result-count strong { color: var(--c-text); font-weight: 700; }
.prod-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--c-muted); }
.prod-sort select {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 28px 7px 10px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-white);
  color: var(--c-text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 4.5l3 3 3-3' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
}
.prod-sort select:focus { outline: none; border-color: var(--c-cobalt); }

/* --- Product list rows ---------------------------------------------------- */
.prod-list { display: flex; flex-direction: column; gap: 10px; }
.prod-row {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 18px;
  align-items: stretch;
  padding: 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.prod-row:hover {
  border-color: var(--c-cobalt);
  box-shadow: var(--shadow-md);
}
.prod-row.featured { border-color: var(--c-lime); background: rgba(94,185,39,0.03); }

/* Image cell */
.prod-row-img {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100px; height: 100px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  align-self: center;
}
.prod-row-img::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px dashed var(--c-line);
  border-radius: var(--r-sm);
  pointer-events: none;
  transition: border-color 0.2s var(--ease);
}
.prod-row-img:has(img)::before { display: none; }
.prod-row-img:hover::before { border-color: var(--c-cobalt); }
.prod-row-img .img-placeholder {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 9px;
  color: var(--c-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  padding: 0 6px;
}
.prod-row-img img { width: 100%; height: 100%; object-fit: contain; }
.prod-row-img:has(img) .img-placeholder { display: none; }
.row-badge {
  position: absolute;
  top: 6px; left: 6px;
  background: var(--c-lime);
  color: var(--c-navy);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 99px;
}

/* Main info cell */
.prod-row-main { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.prod-brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cobalt);
}
.prod-row-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.35;
}
.prod-row-name:hover { color: var(--c-cobalt); }
.prod-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; }
.prod-sku { color: var(--c-muted); font-family: var(--f-mono); }
.prod-stock { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.prod-stock::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}
.prod-stock.in { color: var(--c-lime-deep); }
.prod-stock.low { color: #C77A00; }
.prod-stock.out { color: var(--c-muted); }

/* Price cell */
.prod-row-price {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
  gap: 2px;
  text-align: right;
  white-space: nowrap;
}
.price-from {
  font-size: 10px;
  color: var(--c-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.prod-row-price .price {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-navy);
  line-height: 1;
}
.prod-row-price .price-unit {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-muted);
  margin-left: 3px;
}
.prod-row-price .bulk-tier {
  font-size: 11.5px;
  color: var(--c-lime-deep);
  margin-top: 4px;
}
.prod-row-price .bulk-tier strong { font-family: var(--f-mono); }
.prod-row-price .moq {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
}

/* Actions cell */
.prod-row-actions {
  display: flex; flex-direction: column; gap: 6px; align-items: stretch; justify-content: center;
  min-width: 140px;
}
.btn-quote {
  display: inline-block;
  text-align: center;
  background: var(--c-cobalt);
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  transition: all 0.15s var(--ease);
}
.btn-quote:hover { background: var(--c-cobalt-deep); }
.btn-quote:disabled { background: var(--c-muted); cursor: not-allowed; opacity: 0.6; }
.btn-save {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  color: var(--c-muted);
  background: var(--c-white);
  transition: all 0.15s var(--ease);
}
.btn-save svg { width: 16px; height: 16px; }
.btn-save:hover { border-color: var(--c-cobalt); color: var(--c-cobalt); }
.btn-save.active { color: var(--c-cobalt); border-color: var(--c-cobalt); background: rgba(68,91,200,0.06); }

/* --- Pagination ----------------------------------------------------------- */
.pagination {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px;
  padding: 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  gap: 12px;
}
.pagination .page-prev,
.pagination .page-next {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  color: var(--c-text);
  background: var(--c-white);
  transition: all 0.15s var(--ease);
}
.pagination .page-prev:hover:not(:disabled),
.pagination .page-next:hover:not(:disabled) { border-color: var(--c-cobalt); color: var(--c-cobalt); }
.pagination .page-prev:disabled,
.pagination .page-next:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination .pages { display: flex; gap: 4px; align-items: center; }
.pagination .pages a,
.pagination .pages .dots {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 34px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  border-radius: var(--r-sm);
  padding: 0 8px;
  transition: all 0.12s var(--ease);
}
.pagination .pages a:hover { background: var(--c-bg); }
.pagination .pages a.active {
  background: var(--c-cobalt);
  color: var(--c-white);
}
.pagination .pages .dots { color: var(--c-muted); cursor: default; }

/* --- Mobile filter drawer ------------------------------------------------- */
.filter-overlay {
  position: fixed; inset: 0;
  background: rgba(26,33,56,0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}
.filter-overlay.open { opacity: 1; pointer-events: auto; }

/* --- Tablet/mobile responsive --------------------------------------------- */
@media (max-width: 1100px) {
  .cat-layout { grid-template-columns: 220px 1fr; gap: 24px; }
  .prod-row { grid-template-columns: 88px 1fr auto; }
  .prod-row-actions { grid-column: 3; min-width: 120px; }
}

@media (max-width: 900px) {
  .cat-hero { padding: 32px 0 28px; }
  .cat-hero .wrap { grid-template-columns: 1fr; gap: 20px; }
  .cat-hero-stats { justify-content: flex-start; gap: 24px; }
  .cat-hero-stats li { align-items: flex-start; }
  .cat-hero-stats strong { font-size: 24px; }

  .cat-layout { grid-template-columns: 1fr; gap: 16px; }
  .filter-toggle-btn { display: inline-flex; }

  /* Sidebar becomes a slide-in drawer */
  .filter-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: min(320px, 86vw);
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.25s var(--ease);
    z-index: 100;
  }
  .filter-sidebar.open { transform: translateX(0); }
  .filter-head h3::before {
    content: '☰  ';
    font-size: 14px;
  }

  /* Product rows stack on mobile/tablet */
  .prod-row {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "img main"
      "price price"
      "actions actions";
    gap: 12px 14px;
    padding: 14px;
  }
  .prod-row-img { grid-area: img; width: 80px; height: 80px; }
  .prod-row-main { grid-area: main; }
  .prod-row-price {
    grid-area: price;
    align-items: flex-start;
    text-align: left;
    border-top: 1px solid var(--c-line-soft);
    padding-top: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 14px;
    align-items: baseline;
  }
  .prod-row-price .price-from { display: none; }
  .prod-row-price .price { font-size: 18px; }
  .prod-row-actions {
    grid-area: actions;
    flex-direction: row;
    min-width: 0;
    gap: 8px;
  }
  .btn-quote { flex: 1; }
  .btn-save { width: auto; padding: 7px 14px; }

  /* Pagination compacts */
  .pagination { padding: 12px; flex-wrap: wrap; gap: 8px; }
  .pagination .pages a,
  .pagination .pages .dots { min-width: 30px; height: 30px; font-size: 12px; }
}

@media (max-width: 480px) {
  .cat-hero h1 { font-size: 36px; }
  .cat-hero-stats { gap: 18px; }
  .prod-toolbar { padding: 10px 12px; gap: 10px; }
  .prod-toolbar > * { font-size: 12px; }
  .pagination .page-prev,
  .pagination .page-next { padding: 6px 10px; font-size: 11px; }
}

/* ============================================================================
   14.  CATEGORY PAGE — VIEW TOGGLE  (List ↔ Grid)
   ============================================================================ */

/* View toggle buttons in toolbar */
.view-toggle {
  display: inline-flex;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--c-white);
}
.view-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 32px;
  color: var(--c-muted);
  background: var(--c-white);
  transition: all 0.12s var(--ease);
}
.view-btn + .view-btn { border-left: 1px solid var(--c-line); }
.view-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; }
.view-btn[data-view="grid"] svg rect { fill: currentColor; stroke: none; }
.view-btn:hover { color: var(--c-text); background: var(--c-bg); }
.view-btn.active { color: var(--c-cobalt); background: rgba(68,91,200,0.08); }

/* Grid view — overrides list-row layout into a card grid */
.prod-list[data-view="grid"] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.prod-list[data-view="grid"] .prod-row {
  grid-template-columns: 1fr;
  grid-template-areas:
    "img"
    "main"
    "price"
    "actions";
  padding: 0;
  gap: 0;
  overflow: hidden;
}
.prod-list[data-view="grid"] .prod-row-img {
  grid-area: img;
  width: 100%; height: 180px;
  border-radius: 0;
  align-self: stretch;
}
.prod-list[data-view="grid"] .prod-row-main {
  grid-area: main;
  padding: 14px 14px 8px;
}
.prod-list[data-view="grid"] .prod-row-name { font-size: 14px; }
.prod-list[data-view="grid"] .prod-meta { font-size: 11px; gap: 10px; }
.prod-list[data-view="grid"] .prod-row-price {
  grid-area: price;
  padding: 8px 14px;
  border-top: 1px solid var(--c-line-soft);
  align-items: baseline;
  text-align: left;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.prod-list[data-view="grid"] .prod-row-price .price-from { display: none; }
.prod-list[data-view="grid"] .prod-row-price .price { font-size: 18px; }
.prod-list[data-view="grid"] .prod-row-price .moq { width: 100%; }
.prod-list[data-view="grid"] .prod-row-actions {
  grid-area: actions;
  flex-direction: row;
  padding: 0 14px 14px;
  min-width: 0;
  gap: 8px;
}
.prod-list[data-view="grid"] .btn-quote { flex: 1; padding: 9px 10px; font-size: 11.5px; }
.prod-list[data-view="grid"] .btn-save { width: auto; padding: 9px 12px; }

@media (max-width: 480px) {
  /* Single column on phones — already happens with auto-fill but force min size lower */
  .prod-list[data-view="grid"] { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
  .prod-list[data-view="grid"] .prod-row-img { height: 140px; }
  .view-btn { width: 32px; height: 28px; }
}

/* ============================================================================
   15.  SHOP BY INDUSTRY  —  industries.html grid + cards + CTA strip
   ============================================================================ */

.listing-page { padding: 32px 0 60px; }

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.listing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), transform 0.15s var(--ease);
}
.listing-card:hover {
  border-color: var(--c-cobalt);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.listing-card-head { display: flex; gap: 16px; align-items: flex-start; }
.listing-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(68,91,200,0.08);
  color: var(--c-cobalt);
  border-radius: var(--r-md);
}
.listing-icon svg { width: 30px; height: 30px; }
.listing-title { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.listing-title h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-navy);
  letter-spacing: 0.005em;
  line-height: 1.2;
}
.listing-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--c-muted); font-weight: 500; }
.listing-meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--c-line);
}

.listing-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-muted);
}

.listing-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.listing-tags li {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--c-bg);
  color: var(--c-text);
  border-radius: 99px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.listing-link {
  margin-top: auto;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-cobalt);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s var(--ease);
}
.listing-link:hover { color: var(--c-cobalt-deep); }
.listing-card:hover .listing-link { gap: 10px; }

/* CTA strip */
.industry-cta-strip {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 36px 0;
}
.industry-cta-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.industry-cta-strip .cta-text h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 6px;
  letter-spacing: 0.005em;
}
.industry-cta-strip .cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}
.industry-cta-strip .cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Industries page responsive */
@media (max-width: 900px) {
  .listing-grid { grid-template-columns: 1fr; }
  .industry-cta-strip { padding: 28px 0; }
  .industry-cta-strip .cta-text h2 { font-size: 22px; }
  .industry-cta-strip .wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .listing-card { padding: 18px; gap: 12px; }
  .listing-icon { width: 48px; height: 48px; }
  .listing-icon svg { width: 24px; height: 24px; }
  .listing-title h3 { font-size: 17px; }
}

/* ============================================================================
   16.  BULK PRICING PAGE  —  process steps + pricing matrix table + FAQ
   ============================================================================ */

/* --- Process steps -------------------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px;
  position: relative;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.process-step:hover { border-color: var(--c-cobalt); box-shadow: var(--shadow-sm); }
.process-step .num {
  width: 36px; height: 36px;
  background: var(--c-cobalt);
  color: var(--c-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
}
.process-step h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  margin-bottom: 6px;
  letter-spacing: 0.005em;
}
.process-step p { font-size: 13.5px; color: var(--c-muted); line-height: 1.5; }

/* --- Pricing matrix table ------------------------------------------------- */
.pricing-matrix {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow-x: auto;
}
.pricing-matrix table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.pricing-matrix th {
  background: var(--c-bg);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-line);
  white-space: nowrap;
}
.pricing-matrix th:not(:first-child) { text-align: right; }
.pricing-matrix td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--c-line-soft);
  vertical-align: middle;
}
.pricing-matrix td:not(:first-child) {
  text-align: right;
  font-family: var(--f-mono);
  font-weight: 600;
  color: var(--c-navy);
  white-space: nowrap;
}
.pricing-matrix tbody tr:last-child td { border-bottom: none; }
.pricing-matrix tbody tr:hover { background: rgba(94,185,39,0.04); }
.pricing-matrix .sku-mini {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.pricing-matrix tfoot td {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  border-bottom: none;
  padding: 10px 16px;
}
.pricing-matrix .save-pill {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-lime-deep);
  background: rgba(94,185,39,0.10);
  padding: 3px 10px;
  border-radius: 99px;
}
.pricing-matrix tfoot td:first-child .save-pill {
  color: var(--c-muted);
  background: var(--c-white);
  border: 1px solid var(--c-line);
}
.pricing-footnote {
  margin-top: 12px;
  font-size: 12px;
  color: var(--c-muted);
  font-style: italic;
}

/* --- FAQ list ------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 1475px; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 16px 20px;
  transition: border-color 0.15s var(--ease);
}
.faq-item[open] { border-color: var(--c-cobalt); }
.faq-item summary {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: 0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--c-cobalt);
  transition: transform 0.2s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* --- Bulk page responsive ------------------------------------------------- */
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-matrix th, .pricing-matrix td { padding: 12px 12px; font-size: 13px; }
  .pricing-matrix tfoot td { padding: 8px 12px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .faq-item { padding: 14px 16px; }
  .faq-item summary { font-size: 14px; }
}

/* ============================================================================
   17.  PRODUCT DETAIL PAGE  —  gallery + info panel + tabs + spec table + docs
   ============================================================================ */

/* --- Layout --------------------------------------------------------------- */
.pdp { padding: 24px 0 40px; }
.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

/* --- Image gallery -------------------------------------------------------- */
.pdp-gallery { position: sticky; top: 16px; display: flex; flex-direction: column; gap: 12px; max-width: 600px; width: 100%; }
.pdp-main-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pdp-main-img::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1px dashed var(--c-line);
  border-radius: var(--r-sm);
  pointer-events: none;
}
.pdp-img-placeholder {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pdp-img-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--c-cobalt);
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 99px;
  z-index: 1;
}
.pdp-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.pdp-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.15s var(--ease);
}
.pdp-thumb:hover { border-color: var(--c-cobalt); color: var(--c-cobalt); }
.pdp-thumb.active { border-color: var(--c-cobalt); background: rgba(68,91,200,0.05); color: var(--c-cobalt); }

/* --- Info panel ----------------------------------------------------------- */
.pdp-info { display: flex; flex-direction: column; gap: 14px; }
.pdp-brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cobalt);
}
.pdp-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--c-navy);
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.pdp-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.pdp-sku, .pdp-mpn { color: var(--c-muted); font-family: var(--f-mono); }
.pdp-stock { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.pdp-stock::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}
.pdp-stock.in { color: var(--c-lime-deep); }
.pdp-stock.low { color: #C77A00; }
.pdp-stock.out { color: var(--c-muted); }
.pdp-short {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--c-text);
}

/* --- Bullet highlights ---------------------------------------------------- */
.pdp-bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.pdp-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--c-text);
}
.pdp-bullets li::before {
  content: '';
  position: absolute;
  left: 4px; top: 7px;
  width: 8px; height: 8px;
  background: var(--c-lime);
  border-radius: 50%;
}

/* --- Price block ---------------------------------------------------------- */
.pdp-price-block {
  background: var(--c-bg);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.pdp-price-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}
.pdp-price-main { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.pdp-price-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pdp-price {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 32px;
  color: var(--c-navy);
  line-height: 1;
}
.pdp-price-unit {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 500;
}
.pdp-price-savings {
  display: inline-block;
  background: rgba(94,185,39,0.12);
  color: var(--c-lime-deep);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 99px;
  text-transform: uppercase;
}

.pdp-bulk-tiers {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.pdp-tier-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--c-line-soft);
  cursor: pointer;
  transition: background 0.12s var(--ease);
}
.pdp-tier-row:last-child { border-bottom: none; }
.pdp-tier-row:hover { background: var(--c-bg); }
.pdp-tier-row.active { background: rgba(94,185,39,0.06); }
.pdp-tier-row .tier-qty { color: var(--c-text); font-weight: 500; }
.pdp-tier-row .tier-price {
  font-family: var(--f-mono);
  font-weight: 700;
  color: var(--c-navy);
  display: inline-flex; align-items: center; gap: 8px;
}
.pdp-tier-row .tier-save {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--c-lime-deep);
  background: rgba(94,185,39,0.12);
  padding: 2px 8px;
  border-radius: 99px;
}

/* --- Quantity + actions --------------------------------------------------- */
.pdp-actions { display: flex; gap: 10px; align-items: stretch; }
.qty-selector {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--c-white);
}
.qty-btn {
  width: 40px;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  background: var(--c-bg);
  transition: background 0.12s var(--ease);
}
.qty-btn:hover { background: var(--c-line); color: var(--c-cobalt); }
.qty-input {
  width: 60px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: var(--c-white);
  color: var(--c-text);
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.btn-pdp-quote {
  flex: 1;
  display: inline-block;
  text-align: center;
  background: var(--c-cobalt);
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  transition: all 0.15s var(--ease);
}
.btn-pdp-quote:hover { background: var(--c-cobalt-deep); transform: translateY(-1px); box-shadow: 0 8px 16px -6px rgba(68,91,200,0.4); }
.btn-pdp-save {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-white);
  color: var(--c-muted);
  transition: all 0.15s var(--ease);
}
.btn-pdp-save svg { width: 18px; height: 18px; }
.btn-pdp-save:hover { border-color: var(--c-cobalt); color: var(--c-cobalt); }
.btn-pdp-save.active { color: var(--c-cobalt); border-color: var(--c-cobalt); background: rgba(68,91,200,0.06); }
.pdp-moq {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: -4px;
}

/* --- Trust strip ---------------------------------------------------------- */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line-soft);
}
.pdp-trust li {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 1.3;
}
.pdp-trust li svg { width: 22px; height: 22px; color: var(--c-cobalt); flex-shrink: 0; }
.pdp-trust li strong { color: var(--c-text); font-weight: 700; }

/* --- Tabs ----------------------------------------------------------------- */
.pdp-tabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 28px;
  flex-wrap: wrap;
  background: transparent;
}
.pdp-tab {
  padding: 14px 24px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.15s var(--ease);
}
.pdp-tab:hover { color: var(--c-text); }
.pdp-tab.active { color: var(--c-cobalt); border-bottom-color: var(--c-cobalt); }

.pdp-panel {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text);
}
.pdp-panel h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 12px;
}
.pdp-panel h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-navy);
  margin: 18px 0 8px;
  letter-spacing: 0.005em;
}
.pdp-panel p { margin-bottom: 12px; color: var(--c-muted); }
.pdp-panel ul { padding-left: 18px; margin-bottom: 8px; }
.pdp-panel ul li { list-style: disc; margin-bottom: 4px; color: var(--c-muted); font-size: 14px; }
.pdp-panel ul li strong { color: var(--c-text); }

/* --- PDP responsive ------------------------------------------------------- */
@media (max-width: 900px) {
  .pdp-layout { grid-template-columns: 1fr; gap: 24px; }
  .pdp-gallery { position: static; max-width: 100%; }
  .pdp-name { font-size: 26px; }
  .pdp-thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .pdp-trust { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pdp-tabs { gap: 0; overflow-x: auto; flex-wrap: nowrap; }
  .pdp-tab { padding: 12px 16px; white-space: nowrap; flex-shrink: 0; }
  .pdp-actions { flex-wrap: wrap; }
  .qty-selector { width: 100%; }
  .qty-input { flex: 1; }
  .btn-pdp-quote { width: 100%; }
  .btn-pdp-save { width: 100%; }
}

/* ============================================================================
   18.  CART  +  CHECKOUT  +  THANK-YOU  +  QUOTE-STATUS  +  EMPTY-STATE
   ============================================================================ */

/* --- Cart layout: rows + summary sidebar ---------------------------------- */
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.cart-main { min-width: 0; }
.cart-rows { display: flex; flex-direction: column; gap: 12px; }
.cart-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto auto;
  gap: 18px;
  padding: 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  align-items: stretch;
  transition: border-color 0.15s var(--ease);
}
.cart-row:hover { border-color: var(--c-cobalt); }
.cart-row-img {
  position: relative;
  width: 88px; height: 88px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  align-self: center;
  overflow: hidden;
}
.cart-row-img::before {
  content: '';
  position: absolute; inset: 5px;
  border: 1px dashed var(--c-line);
  border-radius: var(--r-sm);
  pointer-events: none;
  transition: border-color 0.2s var(--ease);
}
.cart-row-img:has(img)::before { display: none; }
.cart-row-img:hover::before { border-color: var(--c-cobalt); }
.cart-row-img .img-placeholder {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 8px;
  color: var(--c-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  padding: 0 4px;
}
.cart-row-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; justify-content: center; }
.cart-row-brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cobalt);
}
.cart-row-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.35;
}
.cart-row-name:hover { color: var(--c-cobalt); }
.cart-row-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; }
.cart-sku { color: var(--c-muted); font-family: var(--f-mono); }
.cart-stock { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.cart-stock::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.cart-stock.in { color: var(--c-lime-deep); }
.cart-stock.low { color: #C77A00; }
.cart-stock.out { color: var(--c-muted); }
.cart-row-tier { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.cart-row-tier .tier-badge {
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-cobalt-deep);
  background: rgba(68,91,200,0.10);
  padding: 3px 9px;
  border-radius: 99px;
  text-transform: uppercase;
}
.cart-row-tier .tier-saving {
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-lime-deep);
  background: rgba(94,185,39,0.12);
  padding: 3px 9px;
  border-radius: 99px;
  text-transform: uppercase;
}

.cart-row-qty {
  display: flex; flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
}
.cart-qty-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.cart-unit-price {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
}

.cart-row-subtotal {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
  gap: 4px;
  min-width: 110px;
}
.cart-row-subtotal .subtotal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.cart-row-subtotal .subtotal-value {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 19px;
  color: var(--c-navy);
  line-height: 1;
}
.cart-remove {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-muted);
  background: transparent;
  margin-top: 2px;
}
.cart-remove:hover { color: #C72020; text-decoration: underline; }

.cart-actions-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px;
  flex-wrap: wrap; gap: 10px;
}

/* --- Summary sidebar (cart + checkout share base) ------------------------- */
.cart-summary, .checkout-summary {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 22px;
  position: sticky;
  top: 12px;
}
.cart-summary h3, .checkout-summary h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-navy);
  margin-bottom: 16px;
  letter-spacing: 0.005em;
}
.summary-list { display: flex; flex-direction: column; gap: 9px; padding-bottom: 14px; border-bottom: 1px solid var(--c-line-soft); margin-bottom: 14px; }
.summary-list li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13.5px;
  color: var(--c-text);
}
.summary-list li > :last-child {
  font-family: var(--f-mono);
  font-weight: 600;
  color: var(--c-navy);
}
.summary-list .savings { color: var(--c-lime-deep); }
.summary-list .muted { color: var(--c-muted); font-family: var(--f-body); font-weight: 500; font-size: 12px; font-style: italic; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--c-line-soft);
}
.summary-total span { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-text); }
.summary-total strong {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 26px;
  color: var(--c-navy);
}
.summary-note {
  font-size: 11.5px;
  color: var(--c-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.cart-cta-full { display: block; text-align: center; padding: 14px 16px; font-size: 13px; }
.cart-link { display: block; margin-top: 12px; text-align: center; font-size: 13px; color: var(--c-cobalt); font-weight: 600; }
.cart-link:hover { text-decoration: underline; }

/* --- Cart responsive ------------------------------------------------------ */
@media (max-width: 1100px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 700px) {
  .cart-row {
    grid-template-columns: 72px 1fr;
    grid-template-areas: "img main" "qty qty" "subt subt";
    gap: 12px;
  }
  .cart-row-img { grid-area: img; width: 72px; height: 72px; }
  .cart-row-main { grid-area: main; }
  .cart-row-qty { grid-area: qty; flex-direction: row; gap: 12px; align-items: center; justify-content: flex-start; padding-top: 10px; border-top: 1px solid var(--c-line-soft); }
  .cart-row-subtotal { grid-area: subt; flex-direction: row; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--c-line-soft); }
}

/* --- Empty cart state ----------------------------------------------------- */
.empty-state-section { padding: 80px 0 60px; }
.empty-state {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.empty-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 96px; height: 96px;
  background: var(--c-bg);
  color: var(--c-cobalt);
  border-radius: 50%;
  margin-bottom: 22px;
}
.empty-icon svg { width: 48px; height: 48px; }
.empty-kicker {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(68,91,200,0.10);
  color: var(--c-cobalt-deep);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.empty-state h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--c-navy);
  line-height: 1.1;
  margin-bottom: 12px;
}
.empty-state p { font-size: 15px; color: var(--c-muted); line-height: 1.55; margin-bottom: 28px; }
.empty-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.empty-suggestions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; max-width: 440px; margin: 0 auto; }
.empty-suggestions a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-text);
  transition: border-color 0.15s var(--ease);
}
.empty-suggestions a:hover { border-color: var(--c-cobalt); color: var(--c-cobalt); }
.empty-suggestions em { font-style: normal; font-family: var(--f-mono); font-size: 11px; color: var(--c-muted); font-weight: 500; }
@media (max-width: 480px) {
  .empty-suggestions { grid-template-columns: 1fr; }
}

/* Form that wraps multiple .acct-block sections (e.g. profile page) — match acct-main's vertical rhythm */
form.acct-form { display: flex; flex-direction: column; gap: 18px; }

/* Inline form-saved indicator — small lime tick + label that appears next to form-actions buttons */
.form-saved {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-lime-deep);
  font-size: 13px;
  font-weight: 600;
}
.form-saved svg { width: 16px; height: 16px; flex-shrink: 0; }
.form-saved[hidden] { display: none; }

/* --- Checkout layout ------------------------------------------------------ */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}
.checkout-main { display: flex; flex-direction: column; gap: 18px; min-width: 0; }

/* Steps progress bar */
.checkout-steps {
  display: flex;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  gap: 4px;
  align-items: center;
  overflow-x: auto;
}
.checkout-steps li {
  display: flex; align-items: center; gap: 10px;
  flex: 1;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  white-space: nowrap;
  min-width: 0;
}
.checkout-steps li:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-line);
  margin-left: 8px;
}
.checkout-steps .step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-bg);
  color: var(--c-muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.checkout-steps .active { color: var(--c-text); }
.checkout-steps .active .step-num { background: var(--c-cobalt); color: var(--c-white); }

.checkout-block {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 22px;
}
.checkout-block-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; gap: 10px; flex-wrap: wrap; }
.checkout-block-head h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--c-navy);
  letter-spacing: 0.005em;
}
.checkout-edit { font-size: 12px; font-weight: 600; color: var(--c-cobalt); }
.checkout-edit:hover { text-decoration: underline; }
.checkout-meta { font-size: 12px; color: var(--c-muted); }

/* Form basics for checkout */
.form-grid { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-row.three { grid-template-columns: 2fr 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.form-field input, .form-field textarea, .form-field select {
  padding: 10px 12px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-white);
  outline: none;
  transition: border-color 0.12s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--c-cobalt); }
.form-field input[readonly] { background: var(--c-bg); cursor: default; }
.form-field textarea { resize: vertical; min-height: 70px; }
@media (max-width: 600px) {
  .form-row.two, .form-row.three { grid-template-columns: 1fr; }
}

/* Freight options */
.freight-options { display: flex; flex-direction: column; gap: 10px; }
.freight-opt {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color 0.15s var(--ease);
}
.freight-opt:hover { border-color: var(--c-cobalt); }
.freight-opt.selected { border-color: var(--c-cobalt); background: rgba(68,91,200,0.04); }
.freight-opt input[type="radio"] { margin-top: 4px; accent-color: var(--c-cobalt); flex-shrink: 0; }
.freight-opt-body { flex: 1; min-width: 0; }
.freight-opt-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.freight-opt-head strong { font-family: var(--f-display); font-weight: 700; font-size: 14.5px; color: var(--c-navy); }
.freight-price { font-family: var(--f-mono); font-weight: 700; font-size: 16px; color: var(--c-navy); white-space: nowrap; }
.freight-opt-meta { font-size: 12.5px; color: var(--c-muted); }

/* Payment options */
.payment-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.pay-opt {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color 0.15s var(--ease);
}
.pay-opt:hover { border-color: var(--c-cobalt); }
.pay-opt.selected { border-color: var(--c-cobalt); background: rgba(68,91,200,0.04); }
.pay-opt input[type="radio"] { margin-top: 4px; accent-color: var(--c-cobalt); flex-shrink: 0; }
.pay-opt-body { flex: 1; min-width: 0; }
.pay-opt-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 4px; }
.pay-opt-head strong { font-family: var(--f-display); font-weight: 700; font-size: 14.5px; color: var(--c-navy); }
.pay-opt p { font-size: 12.5px; color: var(--c-muted); line-height: 1.4; }
.pay-badge {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-lime-deep);
  background: rgba(94,185,39,0.12);
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
}
.pay-badge.muted { color: var(--c-muted); background: var(--c-bg); }
@media (max-width: 700px) { .payment-options { grid-template-columns: 1fr; } }

/* Checkout summary items list */
.checkout-items {
  display: flex; flex-direction: column; gap: 12px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--c-line-soft);
}
.checkout-items li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  align-items: center;
}
.ci-img {
  width: 44px; height: 44px;
  background: var(--c-bg);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.ci-img span {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.08em;
}
.ci-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ci-main strong { font-size: 12.5px; font-weight: 600; color: var(--c-text); line-height: 1.3; }
.ci-main span { font-size: 11px; color: var(--c-muted); }
.ci-amt {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--c-navy);
  white-space: nowrap;
}

.checkout-trust {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--c-muted);
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}

/* --- Thank you / Quote status --------------------------------------------- */
.thanks-hero {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  padding: 56px 0 48px;
  text-align: center;
}
.thanks-hero .wrap { max-width: 780px !important; }
.thanks-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px;
  background: rgba(94,185,39,0.10);
  color: var(--c-lime-deep);
  border-radius: 50%;
  margin-bottom: 22px;
}
.thanks-icon.pending { background: rgba(68,91,200,0.10); color: var(--c-cobalt); }
.thanks-icon svg { width: 44px; height: 44px; }
.thanks-hero .kicker {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(94,185,39,0.12);
  color: var(--c-lime-deep);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.thanks-hero.pending .kicker { background: rgba(68,91,200,0.10); color: var(--c-cobalt-deep); }
.thanks-hero h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--c-navy);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: 0.005em;
}
.thanks-sub { font-size: 15.5px; color: var(--c-muted); line-height: 1.55; margin-bottom: 28px; }
.thanks-sub strong { color: var(--c-text); }

.order-summary-card {
  background: var(--c-bg);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin: 0 auto 28px;
  text-align: left;
  max-width: 540px;
}
.osc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--c-line-soft);
  gap: 12px;
}
.osc-row:last-child { border-bottom: none; }
.osc-row span { font-size: 13px; color: var(--c-muted); font-weight: 500; }
.osc-row strong {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-navy);
  text-align: right;
}
.thanks-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Process steps with active state on first one */
.process-step.active { border-color: var(--c-lime); background: rgba(94,185,39,0.04); }
.process-step.active .num { background: var(--c-lime); color: var(--c-navy); }

/* Quote status — line items list */
.status-line-items {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.status-li-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1.5fr) auto auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-line-soft);
}
.status-li-row:last-child { border-bottom: none; }
.status-li-img {
  width: 56px; height: 56px;
  background: var(--c-bg);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.status-li-img span {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.08em;
}
.status-li-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.status-li-main strong { font-size: 14.5px; font-weight: 600; color: var(--c-text); line-height: 1.3; }
.status-li-main span { font-size: 11.5px; color: var(--c-muted); font-family: var(--f-mono); }
.status-li-qty { font-family: var(--f-mono); font-weight: 600; color: var(--c-text); font-size: 13.5px; white-space: nowrap; }
.status-li-tier {
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-lime-deep);
  background: rgba(94,185,39,0.10);
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-li-amt {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  text-align: right;
  min-width: 100px;
}
@media (max-width: 800px) {
  .status-li-row {
    grid-template-columns: 56px 1fr;
    grid-template-areas: "img main" "qty tier" "amt amt";
    gap: 8px 12px;
  }
  .status-li-img { grid-area: img; }
  .status-li-main { grid-area: main; }
  .status-li-qty { grid-area: qty; padding-top: 6px; border-top: 1px solid var(--c-line-soft); }
  .status-li-tier { grid-area: tier; padding-top: 6px; border-top: 1px solid var(--c-line-soft); justify-self: end; }
  .status-li-amt { grid-area: amt; text-align: left; padding-top: 6px; border-top: 1px solid var(--c-line-soft); }
}

/* ============================================================================
   19.  AUTH PAGES (sign in / sign up)  +  CART AUTO-EMPTY STATE
   ============================================================================ */

/* --- Auth layout ---------------------------------------------------------- */
.auth-section { padding: 36px 0 60px; }
.auth-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.auth-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 36px 38px;
  max-width: 800px;
}
.auth-kicker {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(68,91,200,0.10);
  color: var(--c-cobalt-deep);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.auth-card h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--c-navy);
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: 0.005em;
}
.auth-sub { font-size: 14.5px; color: var(--c-muted); line-height: 1.55; margin-bottom: 24px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form .form-field label {
  display: flex; justify-content: space-between; align-items: center;
}
.auth-aux { font-size: 11.5px; color: var(--c-cobalt); font-weight: 600; text-transform: none; letter-spacing: 0; }
.auth-aux:hover { text-decoration: underline; }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 42px; width: 100%; }
.pw-toggle {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--c-muted);
  border-radius: var(--r-sm);
  transition: color 0.12s var(--ease);
}
.pw-toggle:hover { color: var(--c-cobalt); }
.pw-toggle svg { width: 18px; height: 18px; }

.auth-check {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px;
  color: var(--c-text);
  cursor: pointer;
  line-height: 1.4;
}
.auth-check input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--c-cobalt);
  cursor: pointer;
  flex-shrink: 0;
}
.auth-check a { color: var(--c-cobalt); font-weight: 600; }
.auth-check a:hover { text-decoration: underline; }

.auth-submit { padding: 13px 22px; font-size: 13.5px; justify-content: center; width: 100%; text-align: center; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 16px;
  color: var(--c-muted);
  font-size: 12px;
  font-weight: 500;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-line);
}

.auth-switch { font-size: 14px; color: var(--c-muted); text-align: center; }
.auth-switch a { color: var(--c-cobalt); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

/* Auth side panel */
.auth-side {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 26px 24px;
  position: sticky;
  top: 16px;
}
.auth-side h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--c-navy);
  margin-bottom: 14px;
  letter-spacing: 0.005em;
}
.auth-side ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.auth-side ul li {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}
.auth-side ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--c-lime);
  border-radius: 50%;
}
.auth-side ul li strong { color: var(--c-text); font-weight: 700; }
.auth-help {
  background: var(--c-bg);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.5;
}
.auth-help strong { color: var(--c-text); font-family: var(--f-mono); font-weight: 700; }

@media (max-width: 1000px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { position: static; }
}
@media (max-width: 600px) {
  .auth-card { padding: 24px 22px; }
}

/* --- Cart auto-empty toggle ---------------------------------------------- */
.cart-empty-inline { display: none; padding: 60px 0 40px; }
.cart-empty-inline .empty-state h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--c-navy);
  line-height: 1.1;
  margin-bottom: 12px;
}

#cart-section.is-empty .cart-layout { display: none; }
#cart-section.is-empty .cart-empty-inline { display: block; }

/* ============================================================================
   20.  ACCOUNT SECTION — sidebar layout, dashboard, tables, status pills,
        timelines, address cards, payment cards, profile forms
   ============================================================================ */

/* --- Layout: sidebar + main ---------------------------------------------- */
.acct-section { padding: 28px 0 60px; }
.acct-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}
.acct-main { min-width: 0; display: flex; flex-direction: column; gap: 18px; }

/* --- Sidebar -------------------------------------------------------------- */
.acct-sidebar {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 22px 18px;
  position: sticky;
  top: 16px;
}
.acct-user {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line-soft);
  margin-bottom: 14px;
}
.acct-avatar {
  width: 44px; height: 44px;
  background: var(--c-cobalt);
  color: var(--c-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.acct-user-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.acct-user-info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.2;
}
.acct-user-info span {
  font-size: 11.5px;
  color: var(--c-muted);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.acct-status {
  display: inline-block;
  margin-top: 2px;
  font-family: var(--f-display);
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-lime-deep) !important;
}

.acct-nav { display: flex; flex-direction: column; gap: 2px; }
.acct-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-text);
  transition: all 0.12s var(--ease);
}
.acct-nav-link:hover { background: var(--c-bg); color: var(--c-cobalt); }
.acct-nav-link.active { background: rgba(68,91,200,0.08); color: var(--c-cobalt); }
.acct-nav-link.signout {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--c-line-soft);
  border-radius: 0;
  color: var(--c-muted);
}
.acct-nav-link.signout:hover { color: #C72020; background: transparent; }
.acct-nav-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.acct-nav-icon svg { width: 18px; height: 18px; }

/* --- Page head ------------------------------------------------------------ */
.acct-page-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 8px;
}
.acct-page-head h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--c-navy);
  line-height: 1.05;
  letter-spacing: 0.005em;
}
.acct-page-head p { font-size: 14px; color: var(--c-muted); margin-top: 4px; }
.page-head-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* --- Stats row (dashboard) ----------------------------------------------- */
.acct-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.acct-stat {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.15s var(--ease);
}
.acct-stat:hover { border-color: var(--c-cobalt); }
.acct-stat.highlight { background: var(--c-navy); border-color: var(--c-navy); }
.acct-stat.highlight .stat-label,
.acct-stat.highlight .stat-link { color: rgba(255,255,255,0.65); }
.acct-stat.highlight strong { color: var(--c-white); }
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /*color: var(--c-muted);*/
}
.acct-stat strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--c-navy);
  line-height: 1.05;
  margin: 4px 0 6px;
}
.stat-link { font-size: 12px; font-weight: 600; color: var(--c-cobalt); }
.stat-link:hover { text-decoration: underline; }
.stat-link.muted { color: var(--c-muted); }

/* --- Block (card with header) -------------------------------------------- 
.acct-block {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
}
.acct-block-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-line-soft);
}
.acct-block-head h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--c-navy);
  letter-spacing: 0.005em;
}
.acct-block-link { font-size: 12.5px; font-weight: 600; color: var(--c-cobalt); }
.acct-block-link:hover { text-decoration: underline; }
.acct-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* --- Toolbar (search + filter) ------------------------------------------- */
.acct-toolbar {
  display: flex; gap: 10px; flex-wrap: wrap;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 12px;
}
.acct-search {
  flex: 1; min-width: 200px;
  padding: 10px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  background: var(--c-bg);
  outline: none;
  transition: border-color 0.12s var(--ease);
}
.acct-search:focus { border-color: var(--c-cobalt); background: var(--c-white); }
.acct-filter {
  padding: 10px 36px 10px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 4.5l3 3 3-3' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

/* --- Tables -------------------------------------------------------------- */
.acct-table {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.acct-table table { width: 100%; border-collapse: collapse; }
.acct-table th {
  background: var(--c-bg);
  padding: 12px 18px;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-line);
  white-space: nowrap;
}
.acct-table td {
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-line-soft);
  vertical-align: middle;
}
.acct-table tbody tr:last-child td { border-bottom: none; }
.acct-table tbody tr:hover { background: var(--c-bg); }
.acct-table strong { color: var(--c-navy); font-family: var(--f-mono); font-weight: 700; }
.acct-table .row-sub { display: block; font-family: var(--f-mono); font-size: 11px; color: var(--c-muted); font-weight: 400; margin-top: 2px; }
.row-link { color: var(--c-cobalt); font-weight: 600; font-size: 13px; white-space: nowrap; }
.row-link:hover { text-decoration: underline; }

/* --- Status pills -------------------------------------------------------- */
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}
.status-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-pill.processing { color: #B45309; background: rgba(245,158,11,0.12); }
.status-pill.shipped { color: var(--c-cobalt-deep); background: rgba(68,91,200,0.10); }
.status-pill.delivered { color: var(--c-lime-deep); background: rgba(94,185,39,0.12); }
.status-pill.cancelled { color: #6B7280; background: var(--c-bg); }
.status-pill.pending { color: #B45309; background: rgba(245,158,11,0.12); }
.status-pill.confirmed { color: var(--c-lime-deep); background: rgba(94,185,39,0.12); }
.status-pill.expired { color: #6B7280; background: var(--c-bg); }
.default-pill {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-cobalt);
  background: rgba(68,91,200,0.10);
  padding: 3px 9px;
  border-radius: 99px;
}

/* --- Mini list (compact rows in dashboard cards) ------------------------- */
.acct-mini-list { display: flex; flex-direction: column; }
.acct-mini-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--c-line-soft);
}
.acct-mini-list li:last-child { border-bottom: none; }
.mini-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mini-main strong { font-size: 13.5px; font-weight: 700; color: var(--c-text); }
.mini-main span { font-size: 12px; color: var(--c-muted); line-height: 1.3; }

/* --- Order detail: status banner + timeline + line items ----------------- */
.order-status-banner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.20);
  gap: 12px;
}
.osb-text { display: flex; flex-direction: column; gap: 2px; }
.osb-text strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  color: #B45309;
  letter-spacing: 0.005em;
}
.osb-text span { font-size: 13px; color: var(--c-text); }
.osb-link { font-family: var(--f-display); font-weight: 700; font-size: 13px; color: var(--c-cobalt); white-space: nowrap; }
.osb-link:hover { text-decoration: underline; }

.order-timeline {
  display: flex; flex-direction: column; gap: 0;
  padding: 16px 20px;
}
.otl-step {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 14px;
  padding: 12px 0;
  align-items: center;
  position: relative;
}
.otl-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 10px; top: 28px; bottom: -8px;
  width: 2px;
  background: var(--c-line);
}
.otl-step.active:not(:last-child)::before { background: var(--c-lime); }
.otl-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid var(--c-line);
  position: relative;
  z-index: 1;
}
.otl-step.active .otl-dot { background: var(--c-lime); border-color: var(--c-lime-deep); }
.otl-dot.pulsing {
  background: var(--c-cobalt);
  border-color: var(--c-cobalt-deep);
  box-shadow: 0 0 0 0 rgba(68,91,200,0.7);
  animation: otl-pulse 1.6s ease-out infinite;
}
@keyframes otl-pulse {
  0% { box-shadow: 0 0 0 0 rgba(68,91,200,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(68,91,200,0); }
  100% { box-shadow: 0 0 0 0 rgba(68,91,200,0); }
}
.otl-step strong { font-family: var(--f-display); font-weight: 700; font-size: 14.5px; color: var(--c-navy); }
.otl-step span { font-size: 12.5px; color: var(--c-muted); }

.order-line-items { display: flex; flex-direction: column; }
.order-line-items li {
  display: grid;
  grid-template-columns: 56px minmax(0, 2fr) 90px 90px 110px;
  gap: 14px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-line-soft);
}
.order-line-items li:last-child { border-bottom: none; }
.oli-img { width: 56px; height: 56px; background: var(--c-bg); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; }
.oli-img span { font-family: var(--f-display); font-weight: 800; font-size: 11px; color: var(--c-muted); letter-spacing: 0.08em; }
.oli-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.oli-main strong { font-size: 14px; font-weight: 600; color: var(--c-text); }
.oli-tier {
  display: inline-block;
  margin-top: 2px;
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-lime-deep);
  background: rgba(94,185,39,0.10);
  padding: 2px 8px;
  border-radius: 99px;
  width: max-content;
  text-transform: uppercase;
}
.oli-qty, .oli-unit { font-family: var(--f-mono); font-size: 13px; color: var(--c-muted); white-space: nowrap; }
.oli-amt { text-align: right; font-family: var(--f-mono); font-weight: 700; font-size: 15px; color: var(--c-navy); }

.info-block { padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; font-size: 13.5px; color: var(--c-text); line-height: 1.5; }
.info-block strong { font-family: var(--f-display); font-weight: 700; font-size: 15px; color: var(--c-navy); }
.info-block hr { border: none; border-top: 1px solid var(--c-line-soft); margin: 10px 0; }
.info-block .summary-list { padding-bottom: 0; border-bottom: none; margin-bottom: 0; }
.info-block .summary-total { padding: 10px 0 0; border-top: 1px solid var(--c-line-soft); border-bottom: none; margin-top: 4px; margin-bottom: 0; }

/* --- Shipment cards ------------------------------------------------------ */
.shipment-cards { display: flex; flex-direction: column; gap: 14px; }
.shipment-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 16px;
}
.ship-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.ship-head strong { font-family: var(--f-display); font-weight: 700; font-size: 15px; color: var(--c-navy); }
.ship-head .row-sub { display: block; font-family: var(--f-mono); font-size: 11.5px; color: var(--c-muted); margin-top: 2px; }
.ship-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.ship-progress::before {
  content: '';
  position: absolute;
  top: 9px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--c-line);
  z-index: 0;
}
.sp-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative;
  z-index: 1;
}
.sp-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-line);
}
.sp-step.done .sp-dot { background: var(--c-lime); border-color: var(--c-lime-deep); }
.sp-step.active .sp-dot { background: var(--c-cobalt); border-color: var(--c-cobalt-deep); }
.sp-step.active .sp-dot.pulsing { box-shadow: 0 0 0 0 rgba(68,91,200,0.7); animation: otl-pulse 1.6s ease-out infinite; }
.sp-step span { font-family: var(--f-display); font-weight: 700; font-size: 12px; color: var(--c-text); text-align: center; }
.sp-step em { font-style: normal; font-size: 11px; color: var(--c-muted); text-align: center; }
.sp-step:not(.done):not(.active) span,
.sp-step:not(.done):not(.active) em { color: var(--c-muted); }
.ship-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--c-muted);
  padding-top: 12px;
  border-top: 1px solid var(--c-line-soft);
  flex-wrap: wrap; gap: 8px;
}
.ship-foot strong { color: var(--c-text); font-weight: 600; }

/* --- Address cards ------------------------------------------------------- */
.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.address-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.15s var(--ease);
}
.address-card:hover { border-color: var(--c-cobalt); }
.address-card.default { border-color: var(--c-cobalt); background: rgba(68,91,200,0.03); }
.addr-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.addr-head strong { font-family: var(--f-display); font-weight: 800; font-size: 15px; color: var(--c-navy); letter-spacing: 0.005em; }
.addr-body { display: flex; flex-direction: column; gap: 2px; font-size: 13px; color: var(--c-text); line-height: 1.5; }
.addr-body span:first-child { font-weight: 600; }
.addr-phone { font-family: var(--f-mono); color: var(--c-muted) !important; margin-top: 4px; }
.addr-foot { display: flex; gap: 14px; padding-top: 12px; border-top: 1px solid var(--c-line-soft); }
.btn-link { background: transparent; padding: 0; font-size: 12.5px; font-weight: 600; color: var(--c-cobalt); }
.btn-link:hover { text-decoration: underline; }
.btn-link.muted { color: var(--c-muted); }
.btn-link.muted:hover { color: #C72020; }

/* --- Profile status grid ------------------------------------------------- */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  padding: 18px 20px;
}
.status-card {
  background: var(--c-bg);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.status-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.status-card strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--c-navy);
  line-height: 1.1;
}
.status-card strong.lime { color: var(--c-lime-deep); }
.status-card-meta { font-size: 11.5px; color: var(--c-muted); }

/* --- Profile/password forms in acct-block -------------------------------- */
.acct-block .form-grid { padding: 18px 20px; }
.acct-block .form-grid > .form-row,
.acct-block .form-grid > .form-field { margin: 0; }
.password-block .form-grid { max-width: 575px; }
.pw-rules {
  margin-top: 6px;
  background: var(--c-bg);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.5;
}
.pw-rules strong { display: block; color: var(--c-text); font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.pw-rules ul { padding-left: 18px; }
.pw-rules ul li { list-style: disc; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* --- Payment page -------------------------------------------------------- */
.net30-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  padding: 18px 20px;
}
.net30-stat { display: flex; flex-direction: column; gap: 2px; }
.net30-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-muted);
}
.net30-stat strong {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-navy);
  line-height: 1;
  margin: 4px 0 2px;
}
.net30-stat strong.lime { color: var(--c-lime-deep); }
.net30-meta { font-size: 11.5px; color: var(--c-muted); }

.card-list { display: flex; flex-direction: column; }
.pay-card {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-line-soft);
}
.pay-card:last-child { border-bottom: none; }
.pay-card-icon {
  width: 56px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-white);
}
.pay-card-icon.visa { background: #1A1F71; }
.pay-card-icon.mc { background: #EB001B; }
.pay-card-icon.ach { background: var(--c-navy); }
.pay-card-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pay-card-info strong { font-size: 14px; font-weight: 700; color: var(--c-text); }
.pay-card-info span { font-size: 12px; color: var(--c-muted); }
.pay-card-actions { display: flex; gap: 12px; }

.cert-block {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
}
.cert-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(68,91,200,0.08);
  color: var(--c-cobalt);
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.cert-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cert-info strong { font-family: var(--f-mono); font-size: 13.5px; font-weight: 700; color: var(--c-navy); }
.cert-info span { font-size: 12.5px; color: var(--c-muted); }
.cert-actions { display: flex; gap: 12px; }

/* --- Account section responsive ------------------------------------------ */
@media (max-width: 1000px) {
  .acct-layout { grid-template-columns: 1fr; gap: 18px; }
  .acct-sidebar { position: static; padding: 16px; }

  /* Sidebar becomes top tabs on mobile/tablet */
  .acct-user { padding-bottom: 14px; margin-bottom: 12px; }
  .acct-nav {
    flex-direction: row;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .acct-nav-link {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 13px;
  }
  .acct-nav-link.signout {
    margin-top: 0;
    padding-top: 8px;
    border-top: none;
    border-left: 1px solid var(--c-line-soft);
    padding-left: 14px;
    margin-left: 4px;
  }

  .acct-stats { grid-template-columns: repeat(2, 1fr); }
  .acct-grid-2 { grid-template-columns: 1fr; }
  .order-line-items li {
    grid-template-columns: 56px 1fr;
    grid-template-areas: "img main" "qty unit" "amt amt";
    gap: 6px 14px;
  }
  .oli-img { grid-area: img; }
  .oli-main { grid-area: main; }
  .oli-qty { grid-area: qty; padding-top: 8px; border-top: 1px solid var(--c-line-soft); }
  .oli-unit { grid-area: unit; padding-top: 8px; border-top: 1px solid var(--c-line-soft); text-align: right; }
  .oli-amt { grid-area: amt; padding-top: 6px; text-align: left; }
  .ship-progress { grid-template-columns: repeat(2, 1fr); gap: 14px 0; }
  .ship-progress::before { display: none; }
}
@media (max-width: 600px) {
  .acct-stats { grid-template-columns: 1fr; }
  .acct-table th, .acct-table td { padding: 10px 12px; font-size: 12.5px; }
  .acct-table th:nth-child(2), .acct-table td:nth-child(2),
  .acct-table th:nth-child(3), .acct-table td:nth-child(3) { display: none; }
  .pay-card { grid-template-columns: 56px 1fr; gap: 10px 14px; }
  .pay-card-actions { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid var(--c-line-soft); }
}

/* ============================================================================
   21.  STATIC PAGES — docs / legal / contact / track  (shared layouts)
   ============================================================================ */

/* --- Docs layout: side TOC + main column --------------------------------- */
.doc-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}
.doc-side {
  position: sticky;
  top: 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.doc-side h4 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 12px;
}
.doc-toc { display: flex; flex-direction: column; gap: 4px; }
.doc-toc li { font-size: 13px; }
.doc-toc a {
  display: block;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  color: var(--c-muted);
  font-weight: 500;
  transition: all 0.12s var(--ease);
}
.doc-toc a:hover { background: var(--c-bg); color: var(--c-cobalt); }
.doc-side-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line-soft);
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.5;
}
.doc-side-note a { color: var(--c-cobalt); font-weight: 600; }
.doc-side-note a:hover { text-decoration: underline; }

.doc-main {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 32px 36px;
  max-width: 1475px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-text);
}
.doc-main h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-navy);
  margin: 28px 0 12px;
  letter-spacing: 0.005em;
  scroll-margin-top: 90px;
}
.doc-main h2:first-child { margin-top: 0; }
.doc-main h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  margin: 18px 0 8px;
  letter-spacing: 0.01em;
}
.doc-main p { color: var(--c-muted); margin-bottom: 12px; }
.doc-main p strong, .doc-main li strong { color: var(--c-text); font-weight: 700; }
.doc-main ul, .doc-main ol { padding-left: 20px; margin-bottom: 14px; }
.doc-main ul li { list-style: disc; color: var(--c-muted); margin-bottom: 4px; }
.doc-main ol li { list-style: decimal; color: var(--c-muted); margin-bottom: 4px; }
.doc-main a { color: var(--c-cobalt); font-weight: 600; }
.doc-main a:hover { text-decoration: underline; }
.doc-main .legal-intro {
  padding: 14px 18px;
  background: var(--c-bg);
  border-left: 3px solid var(--c-cobalt);
  border-radius: var(--r-sm);
  font-style: italic;
  margin-bottom: 22px;
  color: var(--c-text);
}

/* --- FAQ items inside doc layout (override max-width) -------------------- */
.doc-main .faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-bottom: 8px;
  max-width: none;
}
.doc-main .faq-item p { margin-bottom: 0; }

/* --- Form helpers (shared) ----------------------------------------------- */
.doc-main .form-grid { padding: 0; }
.doc-main .form-grid h2 { margin: 24px 0 8px; padding-top: 14px; border-top: 1px solid var(--c-line-soft); }
.doc-main .form-grid h2:first-child { padding-top: 0; border-top: none; margin-top: 0; }
.form-note {
  font-size: 12px;
  color: var(--c-muted);
  font-style: italic;
}

/* --- Contact page -------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 30px;
}
.contact-form-wrap h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 6px;
  letter-spacing: 0.005em;
}
.contact-sub { font-size: 14px; color: var(--c-muted); margin-bottom: 20px; }
.contact-side { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.contact-card h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}
.contact-phone {
  display: block;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-cobalt);
  margin-bottom: 4px;
}
.contact-phone:hover { color: var(--c-cobalt-deep); }
.contact-email {
  display: block;
  font-size: 13px;
  color: var(--c-cobalt);
  font-weight: 600;
  word-break: break-all;
  margin-bottom: 2px;
}
.contact-email:hover { text-decoration: underline; }
.contact-card.address-card { border-color: var(--c-line); background: var(--c-bg); padding: 18px 20px; }
.contact-hours { font-size: 12px; color: var(--c-muted); }

/* --- Track order page ---------------------------------------------------- */
.track-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.track-form-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 32px 36px;
  max-width: 800px;
}
.track-form-card h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-navy);
  margin-bottom: 6px;
  letter-spacing: 0.005em;
}
.track-sub { font-size: 14px; color: var(--c-muted); margin-bottom: 20px; }
.track-side {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  position: sticky;
  top: 16px;
}
.track-side h4 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--c-navy);
  margin-bottom: 12px;
}
.track-side ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.track-side ul li { font-size: 12.5px; color: var(--c-muted); line-height: 1.5; }
.track-side ul li strong { color: var(--c-text); font-weight: 700; }

/* --- Static-page responsive ---------------------------------------------- */
@media (max-width: 900px) {
  .doc-wrap { grid-template-columns: 1fr; gap: 16px; }
  .doc-side { position: static; }
  .doc-main { padding: 24px 22px; }
  .contact-grid, .track-wrap { grid-template-columns: 1fr; }
  .track-side { position: static; }
}
@media (max-width: 600px) {
  .doc-main { padding: 20px 18px; font-size: 14px; }
  .doc-main h2 { font-size: 19px; margin: 20px 0 10px; }
  .contact-form-wrap, .track-form-card { padding: 22px 20px; }
}

/* ============================================================================
   PRICE LOCK  —  hides prices from guests, reveals when body.signed-in
   ============================================================================
   Default state = guest (not signed in). Shows blurred placeholder + lock link.
   When body.signed-in is set (by main.js reading localStorage), real price shows.
   ---------------------------------------------------------------------------- */

/* Default (guest) visibility */
.price-lock-real { display: none; }
.price-lock-blur {
  display: inline-block;
  filter: blur(9px);
  color: var(--c-lime-light);
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.price-lock-msg {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-cobalt);
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
}
.price-lock-msg::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='11' width='16' height='10' rx='2'/><path d='M8 11V7a4 4 0 0 1 8 0v4'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='11' width='16' height='10' rx='2'/><path d='M8 11V7a4 4 0 0 1 8 0v4'/></svg>");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.price-lock-msg:hover { text-decoration: underline; color: var(--c-cobalt-deep); }

/* Bulk-tier amount: blur only the dollar value, keep "100+ units:" label visible */
.bulk-tier-lock {
  display: inline-block;
  filter: blur(9px);
  color: var(--c-lime-light);
  user-select: none;
  -webkit-user-select: none;
}

/* Category page — price filter sidebar lock notice */
.filter-price-lock {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 10px;
  background: rgba(68, 91, 200, 0.08);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-cobalt);
  text-decoration: none;
}
.filter-price-lock::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='11' width='16' height='10' rx='2'/><path d='M8 11V7a4 4 0 0 1 8 0v4'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='11' width='16' height='10' rx='2'/><path d='M8 11V7a4 4 0 0 1 8 0v4'/></svg>");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.filter-price-lock:hover { background: rgba(68, 91, 200, 0.14); }

/* Category page — disable the price filter checkboxes for guests */
.filter-price-group .filter-list { opacity: 0.55; pointer-events: none; }

/* Category page — narrower price column: stack lock-msg below blurred price */
.prod-row-price .price-lock-msg {
  display: flex;
  margin-left: 0;
  margin-top: 2px;
  font-size: 10px;
}

/* Bestseller cards — show blurred price stacked above "Sign in to view price".
   Stack vertically inside .price, keep In Stock at top right of the row. */
.prod-card .price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 4px;
}
.prod-card .price-lock-blur {
  font-size: 18px;
}
.prod-card .price-lock-real { font-size: 20px; }

.prod-card .price .price-lock-msg {
  display: inline-flex;
  margin-left: 0;
  margin-top: 0;
  font-size: 11px;
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
/* Keep "In Stock" pinned to top of the row instead of baseline-aligning to
   the bottom of the now multi-line .price block */
.prod-card .row {
  align-items: flex-start;
  padding-top: 12px;
}

/* Enquire button on bestseller cards.
   Implemented as a <span> (not <a>) because .prod-card is itself an <a> and
   nested anchors break the layout. Clicks propagate up to .prod-card → product.html. */
.prod-card .btn-enquire-card {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 9px 12px;
  background: var(--c-cobalt);
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.15s var(--ease);
  box-sizing: border-box;
  text-decoration: none;
}
.prod-card:hover .btn-enquire-card,
.prod-card .btn-enquire-card:hover {
  background: var(--c-cobalt-deep);
}

/* Product detail page (PDP) — main price area lock-msg drops to its own line
   below the large 32px price, instead of trying to baseline-align with it */
.pdp-price-main .price-lock-msg {
  flex-basis: 100%;
  margin-left: 0;
  margin-top: 6px;
  font-size: 12px;
}

/* Cart page — lock-msg in the per-row unit price area drops below the blurred
   amount, since the unit price column is narrow */
.cart-unit-price .price-lock-msg {
  display: flex;
  margin-left: 0;
  margin-top: 4px;
  font-size: 10.5px;
}

/* Cart page — prominent "Sign in to view price" notice in the summary sidebar */
.cart-summary-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 8px 0 14px;
  padding: 10px 12px;
  background: rgba(68, 91, 200, 0.08);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 600;
}

/* Inner click-link wrappers — used since .prod-card is now a <div> not <a>.
   The image and the sku/name/specs block each get their own <a> so the whole
   card area is clickable to product.html, but Enquire and Sign-in-to-view-price
   work as their own separate links. */
.prod-card-img-link,
.prod-card-text-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.prod-card-img-link { display: contents; } /* image keeps its existing aspect-ratio rules */

/* === SIGNED-IN STATE — flip everything ====================================== */
body.signed-in .price-lock-blur,
body.signed-in .price-lock-msg,
body.signed-in .filter-price-lock { display: none; }

body.signed-in .price-lock-real { display: inline; }

body.signed-in .bulk-tier-lock {
  filter: none;
  user-select: auto;
  -webkit-user-select: auto;
}

body.signed-in .filter-price-group .filter-list {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================================
   SAVED ITEMS PAGE  —  saved.html
   Reuses .cat-hero, .cat-page, .empty-state, .btn-quote, .btn-secondary etc.
   Adds a 3-column saved-row layout (img + main + actions, no qty/subtotal).
   ============================================================================ */
.saved-layout { display: block; }
.saved-rows { display: flex; flex-direction: column; gap: 12px; }

.saved-row {
  display: grid;
  grid-template-columns: 88px 1fr 200px;
  gap: 18px;
  align-items: center;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: border-color 0.2s var(--ease);
}
.saved-row:hover { border-color: var(--c-line); }

.saved-row-img {
  position: relative;
  width: 88px; height: 88px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.saved-row-img::before {
  content: '';
  position: absolute; inset: 5px;
  border: 1px dashed var(--c-line);
  border-radius: var(--r-sm);
  pointer-events: none;
  transition: border-color 0.2s var(--ease);
}
.saved-row-img:has(img)::before { display: none; }
.saved-row-img:hover::before { border-color: var(--c-cobalt); }
.saved-row-img .img-placeholder {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 8px;
  color: var(--c-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  padding: 0 4px;
}
.saved-row-img .row-badge {
  position: absolute;
  top: 4px; left: 4px;
  background: var(--c-cobalt);
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
}

.saved-row-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.saved-row-brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cobalt);
}
.saved-row-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  line-height: 1.3;
  text-decoration: none;
}
.saved-row-name:hover { color: var(--c-cobalt); }
.saved-row-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
}

.saved-row-actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.saved-row-actions .btn-quote { text-align: center; }
.saved-remove {
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-muted);
  cursor: pointer;
  transition: all 0.15s var(--ease);
}
.saved-remove:hover { border-color: var(--c-danger, #c53030); color: var(--c-danger, #c53030); }

/* Empty state visibility — toggled by main.js via .is-empty on parent section */
.saved-empty-inline { display: none; }
#saved-section.is-empty .saved-main { display: none; }
#saved-section.is-empty .saved-empty-inline { display: block; padding: 60px 0; }
.saved-actions-bar { margin-top: 18px; }

/* Responsive — stack to single column at narrow widths */
@media (max-width: 700px) {
  .saved-row {
    grid-template-columns: 64px 1fr;
    grid-template-areas: "img main" "actions actions";
    gap: 12px 14px;
  }
  .saved-row-img { width: 64px; height: 64px; grid-area: img; }
  .saved-row-main { grid-area: main; }
  .saved-row-actions { grid-area: actions; flex-direction: row; }
  .saved-row-actions .btn-quote,
  .saved-row-actions .saved-remove { flex: 1; }
}
