:root {
  --black: #080a09;
  --ink: #171b18;
  --muted: #626b63;
  --white: #ffffff;
  --green: #9dc94e;
  --green-dark: #6f942e;
  --line: #dde5d8;
  --soft: #f5f8f2;
  --panel: #eef4e8;
  --shadow: 0 18px 45px rgba(8, 10, 9, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
:target {
  scroll-margin-top: 116px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 10px 40px;
  color: var(--white);
  background: rgba(8, 10, 9, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  flex-shrink: 0;
  background: transparent;
}
.brand-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(100%, 280px);
  max-height: 72px;
  padding: 6px 0;
  background: transparent;
  mix-blend-mode: normal;
  object-fit: contain;
  transition: opacity 160ms ease;
}
.brand:hover .brand-logo {
  opacity: 0.85;
}
.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.65vw, 26px); color: rgba(255,255,255,0.78); font-weight: 600; }
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  transition: color 180ms ease;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: #9DC94E;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}
.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta).active {
  color: #9DC94E;
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta).active::after {
  transform: scaleX(1);
  opacity: 1;
}
.nav-item {
  display: inline-flex;
  align-items: center;
}
.has-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  gap: 6px;
}
.nav-dropdown-trigger span {
  color: var(--green);
  font-size: 0.72rem;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  min-width: 190px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: #080a09;
  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  min-height: 0;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}
.nav-dropdown a:hover {
  color: #9DC94E;
  background: transparent;
}
.nav-mega {
  left: 50%;
  width: min(880px, calc(100vw - 40px));
  padding: 18px;
  border-color: rgba(157,201,78,0.22);
  border-radius: 14px;
  background: #070908;
  box-shadow: 0 24px 60px rgba(0,0,0,0.38);
  transform: translate(-50%, 8px);
}
.has-dropdown:hover .nav-mega,
.has-dropdown:focus-within .nav-mega {
  transform: translate(-50%, 0);
}
.nav-mega-header {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.nav-mega-section {
  display: grid;
  align-content: start;
  gap: 8px;
}
.nav-mega-section h2 {
  margin: 0 0 2px;
  color: rgba(255,255,255,0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.site-nav .nav-mega-link {
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-height: 0;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid transparent;
  border-radius: 10px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.035);
  white-space: normal;
}
.site-nav .nav-mega-link::after,
.site-nav .nav-mega-cta a::after {
  display: none;
}
.nav-mega-link strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
  transition: color 180ms ease;
}
.nav-mega-link small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.62);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
}
.nav-mega-link em {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #9DC94E;
  color: #080A09;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}
.site-nav .nav-mega-link:hover,
.site-nav .nav-mega-link:focus-visible {
  border-color: rgba(157,201,78,0.34);
  border-left-color: #9DC94E;
  color: var(--white);
  background: rgba(157,201,78,0.1);
}
.nav-mega-link:hover strong,
.nav-mega-link:focus-visible strong {
  color: #9DC94E;
}
.nav-mega-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(157,201,78,0.28);
  border-radius: 10px;
  background: rgba(157,201,78,0.1);
}
.nav-mega-cta span {
  color: rgba(255,255,255,0.82);
  font-size: 0.86rem;
  font-weight: 800;
}
.site-nav .nav-mega-cta a {
  min-height: 0;
  padding: 0;
  color: #9DC94E;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}
.site-nav .nav-mega-cta a:hover,
.site-nav .nav-mega-cta a:focus-visible {
  color: #b4dc69;
}
.site-nav .nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #9DC94E;
  color: var(--black);
  font-weight: 600;
}
.site-nav .nav-cta:hover {
  color: var(--black);
  background: #b4dc69;
}
.site-nav .nav-cta.active-cta {
  background: #b4dc69;
  box-shadow: 0 0 0 3px rgba(157,201,78,0.22);
}
.basket-link {
  gap: 8px;
}
.basket-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  color: var(--black);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}
.mobile-header-actions {
  display: none;
}
.mobile-basket-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}
.mobile-basket-link:hover {
  color: var(--green);
}
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.22); border-radius: 8px; background: transparent; color: var(--white); }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 9px; background: currentColor; }

.hero, .page-hero {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #070907 0%, #111612 68%, #1b2419 100%);
  color: var(--white);
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  min-height: 88vh;
  overflow: hidden;
  color: #ffffff;
  background: #050807;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(157, 201, 78, 0.17), transparent 32%),
    radial-gradient(circle at 76% 68%, rgba(0, 180, 255, 0.11), transparent 28%),
    linear-gradient(
      90deg,
      rgba(5, 8, 7, 0.92) 0%,
      rgba(5, 8, 7, 0.78) 36%,
      rgba(5, 8, 7, 0.48) 62%,
      rgba(5, 8, 7, 0.24) 100%
    ),
    url("assets/hero/hero-gloves-showcase.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.02) translate3d(0, 0, 0);
  animation: heroImageDrift 16s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: min(780px, 86vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(157,201,78,0.74), transparent);
}
.compact-hero { padding-bottom: 76px; }
.quote-hero {
  padding-bottom: clamp(42px, 6vw, 70px);
}
.quote-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1;
}
.quote-hero p {
  max-width: 760px;
}
.quote-hero-support {
  margin-top: 22px;
  color: rgba(255,255,255,0.86) !important;
  font-size: 1rem !important;
  font-weight: 800;
}
.hero-copy { position: relative; z-index: 2; max-width: 780px; }
.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -100px -80px auto;
  height: 420px;
  background: radial-gradient(circle at center, rgba(157,201,78,0.12), transparent 60%);
  transform: translate3d(0, 0, 0);
  animation: heroGlowDrift 14s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}
