:root {
  --pms-blue: #03256a;
  --pms-blue-dark: #021b4d;
  --pms-blue-soft: #eaf0fb;
  --pms-red: #e8201b;
  --ink: #111827;
  --ink-soft: #4b5563;
  --line: #d9dee8;
  --surface: #ffffff;
  --surface-muted: #f3f4f6;
  --success: #147d42;
  --warning: #8f4d00;
  --shadow: 0 12px 28px rgba(11, 30, 66, 0.09);
  --radius: 14px;
  --shell: 1840px;
  --shop-shell: 3000px;
  --shell-gutter: clamp(2rem, 4vw, 5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 24ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2.1rem, 3.2vw, 3.65rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.28rem;
}

p:last-child {
  margin-bottom: 0;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 6px;
  color: #fff;
  background: #000;
}

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

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

body[data-page="home"] .shell,
body[data-page="shop"] .shell {
  --shell: var(--shop-shell);
}

.prototype-bar {
  color: #fff;
  background: var(--pms-red);
  font-size: 0.9rem;
}

.prototype-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 32px;
  text-align: center;
}

.prototype-bar__inner span {
  opacity: 0.92;
}

.site-header {
  position: relative;
  z-index: 20;
  color: #fff;
  background: var(--pms-blue);
}

.masthead {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 460px);
  align-items: center;
  gap: 2rem;
  min-height: 112px;
  padding-block: 0.75rem;
}

.menu-button {
  position: absolute;
  top: 0.75rem;
  left: 0;
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.8rem 0.42rem 0.45rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  font-weight: 800;
}

