/* BinFit canonical interface, master refactor 1.0.0 */
:root {
  --navy: #102a3e;
  --navy-soft: #274255;
  --green: #237a57;
  --green-dark: #175c40;
  --green-soft: #eaf5ef;
  --orange: #e9561f;
  --orange-dark: #c94312;
  --page: #f5f7f5;
  --surface: #ffffff;
  --surface-soft: #f8faf8;
  --border: #d6dee1;
  --border-strong: #aebbc1;
  --muted: #5d6b74;
  --warning: #a96512;
  --warning-soft: #fff7e7;
  --danger: #a83b3b;
  --danger-soft: #fff1f1;
  --shadow: 0 12px 34px rgba(16, 42, 62, 0.09);
  --shadow-small: 0 5px 16px rgba(16, 42, 62, 0.08);
  --radius: 8px;
  --shell: 1360px;
  --summary-width: 360px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  margin: 0;
  color: var(--navy);
  background: var(--page);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select,
label,
summary {
  touch-action: manipulation;
}

svg {
  width: 1.35em;
  height: 1.35em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #0b70c9;
  outline-offset: 3px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 7px 18px rgba(233, 86, 31, 0.18);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button-secondary {
  border-color: var(--border-strong);
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--navy);
  background: #f3f6f7;
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 14px;
}

.text-link {
  color: #195f9b;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.eyebrow,
.step-kicker {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 74px;
  border-bottom: 1px solid rgba(16, 42, 62, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.site-header.is-scrolled {
  box-shadow: 0 7px 22px rgba(16, 42, 62, 0.08);
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(210px, 270px) 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand,
.brand a {
  display: flex;
  align-items: center;
  min-width: 0;
}

.custom-logo-link img {
  width: auto;
  max-width: 220px;
  height: 52px;
  object-fit: contain;
}

.brand-fallback {
  gap: 10px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 38px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.2;
}

.primary-nav {
  justify-self: center;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  display: block;
  padding-block: 10px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.primary-menu a:hover {
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
}

/* Homepage */
.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(440px, 44%) 1fr;
}

.hero-copy {
  align-self: center;
  padding: 58px 48px 54px 0;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: 62px;
  line-height: 1.02;
}

.hero-lead {
  max-width: 610px;
  margin: 20px 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;
  color: #465962;
  font-size: 13px;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-points svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-data-card {
  position: absolute;
  top: 112px;
  right: 24px;
  width: 260px;
  padding: 18px;
  border: 1px solid rgba(16, 42, 62, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(16, 42, 62, 0.22);
}

.hero-example-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-data-card div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.hero-data-card svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--green);
}

.hero-data-card span {
  display: grid;
}

.hero-data-card > small:last-child {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.measure-v,
.measure-h {
  position: absolute;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 2px 5px #000;
}

.measure-v {
  top: 166px;
  left: 70px;
  padding: 70px 0 70px 9px;
  border-left: 2px dashed #fff;
}

.measure-h {
  bottom: 44px;
  left: 215px;
  padding: 0 95px 6px;
  border-bottom: 2px dashed #fff;
}

.trust-strip-wrap {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding-top: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
  overflow: hidden;
}

.trust-strip article {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 20px;
}

.trust-strip article + article {
  border-left: 1px solid var(--border);
}

.trust-strip svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--green);
}

.trust-strip div {
  display: grid;
  gap: 3px;
}

.trust-strip strong {
  font-size: 13px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 11px;
}

/* Finder shell and progress */
.finder-page-main {
  min-height: 70vh;
  background: var(--page);
}

.finder-page-intro {
  padding: 44px 0 8px;
}

.finder-page-intro h1,
.page-main > .shell > h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.06;
}

.finder-page-intro p:last-child,
.page-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.bsf-finder-section {
  padding: 24px 0 34px;
}

.bsf-finder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, var(--summary-width));
  grid-template-rows: auto 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: clip;
}

.bsf-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 22px 30px 20px;
  border-bottom: 1px solid var(--border);
  background: #fbfcfb;
  list-style: none;
}

.bsf-progress li {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding-right: 28px;
  color: #74828a;
  font-size: 12px;
}

.bsf-progress li::after {
  position: absolute;
  z-index: 0;
  top: 15px;
  right: 7px;
  left: calc(100% - 20px);
  height: 1px;
  background: #cbd4d8;
  content: "";
}

.bsf-progress li:last-child::after {
  display: none;
}

.bsf-progress b {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #9eacb3;
  border-radius: 50%;
  background: #fff;
  font-size: 11px;
}

.bsf-progress .active {
  color: var(--navy);
  font-weight: 800;
}

