:root {
  color-scheme: light;
  --ink: #202428;
  --muted: #666c72;
  --line: #dfe2e5;
  --paper: #fdfdfd;
  --panel: #ffffff;
  --accent: #d92d30;
  --accent-dark: #b91f24;
  --glow: #f2c14e;
  --green: #285f54;
  --shadow: 0 14px 34px rgba(22, 27, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.product-page,
.product-page button,
.product-page input,
.product-page select,
.product-page textarea,
.product-page table {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(28px, 3vw, 52px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 132px;
  height: 56px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 750;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 13px;
  color: #4c5359;
  font-size: 0.88rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #edf1ed;
  color: var(--ink);
  outline: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.language-switcher button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  background: var(--accent);
  color: #fff;
  outline: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: 4.45rem;
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 2.6rem;
  letter-spacing: 0;
}

h3 {
  margin: 2px 0 0;
  font-size: 1.08rem;
  letter-spacing: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.button.primary {
  background: var(--accent);
  color: #fffdf8;
  box-shadow: 0 12px 26px rgba(143, 53, 29, 0.23);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-dark);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fffdf8;
}

.button.compact {
  width: 100%;
  min-height: 40px;
  margin-top: auto;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
  text-transform: none;
}

input:focus,
select:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(199, 81, 45, 0.14);
}

textarea {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
}

textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(199, 81, 45, 0.14);
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(23, 32, 28, 0.48);
}

.modal-backdrop[hidden] {
  display: none;
}

.enquiry-dialog {
  width: min(720px, 100%);
  max-height: min(860px, calc(100vh - 44px));
  overflow: auto;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(23, 32, 28, 0.24);
}

.enquiry-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.enquiry-head h2 {
  font-size: 1.65rem;
}

.icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: rgba(199, 81, 45, 0.38);
  color: var(--accent-dark);
  outline: 0;
}

.enquiry-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.enquiry-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}

.enquiry-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.enquiry-actions .button {
  min-width: 150px;
}

.catalogue-band,
.request-band {
  padding: 18px clamp(28px, 3vw, 52px) 72px;
}

.catalogue-band {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.catalogue-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.catalogue-breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.catalogue-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 540px);
  align-items: start;
  gap: 48px;
  margin: 0 0 30px 52px;
}

.catalogue-intro h1 {
  max-width: none;
  font-size: 2rem;
  line-height: 1.15;
}

.catalogue-intro p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.catalogue-search input {
  min-height: 54px;
  padding-right: 18px;
  padding-left: 18px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(22, 27, 31, 0.035);
}

.sector-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 0 28px 52px;
}

.sector-filter {
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
  box-shadow: 0 5px 16px rgba(22, 27, 31, 0.04);
}

.sector-filter svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.sector-filter:hover,
.sector-filter:focus-visible {
  border-color: rgba(217, 45, 48, 0.55);
  color: var(--accent);
  outline: 0;
}

.sector-filter.active {
  border-color: var(--accent);
  background: #fff7f7;
  color: var(--accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-heading,
.request-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 760;
}

.section-heading > p,
.request-band p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.catalogue-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 116px);
  overflow: auto;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(22, 27, 31, 0.04);
}

.filter-panel-head,
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--accent);
  outline: 0;
}

.filter-groups {
  display: grid;
  gap: 0;
}

.filter-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #eceef0;
}

.filter-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.filter-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
  list-style: none;
}

.filter-group summary::-webkit-details-marker {
  display: none;
}

.filter-group summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.filter-group[open] summary::after {
  content: "−";
}

.filter-options {
  display: grid;
  gap: 2px;
  padding: 0 0 10px;
}