.pm-mark {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  color: var(--pms-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.16em;
  transform: rotate(-7deg);
}

.masthead__tools {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: #cbd8f2;
  font-size: 0.92rem;
}

.masthead__tools div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.masthead__tools a {
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.masthead__tools a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.brand-panel {
  display: block;
  width: min(100%, 440px);
  justify-self: end;
  padding: 0;
}

.brand-panel img {
  width: 100%;
  height: auto;
}

.primary-nav {
  color: var(--pms-blue);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(2, 27, 77, 0.08);
}

.primary-nav__inner {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
  min-height: 52px;
}

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a:hover {
  background: var(--pms-blue-soft);
}

.primary-nav a[aria-current="page"]::after,
.primary-nav a.nav-section-current::after {
  position: absolute;
  right: 1rem;
  bottom: 0;
  left: 1rem;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: var(--pms-red);
  content: "";
}

.primary-nav .nav-call {
  margin-left: auto;
  color: #fff;
  background: var(--pms-blue);
}

.primary-nav .nav-call:hover {
  background: var(--pms-blue-dark);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--pms-red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lede {
  max-width: 68ch;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

.hero {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(130deg, var(--pms-blue-dark) 0%, var(--pms-blue) 58%, #12448e 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: 430px;
  padding-block: clamp(2rem, 3.2vw, 3rem);
}

.hero h1 {
  max-width: 17ch;
}

.hero .lede {
  color: #e5ecfa;
}

.hero__media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: #0a1e46;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.75));
  content: "";
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero__media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.1rem;
  bottom: 0.9rem;
  left: 1.1rem;
  color: #fff;
  font-size: 0.82rem;
}

.microcopy {
  max-width: 65ch;
  margin-top: 1.25rem;
  margin-bottom: 0;
  color: #cbd8f2;
  font-size: 0.88rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  color: #fff;
  background: var(--pms-blue);
}

.hero .button--primary,
.page-hero--plasma .button--light {
  color: var(--pms-blue);
  background: #fff;
}

.button--primary:hover {
  background: var(--pms-blue-dark);
}

.hero .button--primary:hover,
.page-hero--plasma .button--light:hover {
  background: #eaf0fb;
}

.button--secondary {
  color: var(--pms-blue);
  border-color: var(--pms-blue);
  background: transparent;
}

.hero .button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.button--secondary:hover {
  background: var(--pms-blue-soft);
}

.hero .button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button--light {
  color: var(--pms-blue);
  background: #fff;
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.button--disabled {
  width: 100%;
  color: #6b7280;
  border-color: #d1d5db;
  background: #e5e7eb;
  cursor: not-allowed;
}

.proof-strip {
  color: #fff;
  background: var(--pms-blue-dark);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip__grid div {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-strip__grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-strip strong {
  font-size: 1.32rem;
}

.proof-strip span {
  color: #bfcdec;
  font-size: 0.88rem;
}

.section {
  padding-block: clamp(2.75rem, 4.5vw, 4.5rem);
}

.section--tint {
  background: #e9edf3;
}

.section--dark {
  color: #fff;
  background: var(--pms-blue-dark);
}

.section--dark p:not(.eyebrow) {
  color: #d9e2f5;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link,
.card-link {
  color: var(--pms-blue);
  font-weight: 800;
  text-underline-offset: 0.2em;
}

.card-link {
  display: inline-block;
  margin-top: auto;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--ink-soft);
}

.card-code {
  display: inline-grid;
  width: fit-content;
  min-width: 3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  padding-inline: 0.65rem;
  place-items: center;
  border-radius: 8px;
  color: var(--pms-blue);
  background: var(--pms-blue-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card {
  min-height: 195px;
}

.route-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 1.2rem;
}

.route-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.route-card p:not(.eyebrow) {
  color: var(--ink-soft);
}

.route-card .button {
  margin-top: auto;
}

.route-card--industrial {
  color: #fff;
  border-color: var(--pms-blue);
  background: var(--pms-blue);
}

.route-card--industrial p:not(.eyebrow) {
  color: #dce5f6;
}

.project-card {
  padding: 0;
  overflow: hidden;
}

.project-card > img,
.project-card__text-panel {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card__text-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #fff;
  background: linear-gradient(145deg, var(--pms-blue-dark), var(--pms-blue));
}

.project-card__text-panel span {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 850;
  letter-spacing: -0.05em;
}

.project-card__text-panel i {
  color: var(--pms-red);
  font-size: 1.5rem;
  font-style: normal;
}

.project-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.status-label,
.demo-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0.25rem 0 1rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  color: var(--pms-blue);
  background: var(--pms-blue-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.section--shop-home {
  background: #fff;
}

.shop-category-card,
.shop-route-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  min-height: 175px;
  color: inherit;
  text-decoration: none;
}

.shop-category-card:hover,
.shop-route-card:hover {
  border-color: var(--pms-blue);
  transform: translateY(-2px);
}

.shop-category-card__code {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--pms-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.shop-category-card p:not(.eyebrow),
.shop-route-card p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.shop-category-card .status-label,
.shop-route-card .status-label {
  margin-bottom: 0;
}

.shop-fulfilment-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}

.shop-fulfilment-bar > div {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1rem;
  background: var(--pms-blue-soft);
}

.shop-fulfilment-bar span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.shop-fulfilment-bar a {
  color: var(--pms-blue);
  font-weight: 750;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(125deg, var(--pms-blue) 0 76%, var(--pms-red) 76% 100%);
  box-shadow: var(--shadow);
}

.cta-panel p:not(.eyebrow) {
  max-width: 65ch;
  color: #dce5f6;
}

.page-hero {
  padding-block: clamp(1.35rem, 2.4vw, 2.25rem);
  color: #fff;
  background: linear-gradient(130deg, var(--pms-blue-dark), var(--pms-blue));
}

.page-hero h1 {
  max-width: 24ch;
  margin-bottom: 0.55rem;
  font-size: clamp(1.9rem, 2.7vw, 3rem);
}

.page-hero .lede {
  color: #dce5f6;
}

.page-hero__narrow {
  max-width: 1120px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.page-hero__grid img {
  width: 100%;
  height: clamp(220px, 24vw, 280px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.28);
}

.page-hero--plasma {
  background: #0f1829;
}

.page-hero--plasma h1 {
  max-width: 19ch;
}

.page-hero--plasma .page-hero__grid img {
  min-height: 260px;
}

.page-hero--crane {
  background: linear-gradient(120deg, #07152e, var(--pms-blue));
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 3rem;
  align-items: center;
}

.shop-hero h1,
.shop-hero .lede {
  margin-bottom: 0;
}

.shop-hero__actions {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.shop-hero__actions span {
  display: flex;
  flex-direction: column;
  color: #dce5f6;
  font-size: 0.86rem;
}

.shop-hero__actions strong {
  color: #fff;
}

.shop-hero__actions a {
  color: #fff;
  font-weight: 800;
}

.shop-status-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: -1rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--pms-red);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.shop-status-bar > span:not(.demo-badge) {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.shop-status-bar .demo-badge {
  margin: 0;
}

.section--shop-categories {
  padding-top: 2.4rem;
}

.section-heading--compact {
  margin-bottom: 1.25rem;
}

.split-content,
.article-layout,
.configurator-layout,
.form-layout,
.contact-layout,
.crane-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split-content--align-start {
  align-items: start;
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.2rem clamp(2rem, 7vw, 6rem);
}

.two-column-copy article {
  padding-top: 1.5rem;
  border-top: 4px solid var(--pms-blue);
}

.two-column-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.checklist-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-proof-stack {
  display: grid;
  gap: 1rem;
}

.service-yard-photo {
  overflow: hidden;
  height: 220px;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-yard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 58%;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.article-layout img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.article-layout--reverse > :first-child {
  order: 2;
}

.note {
  padding: 1rem;
  border-left: 4px solid var(--pms-red);
  color: var(--ink-soft);
  background: #fff;
  font-size: 0.92rem;
}

.case-study-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 15px;
  background: var(--pms-blue);
  box-shadow: var(--shadow);
}

.case-study-facts span {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  color: #dce5f6;
  background: var(--pms-blue-dark);
}

.case-study-facts strong {
  color: #fff;
  font-size: 1.65rem;
}

.article-product {
  margin: 0;
  padding: 1.25rem;
  border-radius: 15px;
  color: var(--ink-soft);
  background: #fff;
}

.article-product img {
  width: min(100%, 430px);
  margin-inline: auto;
}

.article-product figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.82rem;
}

.notice-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2rem;
  align-items: center;
  margin-top: -2.2rem;
  padding: 1.5rem 2rem;
  border: 2px solid var(--pms-red);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.notice-panel h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.shop-route-card {
  min-height: 175px;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.shop-route-card:hover {
  border-color: var(--pms-blue);
  transform: translateY(-3px);
}

.configurator-layout--reverse > :first-child {
  order: 2;
}

.configurator-card,
.form-card,
.layout-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-title-row h2,
.form-title-row h3 {
  margin-bottom: 0;
}

.form-card label,
.configurator-card label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 45px;
  padding: 0.65rem 0.75rem;
  border: 1px solid #aeb6c4;
  border-radius: 7px;
  background: #fff;
  font-size: 1rem;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pms-blue);
  box-shadow: 0 0 0 2px rgba(3, 37, 106, 0.22);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

fieldset {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 9px;
}

legend {
  padding-inline: 0.45rem;
  color: var(--pms-blue);
  font-weight: 850;
}

.field-note {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 500;
}

.form-grid {
  display: grid;
  gap: 0 1rem;
}

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

.quantity-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.2rem 0 1.2rem;
}

.quantity-shortcuts button,
.map-toolbar button,
.text-button {
  min-height: 38px;
  padding: 0.4rem 0.75rem;
  border: 1px solid #aeb6c4;
  border-radius: 7px;
  color: var(--pms-blue);
  background: #fff;
  font-weight: 800;
}

.quantity-shortcuts button:hover,
.map-toolbar button:hover,
.map-toolbar button.is-active {
  color: #fff;
  border-color: var(--pms-blue);
  background: var(--pms-blue);
}

.price-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  border-radius: 9px;
  background: #c7d2e7;
}

.price-box > div {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--pms-blue-soft);
}

.price-box span,
.price-box small {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.price-box strong {
  margin-block: 0.15rem;
  color: var(--pms-blue);
  font-size: 1.25rem;
}

.selected-product {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--pms-red);
  background: var(--surface-muted);
}

.cut-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.configurator-card fieldset label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.configurator-card fieldset input,
.inline-options input,
.checkbox-row input,
.enquiry-choice-grid input {
  width: 1.05rem;
  min-height: 1.05rem;
  margin: 0;
}

.calculation-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
  padding: 1rem;
  border-radius: 9px;
  color: #fff;
  background: var(--pms-blue);
}

.calculation-box strong {
  margin-block: 0.15rem;
  font-size: 1.25rem;
}

.calculation-box small {
  color: #dce5f6;
}

.fulfilment-note,
.limit-callout,
.bespoke-warning,
.warning-banner {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-left: 5px solid var(--pms-red);
  background: #fff;
  box-shadow: var(--shadow);
}

.fulfilment-note {
  display: flex;
  flex-direction: column;
}

.special-card {
  display: grid;
  grid-template-columns: 160px 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.special-card__mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 10px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
}

.special-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 0;
}

.special-details div {
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
}

.special-details dt {
  color: #9fb0d1;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.special-details dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 750;
}

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

.finite-card {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.finite-card .special-card__mark {
  border-width: 7px;
  font-size: 1.35rem;
}

.finite-card .status-label {
  grid-column: 2;
  margin: -0.5rem 0 0;
}

.limit-callout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: center;
}

.limit-callout strong {
  color: var(--pms-blue);
  font-size: 1.35rem;
}

.process-list {
  display: grid;
  gap: 0.7rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 0.8rem;
  align-items: center;
}

.process-list li > span {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pms-blue);
  font-weight: 850;
}

.process-list li div {
  display: flex;
  flex-direction: column;
}

.process-list small {
  color: var(--ink-soft);
}

.upload-field {
  margin-bottom: 1.2rem;
}

.upload-field__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  font-weight: 750;
}

.form-card .drop-zone {
  position: relative;
  display: grid;
  min-height: 160px;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 1.4rem;
  border: 2px dashed #7083a8;
  border-radius: 11px;
  color: var(--pms-blue);
  background: #f4f7fc;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.form-card .drop-zone:hover,
.form-card .drop-zone:focus-within,
.form-card .drop-zone.is-dragover {
  border-color: var(--pms-blue);
  background: var(--pms-blue-soft);
}

.form-card .drop-zone.is-dragover {
  transform: translateY(-2px);
}

.form-card .drop-zone:focus-within {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

.form-card .drop-zone.has-files {
  border-style: solid;
  border-color: var(--success);
  background: #eefbf3;
}

.drop-zone__input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.drop-zone__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pms-blue);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.drop-zone > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.drop-zone strong {
  font-size: 1.08rem;
}

.drop-zone small {
  color: var(--ink-soft);
  font-weight: 600;
}

.drop-zone__formats {
  margin: 0.55rem 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.upload-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.upload-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: #fff;
  font-size: 0.84rem;
}

.upload-list li span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-list button {
  flex: 0 0 auto;
  padding: 0.25rem 0.5rem;
  border: 0;
  border-radius: 5px;
  color: #9b1c17;
  background: #fde8e7;
  font-weight: 800;
}

.upload-field .field-note {
  margin: 0.55rem 0 0;
}

.upload-field .field-note.is-error {
  color: #9b1c17;
  font-weight: 750;
}

.form-response {
  display: none;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--success);
  color: #0b5730;
  background: #e7f7ed;
  font-weight: 750;
}

.form-response.is-visible {
  display: block;
}

.privacy-note {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.warning-banner {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  border-color: #ffbf47;
  color: #3c2a00;
  background: #fff4d6;
}

.crane-intro-grid {
  align-items: stretch;
}

.crane-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.crane-evidence-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.crane-evidence-grid .card-code {
  margin: 0;
}

.crane-evidence-grid h3 {
  margin-bottom: 0.3rem;
}

.crane-evidence-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.photo-required-card {
  padding: 2rem;
  border: 2px dashed #94a3b8;
  border-radius: var(--radius);
  background: #fff;
}

.crane-equipment-photo {
  overflow: hidden;
  min-height: 290px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--pms-blue-dark);
  box-shadow: var(--shadow);
}

.crane-equipment-photo img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  object-position: 50% 60%;
}

.crane-tool__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 1.2rem;
  align-items: start;
}

.crane-form fieldset {
  padding: 1rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.crane-form legend {
  padding: 0 0.5rem 0 0;
}

.inline-options {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.inline-options label,
.checkbox-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.55rem !important;
  font-weight: 600 !important;
}

.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.map-toolbar button {
  font-size: 0.82rem;
}

.layout-board {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 2px solid #8b98ad;
  border-radius: 9px;
  background-color: #edf1f6;
  background-image:
    linear-gradient(rgba(3, 37, 106, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 37, 106, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(3, 37, 106, 0.16) 2px, transparent 2px),
    linear-gradient(90deg, rgba(3, 37, 106, 0.16) 2px, transparent 2px);
  background-position: -1px -1px;
  background-size: 24px 24px, 24px 24px, 120px 120px, 120px 120px;
  cursor: crosshair;
}

.layout-board::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.9);
  content: "SITE SKETCH · NOT TO SCALE";
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.map-point {
  position: absolute;
  left: var(--point-x);
  top: var(--point-y);
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  color: #fff;
  background: var(--pms-blue);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
  font-size: 0.72rem;
  font-weight: 900;
}

.map-point--entrance {
  background: var(--success);
}

.map-point--access {
  background: #6d28d9;
}

.map-point--setup {
  background: #b45309;
}

.map-point--load {
  background: var(--pms-red);
}

.map-point--set-down {
  background: #0369a1;
}

.point-list {
  display: grid;
  gap: 0.35rem;
  margin: 0.8rem 0 0;
  padding-left: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.point-list .empty-state {
  list-style: none;
  margin-left: -1.5rem;
}

.text-button {
  border: 0;
  text-decoration: underline;
}

.crane-result {
  margin-top: 1.2rem;
  padding: 1.25rem 1.5rem;
  border: 2px solid #c5cfde;
  border-radius: var(--radius);
  background: #fff;
}

.crane-result[data-state="survey"] {
  border-color: var(--success);
  background: #eefbf3;
}

.crane-result[data-state="outside"] {
  border-color: var(--pms-red);
  background: #fff1f0;
}

.crane-result[data-state="more"] {
  border-color: #d69e2e;
  background: #fff9e8;
}

.result-kicker {
  color: var(--pms-blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crane-result h3 {
  margin-block: 0.35rem;
}

.crane-result small {
  color: var(--ink-soft);
}

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

.three-step article {
  padding-top: 1.2rem;
  border-top: 5px solid var(--pms-blue);
}

.three-step article > span {
  color: var(--pms-red);
  font-weight: 900;
}

.three-step h2 {
  margin-top: 0.5rem;
  font-size: 1.35rem;
}

.photo-policy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.quality-banner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 5px solid #d69e2e;
  background: #fff8df;
}

.quality-banner > div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.status-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #d69e2e;
}

.quality-card {
  min-height: 210px;
}

.contact-layout {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.45fr);
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-card {
  overflow-wrap: anywhere;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--pms-blue);
  font-weight: 800;
}

.contact-card__main {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.55rem;
  text-decoration: none;
}

.contact-card__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.contact-card__actions .button {
  width: 100%;
  color: #fff;
}

.pending-link {
  padding: 0.55rem 0.7rem;
  border: 1px dashed #94a3b8;
  border-radius: 7px;
  color: var(--ink-soft);
  background: var(--surface-muted);
  font-size: 0.82rem;
  font-weight: 750;
  text-align: center;
}

.enquiry-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.enquiry-choice-grid label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 600;
}

.enquiry-choice-grid label:has(input:checked) {
  border-color: var(--pms-blue);
  background: var(--pms-blue-soft);
}

.enquiry-choice-grid span {
  display: flex;
  flex-direction: column;
}

.enquiry-choice-grid small {
  color: var(--ink-soft);
  font-weight: 500;
}

.bespoke-warning {
  margin: 0 0 1.2rem;
  background: #fff8df;
  box-shadow: none;
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.legal-layout article {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-list {
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding-block: 0.7rem;
  border-top: 1px solid var(--line);
}

.legal-list dt {
  color: var(--ink-soft);
  font-weight: 700;
}

.legal-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  color: #fff;
  background: #07152e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.1fr 1fr 1fr;
  gap: 2rem;
  padding-block: 2.5rem;
}

.site-footer h2 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.site-footer p {
  color: #bfcdec;
  font-size: 0.88rem;
}

.site-footer a {
  color: #fff;
  text-underline-offset: 0.18em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9fb0d1;
  font-size: 0.78rem;
}

@media (max-width: 1100px) {
  .masthead {
    grid-template-columns: 1fr 430px;
  }

  .hero__grid,
  .page-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid--three,
  .card-grid--four,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-card--industrial {
    grid-column: span 2;
  }

  .crane-tool__grid {
    grid-template-columns: 1fr;
  }
}

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

  .menu-button {
    display: flex;
  }

  .masthead {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    min-height: 0;
    padding: 3.7rem 0 0.8rem;
  }

  .masthead__tools {
    display: none;
  }

  .brand-panel {
    max-width: 420px;
    margin-inline: auto;
    justify-self: center;
  }

  .primary-nav {
    display: none;
  }

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

  .primary-nav__inner {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav a {
    min-height: 50px;
    border-top: 1px solid var(--line);
  }

  .primary-nav a[aria-current="page"]::after,
  .primary-nav a.nav-section-current::after {
    inset: 0 auto 0 0;
    width: 4px;
    height: auto;
  }

  .primary-nav .nav-call {
    width: 100%;
    margin-left: 0;
  }

  .hero__grid,
  .page-hero__grid,
  .shop-hero,
  .split-content,
  .article-layout,
  .configurator-layout,
  .form-layout,
  .contact-layout,
  .crane-intro-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: 0;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 21ch;
  }

  .article-layout--reverse > :first-child,
  .configurator-layout--reverse > :first-child {
    order: initial;
  }

  .proof-strip__grid,
  .proof-strip__grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip__grid div:nth-child(odd) {
    border-left: 0;
  }

  .proof-strip__grid div:last-child {
    border-right: 0;
  }

  .notice-panel,
  .photo-policy,
  .quality-banner,
  .limit-callout {
    grid-template-columns: 1fr;
  }

  .special-card {
    grid-template-columns: 120px 1fr;
  }

  .special-details {
    grid-column: span 2;
  }

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

@media (max-width: 620px) {
  .prototype-bar__inner {
    display: grid;
    gap: 0;
    justify-content: start;
    min-height: 48px;
    padding-block: 0.35rem;
    text-align: left;
  }

  h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.7rem);
  }

  .masthead {
    padding-top: 3.5rem;
  }

  .brand-panel {
    padding: 0.3rem 0.45rem;
  }

  .hero__grid {
    padding-block: 2.2rem;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .proof-strip__grid,
  .proof-strip__grid--three,
  .card-grid--three,
  .card-grid--four,
  .card-grid--two,
  .route-grid,
  .two-column-copy,
  .form-grid--two,
  .price-box,
  .three-step,
  .finite-grid,
  .crane-evidence-grid,
  .shop-fulfilment-bar,
  .shop-status-bar,
  .legal-layout,
  .footer-grid,
  .enquiry-choice-grid {
    grid-template-columns: 1fr;
  }

  .route-card--industrial {
    grid-column: auto;
  }

  .section-heading,
  .cta-panel,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel {
    background: var(--pms-blue);
  }

  .case-study-facts {
    grid-template-columns: 1fr;
  }

  .case-study-facts span {
    min-height: 100px;
  }

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

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

  .finite-card .status-label {
    grid-column: 2;
  }

  .special-card__mark {
    width: 120px;
  }

  .special-details {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .layout-board {
    min-height: 340px;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

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

/* --------------------------------------------------------------------------
   V3 shop-first interface
   -------------------------------------------------------------------------- */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.icon,
.nav-menu__icon,
.basket-link__icon,
.compact-service-card__icon,
.profile-icon {
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon,
.nav-menu__icon,
.basket-link__icon,
.compact-service-card__icon {
  width: 2rem;
  height: 2rem;
  stroke-width: 2.6;
}

.icon-accent {
  stroke: var(--pms-red);
}

.profile-icon {
  width: 3.2rem;
  height: 3.2rem;
  stroke-width: 5;
}

.masthead--v3 {
  min-height: 72px;
  padding-block: 0.4rem;
}

.masthead--v3 .brand-panel {
  width: min(100%, 330px);
}

.primary-nav__inner--v3 {
  position: relative;
  min-height: 48px;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-group > a {
  padding-right: 0.4rem;
}

.nav-group__toggle {
  display: grid;
  width: 2rem;
  min-height: 100%;
  padding: 0;
  place-items: center;
  border: 0;
  color: var(--pms-blue);
  background: transparent;
  font-size: 1rem;
  font-weight: 900;
}

.nav-group:hover > a,
.nav-group:hover > .nav-group__toggle,
.nav-group:focus-within > a,
.nav-group:focus-within > .nav-group__toggle,
.nav-group.is-open > a,
.nav-group.is-open > .nav-group__toggle {
  background: var(--pms-blue-soft);
}

.nav-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% - 1px);
  left: 0;
  width: min(760px, calc(100vw - 3rem));
  padding: 1rem;
  transform: translateY(-5px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--pms-red);
  border-radius: 0 0 12px 12px;
  opacity: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 44px rgba(2, 27, 77, 0.2);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav-menu--services {
  left: -100px;
  width: min(820px, calc(100vw - 3rem));
}

.nav-group.is-open .nav-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-menu__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding: 0 0.25rem 0.7rem;
  border-bottom: 1px solid var(--line);
}

.nav-menu__heading strong {
  color: var(--pms-blue);
  font-size: 1.05rem;
}

.nav-menu__heading span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.nav-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

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

.primary-nav .nav-menu__link {
  display: grid;
  min-height: 62px;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 7px;
  font-size: 0.88rem;
}

.nav-menu__icon {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--pms-blue);
}

.nav-menu__link span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.nav-menu__link small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
}

.primary-nav .nav-menu__all {
  justify-content: flex-end;
  min-height: 40px;
  margin-top: 0.65rem;
  padding: 0.45rem 0.6rem;
  color: var(--pms-blue);
}

.primary-nav .basket-link {
  gap: 0.45rem;
  margin-left: auto;
  color: #fff;
  background: var(--pms-blue);
}

.primary-nav .basket-link:hover {
  background: var(--pms-blue-dark);
}

.basket-link__icon {
  width: 1.35rem;
  height: 1.35rem;
}

.basket-link strong,
.basket-inline-link strong {
  display: grid;
  min-width: 1.7rem;
  height: 1.7rem;
  padding-inline: 0.35rem;
  place-items: center;
  border-radius: 999px;
  color: var(--pms-blue);
  background: #fff;
  font-size: 0.78rem;
}

.basket-toast {
  position: fixed;
  z-index: 100;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 380px;
  padding: 0.9rem 1.1rem;
  transform: translateY(15px);
  border-left: 5px solid var(--pms-red);
  border-radius: 8px;
  opacity: 0;
  color: #fff;
  background: var(--pms-blue-dark);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  font-weight: 750;
  transition: opacity 150ms ease, transform 150ms ease;
}

.basket-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.button--compact {
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  font-size: 0.84rem;
}

.compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Home shop launchpad */

.shop-launchpad {
  padding-block: 1.65rem 1.3rem;
  background: #fff;
}

.shop-launchpad__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.15rem;
}

.shop-launchpad__heading h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.catalogue-search {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.catalogue-search__icon {
  position: absolute;
  z-index: 1;
  left: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pms-blue);
  pointer-events: none;
}

.catalogue-search input {
  min-width: 0;
  padding-left: 2.5rem;
  border-radius: 8px 0 0 8px;
  color: var(--ink);
  caret-color: var(--ink);
  background: #fff;
}

.catalogue-search button {
  align-self: stretch;
  min-width: 92px;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--pms-blue);
  border-radius: 0 8px 8px 0;
  color: #fff;
  background: var(--pms-blue);
  font-weight: 800;
}