.bsf-progress .active b {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.bsf-progress .done {
  color: var(--green-dark);
  font-weight: 750;
}

.bsf-progress .done b {
  border-color: var(--green-dark);
  background: var(--green-soft);
  color: var(--green-dark);
}

.bsf-workspace {
  min-width: 0;
  padding: 30px 32px 34px;
}

.bsf-step-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.bsf-step-head h2 {
  margin: 0 0 7px;
  font-size: 34px;
  line-height: 1.12;
}

.bsf-step-head > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.bsf-errors {
  margin-bottom: 18px;
  padding: 12px 15px;
  border: 1px solid #dc9696;
  border-radius: var(--radius);
  background: var(--danger-soft);
  color: #802f2f;
  font-size: 14px;
}

.bsf-errors p {
  margin: 3px 0;
}

.bsf-question {
  min-width: 0;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.bsf-question > legend,
.bsf-question > h3 {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  font-size: 16px;
  font-weight: 800;
}

/* Canonical wheelie-bin component */
.reference-bin-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.reference-bin-card {
  position: relative;
  min-width: 0;
  min-height: 160px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: stretch;
  padding: 15px 8px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 3px 10px rgba(16, 42, 62, 0.05);
  cursor: pointer;
}

.reference-bin-card:hover {
  border-color: #8ea19a;
  box-shadow: var(--shadow-small);
}

.reference-bin-card.selected {
  border: 2px solid var(--green);
  background: #fbfefc;
  box-shadow: 0 0 0 3px rgba(35, 122, 87, 0.1);
}

.reference-check {
  position: absolute;
  z-index: 3;
  top: 9px;
  right: 9px;
  width: 24px;
  height: 24px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}

.reference-check::after {
  width: 9px;
  height: 5px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg) translateY(-1px);
}

.reference-bin-card.selected > .reference-check,
.reference-capacity-card:has(input:checked) > .reference-check {
  display: grid;
}

.reference-bin-visual {
  min-width: 0;
  min-height: 105px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: visible;
}

.realistic-bin-svg {
  --bin-front: #4c575d;
  --bin-side: #343f45;
  --bin-lid: #566168;
  --bin-lid-light: #68747a;
  --bin-line: #263238;
  flex: 0 0 auto;
  width: 69px;
  height: 92px;
  margin-inline: -12px;
  overflow: visible;
  filter: drop-shadow(0 5px 4px rgba(16, 42, 62, 0.15));
  stroke: none;
}

.reference-bin-visual.bin-count-1 .realistic-bin-svg {
  width: 76px;
  height: 100px;
  margin-inline: 0;
}

.reference-bin-visual.bin-count-4 .realistic-bin-svg,
.reference-bin-visual.bin-count-5 .realistic-bin-svg {
  width: 59px;
  height: 82px;
  margin-inline: -13px;
}

.reference-bin-visual.bin-count-5 .realistic-bin-svg {
  width: 56px;
  height: 80px;
}

.bin-green {
  --bin-front: #4f7654;
  --bin-side: #395f40;
  --bin-lid: #567d5b;
  --bin-lid-light: #6c916f;
}

.bin-brown {
  --bin-front: #7a5239;
  --bin-side: #5e3d2b;
  --bin-lid: #815a40;
  --bin-lid-light: #966e52;
}

.bin-blue {
  --bin-front: #3b6687;
  --bin-side: #294f6c;
  --bin-lid: #466f8e;
  --bin-lid-light: #5b83a0;
}

.bin-slate {
  --bin-front: #707b81;
  --bin-side: #566168;
  --bin-lid: #77838a;
  --bin-lid-light: #89949a;
}

.real-bin-ground-shadow { fill: rgba(16, 42, 62, 0.14); }
.real-bin-front { fill: var(--bin-front); }
.real-bin-front-soft { fill: rgba(255, 255, 255, 0.1); }
.real-bin-front-shade { fill: rgba(0, 0, 0, 0.12); }
.real-bin-side { fill: var(--bin-side); }
.real-bin-bottom { fill: var(--bin-side); }
.real-bin-lid-base,
.real-bin-lid-top { fill: var(--bin-lid); }
.real-bin-lid-panel { fill: var(--bin-lid-light); }
.real-bin-wheel-back,
.real-bin-wheel-front { fill: #20292e; }
.real-bin-wheel-back-rim,
.real-bin-wheel-front-rim { fill: #465158; }
.real-bin-wheel-back-hub { fill: #9aa4a9; }
.real-bin-handle { fill: var(--bin-side); }
.real-bin-handle-slot { fill: #1d272c; }
.real-bin-rib,
.real-bin-lid-ridge,
.real-bin-hinge,
.real-bin-axle {
  fill: none;
  stroke: var(--bin-line);
  stroke-width: 1.4;
}

.reference-bin-label {
  display: block;
  width: 100%;
  margin-top: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.reference-bin-card.selected .reference-bin-label {
  color: var(--green-dark);
}

@media (max-width: 1399px) {
  .reference-bin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Capacity and exact measurements */
.reference-capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reference-capacity-card {
  position: relative;
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.reference-capacity-card:hover {
  border-color: #8ea19a;
}

.reference-capacity-card:has(input:checked) {
  border: 2px solid var(--green);
  background: #fbfefc;
  box-shadow: 0 0 0 3px rgba(35, 122, 87, 0.08);
}

.reference-capacity-card:has(input:focus-visible) {
  outline: 3px solid #0b70c9;
  outline-offset: 3px;
}

.reference-capacity-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.reference-capacity-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef3f1;
}

.reference-capacity-icon .realistic-bin-svg {
  width: 37px;
  height: 47px;
  margin: 0;
  filter: drop-shadow(0 3px 2px rgba(16, 42, 62, 0.12));
}

.reference-unknown {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid #9aa8ad;
  border-radius: 50%;
  color: var(--navy);
}

.reference-capacity-label {
  min-width: 0;
  font-size: 15px;
}

.reference-measure-toggle {
  position: relative;
  min-height: 86px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
  cursor: pointer;
}

.reference-measure-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
}

.reference-measure-icon span {
  width: 24px;
  height: 10px;
  border: 2px solid var(--green);
  border-radius: 2px;
  transform: rotate(-40deg);
}

.reference-measure-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.reference-measure-copy strong {
  font-size: 15px;
}

.reference-measure-copy small {
  color: var(--muted);
  font-size: 12px;
}

.reference-switch {
  position: relative;
  width: 56px;
  height: 30px;
  display: block;
}

.reference-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.reference-switch > span {
  position: absolute;
  inset: 0;
  border: 1px solid #b6c1c5;
  border-radius: 20px;
  background: #dfe5e5;
}

.reference-switch > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(16, 42, 62, 0.24);
  content: "";
  transition: transform 160ms ease;
}

.reference-switch input:checked + span {
  border-color: var(--green);
  background: var(--green);
}

.reference-switch input:checked + span::after {
  transform: translateX(26px);
}

.reference-switch input:focus-visible + span {
  outline: 3px solid #0b70c9;
  outline-offset: 3px;
}

.reference-exact-fields {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfcfb;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.field-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field-grid-row {
  margin-top: 14px;
}

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

.field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 7px;
  color: #324751;
  font-size: 13px;
  font-weight: 800;
}

.field > span {
  position: relative;
  display: block;
}

.field input,
.field select,
.catalog-filters select,
.result-sort-control select,
.bsf-contact-form input,
.bsf-contact-form select,
.bsf-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 42px 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fff;
}

.field select,
.catalog-filters select,
.result-sort-control select,
.bsf-contact-form select {
  padding-right: 12px;
}

.field em {
  position: absolute;
  top: 14px;
  right: 12px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}

.bin-capacity-estimator {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  margin-top: 14px;
  padding: 14px;
  border-left: 4px solid #91a2aa;
  background: #f2f5f5;
}

.bin-capacity-estimator.has-result {
  border-left-color: var(--green);
  background: var(--green-soft);
}

.bin-capacity-estimator.has-error {
  border-left-color: var(--danger);
  background: var(--danger-soft);
}

.bin-capacity-estimator-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-weight: 900;
}

.bin-capacity-estimator-copy {
  min-width: 0;
}

.bin-capacity-estimator-copy > span,
.bin-capacity-estimator-copy strong,
.bin-capacity-estimator-copy small {
  display: block;
}

.bin-capacity-estimator-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.bin-capacity-estimator-copy strong {
  margin-top: 2px;
  font-size: 18px;
}

.bin-capacity-estimator-copy p {
  margin: 4px 0;
  font-size: 13px;
}

.bin-capacity-estimator-copy small {
  color: var(--muted);
  font-size: 11px;
}

.bsf-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.bsf-actions .button {
  min-width: 150px;
}

.reference-privacy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.reference-lock {
  position: relative;
  width: 14px;
  height: 12px;
  border: 2px solid #85939a;
  border-radius: 2px;
}

.reference-lock::before {
  position: absolute;
  bottom: 9px;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 2px solid #85939a;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  content: "";
}

.reference-arrow::after {
  content: "\2192";
}

/* Steps 2-4 */
.finder-space-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 24px;
}

.finder-space-fields {
  min-width: 0;
}

.front-clearance-inline {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr);
  align-items: end;
  gap: 16px;
  margin-top: 15px;
}

.front-clearance-inline p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.bin-diagram-panel {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.council-bin-picture,
.council-bin-measurement-image {
  width: 100%;
  height: auto;
}

.site-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-check {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.site-check h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  font-size: 15px;
}

.site-check h3 svg {
  color: var(--green);
}

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

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

.radio-card {
  position: relative;
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.radio-card:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.radio-card input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.summary-note {
  margin-top: 14px;
  padding: 13px;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
  color: #38544a;
  font-size: 12px;
}

.summary-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
}

/* Summary panel */
.summary-panel {
  min-width: 0;
  padding: 28px 24px;
  border-left: 1px solid var(--border);
  background: #f0f6f2;
}

.summary-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 17px;
  border-bottom: 1px solid #cad8cf;
}

.summary-heading h2 {
  margin: 0;
  font-size: 21px;
}

.summary-heading span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
}