.page-hero { max-width: 920px; }
.choose-hero {
  position: relative;
  max-width: none;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(5,8,7,0.94) 0%, rgba(5,8,7,0.82) 42%, rgba(5,8,7,0.28) 100%),
    url("assets/pages/glove-type-comparison.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}
.choose-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 30%, rgba(157,201,78,0.2), transparent 34%),
    linear-gradient(90deg, rgba(5,8,7,0.18), rgba(5,8,7,0));
  pointer-events: none;
}
.choose-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.choose-hero-content {
  max-width: 720px;
}
.choose-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.choose-trust-points li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  background: rgba(8,10,9,0.44);
  backdrop-filter: blur(8px);
  font-size: 0.92rem;
  font-weight: 800;
}
.choose-hero-card-grid {
  display: grid;
  gap: 18px;
}
.choose-hero-card {
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  color: var(--white);
  background: rgba(8,10,9,0.78);
  box-shadow: 0 22px 48px rgba(0,0,0,0.24);
  backdrop-filter: blur(12px);
}
.choose-hero-card h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
}
.choose-hero-card p {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 650;
}
.choose-hero-card .button {
  width: 100%;
}
.contact-hero {
  position: relative;
  max-width: none;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(5,8,7,0.94) 0%, rgba(5,8,7,0.82) 42%, rgba(5,8,7,0.35) 100%),
    url("assets/pages/contact-supply-team.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 72px);
}
.about-hero {
  position: relative;
  max-width: none;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(5,8,7,0.94) 0%, rgba(5,8,7,0.82) 42%, rgba(5,8,7,0.35) 100%),
    url("assets/pages/about-supply-operation.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 72px);
}
.eyebrow { margin: 0 0 18px; color: var(--green); text-transform: uppercase; font-size: 0.78rem; font-weight: 800; letter-spacing: 0; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(3.3rem, 7.4vw, 7rem); line-height: 0.95; letter-spacing: 0; }
.hero h1 { margin-bottom: 36px; line-height: 0.92; }
.hero h1 {
  color: #ffffff;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.95;
}
h2 { margin-bottom: 14px; font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.08; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 1.2rem; }
.tagline { color: #c4ea76; font-size: clamp(1.4rem, 2.5vw, 2.08rem); font-weight: 800; margin-bottom: 34px; }
.hero .tagline { color: #9DC94E; }
.hero p:not(.eyebrow), .page-hero p { color: rgba(255,255,255,0.78); font-size: 1.12rem; max-width: 780px; }
.hero .hero-description { color: rgba(255,255,255,0.82); font-size: clamp(1.08rem, 1.5vw, 1.24rem); max-width: 840px; }
.hero p:not(.eyebrow) { margin-left: 0; margin-right: 0; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 16px; margin-top: 44px; }

.hero .hero-pill,
.hero h1,
.hero .tagline,
.hero .hero-support,
.hero .hero-actions {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero .hero-pill { animation-delay: 80ms; }
.hero h1 { animation-delay: 180ms; }
.hero .tagline { animation-delay: 300ms; }
.hero .hero-support { animation-delay: 420ms; }
.hero .hero-actions { animation-delay: 560ms; }

.reveal {
  --reveal-x: 0;
  --reveal-y: 28px;
  --reveal-scale: 1;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-up { --reveal-x: 0; --reveal-y: 28px; --reveal-scale: 1; }
.reveal-left { --reveal-x: -28px; --reveal-y: 0; --reveal-scale: 1; }
.reveal-right { --reveal-x: 28px; --reveal-y: 0; --reveal-scale: 1; }
.reveal-scale { --reveal-x: 0; --reveal-y: 0; --reveal-scale: 0.96; }
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }
.delay-4 { transition-delay: 360ms; }
.delay-5 { transition-delay: 450ms; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.045) translate3d(-0.9%, 0.45%, 0);
  }
}

@keyframes heroGlowDrift {
  from {
    opacity: 0.82;
    transform: translate3d(-8px, -4px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(18px, 10px, 0) scale(1.04);
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--black);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}
.button.primary {
  color: var(--black);
  border-color: var(--green);
  background: var(--green);
}
.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-2px);
  background: #b4dc69;
  border-color: #b4dc69;
  box-shadow: 0 14px 28px rgba(157,201,78,0.28);
}
.button.secondary {
  color: var(--black);
  border-color: var(--green);
  background: var(--white);
  font-weight: 800;
  opacity: 1;
}
.button.secondary:hover,
.button.secondary:focus-visible {
  transform: translateY(-2px);
  color: var(--black);
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(8,10,9,0.14);
}
.button.dark {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}
.button.dark:hover,
.button.dark:focus-visible {
  transform: translateY(-2px);
  color: var(--black);
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}
.button.has-motion-arrow::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  transform: translateX(0);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}
.button.has-motion-arrow:hover::after {
  transform: translateX(3px);
}
.button.full { width: 100%; min-height: 54px; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 46px 0 0;
  padding: 1px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.hero-proof div {
  padding: 18px 20px;
  background: rgba(8,10,9,0.58);
}
.hero-proof dt {
  color: var(--white);
  font-weight: 800;
}
.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.66);
  font-size: 0.92rem;
}

.home-hero {
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(157,201,78,0.2), transparent 34%),
    linear-gradient(135deg, #f9fbf6 0%, #eef4e8 62%, #ffffff 100%);
}
.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(400px, 0.96fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.home-hero-copy {
  max-width: 690px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px;
  padding: 0 14px;
  border-radius: 8px;
  color: #263a07;
  background: rgba(157,201,78,0.28);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.home-hero h1 {
  margin-bottom: 28px;
  color: var(--black);
  font-size: clamp(3rem, 6vw, 6.1rem);
  line-height: 0.97;
}
.home-hero .hero-description {
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: clamp(1.28rem, 2.1vw, 1.78rem);
  font-weight: 800;
  line-height: 1.28;
}
.hero-support {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 650;
}
.home-hero-trust-line {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.6;
}
.button.secondary.light {
  color: var(--black);
  border-color: var(--green);
  background: var(--white);
  font-weight: 800;
  opacity: 1;
}
.button.secondary.light:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  color: var(--black);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(8,10,9,0.14);
}
.home-hero-media {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(8,10,9,0.12);
  overflow: visible;
}
.home-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.trust-strip {
  padding: 24px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}
.trust-strip-inner div {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 18px 14px;
  text-align: center;
  background: #fbfcf8;
}
.trust-strip-inner strong {
  color: var(--ink);
  font-size: 0.92rem;
}
.trust-strip-inner span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.home-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}
.home-section > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin-bottom: 34px;
}
.section-title-row > div {
  max-width: 780px;
}
.section-title-row p:not(.eyebrow),
.staged-expansion p,
.service-panel p,
.featured-product-card p:not(.product-price-line) {
  color: var(--muted);
  font-weight: 650;
}
.category-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.product-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.category-card,
.featured-product-card,
.service-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8,10,9,0.07);
}
.category-card {
  display: grid;
  min-height: 100%;
  padding: 18px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.product-category-card {
  align-content: start;
}
.product-category-card > div {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
.category-card:hover,
.featured-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157,201,78,0.72);
  box-shadow: 0 24px 54px rgba(8,10,9,0.14);
}
.category-card img {
  width: 100%;
  height: 210px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}