.catalogue-search button:hover {
  background: var(--pms-blue-dark);
}

.shop-search-suggestions {
  position: absolute;
  z-index: 80;
  top: calc(100% + 0.4rem);
  right: 0;
  left: 0;
  max-height: min(620px, 70vh);
  padding: 0.35rem;
  overflow-y: auto;
  border: 1px solid #b8c2d3;
  border-top: 4px solid var(--pms-red);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 20px 45px rgba(2, 27, 77, 0.24);
}

.shop-search-suggestions__heading {
  padding: 0.35rem 0.55rem 0.45rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.shop-search-suggestion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.5rem 0.6rem;
  border-top: 1px solid #edf0f5;
  color: inherit;
  text-decoration: none;
}

.shop-search-suggestion:hover,
.shop-search-suggestion.is-active {
  background: var(--pms-blue-soft);
}

.shop-search-suggestion > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.shop-search-suggestion small {
  color: var(--pms-red);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shop-search-suggestion strong {
  overflow: hidden;
  color: var(--pms-blue-dark);
  font-size: 0.85rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-search-suggestion em {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-style: normal;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-search-suggestion > b {
  color: var(--pms-red);
}

.shop-search-suggestions__all {
  display: block;
  padding: 0.55rem 0.6rem;
  color: var(--pms-blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: right;
}

.home-department-grid,
.shop-department-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 0.75rem;
}

.shop-dept-card,
.department-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: inherit;
  background: #fff;
  box-shadow: 0 7px 20px rgba(11, 30, 66, 0.07);
  text-decoration: none;
  transition: border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.shop-dept-card {
  min-height: 220px;
}

.shop-dept-card:hover,
.department-card:hover {
  transform: translateY(-3px);
  border-color: var(--pms-blue);
  box-shadow: 0 13px 26px rgba(11, 30, 66, 0.13);
}

.shop-dept-card__icon,
.department-card__icon {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 0.8rem;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--pms-blue);
}

.shop-dept-card__icon .icon,
.department-card__icon .icon {
  width: 2.15rem;
  height: 2.15rem;
}

.shop-dept-card__body,
.department-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.shop-dept-card__body small,
.department-card__body small {
  margin-bottom: 0.3rem;
  color: var(--pms-red);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.shop-dept-card__body strong,
.department-card__body strong {
  margin-bottom: 0.4rem;
  color: var(--pms-blue-dark);
  font-size: 1.1rem;
  line-height: 1.18;
}

.shop-dept-card__body > span,
.department-card__body > span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.42;
}

.shop-dept-card__meta,
.department-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 0.8rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.shop-dept-card__meta b,
.department-card__footer b {
  color: var(--pms-blue);
  font-size: 0.72rem;
}

.shop-dept-card__meta em,
.department-card__footer em {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-style: normal;
  text-align: right;
}

.home-order-strip {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1px;
  overflow: hidden;
  margin-top: 0.85rem;
  border: 1px solid #c9d3e6;
  border-radius: 9px;
  background: #c9d3e6;
}

.home-order-strip > div,
.home-order-strip > a {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  background: var(--pms-blue-soft);
}

.home-order-strip .icon {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--pms-blue);
}

.home-order-strip span {
  display: flex;
  flex-direction: column;
}

.home-order-strip small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.home-order-strip > a {
  justify-content: center;
  min-width: 130px;
  color: #fff;
  background: var(--pms-blue);
  font-weight: 800;
  text-decoration: none;
}

.home-workshop {
  color: #fff;
  background: var(--pms-blue-dark);
}

.home-workshop__grid {
  display: grid;
  min-height: 320px;
  grid-template-columns: minmax(500px, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: 1.75rem;
}

.home-workshop figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
}

.home-workshop figure::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  content: "";
}