.summary-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid #d2ded6;
}

.summary-row > svg,
.summary-realistic-bin {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #ccd8d1;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
}

.summary-row > svg {
  padding: 10px;
}

.summary-realistic-bin .realistic-bin-svg {
  width: 30px;
  height: 38px;
  margin: 0;
  filter: none;
}

.summary-row > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.summary-row strong {
  font-size: 14px;
}

.summary-row div > span {
  min-width: 0;
  color: #53645c;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.summary-row button {
  min-height: 36px;
  padding: 6px 2px 6px 9px;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.reference-summary-note {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #c3d4c8;
  border-radius: var(--radius);
  background: #fff;
}

.reference-summary-note .reference-shield {
  position: relative;
  width: 34px;
  height: 38px;
  border: 2px solid var(--green);
  border-radius: 7px 7px 12px 12px;
}

.reference-summary-note .reference-shield::after {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

.reference-summary-note > div {
  min-width: 0;
}

.reference-summary-note strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  overflow-wrap: normal;
  word-break: normal;
}

.reference-summary-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

/* Loading and results */
.results-mode .bsf-workspace {
  grid-column: 1 / -1;
}

.results-mode .finder-summary {
  display: none;
}

.bsf-loading {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.loading-inner {
  width: min(100%, 500px);
}

.loading-spinner {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border: 5px solid #d9e4de;
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: bsf-spin 800ms linear infinite;
}

.loading-inner h2 {
  margin: 0 0 8px;
  font-size: 29px;
}

.loading-inner p {
  color: var(--green-dark);
  font-weight: 800;
}

.loading-track {
  height: 6px;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 5px;
  background: #dde5e1;
}

.loading-track span {
  width: 45%;
  height: 100%;
  display: block;
  background: var(--orange);
  animation: bsf-load 1100ms ease-in-out infinite;
}

@keyframes bsf-spin {
  to { transform: rotate(360deg); }
}

@keyframes bsf-load {
  from { transform: translateX(-110%); }
  to { transform: translateX(250%); }
}

.bsf-results {
  padding-bottom: 10px;
}

.results-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 14px;
}

.results-top h2 {
  margin: 0 0 5px;
  font-size: 30px;
}

.results-top p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.results-tools {
  flex: 0 0 auto;
  display: flex;
  align-items: end;
  gap: 12px;
}

.result-sort-control {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.result-sort-control select {
  min-width: 180px;
  min-height: 42px;
}

.results-restart {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.result-summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.result-summary-pills span {
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--surface-soft);
  color: #4f5f68;
  font-size: 11px;
}

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

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 11px;
  border: 2px solid #86b498;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.product-card.likely {
  border-color: #96aa83;
}

.product-card.manual {
  border-color: #d8a04c;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #edf1ee;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-badge,
.sample-inline,
.sample-badge {
  position: absolute;
  z-index: 2;
  top: 9px;
  padding: 5px 8px;
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
}

.status-badge {
  left: 0;
  border-radius: 0 4px 4px 0;
  background: var(--green-dark);
}

.likely .status-badge {
  background: #667b48;
}

.manual .status-badge {
  background: var(--warning);
}

.sample-inline,
.sample-badge {
  right: 9px;
  background: var(--navy);
}

.verified-preview-inline,
.verified-preview-badge {
  background: #176b50;
}

.product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  margin-top: 12px;
}

.product-title-row h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.product-price-block {
  display: grid;
  justify-items: end;
  white-space: nowrap;
}

.product-price-block strong {
  font-size: 17px;
}

.product-price-block small {
  color: var(--muted);
  font-size: 9px;
}

.merchant-row {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 10px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.dimensions {
  margin: 10px 0;
  padding: 8px 0;
  border-block: 1px solid var(--border);
  color: #455962;
  font-size: 12px;
  font-weight: 700;
}

.product-card h4 {
  margin: 0 0 5px;
  font-size: 12px;
}

.match-list,
.compact-check-list {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: #40535d;
  font-size: 11px;
}

.match-list li,
.compact-check-list li {
  position: relative;
  margin: 5px 0;
  padding-left: 18px;
}

.match-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "\2713";
  font-weight: 900;
}

.compact-check-list li::before {
  position: absolute;
  left: 2px;
  color: var(--warning);
  content: "!";
  font-weight: 900;
}

.warning-box {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  margin-top: auto;
  padding: 10px;
  border: 1px solid #e0c48d;
  border-radius: 6px;
  background: var(--warning-soft);
  color: #614b24;
  font-size: 10px;
}

.warning-symbol {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--warning);
  border-radius: 50%;
  color: var(--warning);
  font-weight: 900;
}