.category-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.category-card.dark img {
  background: #111612;
}
.category-card.quote-card {
  align-self: start;
  align-content: start;
  min-height: 0;
  padding: clamp(28px, 3vw, 34px);
  color: var(--black);
  background: linear-gradient(145deg, #9dc94e, #c4ea76);
}
.category-card.quote-card span,
.category-card.quote-card p {
  color: #263a07;
}
.staged-category-card {
  align-content: start;
  background: #fbfcf8;
}
.category-card-cta {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--black);
  font-size: 0.86rem;
}
.product-subcategory-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}
.product-subcategory-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(157,201,78,0.58);
  border-radius: 999px;
  color: #1F3F0C;
  background: rgba(157,201,78,0.14);
  font-size: 0.82rem;
  font-weight: 900;
}
.product-subcategory-chips a:hover,
.product-subcategory-chips a:focus-visible {
  border-color: #9DC94E;
  background: #9DC94E;
  color: #080A09;
}
.product-category-action {
  width: fit-content;
  margin-top: auto;
}
.product-hub-trade-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(157,201,78,0.55);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(157,201,78,0.22), rgba(157,201,78,0.08));
  box-shadow: 0 16px 36px rgba(8,10,9,0.07);
}
.product-hub-trade-strip > div {
  max-width: 760px;
}
.product-hub-trade-strip h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}
.product-hub-trade-strip p:not(.eyebrow) {
  color: #2F3A33;
  font-weight: 700;
}
.product-hub-trade-strip .button {
  flex: 0 0 auto;
}
.staged-expansion {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7faf3;
}
.future-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.future-category-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255,255,255,0.74);
  font-weight: 800;
  text-align: center;
}
.aprons-hero {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.92), rgba(8, 10, 9, 0.78)),
    #111612;
  color: var(--white);
}
.aprons-hero p:not(.eyebrow) {
  max-width: 860px;
  color: rgba(255,255,255,0.82);
}
.aprons-coming-soon-section {
  padding-top: clamp(42px, 6vw, 74px);
}
.aprons-coming-soon-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7faf3;
  box-shadow: 0 18px 42px rgba(8,10,9,0.08);
}
.aprons-coming-soon-panel p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-weight: 650;
}
.aprons-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 1001px) {
  .sector-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .sector-card {
    grid-column: span 3;
  }
  .sector-card.sector-middle-start {
    grid-column: 2 / span 3;
  }
}
.sector-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(8,10,9,0.05);
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}
.sector-card-desc {
  display: block;
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--muted);
  padding: 4px 6px 8px;
  line-height: 1.45;
}
.sector-card:hover,
.sector-card:focus-visible,
.sector-card.active {
  transform: translateY(-4px);
  border-color: #9DC94E;
  color: #080a09;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8,10,9,0.12);
}
.sector-card.active {
  border-color: #9DC94E;
  background: rgba(157,201,78,0.08);
  box-shadow: 0 0 0 3px rgba(157,201,78,0.18), 0 18px 42px rgba(8,10,9,0.12);
}
.sector-card.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;
  z-index: 3;
  width: 22px;
  height: 22px;
  border-right: 1px solid rgba(157,201,78,0.72);
  border-bottom: 1px solid rgba(157,201,78,0.72);
  background: var(--white);
  transform: translateX(-50%) rotate(45deg);
}
.sector-card-image {
  position: relative;
  display: grid;
  place-items: center;
  height: 200px;
  min-height: 200px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.92);
  background:
    radial-gradient(circle at 80% 18%, rgba(157,201,78,0.34), transparent 34%),
    linear-gradient(135deg, #111612 0%, #1f2c22 58%, #435928 100%);
  overflow: hidden;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.sector-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 44%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 18px);
  opacity: 0.7;
}
.sector-card-image span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  color: #9DC94E;
  background: rgba(8,10,9,0.54);
  font-size: 1rem;
  font-weight: 900;
}
.sector-card-image img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.sector-card-image img + span {
  display: none;
}
.sector-card-image.image-failed img {
  display: none;
}
.sector-card-image.image-failed img + span {
  display: inline-flex;
}
.sector-card:hover .sector-card-image,
.sector-card:focus-visible .sector-card-image,
.sector-card.active .sector-card-image {
  transform: scale(1.02);
}
.sector-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 6px 4px;
}
.sector-detail-panel {
  grid-column: 1 / -1;
  display: none;
  margin: 10px 0 12px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-left: 5px solid #9DC94E;
  border-radius: 12px;
  background:
    radial-gradient(circle at right, rgba(157,201,78,0.16), transparent 42%),
    var(--white);
  box-shadow: 0 18px 46px rgba(8,10,9,0.1);
  opacity: 0;
  transform: translateY(14px);
  animation: sectorPanelIn 260ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sector-detail-panel[hidden] {
  display: none;
}
.sector-detail-panel.is-open {
  display: block;
}
.sector-panel-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}
.sector-panel-main {
  display: grid;
  gap: 16px;
}
.sector-detail-panel h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}
.sector-detail-panel p {
  color: var(--muted);
  font-weight: 650;
}
.sector-detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}
.sector-detail-panel li::marker {
  color: #9DC94E;
}
.sector-panel-side {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(157,201,78,0.34);
  border-radius: 10px;
  background:
    radial-gradient(circle at 85% 12%, rgba(157,201,78,0.22), transparent 32%),
    #f7faf3;
}
.sector-panel-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 8px;
  color: #9DC94E;
  background:
    radial-gradient(circle at 78% 18%, rgba(157,201,78,0.32), transparent 34%),
    linear-gradient(135deg, #0b100d, #263721);
  font-size: 1.35rem;
  font-weight: 900;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(8,10,9,0.12);
}
.sector-panel-visual img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.sector-panel-visual span {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  background: rgba(8,10,9,0.54);
}
.sector-panel-visual.image-failed img {
  display: none;
}
.sector-panel-visual.image-failed span {
  display: inline-flex;
}
.sector-panel-note {
  margin: 0;
  padding-top: 4px;
  color: var(--green-dark) !important;
  font-weight: 850 !important;
}
.sector-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sector-panel-actions .button {
  min-width: 180px;
}
.sector-panel-actions .dark-outline {
  border: 2px solid #9DC94E;
  color: #171b18;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8,10,9,0.08);
}
.sector-panel-actions .dark-outline:hover,
.sector-panel-actions .dark-outline:focus-visible {
  color: #080a09;
  background: #9DC94E;
  box-shadow: 0 12px 28px rgba(8,10,9,0.14);
}
@keyframes sectorPanelIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.featured-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.featured-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.featured-product-card img {
  width: 100%;
  height: 230px;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}
.featured-product-card .button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}
.featured-products-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.featured-products-footer .button {
  min-width: min(100%, 260px);
}
.bulk-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 6vw, 80px);
  max-width: 1280px;
  margin: 0 auto clamp(64px, 8vw, 108px);
  padding: clamp(34px, 6vw, 58px);
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 22%, rgba(157,201,78,0.28), transparent 34%),
    #080a09;
}
.bulk-cta div {
  max-width: 760px;
}
.bulk-cta p:not(.eyebrow) {
  color: rgba(255,255,255,0.76);
  font-size: 1.08rem;
}
.service-compliance-grid {
  display: grid;
  gap: 24px;
  background: var(--soft);
}
.service-compliance-grid > * {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.uk-supply-section {
  background: var(--white);
}
.uk-supply-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 6vw, 78px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 12px;
  background:
    radial-gradient(circle at right, rgba(157,201,78,0.18), transparent 38%),
    #f8faf7;
  box-shadow: 0 16px 38px rgba(8,10,9,0.07);
}
.uk-supply-panel div {
  max-width: 820px;
}
.uk-supply-panel p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 650;
}
.service-panel {
  padding: clamp(26px, 5vw, 42px);
}
.service-panel ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}
.service-panel li {
  margin-bottom: 10px;
}
.compliance-panel {
  border-left: 5px solid var(--green);
}
.compliance-panel .button {
  margin-top: 14px;
}