.home-workshop img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.home-workshop figcaption {
  position: absolute;
  z-index: 1;
  right: 0.8rem;
  bottom: 0.55rem;
  left: 0.8rem;
  font-size: 0.72rem;
}

.home-workshop h2 {
  margin-bottom: 0.7rem;
}

.home-workshop p:not(.eyebrow) {
  color: #dce5f6;
}

.home-workshop .button--primary {
  color: var(--pms-blue);
  background: #fff;
}

.home-workshop .button--secondary {
  color: #fff;
  border-color: #fff;
}

.compact-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.compact-service-card {
  display: grid;
  min-height: 100px;
  grid-template-columns: 2.8rem minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: inherit;
  background: #fff;
  text-decoration: none;
}

.compact-service-card:hover {
  border-color: var(--pms-blue);
}

.compact-service-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.35rem;
  border-radius: 8px;
  color: var(--pms-blue);
  background: var(--pms-blue-soft);
}

.compact-service-card span {
  display: flex;
  flex-direction: column;
}

.compact-service-card small {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.compact-service-card > b {
  color: var(--pms-red);
}

.service-card__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 8px;
  color: var(--pms-blue);
  background: var(--pms-blue-soft);
}

.service-card__icon .icon {
  width: 2rem;
  height: 2rem;
}

/* Shop overview */

.catalogue-hero {
  color: #fff;
  background: linear-gradient(120deg, var(--pms-blue-dark), var(--pms-blue));
}

.catalogue-hero__inner {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
  gap: 2rem;
  align-items: center;
  padding-block: 1rem;
}

.catalogue-hero--compact .catalogue-hero__inner {
  min-height: 0;
}

.catalogue-hero h1 {
  max-width: none;
  margin-bottom: 0.3rem;
  overflow-wrap: anywhere;
  font-size: clamp(1.75rem, 2vw, 2.4rem);
}

.catalogue-hero p:not(.eyebrow) {
  max-width: 72ch;
  margin-bottom: 0;
  color: #dce5f6;
  font-size: 0.9rem;
  line-height: 1.4;
}

.catalogue-search--dark input {
  border-color: rgba(255, 255, 255, 0.4);
}

.catalogue-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 9px;
}

.catalogue-hero__facts span {
  display: flex;
  min-height: 54px;
  flex-direction: column;
  justify-content: center;
  padding: 0.65rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: #bdcbea;
  font-size: 0.7rem;
  line-height: 1.3;
  text-align: center;
}

.catalogue-hero__facts span:first-child {
  border-left: 0;
}

.catalogue-hero__facts strong {
  color: #fff;
  font-size: 0.92rem;
}

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

.shop-status-bar--v3 {
  margin-top: -0.75rem;
}

.basket-inline-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.65rem;
  border-radius: 7px;
  color: #fff;
  background: var(--pms-blue);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.department-card {
  min-height: 245px;
}

.department-card__footer i {
  color: var(--pms-red);
  font-style: normal;
  font-weight: 900;
}

.section-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0.75rem;
}

.section-mini-card {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.section-mini-card .profile-icon {
  width: 3rem;
  height: 3rem;
  color: var(--pms-blue);
}

.section-mini-card small,
.section-mini-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.section-mini-card h3 {
  margin: 0.15rem 0;
  font-size: 0.98rem;
}

.section-mini-card__price {
  text-align: right;
}

.section-mini-card__price strong {
  display: block;
  color: var(--pms-blue);
}

.section-mini-card > a {
  grid-column: 2 / -1;
  color: var(--pms-blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.shop-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 3rem;
  align-items: center;
}

.shop-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-process li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.9rem;
  border-top: 4px solid var(--pms-blue);
  background: var(--surface-muted);
}

.shop-process li > span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pms-red);
  font-size: 0.78rem;
  font-weight: 900;
}

.shop-process li div {
  display: flex;
  flex-direction: column;
}

.shop-process li small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

/* Steel catalogue */

.catalogue-shell {
  padding-block: 1rem 2.75rem;
}

.catalogue-topbar {
  display: grid;
  grid-template-columns: minmax(320px, 900px) auto;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.filter-drawer-button {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 45px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--pms-blue);
  border-radius: 7px;
  color: var(--pms-blue);
  background: #fff;
  font-weight: 800;
}

.filter-drawer-button .icon {
  width: 1.3rem;
  height: 1.3rem;
}

.quick-filter-row {
  display: flex;
  gap: 0.45rem;
  margin-block: 0.85rem 1.1rem;
  padding-bottom: 0.2rem;
  overflow-x: auto;
}