.warning-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.warning-copy em {
  font-style: normal;
}

.card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 10px;
}

.card-actions > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.card-actions .button {
  min-height: 42px;
  padding: 8px 10px;
  font-size: 11px;
}

.affiliate-label {
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.card-actions > label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

.card-actions input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}

.no-results,
.match-recovery-error {
  grid-column: 1 / -1;
  padding: 42px 24px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-soft);
  text-align: center;
}

.excluded-products {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.excluded-products summary {
  padding: 13px 15px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.excluded-products > div {
  padding: 0 15px 13px;
}

.excluded-products article {
  display: grid;
  gap: 2px;
  padding: 9px 0;
  border-top: 1px solid var(--border);
  font-size: 11px;
}

.excluded-products article span {
  color: var(--muted);
}

/* Comparison */
.compare-bar {
  position: fixed;
  z-index: 115;
  bottom: 18px;
  left: auto;
  right: 20px;
  width: min(360px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 32px rgba(16, 42, 62, 0.18);
}

.compare-bar-items {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}

.compare-bar-items strong {
  flex: 0 0 auto;
  white-space: nowrap;
}

.compare-bar-items small {
  color: var(--muted);
  font-size: 11px;
}

.compare-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(8, 24, 35, 0.78);
}

.compare-dialog {
  width: min(1120px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.compare-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.compare-dialog-head h2 {
  margin: 0;
  font-size: 28px;
}

.compare-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 25px;
}

.compare-scroll {
  overflow: auto;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 12px;
}

.compare-table th,
.compare-table td {
  padding: 11px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th,
.compare-table tbody th {
  background: var(--surface-soft);
}

.compare-table thead small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

/* Browse, information and footer */
.section-heading-wide {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading-wide h2 {
  margin: 0;
  font-size: 36px;
}

.quick-browse-section,
.faq-section {
  padding: 42px 0;
}

.quick-browse-section {
  background: #fff;
}

.quick-browse-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.quick-browse-heading h2 {
  margin: 0;
  font-size: 30px;
}

.quick-browse-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-browse-link {
  min-width: 0;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.quick-browse-link:hover,
.quick-browse-link:focus-visible {
  border-color: var(--green);
  box-shadow: 0 8px 22px rgba(16, 42, 62, 0.09);
  transform: translateY(-1px);
}

.quick-browse-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf1ef;
}

.quick-browse-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.quick-browse-link:hover .quick-browse-image img {
  transform: scale(1.025);
}

.quick-browse-image b {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(16, 42, 62, 0.14);
  color: var(--navy);
  font-size: 12px;
}

.quick-browse-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 15px;
}

.quick-browse-copy strong {
  font-size: 15px;
}

.quick-browse-copy span {
  color: var(--orange);
  font-size: 18px;
}

/* Verified-data homepage */
.hero-verified {
  position: relative;
  min-height: 470px;
  isolation: isolate;
  background: #102a3e;
  color: #fff;
}

.hero-verified::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(7, 25, 38, 0.64);
  content: "";
}

.hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 61%;
}

.hero-overlay {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
}

.hero-verified .hero-copy {
  max-width: 690px;
  padding: 52px 0 74px;
}

.hero-verified .eyebrow,
.hero-verified h1,
.hero-verified .hero-lead,
.hero-verified .trust-points {
  color: #fff;
}

.hero-verified h1 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.hero-verified .hero-lead {
  max-width: 620px;
}

.hero-verified .trust-points {
  font-weight: 700;
}

.hero-secondary-link {
  align-self: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.hero-source-note {
  position: absolute;
  right: 0;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.quick-browse-image img {
  object-fit: contain;
  padding: 10px;
  background: #f5f7f5;
}

@media (max-width: 720px) {
  .hero-verified,
  .hero-overlay {
    min-height: 500px;
  }

  .hero-verified .hero-copy {
    padding: 40px 0 88px;
  }

  .hero-verified h1 {
    font-size: 44px;
  }

  .hero-source-note {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.info-card h2 {
  margin: 0 0 14px;
  font-size: 19px;
}

.info-card p {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}

.info-card p svg {
  flex: 0 0 24px;
  color: var(--green);
}

.info-card p span,
.info-card p strong,
.info-card p small {
  display: block;
}

.info-card p small {
  color: var(--muted);
}

.measure-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.measure-steps > span {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.measure-steps > span > b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
}

.measure-steps svg {
  width: 38px;
  height: 38px;
  color: var(--green);
}

.measure-steps strong {
  font-size: 12px;
}

.measure-steps small {
  color: var(--muted);
  font-size: 10px;
}

.faq-shell {
  max-width: 980px;
}

.faq-shell > h2 {
  margin: 0 0 15px;
  font-size: 32px;
}

.faq-shell details {
  border-top: 1px solid var(--border);
  background: #fff;
}

.faq-shell details:last-of-type {
  border-bottom: 1px solid var(--border);
}

.faq-shell summary {
  padding: 15px 4px;
  cursor: pointer;
  font-weight: 800;
}

.faq-shell details p {
  margin: 0;
  padding: 0 4px 16px;
  color: var(--muted);
}

.disclosure-box {
  margin-top: 18px;
  padding: 14px;
  border-left: 4px solid var(--orange);
  background: #fff;
  color: #4e5f68;
  font-size: 12px;
}

.site-footer {
  padding: 36px 0 22px;
  background: #102538;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
}

.footer-grid h2 {
  margin: 0 0 9px;
  font-size: 14px;
}

.footer-grid a {
  display: block;
  margin: 5px 0;
  color: #d8e3e9;
  font-size: 12px;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  max-width: 800px;
  margin: 0;
  color: #b8c7cf;
  font-size: 11px;
}

.footer-uk {
  width: 34px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 850;
}

.mobile-sticky-cta {
  display: none;
}

/* Catalogue and product pages */
.catalog-main,
.product-page-main,
.guides-main,
.guide-detail-main,
.method-page-main,
.contact-main,
.page-main {
  min-height: 65vh;
  background: var(--page);
}

.catalog-hero,
.product-page-hero,
.guides-hero,
.guide-detail-hero,
.method-page-hero,
.contact-hero {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.catalog-hero-grid,
.guides-hero-grid,
.guide-detail-grid,
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 42px;
}

.catalog-hero h1,
.guides-hero h1,
.guide-detail-hero h1,
.method-page-hero h1,
.contact-hero h1,
.product-page-summary h1,
.content-card > h1 {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.08;
}

.catalog-hero p:last-child,
.guides-hero p:last-child,
.guide-detail-hero p:last-child,
.method-page-hero p:last-child,
.contact-hero p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.catalog-hero img,
.guides-hero img,
.guide-detail-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  object-fit: cover;
}

.catalog-section,
.product-page-content,
.product-method-section,
.guides-section,
.guide-detail-section,
.method-page-section,
.method-status-section,
.contact-section,
.page-main {
  padding: 34px 0 56px;
}

.catalog-notice {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
}

.catalog-notice svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.catalog-notice div {
  display: grid;
}

.catalog-notice span {
  color: var(--muted);
  font-size: 12px;
}

.catalog-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr)) auto auto;
  align-items: end;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.catalog-filters label {
  display: grid;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 26px 0 16px;
}

.catalog-heading h2 {
  margin: 0;
  font-size: 28px;
}

.catalog-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

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

.catalog-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.catalog-product-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf1ee;
}

.catalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: #f5f7f5;
}

.catalog-product-body {
  padding: 15px;
}

.catalog-product-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.catalog-product-title h2 {
  margin: 0;
  font-size: 18px;
}

.catalog-product-title a {
  text-decoration: none;
}

.catalog-product-dimensions {
  margin: 12px 0;
  padding-block: 9px;
  border-block: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

.catalog-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.catalog-product-tags span {
  padding: 5px 7px;
  border-radius: 4px;
  background: #edf2f3;
  font-size: 10px;
}

.catalog-product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.catalog-product-actions .button {
  min-height: 42px;
  padding: 8px 12px;
  font-size: 11px;
}

.catalog-product-actions .text-link {
  font-size: 11px;
}

.product-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 44px;
}

.product-page-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #edf1ee;
}