.section, .quote-section, .catalog-layout, .product-detail-layout {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}
.muted { background: var(--soft); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.catalogue-head {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.product-catalogue-section {
  display: grid;
  justify-items: center;
}
.section-head p, .category-band p, .product-card p, .listing-card p, .product-summary p, .two-column p, .form-note, .quote-copy > p { color: var(--muted); }
.category-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cards.three, .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.catalogue-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.catalogue-cards {
  width: 100%;
  max-width: 1200px;
  align-items: stretch;
}
.product-card, .listing-card, .quote-form, .tabs {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  overflow: hidden;
  border-color: #d8e2d1;
  box-shadow: 0 10px 28px rgba(8,10,9,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
  border-color: rgba(157,201,78,0.62);
}
.listing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157,201,78,0.62);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}
.listing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.listing-card .button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}
.product-card a:not(.button), .quote-link { color: var(--green-dark); font-weight: 800; }
.product-image {
  display: block;
  width: 100%;
  max-width: 100%;
}
.card-image,
.material-image {
  height: 230px;
  margin-bottom: 16px;
  border: 1px solid rgba(8,10,9,0.08);
  border-radius: 12px;
  background: var(--soft);
  object-fit: cover;
}
.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}
.product-placeholder::before {
  display: block;
  width: 42%;
  max-width: 112px;
  aspect-ratio: 0.72;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 45% 45% 38% 38% / 26% 26% 54% 54%;
  background: rgba(255,255,255,0.12);
  box-shadow: 18px 18px 0 rgba(255,255,255,0.08);
  content: "";
}
.product-placeholder span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(5,8,7,0.42);
}
.product-placeholder-blurple {
  position: relative;
  background:
    radial-gradient(circle at 28% 22%, rgba(157,201,78,0.18), transparent 30%),
    linear-gradient(135deg, #2536ad 0%, #5941c8 44%, #8f4bc8 100%);
}
.product-price-line,
.listing-card .product-price-line,
.featured-product-card .product-price-line,
.product-card .product-price-line {
  margin: 12px 0 14px;
  color: #2F5F12;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
}
.product-price-line strong,
.listing-card .product-price-line strong,
.featured-product-card .product-price-line strong,
.product-card .product-price-line strong {
  color: #1F3F0C;
  font-size: 1.16rem;
  font-weight: 900;
}

@media (hover: hover) and (pointer: fine) {
  .category-card,
  .featured-product-card,
  .product-card,
  .listing-card,
  .material-card {
    overflow: hidden;
    transition:
      transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 240ms ease,
      border-color 240ms ease;
  }

  .category-card img,
  .featured-product-card img,
  .product-card img,
  .listing-card img,
  .material-card img {
    transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
  }

  .category-card:hover img,
  .featured-product-card:hover img,
  .product-card:hover img,
  .listing-card:hover img,
  .material-card:hover img {
    transform: scale(1.04);
  }

  .category-card:hover .button,
  .featured-product-card:hover .button,
  .product-card:hover .button,
  .listing-card:hover .button,
  .material-card:hover .button {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(157,201,78,0.28);
  }
}
.material-image {
  height: 260px;
  margin-bottom: 0;
}
.image-placeholder {
  min-height: 190px;
  border-radius: 8px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,0.84), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,0.58), transparent 42%),
    var(--panel);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8,10,9,0.08);
}
.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 24% 24% 22% 26%;
  border: 3px solid rgba(8,10,9,0.28);
  border-radius: 44% 44% 34% 34%;
  transform: rotate(-14deg);
}
.image-placeholder::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 24%;
  height: 16px;
  border-radius: 999px;
  background: rgba(8,10,9,0.08);
  filter: blur(10px);
}
.image-placeholder.nitrile { background-color: #e8f1fb; }
.image-placeholder.superior { background-color: #e5f5f2; }
.image-placeholder.black-nitrile {
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,0.22), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,0.16), transparent 42%),
    #202722;
}
.image-placeholder.black-nitrile::before {
  border-color: rgba(255,255,255,0.62);
}
.image-placeholder.black-nitrile::after {
  background: rgba(157,201,78,0.22);
}
.image-placeholder.vinyl { background-color: #edf5e5; }
.image-placeholder.large { min-height: 480px; margin-bottom: 16px; }
.product-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(157,201,78,0.16);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.product-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.product-badge-row .product-badge {
  margin: 0;
}
.product-badge.premium-healthcare {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  background: #123C69;
  box-shadow: 0 8px 18px rgba(18,60,105,0.18);
}
.product-badge-row + .card-image {
  margin-top: 0;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
}
.product-card h3 {
  margin-bottom: 12px;
}
.product-card p {
  margin-bottom: 18px;
}
.featured-product-card p:not(.product-price-line),
.listing-card p:not(.product-price-line) {
  min-height: 64px;
  margin-bottom: 14px;
}
.card-features {
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 600;
}
.card-features li {
  margin-bottom: 8px;
}
.featured-product-card .card-features,
.listing-card ul {
  margin-top: 0;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 650;
}
.featured-product-card .card-features {
  min-height: 116px;
}
.listing-card ul {
  min-height: 116px;
}
.card-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}
.card-actions .button {
  width: 100%;
}
.quote-link {
  justify-self: center;
  font-size: 0.92rem;
}
.quote-link:hover {
  color: var(--black);
}

.catalog-layout {
  max-width: 1200px;
  margin: 0 auto;
}
.back-to-material {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
}
.material-choice-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: var(--soft);
}
.material-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.material-card {
  position: relative;
  display: grid;
  grid-template-rows: 260px 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.material-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--green);
  content: "";
}
.material-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157,201,78,0.72);
  box-shadow: 0 24px 54px rgba(8,10,9,0.14);
}
.material-card > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.material-card h2,
.material-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2rem);
}
.material-card p:not(.eyebrow),
.material-card li {
  color: var(--muted);
  font-weight: 600;
}
.material-card ul {
  margin: 18px 0 24px;
  padding-left: 20px;
}
.material-card li {
  margin-bottom: 8px;
}
.material-card .button {
  margin-top: auto;
}
.catalog-toolbar {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 700;
}
.listing-card h2 { font-size: 1.2rem; }
.listing-card ul, .feature-list { padding-left: 20px; margin: 16px 0 22px; }
.listing-card li, .feature-list li { margin-bottom: 8px; }

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}
.gallery { min-width: 0; }
.product-gallery {
  display: grid;
  gap: 14px;
}
.product-main-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8faf7;
}
.product-main-image {
  width: 100%;
  max-width: 620px;
  max-height: 480px;
  object-fit: contain;
}
.product-main-placeholder {
  min-height: 480px;
  border-color: rgba(89,65,200,0.22);
}
.placeholder-gallery .thumb-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}
.placeholder-gallery .thumb-row span.active {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(157,201,78,0.18);
}
.thumb-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.thumb-row button {
  min-height: 104px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}
.thumb-row button.active,
.thumb-row button:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(157,201,78,0.18);
}
.thumb-row img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8faf7;
}
.product-info-tabs {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(8,10,9,0.06);
}
.product-info-tab-buttons {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: #f8faf7;
}
.product-info-tab-buttons button {
  position: relative;
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.product-info-tab-buttons button::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: transparent;
  content: "";
}
.product-info-tab-buttons button.active {
  color: var(--black);
  background: var(--white);
}
.product-info-tab-buttons button.active::after,
.product-info-tab-buttons button:hover::after {
  background: var(--green);
}
.product-info-accordion-toggle {
  display: none;
}
.product-info-panel {
  padding: clamp(20px, 4vw, 28px);
}
.product-info-panel[hidden] {
  display: none;
}
.product-info-lead {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.7;
}
.product-info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}
.product-info-list li::marker {
  color: var(--green);
}
.product-info-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
}
.product-info-table th,
.product-info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.product-info-table tr:nth-child(odd) th,
.product-info-table tr:nth-child(odd) td {
  background: #f8faf7;
}
.product-info-table tr:last-child th,
.product-info-table tr:last-child td {
  border-bottom: 0;
}
.product-info-table th {
  width: 42%;
  color: var(--ink);
  font-weight: 800;
}
.size-guide h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.size-guide p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}
.size-ruler {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 20px 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(23,32,26,0.22) 0 1px, transparent 1px 12px),
    linear-gradient(90deg, rgba(157,201,78,0.12), rgba(157,201,78,0.32));
  overflow: hidden;
}
.size-ruler span {
  min-height: 54px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 0 8px 10px;
  border-right: 1px solid rgba(23,32,26,0.12);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}