.quick-filter-row button {
  display: flex;
  flex: 0 0 auto;
  min-height: 44px;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid #aeb6c4;
  border-radius: 8px;
  color: var(--pms-blue);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.quick-filter-row button:hover,
.quick-filter-row button.is-active {
  color: #fff;
  border-color: var(--pms-blue);
  background: var(--pms-blue);
}

.quick-filter-row .profile-icon {
  width: 1.65rem;
  height: 1.65rem;
  stroke-width: 5.5;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.catalogue-filters {
  position: sticky;
  top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.catalogue-filters__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.catalogue-filters__heading button,
.catalogue-empty button {
  padding: 0;
  border: 0;
  color: var(--pms-blue);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
}

.catalogue-filters fieldset {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.75rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.catalogue-filters legend {
  padding: 0 0.35rem 0 0;
  font-size: 0.84rem;
}

.catalogue-filters label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.catalogue-filters input {
  width: 1rem;
  min-height: 1rem;
  margin: 0;
  padding: 0;
}

.filter-note {
  padding: 0.75rem;
  border-left: 4px solid var(--pms-red);
  background: var(--surface-muted);
  font-size: 0.74rem;
}

.filter-note p {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
}

.catalogue-results {
  min-width: 0;
}

.catalogue-toolbar {
  display: flex;
  min-height: 47px;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.catalogue-toolbar p {
  margin: 0 auto 0 0;
  font-size: 0.84rem;
}

.catalogue-toolbar label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 750;
}

.catalogue-toolbar select {
  width: auto;
  min-height: 34px;
  padding: 0.25rem 1.8rem 0.25rem 0.5rem;
  font-size: 0.8rem;
}

.view-switch {
  display: flex;
  gap: 0.25rem;
}

.view-switch button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #aeb6c4;
  border-radius: 6px;
  color: var(--pms-blue);
  background: #fff;
}

.view-switch button.is-active {
  color: #fff;
  border-color: var(--pms-blue);
  background: var(--pms-blue);
}

.view-switch .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 0.75rem;
}

.section-product-card {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(11, 30, 66, 0.07);
}

.section-product-card__profile {
  display: grid;
  min-height: 76px;
  place-items: center;
  color: var(--pms-blue);
  background: linear-gradient(135deg, #edf2fb, #f8fafd);
  border-bottom: 1px solid var(--line);
}

.section-product-card__profile .profile-icon {
  width: 3.8rem;
  height: 3.8rem;
}

.section-product-card__main {
  padding: 0.75rem 0.8rem 0.5rem;
}

.section-product-card__main > small {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.section-product-card h2 {
  margin: 0.2rem 0 0.55rem;
  font-size: 1rem;
}

.section-product-card h2 a {
  color: var(--pms-blue-dark);
  text-decoration: none;
}

.section-product-card h2 a:hover {
  text-decoration: underline;
}

.product-facts {
  display: grid;
  gap: 0.18rem;
  margin: 0;
  font-size: 0.7rem;
}

.product-facts div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.2rem;
  border-top: 1px solid #edf0f5;
}

.product-facts dt {
  color: var(--ink-soft);
}

.product-facts dd {
  margin: 0;
  text-align: right;
}

.section-product-card__buy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem 0.8rem;
  border-top: 1px solid var(--line);
  background: #fafbfd;
}

.section-product-card__buy label {
  display: grid;
  gap: 0.18rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 750;
}

.section-product-card__buy select,
.section-product-card__buy input {
  min-height: 35px;
  padding: 0.3rem 0.45rem;
  font-size: 0.78rem;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.section-product-card__buy .product-price {
  grid-column: 1 / -1;
}

.product-price strong {
  color: var(--pms-blue);
  font-size: 1.06rem;
}

.product-price small {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.section-product-card__buy .button {
  grid-column: 1 / -1;
}

.configure-link {
  grid-column: 1 / -1;
  color: var(--pms-blue);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.product-grid.is-list-view {
  grid-template-columns: 1fr;
}

.product-grid.is-list-view .section-product-card {
  grid-template-columns: 90px minmax(0, 1fr) 360px;
  grid-template-rows: auto;
  align-items: stretch;
}

.product-grid.is-list-view .section-product-card__profile {
  min-height: 100%;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.product-grid.is-list-view .section-product-card__buy {
  border-top: 0;
  border-left: 1px solid var(--line);
}

.catalogue-empty,
.basket-empty {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  padding: 2rem;
  border: 2px dashed #aeb6c4;
  border-radius: 12px;
  color: var(--ink-soft);
  background: #fff;
  text-align: center;
}

.catalogue-empty .icon,
.basket-empty .icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.8rem;
  color: var(--pms-blue);
}

.catalogue-empty h2,
.basket-empty h2 {
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.catalogue-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.catalogue-pagination button {
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--pms-blue);
  border-radius: 7px;
  color: var(--pms-blue);
  background: #fff;
  font-weight: 800;
}

.catalogue-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.catalogue-pagination span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

/* Product configurator */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-block: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.breadcrumb a {
  color: var(--pms-blue);
  font-weight: 750;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-block: 1.2rem 3.5rem;
}

.product-detail__summary {
  position: sticky;
  top: 1rem;
}

.product-profile-large {
  display: grid;
  min-height: 210px;
  margin-bottom: 1.3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--pms-blue);
  background: linear-gradient(140deg, #e8eef9, #fff);
}

.product-profile-large .profile-icon {
  width: 9rem;
  height: 9rem;
}

.product-detail h1 {
  max-width: none;
  margin-bottom: 0.45rem;
  font-size: clamp(1.85rem, 2.6vw, 3rem);
}

.product-subtitle {
  color: var(--ink-soft);
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 1.1rem 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--line);
}

.product-spec-grid div {
  display: flex;
  flex-direction: column;
  padding: 0.7rem;
  background: #fff;
}

.product-spec-grid dt {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.product-spec-grid dd {
  margin: 0;
  font-weight: 800;
}

.prototype-caveat {
  padding: 0.8rem 0.9rem;
  border-left: 4px solid var(--pms-red);
  background: #fff8df;
  font-size: 0.78rem;
}

.prototype-caveat p {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.product-configurator,
.fastener-selector,
.range-panel,
.plate-configurator,
.profile-route-card,
.basket-lines-panel,
.basket-summary,
.checkout-order,
.checkout-form {
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-configurator__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-configurator__heading h2 {
  margin-bottom: 0.3rem;
}

.product-configurator__heading p:not(.eyebrow) {
  color: var(--ink-soft);
}

.purchase-route,
.fulfilment-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0;
  border: 0;
}

.purchase-route legend,
.fulfilment-choice legend {
  width: 100%;
  margin-bottom: 0.45rem;
  padding: 0;
}

.purchase-route label,
.fulfilment-choice label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  margin: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
}

.purchase-route label:has(input:checked),
.fulfilment-choice label:has(input:checked) {
  border-color: var(--pms-blue);
  background: var(--pms-blue-soft);
  box-shadow: inset 0 0 0 1px var(--pms-blue);
}

.purchase-route input,
.fulfilment-choice input {
  width: 1rem;
  min-height: 1rem;
  margin: 0.2rem 0 0;
}

.purchase-route span,
.fulfilment-choice span {
  display: flex;
  flex-direction: column;
}

.purchase-route small,
.fulfilment-choice small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 500;
}

.field-help {
  margin-top: -0.4rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.cut-option {
  padding: 0.75rem;
  background: var(--surface-muted);
}

.config-result {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 9px;
  color: #fff;
  background: var(--pms-blue);
}

.config-result > div {
  display: flex;
  flex-direction: column;
}

.config-result > div > span {
  color: #cbd8f2;
  font-size: 0.75rem;
}

.config-result > div > strong {
  margin-top: 0.25rem;
  font-size: 1.35rem;
}

.config-result > div > small {
  color: #cbd8f2;
}

.config-result dl {
  display: grid;
  gap: 0.2rem;
  margin: 0;
}

.config-result dl div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.75rem;
}

.config-result dt {
  color: #cbd8f2;
}

.config-result dd {
  margin: 0;
  text-align: right;
}

.config-result > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #dce5f6;
  font-size: 0.72rem;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.related-products a {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: inherit;
  background: #fff;
  text-decoration: none;
}

.related-products .profile-icon {
  width: 2.8rem;
  height: 2.8rem;
  color: var(--pms-blue);
}

.related-products span {
  display: flex;
  flex-direction: column;
}

.related-products small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

/* Fasteners and plate */

.fastener-shop,
.plate-shop {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 1rem;
  align-items: start;
}

.fastener-selector__heading {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.fastener-large-icon,
.plate-large-icon {
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--pms-blue);
}

.fastener-large-icon .icon,
.plate-large-icon .icon {
  width: 3rem;
  height: 3rem;
}

.fastener-selector__heading h2 {
  margin-bottom: 0.25rem;
}

.fastener-selector__heading p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
}

.selector-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.selector-steps label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 750;
}

.selector-steps label > span {
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  margin-right: 0.2rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pms-blue);
  font-size: 0.68rem;
}

.fastener-line-review {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.7fr 0.8fr;
  gap: 1px;
  overflow: hidden;
  margin: 1rem 0;
  border: 1px solid #c9d3e6;
  border-radius: 9px;
  background: #c9d3e6;
}

.fastener-line-review > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0.75rem;
  background: var(--pms-blue-soft);
}

.fastener-line-review span,
.fastener-line-review small {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.fastener-line-review strong {
  overflow-wrap: anywhere;
  color: var(--pms-blue-dark);
  font-size: 0.88rem;
}

.fastener-line-review__price strong {
  font-size: 1.05rem;
}

.range-panel table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
  font-size: 0.76rem;
}

.range-panel th,
.range-panel td {
  padding: 0.55rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.range-panel thead th {
  color: #fff;
  background: var(--pms-blue);
}

.plate-configurator .form-grid {
  margin-top: 0.8rem;
}

.plate-result {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 1px;
  overflow: hidden;
  margin: 0.8rem 0 1rem;
  border: 1px solid #c9d3e6;
  border-radius: 9px;
  background: #c9d3e6;
}

.plate-result > div {
  display: flex;
  flex-direction: column;
  padding: 0.8rem;
  background: var(--pms-blue-soft);
}

.plate-result span,
.plate-result small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.plate-result strong {
  color: var(--pms-blue);
}

.profile-route-card {
  padding: 0;
  overflow: hidden;
}

.profile-route-card__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.profile-route-card > div:last-child {
  padding: 1.3rem;
}

.profile-route-card .button {
  margin-top: 1rem;
}

/* Art, specials and offcuts */

.finite-shop__notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.8rem 1rem;
  border-left: 5px solid var(--pms-red);
  background: #fff8df;
  font-size: 0.8rem;
}

.finite-shop__notice span {
  color: var(--ink-soft);
}

.art-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 0.9rem;
}

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

.visual-product-card__media {
  position: relative;
  background: #e9edf3;
}

.visual-product-card__media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.visual-product-card__media > span {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  padding: 0.25rem 0.45rem;
  border-radius: 5px;
  color: #fff;
  background: rgba(2, 27, 77, 0.9);
  font-size: 0.65rem;
  font-weight: 800;
}

.visual-product-card__body {
  padding: 1rem;
}

.visual-product-card__body > small {
  color: var(--pms-red);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.visual-product-card h3 {
  margin: 0.3rem 0 0.45rem;
  font-size: 1.08rem;
}

.visual-product-card p {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.product-availability {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0;
  border-block: 1px solid var(--line);
  font-size: 0.7rem;
}

.product-availability span {
  color: var(--ink-soft);
}

.visual-product-card__buy {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) 58px minmax(120px, auto);
  gap: 0.5rem;
  align-items: end;
}

.visual-product-card__buy label {
  display: grid;
  gap: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 750;
}

.visual-product-card__buy input {
  min-height: 38px;
  padding: 0.35rem;
}

.stock-quantity > span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.stock-quantity > span small {
  color: var(--pms-blue);
  font-size: 0.62rem;
  font-weight: 850;
}

.fixed-quantity {
  display: flex;
  min-height: 38px;
  flex-direction: column;
  justify-content: center;
  padding: 0.25rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-muted);
  line-height: 1.2;
}

.fixed-quantity span {
  color: var(--ink-soft);
  font-size: 0.6rem;
}

.fixed-quantity strong {
  color: var(--pms-blue);
  font-size: 0.75rem;
}

.finite-shop__special-heading {
  margin-top: 2.5rem;
}

.special-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.visual-product-card--horizontal {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.visual-product-card--horizontal .visual-product-card__media img {
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  padding: 0.8rem;
  background: #fff;
}

.product-warning {
  padding: 0.55rem;
  border-left: 4px solid var(--pms-red);
  color: #7a271f !important;
  background: #fff1f0;
  font-weight: 700;
}

.offcut-toolbar {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 230px 210px;
  gap: 0.7rem;
  align-items: end;
}

.offcut-toolbar > label {
  display: grid;
  gap: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.grade-guide {
  margin-block: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.grade-guide summary {
  padding: 0.7rem 0.9rem;
  color: var(--pms-blue);
  font-weight: 800;
  cursor: pointer;
}

.grade-guide > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0 0.9rem;
  background: var(--line);
}

.grade-guide > div span {
  display: flex;
  flex-direction: column;
  padding: 0.6rem;
  background: var(--surface-muted);
  font-size: 0.72rem;
}

.grade-guide > div strong {
  color: var(--pms-blue);
  font-size: 1rem;
}

.grade-guide p {
  margin: 0;
  padding: 0.7rem 0.9rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.offcut-result-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.offcut-result-row p {
  margin: 0;
}

.offcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.75rem;
}

.offcut-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(11, 30, 66, 0.07);
}

.offcut-card__photo-pending {
  display: grid;
  min-height: 145px;
  place-items: center;
  align-content: center;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--pms-blue);
  background:
    linear-gradient(135deg, transparent 48%, rgba(3, 37, 106, 0.06) 48% 52%, transparent 52%),
    #edf2f8;
  text-align: center;
}

.offcut-card__photo-pending .icon {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.35rem;
}