.product-page-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 20px;
  background: #f5f7f5;
}

.product-image-note {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 4px;
  background: rgba(17, 45, 60, 0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.product-page-price {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 850;
}

.product-page-merchant {
  color: var(--muted);
}

.product-trust-grid {
  display: grid;
  gap: 9px;
  margin-block: 20px;
}

.product-trust-grid > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.product-trust-grid svg {
  color: var(--green);
}

.product-trust-grid span,
.product-trust-grid strong {
  display: block;
}

.product-trust-grid span {
  color: var(--muted);
  font-size: 12px;
}

.product-trust-grid strong {
  color: var(--navy);
}

.product-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.affiliate-action {
  display: grid;
  gap: 3px;
  text-align: center;
}

.affiliate-action small,
.product-disclosure {
  color: var(--muted);
  font-size: 10px;
}

.product-page-grid,
.guide-detail-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: 22px;
}

.product-spec-card,
.product-check-card,
.guide-action-card,
.contact-form-card,
.contact-side-card,
.content-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.product-spec-card h2,
.product-check-card h2,
.guide-action-card h2,
.contact-form-card h2,
.contact-side-card h2 {
  margin-top: 0;
  font-size: 22px;
}

.spec-list {
  margin: 0;
}

.spec-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.spec-list dt {
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
}

.check-list {
  padding-left: 20px;
  color: #455861;
}

.check-list li {
  margin: 8px 0;
}

.method-grid,
.method-page-steps,
.status-explain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.method-grid article,
.method-page-steps article,
.status-explain-grid article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

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

.method-grid svg,
.method-page-steps svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.method-grid h3,
.method-page-steps h2 {
  margin: 12px 0 6px;
  font-size: 18px;
}

.method-grid p,
.method-page-steps p,
.status-explain-grid p {
  color: var(--muted);
  font-size: 13px;
}

.status-explain-grid .status-best { border-top: 4px solid var(--green); }
.status-explain-grid .status-likely { border-top: 4px solid #70844f; }
.status-explain-grid .status-manual { border-top: 4px solid var(--warning); }
.status-explain-grid .status-excluded { border-top: 4px solid var(--danger); }

/* Guides, contact and generic content */
.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.guide-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.guide-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.guide-card img.is-diagram {
  padding: 14px;
  background: #f5f7f5;
  object-fit: contain;
}

.guide-card > div {
  padding: 20px;
}

.guide-card h2 {
  margin: 0;
  font-size: 20px;
}

.guide-card h2 a {
  text-decoration: none;
}

.guide-card p,
.content-card p,
.content-card li {
  color: var(--muted);
}

.guide-warning,
.legal-draft-notice,
.bsf-contact-preview {
  display: grid;
  gap: 3px;
  margin-top: 20px;
  padding: 14px;
  border-left: 4px solid var(--warning);
  background: var(--warning-soft);
}

.operator-details {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  background: var(--green-soft);
}

.operator-details h2 {
  margin-top: 0;
}

.policy-meta {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.numbered-guide li {
  margin-block: 10px;
}

.contact-trust-card {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--green-soft);
}

.contact-trust-card svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.contact-trust-card span {
  color: var(--muted);
}

.bsf-contact-status {
  margin-bottom: 14px;
  padding: 12px;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
}

.bsf-contact-status.error {
  border-left-color: var(--danger);
  background: var(--danger-soft);
}

.bsf-contact-form,
.bsf-contact-form > label {
  display: grid;
  gap: 8px;
}

.bsf-contact-form {
  gap: 15px;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
}

.bsf-contact-form textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.consent-line {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
}

.consent-line input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 3px;
  padding: 0;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.contact-operator {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.prose-shell {
  max-width: 920px;
}

.prose {
  max-width: 760px;
  font-size: 17px;
}

.prose h2 {
  margin-top: 30px;
  font-size: 25px;
}

/* Responsive layout */
@media (max-width: 1180px) {
  .bsf-finder-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .summary-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .summary-heading,
  .reference-summary-note {
    grid-column: 1 / -1;
  }

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

  .primary-menu {
    gap: 22px;
  }
}

@media (max-width: 960px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .site-header,
  .header-inner {
    min-height: 66px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .custom-logo-link img {
    max-width: 190px;
    height: 46px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 9px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
  }

  .nav-toggle > span:not(.screen-reader-text) {
    height: 2px;
    background: var(--navy);
  }

  .primary-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    padding: 10px 15px 16px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-small);
  }

  .primary-nav.open {
    display: block;
  }

  .primary-menu {
    display: grid;
    gap: 0;
  }

  .primary-menu a {
    padding: 12px 5px;
    border-bottom: 1px solid var(--border);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 42px 0 36px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-visual {
    min-height: 410px;
    margin-inline: -15px;
  }

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

  .trust-strip article + article {
    border-left: 0;
  }

  .trust-strip article:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .bsf-progress {
    padding-inline: 18px;
  }

  .bsf-progress li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
    padding: 0 4px;
    text-align: center;
  }

  .bsf-progress li::after {
    top: 15px;
    right: -38%;
    left: 62%;
  }

  .bsf-progress li span {
    min-height: 30px;
    font-size: 10px;
    line-height: 1.25;
  }

  .finder-space-layout,
  .product-page-hero-grid,
  .product-page-grid,
  .guide-detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .space-step-diagram {
    max-width: 360px;
  }

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

  .photo-browse-grid,
  .info-grid,
  .method-page-steps,
  .status-explain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-hero-grid,
  .guides-hero-grid,
  .guide-detail-grid,
  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 26px;
  }

  .catalog-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-filters .button {
    width: 100%;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .hero h1,
  .catalog-hero h1,
  .guides-hero h1,
  .guide-detail-hero h1,
  .method-page-hero h1,
  .contact-hero h1,
  .product-page-summary h1,
  .content-card > h1,
  .finder-page-intro h1 {
    font-size: 40px;
  }

  .hero-visual {
    min-height: 330px;
    margin-inline: -12px;
  }

  .hero-data-card {
    top: auto;
    right: 12px;
    bottom: 12px;
    width: 238px;
  }

  .measure-v,
  .measure-h {
    display: none;
  }

  .bsf-finder-section {
    padding-top: 14px;
  }

  .bsf-workspace {
    padding: 24px 18px 26px;
  }

  .bsf-step-head h2 {
    font-size: 28px;
  }

  .reference-bin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reference-capacity-grid,
  .field-grid,
  .field-grid.four,
  .preference-grid,
  .site-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-bin-card {
    min-height: 150px;
  }

  .summary-panel {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .summary-heading,
  .reference-summary-note {
    grid-column: auto;
  }

  .results-top,
  .catalog-heading,
  .section-heading-wide {
    align-items: stretch;
    flex-direction: column;
  }

  .results-tools {
    width: 100%;
    align-items: end;
  }

  .result-sort-control {
    flex: 1;
  }

  .product-grid,
  .catalog-grid,
  .photo-browse-grid,
  .info-grid,
  .method-grid,
  .method-page-steps,
  .status-explain-grid,
  .catalog-hero-grid,
  .guides-hero-grid,
  .guide-detail-grid,
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero img,
  .guides-hero img,
  .guide-detail-hero img {
    max-height: 280px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .guide-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .hero h1,
  .catalog-hero h1,
  .guides-hero h1,
  .guide-detail-hero h1,
  .method-page-hero h1,
  .contact-hero h1,
  .product-page-summary h1,
  .content-card > h1,
  .finder-page-intro h1 {
    font-size: 36px;
  }

  .trust-points,
  .hero-actions,
  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip article:nth-child(even) {
    border-left: 0;
  }

  .trust-strip article + article {
    border-top: 1px solid var(--border);
  }

  .bsf-progress {
    padding: 16px 8px 13px;
  }

  .bsf-progress li span {
    font-size: 9px;
  }

  .bsf-workspace {
    padding-inline: 14px;
  }

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

  .reference-bin-card:last-child {
    grid-column: 1 / -1;
  }

  .reference-capacity-grid,
  .field-grid,
  .field-grid.four,
  .preference-grid,
  .site-check-grid,
  .option-grid,
  .option-grid.two,
  .front-clearance-inline,
  .catalog-filters,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .reference-capacity-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
    padding-inline: 9px;
  }

  .reference-capacity-icon {
    width: 40px;
    height: 40px;
  }

  .reference-capacity-icon .realistic-bin-svg {
    width: 31px;
    height: 40px;
  }

  .reference-measure-toggle {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .reference-switch {
    grid-column: 2;
    justify-self: start;
  }

  .bsf-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .bsf-actions .button {
    width: 100%;
  }

  .reference-privacy {
    justify-content: center;
  }

  .results-tools,
  .card-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .results-tools > *,
  .card-actions > * {
    width: 100%;
  }

  .product-title-row {
    grid-template-columns: 1fr;
  }

  .product-price-block {
    justify-items: start;
  }

  .compare-bar-items > div {
    display: none;
  }

  .compare-modal {
    padding: 8px;
  }

  .compare-dialog {
    padding: 14px;
  }

  .catalog-product-title,
  .spec-list > div,
  .guide-card {
    grid-template-columns: 1fr;
  }

  .guide-card img {
    max-height: 220px;
  }

  .footer-grid {
    gap: 22px 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .reference-capacity-grid {
    grid-template-columns: 1fr;
  }
}

/* Finder professional redesign */
.bsf-finder-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(16, 42, 62, 0.08);
}

.bsf-progress {
  padding: 18px 28px 17px;
  background: #fff;
}

.bsf-progress li {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  font-size: 11px;
  font-weight: 650;
}

.bsf-progress b {
  width: 28px;
  height: 28px;
}

.bsf-progress li::after {
  top: 14px;
}

.bsf-workspace {
  padding: 34px 38px 38px;
}

.bsf-step-head {
  margin-bottom: 28px;
  padding-bottom: 18px;
}

.bsf-step-head h2 {
  font-size: 30px;
  font-weight: 760;
}

.bsf-question {
  margin-bottom: 28px;
}

.bsf-question > legend,
.bsf-question > h3 {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 750;
}

.reference-bin-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.reference-bin-card {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 14px 10px;
  border: 1px solid #cfd8d5;
  border-radius: 6px;
  box-shadow: none;
}

.reference-bin-card:hover {
  border-color: #779487;
  box-shadow: 0 4px 12px rgba(16, 42, 62, 0.07);
}

.reference-bin-card.selected {
  border: 1px solid var(--green);
  background: #f3faf6;
  box-shadow: 0 0 0 2px var(--green);
}

.reference-bin-number {
  color: var(--navy);
  font-size: 30px;
  font-weight: 760;
  line-height: 1;
}

.reference-bin-label {
  width: auto;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.reference-bin-card.selected .reference-bin-number,
.reference-bin-card.selected .reference-bin-label {
  color: var(--green-dark);
}

.reference-check {
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
}

.reference-capacity-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.reference-capacity-card {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 8px;
  border: 1px solid #cfd8d5;
  border-radius: 6px;
  font-weight: 650;
  text-align: center;
}

.reference-capacity-card:has(input:checked) {
  border: 1px solid var(--green);
  background: #f3faf6;
  box-shadow: 0 0 0 2px var(--green);
}

.reference-capacity-value {
  color: var(--navy);
  font-size: 22px;
  font-weight: 760;
  line-height: 1;
}

.reference-capacity-unit {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.reference-capacity-unknown {
  font-size: 13px;
  font-weight: 700;
}

.reference-capacity-card:has(input:checked) .reference-capacity-value,
.reference-capacity-card:has(input:checked) .reference-capacity-unit,
.reference-capacity-card:has(input:checked) .reference-capacity-label {
  color: var(--green-dark);
}

.reference-measure-toggle {
  min-height: 74px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #f7f9f8;
}

.reference-measure-icon {
  display: none;
}

.reference-measure-copy strong {
  font-size: 14px;
  font-weight: 720;
}

.reference-measure-copy small {
  font-size: 11px;
}

.reference-switch {
  width: 50px;
  height: 28px;
}

.reference-switch > span::after {
  width: 20px;
  height: 20px;
}

.reference-switch input:checked + span::after {
  transform: translateX(22px);
}

.reference-step-actions {
  margin-top: 24px;
}

.reference-continue {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff;
  box-shadow: none;
}

.reference-continue:hover {
  border-color: #15553f;
  background: #15553f;
}

.summary-panel {
  padding: 30px 24px;
  border-left: 1px solid var(--border);
  background: #f7f9f8;
}

.summary-heading {
  padding-bottom: 16px;
  border-color: #d5ddda;
}

.summary-heading h2 {
  font-size: 18px;
  font-weight: 740;
}

.summary-heading span {
  font-size: 10px;
}

.summary-row {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 11px;
  padding: 17px 0;
  border-color: #dce3e0;
}

.summary-row > svg,
.summary-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd7d2;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
}

.summary-row > svg {
  padding: 8px;
}

.summary-number {
  font-size: 13px;
  font-weight: 800;
}

.summary-row strong {
  font-size: 13px;
  font-weight: 720;
}

.summary-row div > span {
  font-size: 11px;
  overflow-wrap: normal;
}

.summary-row button {
  color: var(--green-dark);
  font-size: 11px;
}

.summary-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .bsf-finder-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .summary-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .summary-heading,
  .summary-footnote {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .bsf-workspace {
    padding: 26px 20px 30px;
  }

  .reference-bin-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    overflow-x: visible;
    padding: 2px;
  }

  .reference-bin-card {
    min-height: 84px;
  }

  .reference-capacity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .summary-panel {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .summary-heading,
  .summary-footnote {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .bsf-progress li {
    grid-template-columns: 1fr;
  }

  .reference-bin-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .reference-bin-card:last-child {
    grid-column: auto;
  }

  .reference-capacity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reference-capacity-card {
    min-height: 66px;
  }

  .reference-measure-toggle {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .reference-switch {
    grid-column: auto;
    justify-self: end;
  }
}

/* Simplified default bin size */
.reference-capacity-intro {
  margin: -2px 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.reference-capacity-standard {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 15px 50px 15px 17px;
  border-color: #b8cec4;
  background: #f7fbf9;
  text-align: left;
}

.reference-capacity-standard:has(input:checked) {
  border-color: var(--green);
  background: #f1f8f4;
  box-shadow: 0 0 0 2px var(--green);
}

.reference-standard-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.reference-standard-copy strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 760;
}

.reference-standard-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.reference-common-badge {
  padding: 5px 8px;
  border-radius: 4px;
  background: #dcefe5;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 750;
  white-space: nowrap;
}

.reference-other-capacities {
  margin-top: 10px;
}

.reference-other-capacities > summary {
  width: max-content;
  max-width: 100%;
  padding: 4px 0;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.reference-other-capacities[open] > summary {
  margin-bottom: 9px;
}

.reference-other-capacities .reference-capacity-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Search-led category and guide content */
.catalog-editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.5fr);
  align-items: start;
  gap: 54px;
  margin-top: 52px;
  padding-top: 42px;
  border-top: 1px solid var(--border);
}

.catalog-editorial {
  max-width: 780px;
}

.catalog-editorial h2,
.seo-guide-content h2 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.2;
}

.catalog-editorial h2:first-child,
.seo-guide-content h2:first-child {
  margin-top: 0;
}

.catalog-editorial h3,
.seo-guide-content h3 {
  margin: 24px 0 8px;
  color: var(--navy);
  font-size: 19px;
}

.catalog-editorial p,
.catalog-editorial li,
.seo-guide-content p,
.seo-guide-content li {
  color: #4e5f68;
  line-height: 1.72;
}

.catalog-editorial a,
.seo-guide-content a {
  color: var(--green-dark);
  font-weight: 700;
}

.catalog-related {
  display: grid;
  gap: 0;
  border-top: 3px solid var(--green);
}

.catalog-related h2 {
  margin: 0;
  padding: 16px 0 10px;
  font-size: 18px;
}

.catalog-related a {
  padding: 11px 0;
  border-top: 1px solid var(--border);
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.catalog-related a:hover,
.catalog-related a:focus-visible {
  color: var(--green-dark);
}

.seo-guide-content {
  padding: 30px;
}

.seo-guide-content > p:first-child {
  margin-top: 0;
  color: var(--navy);
  font-size: 18px;
}

.seo-guide-aside {
  position: sticky;
  top: 92px;
}

.guide-hero-image.is-diagram {
  padding: 18px;
  background: #fff;
  object-fit: contain;
}

.seo-guide-aside > .button,
.seo-guide-aside > .text-link {
  width: 100%;
  display: flex;
  justify-content: center;
}

.seo-guide-aside > .text-link {
  margin-top: 8px;
  padding: 10px 0;
}

.seo-guide-links {
  display: grid;
  gap: 0;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.seo-guide-links strong {
  margin-bottom: 6px;
}

.seo-guide-links a {
  padding: 8px 0;
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .catalog-editorial-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 38px;
    padding-top: 32px;
  }

  .seo-guide-aside {
    position: static;
  }

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

  .reference-capacity-standard {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding: 14px 42px 14px 14px;
  }

  .reference-common-badge {
    width: max-content;
  }

  .reference-other-capacities .reference-capacity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .seo-guide-content {
    padding: 20px;
  }

  .catalog-editorial h2,
  .seo-guide-content h2 {
    font-size: 23px;
  }

  .quick-browse-section,
  .faq-section {
    padding: 32px 0;
  }

  .quick-browse-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .quick-browse-heading h2 {
    font-size: 26px;
  }

  .quick-browse-grid {
    grid-template-columns: 1fr;
  }

  .quick-browse-link {
    min-height: 72px;
  }

  .compare-bar {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .reference-standard-copy strong {
    font-size: 14px;
  }

  .reference-standard-copy small {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-duration: 1ms;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .bsf-actions,
  .compare-bar,
  .compare-modal,
  .mobile-sticky-cta {
    display: none;
  }

  body,
  .page-main,
  .catalog-main,
  .product-page-main {
    background: #fff;
  }

  .content-card,
  .product-card,
  .catalog-product-card {
    box-shadow: none;
  }
}