.size-ruler span:last-child {
  border-right: 0;
}
.product-info-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--soft);
}
.product-summary { padding-top: 16px; }
.product-summary h1 { color: var(--ink); font-size: clamp(2.2rem, 4vw, 4rem); }
.mobile-buying-jump,
.mobile-buying-bar {
  display: none;
}
.summary-spec {
  display: grid;
  gap: 12px;
  margin: 22px 0 16px;
}
.summary-spec div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.summary-spec dt { color: var(--muted); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; }
.summary-spec dd { margin: 4px 0 0; font-weight: 800; }
.product-level-callout {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(157,201,78,0.48);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--soft);
  font-weight: 900;
}
.healthcare-product-callout {
  display: grid;
  gap: 6px;
  border-color: rgba(18,60,105,0.28);
  border-left-color: #123C69;
  color: #123C69;
  background: linear-gradient(135deg, rgba(18,60,105,0.08), rgba(157,201,78,0.08));
  box-shadow: 0 12px 28px rgba(18,60,105,0.08);
}
.healthcare-product-callout strong,
.healthcare-product-callout span {
  display: block;
}
.healthcare-product-callout strong {
  color: #123C69;
  font-size: 0.96rem;
  font-weight: 900;
}
.healthcare-product-callout span {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.5;
}
.purchase-panel {
  display: grid;
  gap: 20px;
  margin-top: 18px;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(8,10,9,0.08);
}
.quote-only-panel {
  border-color: rgba(157,201,78,0.38);
}
.static-size-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.static-size-options span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(157,201,78,0.42);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(157,201,78,0.12);
  font-weight: 900;
}
.product-download-link {
  justify-content: center;
}
.data-sheet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 46px;
  margin: 2px 0 18px;
  padding: 12px 18px;
  border: 2px solid #9DC94E;
  border-radius: 8px;
  color: #080A09;
  background: #9DC94E;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.data-sheet-button.full {
  width: 100%;
  margin: 0;
}
.download-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2px 0 18px;
}
.download-button-row .data-sheet-button {
  margin: 0;
}
.data-sheet-button:hover,
.data-sheet-button:focus-visible {
  border-color: #b4dc69;
  color: #080a09;
  background: #b4dc69;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(8,10,9,0.12);
}
.product-documentation-link {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(157,201,78,0.42);
  border-radius: 8px;
  background: #f8faf7;
}
.product-documentation-link .data-sheet-button {
  margin: 0;
}
.product-documentation-link .download-button-row {
  margin: 0;
}
.product-documentation-link span {
  color: var(--ink);
  font-weight: 900;
}
.purchase-panel.is-updating .price-summary {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(8,10,9,0.08);
}
.delivery-banner {
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--soft);
  font-weight: 800;
}
.supply-notice,
.size-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.basket-item .size-note {
  margin-top: 12px;
}
.option-group > span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}
.option-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.option-buttons button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}
.option-buttons button.active,
.option-buttons button:hover {
  border-color: var(--green);
  background: rgba(157,201,78,0.16);
}
.quantity-label {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 800;
}
.quantity-control {
  display: grid;
  grid-template-columns: 44px minmax(80px, 1fr) 44px;
  align-items: center;
  max-width: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.quantity-control input {
  min-height: 50px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
}
.quantity-control input:focus {
  box-shadow: inset 0 0 0 2px rgba(157,201,78,0.32);
}
.quantity-control button {
  min-height: 50px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
}
.quantity-control button:hover {
  background: rgba(157,201,78,0.14);
}
.quick-quantity {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quick-quantity button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}
.quick-quantity button:hover {
  border-color: var(--green);
  background: rgba(157,201,78,0.12);
}
.price-tier-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.price-tier-list div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.price-tier-list div.active {
  border-color: var(--green);
  background: rgba(157,201,78,0.16);
  transform: translateY(-1px);
}
.price-tier-list span,
.price-tier-list strong {
  display: block;
}
.price-tier-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}
.price-tier-list strong {
  margin-top: 4px;
}
.recurring-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-weight: 800;
}
.recurring-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}
.recurring-message {
  margin: -8px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}
.price-summary {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.price-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.price-summary div:last-child {
  border-bottom: 0;
}
.price-summary span {
  color: var(--muted);
  font-weight: 700;
}
.price-summary strong {
  text-align: right;
}
.price-summary .total-row {
  color: var(--black);
  background: var(--soft);
}
.price-summary .total-row strong {
  font-size: 1.25rem;
}
.delivery-message,
.basket-status {
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}
.button.secondary.quote-outline,
.quote-outline {
  color: #080A09;
  border: 2px solid #9DC94E;
  background: #ffffff;
  opacity: 1;
  font-weight: 800;
}
.button.secondary.quote-outline:hover,
.button.secondary.quote-outline:focus-visible,
.quote-outline:hover,
.quote-outline:focus-visible {
  color: #080A09;
  border-color: #9DC94E;
  background: #9DC94E;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(8,10,9,0.14);
}
.bulk-quote-callout {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(157,201,78,0.55);
  border-left: 4px solid #9DC94E;
  border-radius: 8px;
  background: rgba(157,201,78,0.1);
}
.bulk-quote-callout[hidden] {
  display: none;
}
.bulk-quote-callout p {
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}
.bulk-quote-callout .quote-nudge {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}
.volume-pricing-tag {
  color: #9DC94E;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}
.contract-pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #9DC94E;
  border-radius: 8px;
  color: #080A09;
  background: #ffffff;
  font-weight: 800;
  opacity: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.contract-pricing-cta:hover {
  color: #080A09;
  border-color: #9DC94E;
  background: #9DC94E;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(8,10,9,0.14);
}
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 80px); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card,
.info-panel {
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8,10,9,0.06);
}
.info-card h2,
.info-card h3,
.info-panel h2 {
  margin-bottom: 12px;
}
.info-card p,
.info-panel p,
.company-details p {
  color: var(--muted);
  font-weight: 650;
}
.legal-hero {
  background:
    linear-gradient(90deg, rgba(5,8,7,0.94), rgba(5,8,7,0.82)),
    radial-gradient(circle at right, rgba(157,201,78,0.16), transparent 42%);
}
.compliance-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(157,201,78,0.22), transparent 34%),
    linear-gradient(90deg, rgba(5,8,7,0.96), rgba(5,8,7,0.82));
}
.compliance-intro-panel,
.documentation-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8,10,9,0.06);
}
.compliance-intro-panel {
  max-width: 1060px;
  margin: 0 auto;
}
.compliance-intro-panel p,
.compliance-card p,
.documentation-card p,
.compliance-disclaimer {
  color: var(--muted);
  font-weight: 650;
}
.compliance-card-grid,
.documentation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.compliance-card {
  min-height: 100%;
}
.documentation-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.documentation-card .button {
  align-self: flex-start;
  margin-top: auto;
}
.compliance-cta {
  align-items: flex-start;
}
.compliance-cta > div {
  max-width: 820px;
}
.compliance-disclaimer {
  margin-top: 14px;
  font-size: 0.92rem;
}
.documentation-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(157,201,78,0.2), transparent 34%),
    linear-gradient(90deg, rgba(5,8,7,0.96), rgba(5,8,7,0.84));
}
.local-seo-hero {
  max-width: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(157,201,78,0.2), transparent 34%),
    linear-gradient(90deg, rgba(5,8,7,0.96), rgba(5,8,7,0.82));
}
.local-seo-hero > div {
  width: min(100%, 980px);
}
.basingstoke-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  color: #ffffff;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 8, 7, 0.94) 0%,
      rgba(5, 8, 7, 0.82) 42%,
      rgba(5, 8, 7, 0.38) 100%
    ),
    url("assets/basingstoke-seo.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.basingstoke-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 72px);
}
.basingstoke-hero h1 {
  color: #ffffff;
}
.basingstoke-hero p:not(.eyebrow) {
  color: rgba(255,255,255,0.8);
  font-size: 1.12rem;
}
.local-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.quick-link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.quick-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255,255,255,0.82);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.quick-link-list a::after {
  content: "→";
  color: var(--green-dark);
  transform: translateX(0);
  transition: transform 180ms ease;
}
.quick-link-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(157,201,78,0.74);
  color: var(--green-dark);
  box-shadow: 0 12px 26px rgba(8,10,9,0.08);
}
.quick-link-list a:hover::after {
  transform: translateX(3px);
}
.local-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8,10,9,0.07);
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease;
}
.local-product-card::after {
  content: "View →";
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-dark);
  font-weight: 900;
  transition: transform 180ms ease;
}
.local-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157,201,78,0.74);
  box-shadow: 0 24px 54px rgba(8,10,9,0.14);
}
.local-product-card:hover::after {
  transform: translateX(3px);
}
.local-product-card img {
  width: 100%;
  height: 190px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.local-product-card:hover img {
  transform: scale(1.04);
}
.local-product-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.local-product-card h3 {
  margin-bottom: 10px;
}
.local-product-card p {
  color: var(--muted);
  font-weight: 650;
}
.local-product-card-dark img {
  background: #111612;
}
.local-product-card-quote {
  justify-content: center;
  color: var(--black);
  background:
    radial-gradient(circle at 80% 12%, rgba(255,255,255,0.28), transparent 36%),
    linear-gradient(145deg, #9dc94e, #c4ea76);
}
.local-product-card-quote span,
.local-product-card-quote p,
.local-product-card-quote::after {
  color: #263a07;
}
.local-roadmap-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 12px;
  background:
    radial-gradient(circle at right, rgba(157,201,78,0.16), transparent 42%),
    #f8faf7;
  box-shadow: 0 16px 38px rgba(8,10,9,0.07);
}
.local-roadmap-panel p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 650;
}
.local-future-grid span {
  min-height: 62px;
  color: var(--ink);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 22px rgba(8,10,9,0.05);
}
.support-grid .local-wide-card {
  grid-column: span 2;
}
.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.service-area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(157,201,78,0.1);
  font-weight: 800;
}
.local-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 58px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 12px;
  background:
    radial-gradient(circle at right, rgba(157,201,78,0.18), transparent 38%),
    var(--white);
  box-shadow: 0 16px 38px rgba(8,10,9,0.07);
}
.local-cta-band h2 {
  max-width: 680px;
}
.local-cta-band .button.secondary {
  border: 2px solid #9DC94E;
  color: #171b18;
  background: #ffffff;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(8, 10, 9, 0.08);
}
.local-cta-band .button.secondary:hover {
  border-color: #9DC94E;
  color: #080a09;
  background: #9DC94E;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(8, 10, 9, 0.14);
}
.documentation-request-section {
  align-items: start;
}
.documentation-guidance-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8,10,9,0.06);
}
.documentation-guidance-panel h2 {
  margin-bottom: 14px;
}
.documentation-guidance-note {
  margin: 20px 0 0;
  padding: 16px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(157,201,78,0.1);
  font-weight: 700;
}
.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.legal-section {
  padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background: var(--soft);
}
.legal-content {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.legal-content article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8,10,9,0.06);
}
.legal-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.legal-content p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 600;
}
.legal-content p:last-child {
  margin-bottom: 0;
}
.legal-content a {
  color: var(--green-dark);
  font-weight: 800;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--soft);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dark-outline {
  border: 2px solid var(--green);
  color: var(--black);
  background: var(--white);
  font-weight: 800;
  opacity: 1;
}
.dark-outline:hover,
.dark-outline:focus-visible {
  border-color: var(--green);
  color: var(--black);
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(8,10,9,0.14);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.contact-stack {
  display: grid;
  gap: 16px;
}
.contact-card.large {
  padding: 18px 20px;
  background: var(--white);
}
.tabs { overflow: hidden; }
.tab-buttons { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); }
.tab-buttons button {
  min-height: 56px;
  padding: 0 20px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}