.offcut-card__photo-pending span {
  max-width: 22ch;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.offcut-card__body {
  padding: 0.8rem;
}

.offcut-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.offcut-card__top strong {
  color: var(--pms-blue);
}

.offcut-card h2 {
  margin: 0.35rem 0 0.15rem;
  font-size: 1rem;
}

.offcut-card__body > p {
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.offcut-grade {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-block: 0.5rem;
  font-size: 0.74rem;
}

.grade-badge {
  display: grid;
  min-width: 2rem;
  height: 2rem;
  padding-inline: 0.25rem;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--pms-blue);
  font-weight: 900;
}

.grade-badge--C,
.grade-badge--D {
  background: #8f4d00;
}

.offcut-card__body > small {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.offcut-card__description {
  min-height: 3.2em;
  margin-top: 0.45rem;
}

.offcut-card .visual-product-card__buy {
  grid-template-columns: minmax(85px, 1fr) 54px;
  margin-top: 0.7rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.offcut-card .visual-product-card__buy .button {
  grid-column: 1 / -1;
}

/* Basket and checkout */

.basket-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 1rem;
  align-items: start;
}

.basket-panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.basket-panel-heading h2 {
  margin-bottom: 0;
}

.basket-panel-heading button,
.basket-panel-heading a {
  padding: 0.35rem 0.55rem;
  border: 1px solid #aeb6c4;
  border-radius: 6px;
  color: var(--pms-blue);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.basket-lines,
.checkout-lines {
  display: grid;
  gap: 0.55rem;
}

.basket-line {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 115px 110px 125px auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafbfd;
}

.basket-line__main {
  min-width: 0;
}

.basket-line__main > small {
  color: var(--pms-red);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.basket-line__main > a {
  display: block;
  overflow-wrap: anywhere;
  color: var(--pms-blue);
  font-weight: 800;
}

.basket-line__main p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.basket-line__unit,
.basket-line__total {
  display: flex;
  flex-direction: column;
}

.basket-line__unit span,
.basket-line__unit small,
.basket-line__total span,
.basket-line__total small {
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.basket-line__unit strong,
.basket-line__total strong {
  color: var(--pms-blue);
  font-size: 0.82rem;
}

.basket-line__quantity {
  display: grid;
  gap: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 750;
}

.basket-line__quantity input {
  min-height: 36px;
  padding: 0.3rem;
}

.basket-line__quantity--fixed {
  min-height: 36px;
  align-content: center;
  padding: 0.3rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.basket-line__quantity--fixed strong {
  color: var(--pms-blue);
  font-size: 0.78rem;
}

body[data-page="shop"] main .section,
body[data-page="home"] main .section {
  padding-block: clamp(1.25rem, 2.5vw, 2.75rem);
}

.shop-search-page__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 0.8rem;
}

.shop-search-page__heading h2,
.shop-search-page__heading p {
  margin: 0;
}

.shop-search-page__heading h2 {
  overflow-wrap: anywhere;
}

.shop-search-page__heading p {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.shop-search-results-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
  gap: 0.65rem;
}

.shop-search-result-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 0.8rem 2.7rem 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: inherit;
  background: #fff;
  text-decoration: none;
}

.shop-search-result-card:hover {
  border-color: var(--pms-blue);
  box-shadow: var(--shadow);
}

.shop-search-result-card > span {
  color: var(--pms-red);
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-search-result-card > strong {
  margin-block: 0.12rem;
  color: var(--pms-blue-dark);
}

.shop-search-result-card > small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.shop-search-result-card > b {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--pms-red);
}

.shop-search-start {
  padding: 1.2rem;
  border-left: 5px solid var(--pms-blue);
  background: #fff;
}

.shop-search-start h2 {
  margin-bottom: 0.35rem;
}

.basket-line__remove {
  padding: 0.35rem 0.45rem;
  border: 0;
  border-radius: 5px;
  color: #9b1c17;
  background: #fde8e7;
  font-size: 0.72rem;
  font-weight: 800;
}

.basket-summary {
  position: sticky;
  top: 1rem;
}

.basket-summary dl,
.checkout-totals {
  margin: 0 0 1rem;
}

.basket-summary dl div,
.checkout-totals div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.basket-summary dd,
.checkout-totals dd {
  margin: 0;
  font-weight: 800;
}

.basket-summary__total {
  color: var(--pms-blue);
  font-size: 1.1rem;
}

.basket-summary .fulfilment-choice {
  grid-template-columns: 1fr;
}

.fulfilment-choice .icon {
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 0.2rem;
  color: var(--pms-blue);
}

.basket-fulfilment-note {
  margin-bottom: 0.9rem;
  padding: 0.7rem;
  border-left: 4px solid var(--pms-red);
  color: var(--ink-soft);
  background: var(--surface-muted);
  font-size: 0.75rem;
}

.basket-checkout-link {
  width: 100%;
}

.prototype-payment-note {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-align: center;
}

.checkout-lines article {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fafbfd;
}

.checkout-lines article div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.checkout-lines small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.checkout-lines b {
  flex: 0 0 auto;
  color: var(--pms-blue);
}

.checkout-totals {
  margin-top: 0.8rem;
}

.checkout-totals div:last-child {
  color: var(--pms-blue);
  font-size: 1.1rem;
}

.payment-preview {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0.8rem;
  border: 1px dashed #8b98ad;
  border-radius: 8px;
  background: var(--surface-muted);
}

.payment-preview > span {
  color: var(--pms-blue);
}

.payment-preview p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.fulfilment-choice--checkout {
  margin-top: 0.7rem;
}

.checkout-confirm {
  margin-block: 1rem !important;
}

.checkout-response {
  margin-top: 1rem;
  padding: 0.8rem;
  border-left: 4px solid var(--success);
  color: #0b5730;
  background: #e7f7ed;
}

.checkout-response p {
  margin: 0.2rem 0 0;
}

@media (max-width: 1240px) {
  .primary-nav a {
    padding-inline: 0.65rem;
  }

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

  .basket-summary {
    position: static;
  }

  .basket-line {
    grid-template-columns: minmax(220px, 1fr) 115px 110px 125px auto;
  }
}

@media (max-width: 980px) {
  .shop-launchpad__heading,
  .catalogue-hero__inner,
  .home-workshop__grid,
  .product-detail,
  .fastener-shop,
  .plate-shop,
  .basket-layout,
  .checkout-layout,
  .shop-process {
    grid-template-columns: 1fr;
  }

  .catalogue-hero__inner {
    gap: 1rem;
  }

  .home-workshop__grid {
    min-height: 0;
  }

  .product-detail__summary,
  .basket-summary {
    position: static;
  }

  .section-mini-grid {
    grid-template-columns: 1fr;
  }

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

  .filter-drawer-button {
    display: flex;
  }

  .catalogue-filters {
    position: static;
    display: none;
  }

  .catalogue-filters.is-open {
    display: block;
  }

  .product-grid.is-list-view .section-product-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .product-grid.is-list-view .section-product-card__buy {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .selector-steps,
  .fastener-line-review {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .offcut-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .offcut-toolbar .catalogue-search {
    grid-column: 1 / -1;
  }

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

  .basket-line {
    grid-template-columns: minmax(0, 1fr) 100px 70px;
  }

  .basket-line__total {
    grid-column: 2;
  }

  .basket-line__remove {
    grid-column: 3;
  }
}

@media (max-width: 860px) {
  .masthead--v3 {
    min-height: 0;
  }

  .primary-nav__inner--v3 {
    align-items: stretch;
  }

  .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .nav-group > a {
    padding-right: 1rem;
  }

  .nav-group__toggle {
    min-height: 50px;
    border-top: 1px solid var(--line);
  }

  .nav-menu,
  .nav-menu--services {
    position: static;
    display: none;
    width: auto;
    grid-column: 1 / -1;
    padding: 0.7rem 1rem;
    transform: none;
    border: 0;
    border-top: 3px solid var(--pms-red);
    border-radius: 0;
    opacity: 1;
    box-shadow: none;
    pointer-events: auto;
  }

  .nav-group:hover .nav-menu {
    display: none;
  }

  .nav-group.is-open .nav-menu,
  .nav-group:focus-within.is-open .nav-menu {
    display: block;
  }

  .nav-menu__heading {
    display: none;
  }

  .nav-menu__grid,
  .nav-menu__grid--services {
    grid-template-columns: 1fr;
  }

  .primary-nav .nav-menu__link {
    border-top: 0;
  }

  .primary-nav .basket-link {
    width: 100%;
    margin-left: 0;
  }

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

  .filter-drawer-button {
    display: flex;
  }

  .catalogue-filters {
    position: static;
    display: none;
  }

  .catalogue-filters.is-open {
    display: block;
  }

  .product-grid.is-list-view .section-product-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .product-grid.is-list-view .section-product-card__buy {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

@media (max-width: 700px) {
  .home-department-grid,
  .shop-department-grid,
  .product-grid,
  .section-mini-grid,
  .art-product-grid,
  .offcut-grid,
  .related-products,
  .compact-service-grid {
    grid-template-columns: 1fr;
  }

  .shop-dept-card,
  .department-card {
    min-height: 0;
  }

  .home-order-strip,
  .purchase-route,
  .fulfilment-choice,
  .product-spec-grid,
  .config-result,
  .plate-result,
  .grade-guide > div {
    grid-template-columns: 1fr;
  }

  .enquiry-choice-grid--holes {
    grid-template-columns: 1fr;
  }

  .home-order-strip > a {
    min-height: 50px;
  }

  .catalogue-topbar,
  .offcut-toolbar {
    grid-template-columns: 1fr;
  }

  .offcut-toolbar .catalogue-search {
    grid-column: auto;
  }

  .catalogue-toolbar {
    flex-wrap: wrap;
  }

  .catalogue-toolbar p {
    width: 100%;
  }

  .product-grid.is-list-view .section-product-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .config-result > p {
    grid-column: auto;
  }

  .selector-steps,
  .fastener-line-review {
    grid-template-columns: 1fr;
  }

  .visual-product-card--horizontal {
    grid-template-columns: 1fr;
  }

  .visual-product-card--horizontal .visual-product-card__media img {
    min-height: 220px;
  }

  .visual-product-card__buy {
    grid-template-columns: minmax(0, 1fr) 62px;
  }

  .visual-product-card__buy .button {
    grid-column: 1 / -1;
  }

  .finite-shop__notice,
  .offcut-result-row,
  .shop-search-page__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .basket-line {
    grid-template-columns: minmax(0, 1fr) 76px;
  }

  .basket-line__main {
    grid-column: 1 / -1;
  }

  .basket-line__unit,
  .basket-line__total {
    grid-column: 1;
  }

  .basket-line__quantity,
  .basket-line__remove {
    grid-column: 2;
  }

  .shop-process ol {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .shop-launchpad,
  .catalogue-shell {
    padding-top: 1rem;
  }

  .shop-launchpad__heading {
    gap: 1rem;
  }

  .catalogue-search {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  .shop-search-results-list {
    grid-template-columns: 1fr;
  }

  .home-workshop__grid {
    padding-block: 1rem 1.5rem;
  }

  .home-workshop img {
    height: 220px;
  }

  .catalogue-hero__inner {
    gap: 1rem;
  }

  .section-product-card__buy {
    grid-template-columns: minmax(0, 1fr) 58px;
  }

  .product-detail,
  .fastener-shop,
  .plate-shop,
  .basket-page,
  .checkout-page {
    padding-top: 1rem;
  }
}

/* V3.4: always-visible shopping controls, below the full company logo. */
html { scroll-padding-top: 4.5rem; }
.shop-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  color: var(--pms-blue);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 12px rgba(2, 27, 77, .12);
}
.shop-bar__inner { position: relative; display: flex; align-items: stretch; min-height: 3.5rem; gap: .35rem; }
.shop-bar__home { display: flex; flex-shrink: 0; align-items: center; justify-content: center; width: 3rem; }
.shop-bar__home img { display: block; width: 2.25rem; height: 2.25rem; object-fit: contain; }
.shop-bar .primary-nav { flex: 1; min-width: 0; border: 0; box-shadow: none; }
.shop-bar .primary-nav__inner { width: 100%; min-height: 3.5rem; }
.shop-bar .menu-button { position: static; border-radius: 0; box-shadow: none; padding: .5rem .9rem; color: var(--pms-blue); }
.shop-bar__basket {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  flex-shrink: 0; margin-left: auto; padding: .5rem .9rem;
  color: #fff; background: var(--pms-blue); font-weight: 800; text-decoration: none; white-space: nowrap;
}
.shop-bar__basket:hover, .shop-bar__basket[aria-expanded="true"] { background: var(--pms-blue-dark); }
.shop-bar__basket strong { display: inline; min-width: 0; height: auto; padding: 0; color: inherit; background: none; font-size: inherit; }
.basket-preview {
  position: absolute; top: 100%; right: 0;
  width: min(28rem, 100%); max-height: var(--shop-panel-height, calc(100dvh - 4.5rem));
  display: flex; flex-direction: column; overflow: auto; overscroll-behavior: contain;
  padding: 1rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-top: 3px solid var(--pms-red);
  border-radius: 0 0 12px 12px; box-shadow: 0 16px 40px rgba(2, 27, 77, .22);
}
.basket-preview[hidden], .basket-preview [hidden] { display: none; }
.basket-preview__heading { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.basket-preview__heading h2 { margin: 0; font-size: 1.2rem; }
.basket-preview__heading button { min-height: 44px; padding: .4rem .6rem; border: 1px solid var(--line); border-radius: 6px; color: var(--pms-blue); background: #fff; font-weight: 750; }
.basket-preview__items { overflow: auto; min-height: 0; max-height: 40dvh; margin-block: .5rem; }
.basket-preview__item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .35rem .75rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.basket-preview__item a { font-weight: 800; text-decoration: none; overflow-wrap: anywhere; }
.basket-preview__item small { grid-column: 1; font-size: .875rem; color: var(--muted); overflow-wrap: anywhere; }
.basket-preview__item > strong { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.basket-preview__summary > p { display: flex; justify-content: space-between; gap: .75rem; margin: .4rem 0; font-weight: 800; }
.basket-preview__summary > small { font-size: .875rem; color: var(--muted); }
.basket-preview__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1rem; }
.basket-preview__actions > :first-child { grid-column: 1 / -1; }
.basket-preview__actions .button { min-width: 0; padding-inline: .6rem; font-size: .9rem; text-align: center; }
.basket-preview__continue { display: block; min-height: 44px; padding-top: .75rem; text-align: center; font-weight: 750; }
.basket-toast { max-width: min(32rem, calc(100% - 2rem)); }
.basket-toast button { display: block; margin-top: .65rem; min-height: 44px; padding: .45rem .85rem; color: var(--pms-blue); background: #fff; border: 0; border-radius: 5px; font-weight: 800; }
@media (max-width: 1100px) {
  .shop-bar .menu-button { display: flex; align-items: center; border-left: 1px solid var(--line); }
  .shop-bar .primary-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; max-height: var(--shop-panel-height, calc(100dvh - 4rem)); overflow-y: auto; border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(2, 27, 77, .15); }
  .shop-bar .primary-nav.is-open { display: block; }
  .shop-bar .primary-nav__inner { flex-direction: column; align-items: stretch; gap: 0; }
  .shop-bar .primary-nav a { min-height: 48px; border-top: 1px solid var(--line); }
  .shop-bar .nav-group { display: grid; grid-template-columns: minmax(0, 1fr) 52px; }
  .shop-bar .nav-group__toggle { min-height: 48px; }
  .shop-bar .nav-menu { position: static; display: none; width: auto; grid-column: 1 / -1; transform: none; border: 0; border-top: 3px solid var(--pms-red); border-radius: 0; opacity: 1; box-shadow: none; pointer-events: auto; }
  .shop-bar .nav-group.is-open .nav-menu { display: block; }
  .shop-bar .nav-menu__grid { grid-template-columns: 1fr; }
  .shop-bar .nav-menu__heading { display: none; }
  .shop-bar .nav-menu a { border-top: 0; }
  .shop-bar__inner { width: calc(100% - 1rem); }
  .shop-bar__basket { font-size: .95rem; }
}
@media (max-width: 860px) {
  .masthead.masthead--v3 { padding-block: .75rem; }
  .basket-preview { right: 0; width: 100%; }
  .basket-toast { right: 1rem; bottom: max(1rem, env(safe-area-inset-bottom)); }
}
@media print { .shop-bar, .basket-toast { display: none; } }

/* V3.4: six departments, anchored navigation and a fastener order list. */
@media (min-width: 1101px) {
  .home-department-grid, .shop-department-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shop-bar .nav-group { position: relative; }
  .shop-bar .nav-menu { left: 0; top: 100%; max-height: var(--shop-panel-height, 75vh); overflow-y: auto; }
}
.nav-group.is-open > a, .nav-group.is-open > .nav-group__toggle { color: #fff; background: var(--pms-blue); }
.nav-group.is-open > .nav-group__toggle { text-decoration: underline; text-underline-offset: 5px; }
.basket-edit-banner { padding: 1rem; border: 1px solid var(--pms-blue); background: var(--pms-blue-soft); }
.basket-edit-banner p { margin: 0 0 .5rem; font-weight: 700; }
.basket-line__actions { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.basket-line__edit, .basket-line__remove { padding: .6rem; min-height: 44px; border: 1px solid var(--line); border-radius: 5px; color: var(--pms-blue); background: #fff; font: inherit; text-decoration: underline; cursor: pointer; }
.delivery-quote-note { padding: 1rem; border-left: 4px solid var(--pms-blue); background: var(--pms-blue-soft); font-size: .95rem; }
.delivery-quote-note h3 { margin-top: 0; }
.basket-preview__actions a { white-space: normal; text-align: center; }
.fastener-shop--list { display: grid; grid-template-columns: minmax(0, 1fr); }
.fastener-shop--list .fastener-selector { min-width: 0; }
.fastener-order-row { padding: 1rem 0; border-top: 1px solid var(--line); }
.fastener-order-row__heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.fastener-order-row__heading h3 { margin: 0; font-size: 1rem; }
.fastener-order-row__heading button { min-height: 40px; padding: .4rem .7rem; color: var(--pms-blue); background: white; border: 1px solid var(--line); border-radius: 5px; }
.fastener-order-row__fields { display: grid; grid-template-columns: minmax(170px, 1.4fr) repeat(3, minmax(100px, 1fr)) minmax(190px, 1.3fr); gap: .65rem; align-items: start; }
.fastener-order-row__fields label { display: grid; gap: .35rem; min-width: 0; font-size: .9rem; font-weight: 700; }
.fastener-order-row__fields input, .fastener-order-row__fields select { width: 100%; min-width: 0; min-height: 44px; border: 1px solid #aab7cf; border-radius: 6px; padding: .65rem; background: #fff; color: var(--ink); font: inherit; }
.fastener-order-row__total { display: grid; gap: .3rem; grid-column: 5; }
.fastener-order-row__total strong { font-size: 1.2rem; }
.fastener-order-row__total span, .fastener-order-row__total small { font-size: .8rem; }
.fastener-order-row__total .button { padding: .65rem; min-height: 44px; white-space: normal; }
.fastener-order-row__details { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: .65rem; color: var(--muted); font-size: .85rem; }
.fastener-row-status { margin: .5rem 0 0; color: var(--pms-blue); font-size: .9rem; }
.fastener-list-footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; border-top: 3px solid var(--pms-blue); }
.fastener-list-footer > div { display: grid; gap: .4rem; }
.fastener-list-footer strong { font-size: 1.5rem; }
.fastener-list-footer span, .fastener-list-footer small { font-size: .9rem; }
.fastener-list-status { color: var(--pms-blue); font-weight: 700; }
.fastener-shop--list .range-panel { overflow-x: auto; }
.fastener-shop--list button:disabled { cursor: default; opacity: .65; }
@media (max-width: 1100px) {
  .fastener-order-row__fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fastener-order-row__total { grid-column: 1 / -1; padding: .8rem; border-radius: 6px; background: var(--pms-blue-soft); }
  .fastener-order-row__total .button { justify-self: stretch; }
}
@media (max-width: 600px) {
  .fastener-shop--list .fastener-selector { padding: 1rem; }
  .fastener-list-footer { align-items: stretch; }
  .fastener-list-footer > *, .fastener-list-footer .button { width: 100%; }
  .fastener-order-row__fields { gap: .65rem; }
  .fastener-order-row__fields label:first-child { grid-column: 1 / -1; }
  .fastener-order-row__details { display: grid; gap: .25rem; }
}
.nav-group.is-open > .nav-group__toggle [aria-hidden="true"] { display: inline-block; transform: rotate(180deg); }
.fastener-quick-quantities { display: flex; flex-wrap: wrap; gap: .2rem; }
.fastener-quick-quantities button { padding: .3rem; min-width: 32px; min-height: 32px; background: white; color: var(--pms-blue); border: 1px solid var(--line); border-radius: 4px; }
.fastener-order-row.is-stock-short { border-left: 4px solid var(--pms-red); padding-left: .6rem; }
.fastener-order-row [aria-invalid="true"] { border-color: var(--pms-red); outline: 1px solid var(--pms-red); }
@media (max-width: 600px) { .basket-line__actions { grid-column: 1 / -1; justify-content: flex-end; } }
.nav-menu { visibility: hidden; }
.nav-group.is-open .nav-menu { visibility: visible; }
#farm-equipment-repairs, #bucket-refurbishment { scroll-margin-top: 90px; }

/* V3.5: compact list, consistent mobile controls and in-page basket review. */
.nav-group__mobile-toggle { display:none; }
.primary-nav a[data-section-current]::after { content:""; position:absolute; bottom:0; left:1rem; right:1rem; height:4px; border-radius:4px 4px 0 0; background:var(--pms-red); }
.shop-bar .menu-button { gap:.55rem; }
.shop-bar .menu-button img { width:32px; height:32px; object-fit:contain; }
@media(max-width:1100px) {
  .shop-bar__home, .shop-bar .nav-group > .nav-group__desktop-link, .shop-bar .nav-group > .nav-group__toggle { display:none; }
  .shop-bar .menu-button { border-left:0; padding:.4rem .7rem; min-height:48px; }
  .shop-bar .nav-group > .nav-group__mobile-toggle { display:flex; align-items:center; justify-content:space-between; gap:1rem; width:100%; min-height:48px; padding:.7rem 1rem; border:0; border-bottom:1px solid var(--line); background:white; color:var(--pms-blue); font:inherit; font-weight:750; text-align:left; }
  .shop-bar .nav-group.is-open > .nav-group__mobile-toggle { background:var(--pms-blue); color:white; }
  .nav-group__mobile-toggle[aria-expanded="true"] > [aria-hidden] { transform:rotate(180deg); }
}
.basket-preview__item { position:relative; padding-right:100px; min-height:60px; }
.basket-preview__line-actions { position:absolute; top:.4rem; right:0; display:flex; gap:4px; }
.basket-preview__line-actions > * { display:flex; align-items:center; justify-content:center; width:44px; height:44px; border:1px solid var(--line); border-radius:6px; background:white; color:var(--pms-blue); text-decoration:none; font-size:1.5rem; }
.basket-preview__line-actions > *:hover { background:var(--pms-blue-soft); }
.basket-preview__item .stock-error { grid-column:1/-1; margin:0; }
.stock-error { color:#a61420; font-size:.9rem; font-weight:650; }
.basket-review-dialog { box-sizing:border-box; width:min(680px,calc(100% - 24px)); max-height:calc(100dvh - 24px); padding:1.5rem; border:1px solid var(--line); border-top:4px solid var(--pms-red); border-radius:12px; color:var(--ink); background:white; overflow:auto; box-shadow:0 18px 70px #00184055; }
.basket-review-dialog::backdrop { background:#00183c99; }
.basket-review-dialog h2 { margin:0 48px 1rem 0; }
.basket-review-close { position:absolute; right:.7rem; top:.6rem; width:44px; height:44px; border:1px solid var(--line); border-radius:6px; background:white; font-size:1.5rem; color:var(--pms-blue); }
.basket-review-comparison { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.basket-review-comparison section { padding:.9rem; background:var(--pms-blue-soft); border-radius:8px; }
.basket-review-comparison h3 { margin:0 0 .6rem; font-size:1rem; }
.basket-review-comparison p { margin:.45rem 0; overflow-wrap:anywhere; }
.basket-review-comparison small { display:block; }
.basket-review-total { margin-bottom:0; font-weight:800; }
.basket-review-actions { display:flex; justify-content:flex-end; gap:.6rem; margin-top:1.2rem; }
.fastener-add-row { margin:.4rem 0 1rem; padding:.55rem 1rem; border:2px solid var(--pms-blue); color:var(--pms-blue); background:white; font-weight:800; gap:.5rem; }
.fastener-add-row span { font-size:1.5rem; line-height:1; }
.fastener-add-row:hover { background:var(--pms-blue-soft); }
.fastener-row-actions { display:flex; gap:.4rem; align-items:start; }
.fastener-row-actions .button { min-height:44px; padding:.55rem .75rem; white-space:normal; flex:1; }
.fastener-row-actions [data-fastener-remove] { flex:0 0 44px; min-height:44px; border:1px solid var(--line); border-radius:6px; background:white; color:var(--pms-blue); font-size:1.5rem; }
.fastener-length-na { min-height:44px; display:flex; align-items:center; color:var(--muted); font-size:.85rem; font-weight:400; }
.fastener-row-number { color:var(--muted); align-self:start; padding-top:.6rem; font-weight:750; }
.fastener-row-status:empty { display:none; }
.fastener-order-row { padding:.7rem 0; }
.fastener-list-footer { justify-content:space-between; }
.fastener-column-headings { display:none; }
@media(min-width:1250px) {
  .fastener-column-headings, .fastener-order-row__fields { display:grid; grid-template-columns:24px minmax(170px,1.5fr) minmax(120px,1fr) minmax(100px,.8fr) minmax(155px,1fr) minmax(112px,.8fr) minmax(196px,1.3fr); column-gap:.65rem; row-gap:.35rem; }
  .fastener-column-headings { padding:.5rem 0; font-size:.8rem; font-weight:750; color:var(--pms-blue); }
  .fastener-field-label { position:absolute; width:1px; height:1px; overflow:hidden; clip-path:inset(50%); }
  .fastener-order-row__fields > label { grid-row:1; }
  /* Keep every leading field in its heading's column. Row-only placement
     otherwise runs before fully automatic items such as the line number. */
  .fastener-order-row__fields > .fastener-row-number { grid-column:1; grid-row:1; }
  .fastener-order-row__fields > label:has([data-fastener-kind]) { grid-column:2; }
  .fastener-order-row__fields > [data-fastener-size-field] { grid-column:3; }
  .fastener-order-row__fields > [data-fastener-length-field] { grid-column:4; }
  .fastener-order-row.is-stock-short { position:relative; border-left:0; padding-left:0; }
  .fastener-order-row.is-stock-short::before { content:""; position:absolute; left:-.65rem; top:.65rem; bottom:.65rem; width:4px; background:var(--pms-red); }
  .fastener-order-row__fields > label[data-fastener-quantity-field], .fastener-order-row__total { display:contents; }
  [data-fastener-quantity-field] > input { grid-column:5; grid-row:1; }
  [data-fastener-quantity-field] .fastener-quick-quantities { grid-column:5; grid-row:2; margin:0; align-self:start; }
  .fastener-order-row__total strong { grid-column:6; grid-row:1; align-self:center; }
  .fastener-order-row__total small { grid-column:6; grid-row:2; }
  .fastener-row-actions { grid-column:7; grid-row:1; }
  .fastener-order-row__details { grid-column:2/5; grid-row:2; margin:0; gap:.25rem 1rem; align-self:start; font-size:.8rem; }
}
@media(max-width:1249px) {
  .fastener-order-row__fields { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .fastener-row-number { grid-column:1/-1; padding:0; }
  .fastener-row-number::before { content:"Line "; }
  .fastener-order-row__total { grid-column:1; padding:.65rem; border-radius:6px; background:var(--pms-blue-soft); }
  .fastener-row-actions { grid-column:2; align-self:end; }
  .fastener-order-row__details { grid-column:1/-1; margin:0; }
}
@media(max-width:600px) {
  .fastener-order-row__fields > label:has([data-fastener-kind]) { grid-column:1/-1; }
  .fastener-add-row { width:100%; justify-content:center; }
  .fastener-row-actions { flex-wrap:wrap; }
  .fastener-row-actions .button { font-size:.85rem; }
  .basket-review-comparison { grid-template-columns:1fr; }
  .basket-review-dialog { padding:1rem; }
  .basket-review-actions { position:sticky; bottom:-1rem; padding:.8rem 0; background:white; }
}
.section-size-values { display:flex; justify-content:space-between; gap:.25rem; font-size:.9rem; }
.section-size-sliders { position:relative; height:44px; margin:0 10px; }
.section-size-sliders::before { content:""; position:absolute; left:0; right:0; top:20px; height:4px; border-radius:4px; background:#bac8df; }
.section-size-sliders input[type="range"] { appearance:none; -webkit-appearance:none; position:absolute; inset:0; width:100%; height:44px; padding:0; margin:0; border:0; background:transparent; pointer-events:none; }
.section-size-sliders input::-webkit-slider-thumb { appearance:none; -webkit-appearance:none; width:24px; height:24px; border:3px solid white; border-radius:50%; background:var(--pms-blue); box-shadow:0 0 0 2px var(--pms-blue); pointer-events:auto; cursor:grab; }
.section-size-sliders input::-moz-range-thumb { width:20px; height:20px; border:3px solid white; border-radius:50%; background:var(--pms-blue); box-shadow:0 0 0 2px var(--pms-blue); pointer-events:auto; cursor:grab; }
.section-size-sliders input:focus-visible { outline:2px solid var(--pms-red); outline-offset:3px; }
.section-size-selects { display:grid; grid-template-columns:1fr 1fr; gap:.5rem; }
.catalogue-filters .section-size-selects label { display:grid; gap:.3rem; }
.section-size-selects select { min-width:0; width:100%; min-height:40px; border:1px solid #aab7cf; border-radius:5px; background:white; color:var(--pms-blue); }
.offcut-card__surplus-image { position:relative; display:grid; place-items:center; background:#f5f7fb; padding:.75rem; }
.offcut-card__surplus-image img { object-fit:contain; max-height:210px; }
.offcut-card__surplus-image span { position:absolute; bottom:.5rem; left:.5rem; background:white; padding:.3rem .5rem; font-size:.8rem; }
@media(max-width:1100px) {
  .shop-bar .nav-group > .nav-group__mobile-toggle { grid-column:1/-1; position:relative; }
  .nav-group__mobile-toggle[data-section-current]::after { content:""; position:absolute; bottom:0; left:1rem; width:3rem; height:4px; background:var(--pms-red); }
}