.check-filter {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 3px 0;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.check-filter:hover,
.check-filter:has(input:focus-visible) {
  border-color: transparent;
  color: var(--accent-dark);
  background: transparent;
}

.check-filter input {
  width: 17px;
  min-height: 17px;
  accent-color: var(--accent);
}

.catalogue-results {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.results-bar {
  align-items: center;
  min-height: 44px;
}

.results-bar > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.sort-field {
  width: min(250px, 100%);
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr);
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.sort-field select {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 34px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-chip.removable {
  cursor: pointer;
}

.filter-chip.removable::after {
  content: "x";
  margin-left: 8px;
  color: var(--accent-dark);
}

[dir="rtl"] .filter-chip.removable::after {
  margin-right: 8px;
  margin-left: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-content: start;
}

.product-card {
  display: grid;
  grid-template-rows: 210px 164px;
  width: 100%;
  height: 374px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(22, 27, 31, 0.055);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(217, 45, 48, 0.35);
  box-shadow: 0 16px 36px rgba(22, 27, 31, 0.1);
  outline: 0;
  transform: translateY(-2px);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px;
  background: #fff;
  border-bottom: 0;
}

.product-image-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 1px;
  background: var(--line);
}

.product-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.product-image.spec-sheet-image {
  padding: 12px;
  background: #fff;
  object-fit: contain;
}

.product-body {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 8px;
  padding: 16px 18px 18px;
  min-height: 0;
}

.product-title-row {
  display: block;
}

.category {
  margin: 0;
  color: #3f454a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
}

.empty-state {
  padding: 32px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.request-band {
  margin: 0 clamp(18px, 5vw, 72px) clamp(28px, 5vw, 64px);
  padding-right: clamp(18px, 4vw, 44px);
  padding-left: clamp(18px, 4vw, 44px);
  background: #eef2ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

code {
  color: var(--ink);
}

.product-detail-page {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 clamp(40px, 7vw, 80px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--accent);
  outline: 0;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 0;
  align-items: stretch;
  direction: ltr;
}

.detail-side {
  display: grid;
  justify-items: stretch;
  min-width: 0;
}

.detail-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #f7f7f5;
  border: 0;
  border-radius: 12px 0 0 12px;
  box-shadow: none;
}

.detail-image {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: 54px;
  mix-blend-mode: multiply;
}

.detail-image.spec-sheet-image {
  padding: 20px;
  object-fit: contain;
}

.detail-image.gallery-secondary-image {
  padding: 0;
  object-fit: cover;
  mix-blend-mode: normal;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(32, 36, 40, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(22, 27, 31, 0.12);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: 0;
}

.gallery-previous {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-thumbnails {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}

.gallery-thumbnail {
  width: clamp(74px, 8vw, 108px);
  aspect-ratio: 1.42 / 1;
  flex: 0 1 108px;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(22, 27, 31, 0.12);
  cursor: pointer;
  pointer-events: auto;
}

.gallery-thumbnail[aria-current="true"] {
  border-color: var(--accent);
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  padding: 8px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.gallery-thumbnail img.gallery-secondary-image {
  padding: 0;
  object-fit: cover;
  mix-blend-mode: normal;
}

.detail-info-panel {
  width: 100%;
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(28, 35, 31, 0.05);
}

.detail-info-panel h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.detail-variants-panel {
  grid-column: 1 / -1;
  margin-top: 48px;
}

.detail-variants-panel h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.variant-filter-toolbar {
  margin-bottom: 18px;
  padding: 16px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.variant-filter-toolbar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.variant-filter-toolbar-head strong {
  font-size: 0.82rem;
  font-weight: 700;
}

.variant-filter-clear {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.variant-filter-clear:disabled {
  color: var(--muted);
  cursor: default;
  opacity: 0.55;
}

.variant-filter-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.variant-filter-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.variant-filter-field span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.variant-filter-field select {
  width: 100%;
  min-height: 40px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 0.76rem;
}

.variant-filter-empty td {
  padding: 28px 16px;
  color: var(--muted);
  text-align: center;
  white-space: normal;
}

.detail-download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(28, 35, 31, 0.05);
}

.detail-download-panel h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.detail-download-panel p {
  margin: 0;
  color: var(--muted);
}

.detail-download-link {
  flex: 0 0 auto;
}

.detail-content {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
  padding: clamp(32px, 5vw, 72px);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  container-type: inline-size;
}

[dir="rtl"] .detail-content,
[dir="rtl"] .detail-side {
  direction: rtl;
}

.detail-title {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 4.2vw, 5.1rem);
  font-size: clamp(2.6rem, 14cqw, 5.1rem);
  line-height: 0.94;
  letter-spacing: 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.detail-code {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 900;
}

.detail-description {
  margin: 0;
  color: var(--muted);
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.6;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.detail-list div {
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  background: #f4f6f3;
}

.detail-list dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  font-weight: 400;
}

.detail-variants-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.detail-variants-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.66rem;
  overflow: hidden;
}

.detail-variants-table th,
.detail-variants-table td {
  padding: 14px 7px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  vertical-align: middle;
  line-height: 1.2;
}

.detail-variants-table thead th {
  background: #f5f6f6;
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.detail-variants-table tbody th {
  color: var(--accent);
  font-weight: 900;
}

.detail-variants-table tbody tr:nth-child(even) {
  background: #fff;
}

.detail-variants-table tbody tr:hover {
  background: #fcfcfc;
}

.detail-variants-table tbody tr:last-child th,
.detail-variants-table tbody tr:last-child td {
  border-bottom: 0;
}

.variant-col-sku {
  width: 8%;
}

.variant-col-variation {
  width: 18%;
  white-space: normal !important;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.variant-accessory {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.variant-accessory-image {
  width: 56px;
  height: 46px;
  display: block;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.variant-accessory-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.variant-accessory-title,
.variant-accessory-code {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.variant-accessory-title {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
}

.variant-accessory-code {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.variant-col-dimensions {
  width: 8.5%;
  white-space: normal !important;
  overflow-wrap: break-word;
}

.variant-col-mounting {
  width: 9%;
  white-space: normal !important;
  overflow-wrap: break-word;
}

.variant-col-power {
  width: 5%;
}

.variant-col-lumens {
  width: 7.5%;
  white-space: normal !important;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.variant-col-cct {
  width: 11%;
  white-space: normal !important;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.variant-col-beam {
  width: 6%;
  white-space: normal !important;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.variant-col-cri {
  width: 3.5%;
}

.variant-col-sdcm {
  width: 4.5%;
}

.variant-col-ip {
  width: 5%;
  white-space: normal !important;
  line-height: 1.2;
}

.variant-col-downloads {
  width: 14%;
}

.variant-downloads {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  align-items: center;
}

.variant-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 48px;
  min-height: 30px;
  padding: 4px 5px;
  border: 1px solid rgba(199, 81, 45, 0.34);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.variant-download-link:hover,
.variant-download-link:focus-visible {
  border-color: rgba(199, 81, 45, 0.68);
  background: #fff5ef;
  outline: 0;
}

.pdf-icon {
  display: inline-grid;
  flex: 0 0 auto;
  min-width: 14px;
  height: auto;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.43rem;
  font-weight: 900;
  line-height: 1;
}

.detail-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  list-style: none;
}

.detail-dropdown summary::-webkit-details-marker {
  display: none;
}

.detail-dropdown summary::after {
  content: "+";
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.detail-dropdown[open] summary {
  margin-bottom: 12px;
}

.detail-dropdown[open] summary::after {
  content: "-";
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .site-header,
[dir="rtl"] .section-heading,
[dir="rtl"] .request-band,
[dir="rtl"] .filter-panel-head,
[dir="rtl"] .results-bar,
[dir="rtl"] .site-footer {
  direction: rtl;
}

[dir="rtl"] .brand,
[dir="rtl"] .site-nav,
[dir="rtl"] .check-filter,
[dir="rtl"] .active-filters {
  direction: rtl;
}

@media (max-width: 1100px) {
  .catalogue-shell {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    width: 100%;
    height: 374px;
    grid-template-rows: 210px 164px;
  }
}

@media (max-width: 900px) {
  .detail-variants-table {
    font-size: 0.86rem;
  }

  .detail-variants-table thead {
    display: none;
  }

  .detail-variants-table,
  .detail-variants-table tbody,
  .detail-variants-table tr,
  .detail-variants-table th,
  .detail-variants-table td {
    display: block;
  }

  .detail-variants-table tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-variants-table th,
  .detail-variants-table td {
    width: auto;
    display: grid;
    grid-template-columns: minmax(118px, 34%) minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    border-bottom: 0;
    white-space: normal;
  }

  .detail-variants-table th::before,
  .detail-variants-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 900;
  }

  .variant-downloads {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .product-page .site-header {
    display: none;
  }

  .product-page .product-detail-page {
    width: 100%;
    padding: 0 0 40px;
  }

  .product-page .back-link {
    display: none;
  }

  .site-header,
  .section-heading,
  .request-band {
    align-items: stretch;
    flex-direction: column;
  }

  .site-header {
    gap: 12px;
    min-height: 0;
  }

  .brand {
    gap: 18px;
  }

  .brand-logo {
    width: 130px;
    height: 56px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .site-nav a {
    flex: 1;
    text-align: center;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
  }

  h1 {
    max-width: 9ch;
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2rem;
  }

  .catalogue-shell {
    grid-template-columns: 1fr;
  }

  .catalogue-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-left: 0;
  }

  .catalogue-intro h1 {
    max-width: none;
    font-size: 2rem;
  }

  .sector-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
  }

  .catalogue-search input {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.82rem;
    font-weight: 500;
  }

  .filter-panel {
    position: static;
    max-height: none;
  }

  .results-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-field {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-dialog {
    padding: 20px;
  }

  .enquiry-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card {
    height: 360px;
    grid-template-rows: 206px 154px;
  }

  .product-image-wrap {
    height: 206px;
    padding: 24px;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-page .detail-media {
    height: 296px;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .product-page .detail-image {
    padding: 24px 24px 82px;
  }

  .product-page .detail-image.gallery-secondary-image {
    padding: 0;
  }

  .product-page .gallery-nav {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .product-page .gallery-previous {
    left: 10px;
  }

  .product-page .gallery-next {
    right: 10px;
  }

  .product-page .gallery-thumbnails {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 8px;
  }

  .product-page .gallery-thumbnail {
    width: 72px;
    flex-basis: 72px;
  }

  .product-page .detail-content {
    gap: 8px;
    padding: 20px 12px 26px;
    border: 0;
    border-radius: 0;
  }

  .product-page .detail-content .eyebrow {
    margin: 0;
  }

  .product-page .detail-title {
    font-size: 3rem;
    line-height: 0.95;
  }

  .product-page .detail-description {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .product-page .detail-variants-panel {
    margin-top: 0;
    padding: 22px 12px 0;
  }

  .detail-side {
    position: static;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .detail-download-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-variants-table th,
  .detail-variants-table td {
    grid-template-columns: minmax(105px, 38%) minmax(0, 1fr);
    padding: 10px 12px;
  }

  .variant-downloads {
    justify-content: flex-end;
  }
}

@media (max-width: 900px) {
  .product-detail-page {
    width: min(100%, calc(100% - 28px));
    padding-top: 22px;
  }

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

  .detail-media {
    aspect-ratio: 16 / 10;
    border-radius: 12px 12px 0 0;
  }

  .detail-content {
    align-content: start;
    padding: clamp(24px, 5vw, 44px);
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 12px 12px;
  }

  .detail-title {
    font-size: clamp(2.7rem, 12cqw, 4.8rem);
    line-height: 0.96;
  }

  .detail-variants-table tr {
    display: grid;
    gap: 0;
    margin-bottom: 12px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .detail-variants-table th,
  .detail-variants-table td {
    min-width: 0;
    padding: 11px 14px;
    overflow-wrap: anywhere;
  }

  .detail-variants-table tbody tr:last-child th,
  .detail-variants-table tbody tr:last-child td {
    border-bottom: 0;
  }

  .variant-downloads {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .product-page .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 8px 14px;
  }

  .product-page .brand {
    gap: 10px;
  }

  .product-page .brand-logo {
    width: 94px;
    height: 40px;
  }

  .product-page .brand > span,
  .product-page .site-nav > a {
    display: none;
  }

  .product-page .site-nav {
    width: auto;
    margin-left: auto;
    flex-wrap: nowrap;
    gap: 8px;
  }

  [dir="rtl"] .product-page .site-nav {
    margin-right: auto;
    margin-left: 0;
  }

  .product-page .language-switcher {
    width: auto;
  }

  .product-page .product-detail-page {
    width: 100%;
    padding: 10px 0 40px;
  }

  .product-page .back-link {
    display: inline-flex;
    margin: 0 14px 10px;
    font-size: 0.86rem;
  }

  .product-page .detail-media {
    height: auto;
    min-height: 260px;
    aspect-ratio: 1.18 / 1;
  }

  .product-page .detail-content {
    padding: 22px 16px 28px;
    border-right: 0;
    border-left: 0;
  }

  .product-page .detail-title {
    font-size: clamp(2.45rem, 16cqw, 3.45rem);
    line-height: 0.98;
  }

  .product-page .detail-variants-panel {
    padding-right: 12px;
    padding-left: 12px;
  }

  .detail-variants-table th,
  .detail-variants-table td {
    grid-template-columns: minmax(100px, 36%) minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px;
  }

  .variant-download-link {
    width: 54px;
  }
}

@media (max-width: 420px) {
  .product-page .site-header {
    padding-right: 10px;
    padding-left: 10px;
  }

  .product-page .language-switcher button {
    min-width: 33px;
  }

  .product-page .detail-title {
    font-size: clamp(2.15rem, 14cqw, 2.85rem);
  }

  .product-page .gallery-thumbnails {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .product-page .gallery-thumbnail {
    width: 62px;
    flex: 0 0 62px;
  }

  .detail-variants-table th,
  .detail-variants-table td {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