.tab-buttons button.active { background: var(--green); color: var(--black); }
.tab-panel { display: none; padding: 24px; }
.tab-panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
.spec-table th { width: 34%; background: var(--soft); }

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.quote-reassurance-section {
  padding: clamp(28px, 4vw, 44px) clamp(20px, 5vw, 72px) 0;
  background: var(--white);
}
.quote-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.quote-reassurance-grid article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(8,10,9,0.05);
}
.quote-reassurance-grid h2 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.quote-reassurance-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}
.quote-copy {
  max-width: 620px;
}
.quote-info-panel {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
.quote-info-panel article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8,10,9,0.06);
}
.quote-info-panel h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}
.quote-info-panel ol,
.quote-info-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 600;
}
.quote-info-panel li {
  margin-bottom: 8px;
}
.quote-info-panel li:last-child {
  margin-bottom: 0;
}
.recurring-supply {
  border-left: 5px solid var(--green);
}
.recurring-supply p {
  margin-bottom: 0;
  color: var(--muted);
}
.quote-form { padding: clamp(22px, 4vw, 34px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 800; }
.required {
  color: var(--green-dark);
}
input, select, textarea {
  width: 100%;
  border: 1px solid #cfd8ca;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--green-dark); box-shadow: 0 0 0 4px rgba(157,201,78,0.24); }
.form-guidance {
  margin: 2px 0 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-weight: 600;
}
.form-note { margin: 12px 0 0; font-size: 0.92rem; }
.trust-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.stripe-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0 0;
  text-align: center;
}
.stripe-logo {
  display: block;
  height: 30px;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.85;
}
.form-status { min-height: 24px; color: var(--green-dark); font-weight: 800; margin: 10px 0 0; }
.basket-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: var(--soft);
}
.basket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 28px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.basket-items {
  display: grid;
  gap: 16px;
}
.basket-empty,
.basket-item,
.basket-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.basket-empty {
  padding: 28px;
}
.basket-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 22px;
}
.basket-item h2,
.basket-summary h2 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.basket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-weight: 700;
}
.basket-prices {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}
.basket-line-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}
.basket-line-controls .quantity-control {
  max-width: 190px;
}
.basket-line-controls .quantity-control input {
  min-height: 42px;
}
.basket-line-controls .quantity-control button {
  min-height: 42px;
}
.basket-remove {
  align-self: start;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.basket-remove:hover {
  border-color: var(--green);
}
.basket-summary {
  position: sticky;
  top: 122px;
  padding: 24px;
}
.basket-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}
.basket-summary-row.total-row {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.1rem;
}
.policy-acceptance {
  margin: 20px 0 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(157,201,78,0.08);
}
.policy-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}
.policy-acceptance input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: #9DC94E;
}
.policy-acceptance a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-acceptance a:hover,
.policy-acceptance a:focus-visible {
  color: var(--black);
}
.button:disabled,
.button[aria-disabled="true"],
.data-sheet-button:disabled,
.contract-pricing-cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.site-footer {
  color: var(--ink);
  background: #f4f6f2;
  border-top: 1px solid var(--line);
}
.footer-main {
  padding: clamp(42px, 6vw, 68px) clamp(20px, 5vw, 72px);
}
.footer-top-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.footer-brand-block,
.footer-contact,
.footer-office,
.footer-links > div {
  min-width: 0;
}
.footer-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--black);
}
.footer-logo {
  display: block;
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.footer-brand-block p {
  max-width: 260px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}
.footer-contact h2,
.footer-office h2,
.footer-links h2 {
  margin: 0 0 16px;
  font-size: 0.92rem;
  text-transform: uppercase;
}
.footer-office p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  margin-bottom: 10px;
  padding: 14px 18px;
  border: 2px solid #9DC94E;
  border-radius: 10px;
  color: #17201a;
  background: transparent;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.contact-card svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--green-dark);
}
.contact-card:hover {
  background: rgba(157,201,78,0.08);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
  padding-top: 34px;
}
.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}
.footer-links a:hover {
  color: var(--green-dark);
}
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: rgba(255,255,255,0.72);
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}
.footer-legal-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 10px;
  line-height: 1.55;
}
.footer-legal-separator {
  color: rgba(157,201,78,0.78);
}
.footer-copyright {
  margin: 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}
.cookie-settings-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(157,201,78,0.5);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}
.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  color: #080a09;
  background: #9DC94E;
}
.cookie-banner {
  position: fixed;
  left: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 34px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 5px solid #9DC94E;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(8,10,9,0.96);
  box-shadow: 0 22px 60px rgba(0,0,0,0.34);
}
.cookie-banner.is-visible {
  display: flex;
}
.cookie-banner h2 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.08rem;
}
.cookie-banner p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
  font-weight: 650;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}
.cookie-banner button,
.cookie-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
}
.cookie-accept {
  border: 1px solid #9DC94E;
  color: #080a09;
  background: #9DC94E;
}
.cookie-reject,
.cookie-policy-link {
  border: 1px solid rgba(255,255,255,0.28);
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}
.cookie-accept:hover,
.cookie-accept:focus-visible {
  background: #b4dc69;
}
.cookie-reject:hover,
.cookie-reject:focus-visible,
.cookie-policy-link:hover,
.cookie-policy-link:focus-visible {
  border-color: #9DC94E;
  color: #9DC94E;
}

@media (max-width: 980px) {
  .home-hero-inner,
  .staged-expansion,
  .service-compliance-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-inner,
  .category-card-grid,
  .featured-product-grid,
  .sector-grid,
  .choose-hero-inner,
  .compliance-card-grid,
  .documentation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-title-row,
  .bulk-cta,
  .uk-supply-panel,
  .product-hub-trade-strip,
  .aprons-coming-soon-panel {
    align-items: flex-start;
    flex-direction: column;
  }
  .aprons-coming-soon-panel {
    grid-template-columns: 1fr;
  }
  .aprons-cta-actions {
    justify-content: flex-start;
  }
  .hero, .catalog-layout, .product-detail-layout, .quote-section, .two-column, .contact-page-grid { grid-template-columns: 1fr; }
  .quote-reassurance-grid { grid-template-columns: 1fr; }
  .material-choice-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .basket-layout { grid-template-columns: 1fr; }
  .local-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .local-roadmap-panel {
    grid-template-columns: 1fr;
  }
  .local-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .basket-summary { position: static; }
  .cards.three, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header { min-height: 76px; padding: 10px 20px; }
  .header-inner { gap: 14px; }
  .brand {
    min-width: 0;
    max-width: min(45vw, 190px);
  }
  .brand-logo {
    height: 52px;
    max-width: 100%;
    max-height: 52px;
  }
  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .mobile-basket-link .basket-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: #9DC94E;
    color: #080a09;
    font-size: 0.78rem;
    font-weight: 900;
  }
  .nav-toggle { display: block; flex-shrink: 0; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0 20px 16px;
    background: var(--black);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }
  .site-nav.is-open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12); }
  .site-nav a:not(.nav-cta)::after {
    bottom: 10px;
  }
  .site-nav a:not(.nav-cta).active {
    padding-left: 12px;
    border-left: 2px solid #9DC94E;
  }
  .mobile-basket-link.active {
    color: #9DC94E;
  }
  .nav-item {
    display: grid;
  }
  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 4px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-dropdown a {
    padding: 10px 0;
    color: rgba(255,255,255,0.68);
    background: transparent;
  }
  .nav-dropdown a:hover {
    color: var(--green);
    background: transparent;
  }
  .nav-mega {
    width: 100%;
    margin: 6px 0 8px;
    padding: 12px;
    border: 1px solid rgba(157,201,78,0.18);
    border-radius: 12px;
    background: rgba(255,255,255,0.035);
  }
  .nav-mega-header {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 0.86rem;
  }
  .nav-mega-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .nav-mega-section {
    gap: 7px;
  }
  .nav-mega-section h2 {
    margin-top: 2px;
    font-size: 0.68rem;
  }
  .site-nav .nav-mega-link {
    gap: 8px;
    padding: 10px 11px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-left-width: 3px;
    background: rgba(0,0,0,0.18);
  }
  .nav-mega-link strong {
    font-size: 0.86rem;
  }
  .nav-mega-link small {
    font-size: 0.72rem;
  }
  .nav-mega-link em {
    min-height: 18px;
    padding: 3px 6px;
    font-size: 0.58rem;
  }
  .nav-mega-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding: 11px 12px;
  }
  .site-nav .nav-mega-cta a {
    padding: 0;
    border-top: 0;
  }
  .site-nav .basket-link { display: none; }
  .site-nav .nav-cta {
    justify-content: flex-start;
    margin-top: 0;
    padding: 10px 18px;
    border-top: 0;
  }
  .home-hero {
    padding-top: 44px;
  }
  .home-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }
  .home-hero-media,
  .home-hero-media img {
    min-height: 320px;
  }
  .home-hero-trust-line {
    font-size: 0.92rem;
  }
  .trust-strip-inner,
  .category-card-grid,
  .featured-product-grid,
  .sector-grid,
  .future-category-grid,
  .local-product-grid,
  .compliance-card-grid,
  .documentation-grid {
    grid-template-columns: 1fr;
  }
  .local-wide-card {
    grid-column: auto;
  }
  .local-roadmap-panel {
    padding: 24px;
  }
  .basingstoke-hero {
    min-height: 620px;
    background-image:
      linear-gradient(
        90deg,
        rgba(5, 8, 7, 0.97) 0%,
        rgba(5, 8, 7, 0.9) 58%,
        rgba(5, 8, 7, 0.68) 100%
      ),
      url("assets/basingstoke-seo.png");
    background-position: center;
  }
  .basingstoke-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }
  .home-section,
  .trust-strip {
    padding-left: 20px;
    padding-right: 20px;
  }
  .category-card img,
  .featured-product-card img {
    height: 220px;
  }
  .bulk-cta {
    margin-left: 20px;
    margin-right: 20px;
  }
  .product-hub-trade-strip {
    gap: 16px;
    padding: 22px;
  }
  .hero, .page-hero { padding-top: 58px; }
  .choose-hero {
    min-height: 600px;
    padding-top: 58px;
    padding-bottom: 58px;
    background-image:
      linear-gradient(90deg, rgba(5,8,7,0.97) 0%, rgba(5,8,7,0.88) 58%, rgba(5,8,7,0.62) 100%),
      url("assets/pages/glove-type-comparison.png");
    background-position: center;
  }
  .choose-hero-inner {
    grid-template-columns: 1fr;
  }
  .choose-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }
  .choose-trust-points {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-hero {
    min-height: 600px;
    padding-top: 0;
    background-image:
      linear-gradient(90deg, rgba(5,8,7,0.96) 0%, rgba(5,8,7,0.86) 58%, rgba(5,8,7,0.58) 100%),
      url("assets/pages/contact-supply-team.png");
    background-position: center;
  }
  .contact-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }
  .about-hero {
    min-height: 600px;
    background-image:
      linear-gradient(90deg, rgba(5,8,7,0.96) 0%, rgba(5,8,7,0.86) 58%, rgba(5,8,7,0.58) 100%),
      url("assets/pages/about-supply-operation.png");
    background-position: center;
  }
  .about-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }
  .hero {
    min-height: 78vh;
  }
  .hero::before {
    background-image:
      radial-gradient(circle at 28% 34%, rgba(157, 201, 78, 0.12), transparent 36%),
      radial-gradient(circle at 80% 72%, rgba(0, 180, 255, 0.08), transparent 30%),
      linear-gradient(
        90deg,
        rgba(5,8,7,0.98) 0%,
        rgba(5,8,7,0.94) 42%,
        rgba(5,8,7,0.76) 72%,
        rgba(5,8,7,0.56) 100%
      ),
      url("assets/hero/hero-gloves-showcase.png");
    background-position: center;
    animation: none;
  }
  .hero-copy::before {
    animation: none;
  }
  .reveal {
    --reveal-y: 17px;
  }
  .reveal-up { --reveal-y: 17px; }
  .reveal-left { --reveal-x: -17px; }
  .reveal-right { --reveal-x: 17px; }
  .reveal-scale { --reveal-scale: 0.98; }
  .metric-grid, .cards.three, .product-grid, .form-grid, .hero-proof { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .option-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-tier-list { grid-template-columns: 1fr; }
  .basket-item { grid-template-columns: 1fr; }
  .stripe-trust {
    justify-content: center;
  }
  .stripe-logo {
    height: 26px;
  }
  .category-band, .catalog-toolbar { flex-direction: column; align-items: flex-start; }
  .image-placeholder.large,
  .product-main-image-wrap { min-height: 340px; }
  .card-image,
  .material-image { height: 220px; }
  .featured-product-card p:not(.product-price-line),
  .listing-card p:not(.product-price-line),
  .featured-product-card .card-features,
  .listing-card ul {
    min-height: 0;
  }
  body:has(.mobile-buying-bar) {
    padding-bottom: 92px;
  }
  .product-detail-layout {
    gap: 22px;
  }
  .product-summary {
    padding-top: 0;
  }
  .product-summary h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .product-main-image-wrap {
    padding: 16px;
  }
  .thumb-row button {
    min-height: 86px;
  }
  .thumb-row img {
    height: 74px;
  }
  .mobile-buying-jump {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin: 0 0 12px;
    padding: 11px 16px;
    border: 1px solid rgba(157,201,78,0.7);
    border-radius: 8px;
    color: #080a09;
    background: rgba(157,201,78,0.18);
    font-weight: 900;
    text-decoration: none;
  }
  .mobile-buying-jump:hover,
  .mobile-buying-jump:focus-visible {
    background: #9DC94E;
  }
  .purchase-panel {
    scroll-margin-top: 94px;
    gap: 16px;
    margin-top: 10px;
    padding: 18px;
  }
  .product-info-tabs {
    margin-top: 18px;
    box-shadow: 0 10px 26px rgba(8,10,9,0.06);
  }
  .product-info-tab-buttons {
    display: none;
  }
  .product-info-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    background: #f8faf7;
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
  }
  .product-info-accordion-toggle::after {
    content: "+";
    color: #2f5f12;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
  }
  .product-info-accordion-toggle.active,
  .product-info-accordion-toggle:hover,
  .product-info-accordion-toggle:focus-visible {
    color: #080a09;
    background: rgba(157,201,78,0.18);
  }
  .product-info-accordion-toggle.active::after {
    content: "-";
  }
  .product-info-panel {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }
  .product-info-panel:last-child {
    border-bottom: 0;
  }
  .product-info-lead {
    font-size: 0.98rem;
    line-height: 1.58;
  }
  .product-info-list {
    gap: 10px;
    line-height: 1.52;
  }
  .product-info-table {
    display: block;
    overflow-x: auto;
  }
  .size-ruler {
    grid-template-columns: repeat(4, 1fr);
  }
  .mobile-buying-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 80;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(157,201,78,0.44);
    border-radius: 8px;
    background: rgba(5,8,7,0.96);
    box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  }
  .mobile-buying-bar.visible {
    display: flex;
  }
  .mobile-buying-bar span {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .mobile-buying-bar strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
  }
  .mobile-buying-bar button {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #9DC94E;
    border-radius: 8px;
    color: #080a09;
    background: #9DC94E;
    font-weight: 900;
    white-space: nowrap;
  }
  .product-info-table th,
  .product-info-table td {
    display: block;
    width: 100%;
  }
  .product-info-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }
  .product-info-table td {
    padding-top: 0;
  }
  .size-ruler span {
    font-size: 0.7rem;
    padding-inline: 4px;
  }
  .hero-proof { margin-top: 34px; }
  .sector-panel-actions {
    display: grid;
  }
  .sector-panel-actions .button {
    width: 100%;
  }
  .sector-panel-card {
    grid-template-columns: 1fr;
  }
  .sector-panel-side {
    padding: 18px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-logo {
    height: 72px;
  }
  .footer-logo-shell {
    width: 100%;
    max-width: 260px;
  }
  .contact-card {
    width: 100%;
  }
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    bottom: 12px;
    max-height: calc(100vh - 24px);
    overflow: auto;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-banner button,
  .cookie-banner a {
    width: 100%;
  }
  .download-button-row {
    display: grid;
  }
  .download-button-row .data-sheet-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .hero .hero-pill,
  .hero h1,
  .hero .tagline,
  .hero .hero-support,
  .hero .hero-actions {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Buyer support grid (homepage) ─────────────────────────── */
.buyer-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.buyer-support-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.buyer-support-card h3 {
  margin: 0;
  font-size: 1.02rem;
}
.buyer-support-card p {
  margin: 0;
  font-size: 0.91rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.6;
}
.buyer-support-card .button {
  align-self: flex-start;
  margin-top: 4px;
}

/* ── Mixed-size callout (product pages) ─────────────────────── */
.mixed-size-callout {
  background: var(--soft);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  margin: 2px 0 0;
}
.mixed-size-callout p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.55;
}
.mixed-size-callout a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Product guide strip (product pages) ────────────────────── */
.product-guide-strip {
  padding: 14px 40px;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.product-guide-strip p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.product-guide-strip a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Glove comparison strip (gloves.html) ───────────────────── */
.comparison-cta-strip {
  padding: 24px 40px;
  background: var(--soft);
  border-top: 1px solid var(--line);
  text-align: center;
}
.comparison-cta-strip p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.comparison-cta-strip a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── FAQ page ───────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
}
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.faq-item p {
  margin: 0;
  font-size: 0.91rem;
  color: var(--muted);
  line-height: 1.65;
}
.faq-item a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Comparison table (glove-comparison.html) ───────────────── */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 860px;
}
.comparison-table th {
  background: var(--ink);
  color: var(--white);
  padding: 13px 16px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  white-space: nowrap;
}
.comparison-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:nth-child(even) td {
  background: var(--soft);
}
.comparison-table .ct-name {
  font-weight: 700;
  font-size: 0.88rem;
}
.comparison-table .ct-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── How to Order steps ─────────────────────────────────────── */
.order-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 780px;
}
.order-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.order-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.order-step-content h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}
.order-step-content p {
  margin: 0;
  font-size: 0.91rem;
  color: var(--muted);
  line-height: 1.65;
}
.order-step-content a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Repeat supply sector grid ──────────────────────────────── */
.repeat-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.repeat-sector-card {
  background: var(--soft);
  border-radius: 10px;
  padding: 22px 20px;
  border: 1px solid var(--line);
}
.repeat-sector-card h3 {
  margin: 0 0 8px;
  font-size: 0.97rem;
}
.repeat-sector-card p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Quote see-also strip ───────────────────────────────────── */
.quote-see-also {
  padding: 18px 40px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 0.91rem;
  color: var(--muted);
}
.quote-see-also a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Responsive for new components ─────────────────────────── */
@media (max-width: 900px) {
  .buyer-support-grid,
  .repeat-sector-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .buyer-support-grid,
  .repeat-sector-grid {
    grid-template-columns: 1fr;
  }
  .order-step {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }
  .order-step-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .product-guide-strip,
  .comparison-cta-strip,
  .quote-see-also {
    padding-left: 20px;
    padding-right: 20px;
  }
}
