:root {
  --paper: #fbfaf7;
  --tile: #e9e7e1;
  --ink: #28374c;
  --brand-navy: #28374c;
  --muted: #8e8d88;
  --line: #e7e4de;
  --gold: #b79046;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  cursor: pointer;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px clamp(28px, 4.5vw, 58px) 0;
}

.logo {
  display: inline-block;
  width: 96px;
  height: 52px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links,
.catalogue-filters {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: clamp(34px, 5.2vw, 72px);
  justify-self: center;
  padding-top: 7px;
}

.nav-links a,
.section-label,
.filter-toggle,
.crumb,
.category,
.micro,
.sort,
.pagination a,
.button,
.text-action {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a.active,
.nav-links a.gold,
.category,
.auth-title {
  color: var(--gold);
}

.home-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px clamp(40px, 7vw, 108px) 0;
}

.home-top {
  display: flex;
  justify-content: flex-end;
  padding: 0 5px 12px;
}

.filter-panel {
  position: relative;
  display: grid;
  justify-items: end;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.filter-toggle::after {
  content: "+";
}

.filter-panel.open .filter-toggle::after {
  content: "-";
}

.filter-toggle span {
  color: var(--muted);
}

.filter-options {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 5;
  display: none;
  min-width: 180px;
  padding: 16px 0 0;
  background: var(--paper);
  text-align: right;
}

.filter-panel.open .filter-options {
  display: grid;
  gap: 13px;
}

.filter-options a {
  color: #77756f;
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: 0.36em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-options a.active {
  color: var(--ink);
}

.masonry {
  --gallery-h: clamp(430px, calc(100vh - 190px), 740px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  width: min(100%, calc(var(--gallery-h) * 1.78), 1260px);
  margin: 0 auto;
}

.masonry-column {
  display: grid;
  align-content: start;
  gap: 6px;
}

.masonry-column:nth-child(2) {
  padding-top: calc(var(--gallery-h) * 0.055);
}

.masonry-column:nth-child(4) {
  padding-top: calc(var(--gallery-h) * 0.025);
}

.masonry-column:nth-child(5) {
  padding-top: calc(var(--gallery-h) * 0.085);
}

.masonry a {
  display: block;
  overflow: hidden;
  background: var(--tile);
}

.h166 { height: calc(var(--gallery-h) * 0.2243); }
.h168 { height: calc(var(--gallery-h) * 0.227); }
.h176 { height: calc(var(--gallery-h) * 0.2256); }
.h178 { height: calc(var(--gallery-h) * 0.2282); }
.h188 { height: calc(var(--gallery-h) * 0.2541); }
.h190 { height: calc(var(--gallery-h) * 0.2568); }
.h200 { height: calc(var(--gallery-h) * 0.2564); }
.h210 { height: calc(var(--gallery-h) * 0.2692); }
.h220 { height: calc(var(--gallery-h) * 0.2973); }
.h225 { height: calc(var(--gallery-h) * 0.2885); }
.h230 { height: calc(var(--gallery-h) * 0.3108); }
.h248 { height: calc(var(--gallery-h) * 0.3351); }
.h257 { height: calc(var(--gallery-h) * 0.3295); }
.h258 { height: calc(var(--gallery-h) * 0.3486); }
.h274 { height: calc(var(--gallery-h) * 0.3513); }
.h290 { height: calc(var(--gallery-h) * 0.3919); }
.h300 { height: calc(var(--gallery-h) * 0.4054); }
.h318 { height: calc(var(--gallery-h) * 0.4077); }
.h342 { height: calc(var(--gallery-h) * 0.4622); }
.h430 { height: calc(var(--gallery-h) * 0.5811); }

.footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px clamp(28px, 4.5vw, 58px) 30px;
  text-align: center;
}

.footer-note {
  color: var(--muted);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1.6;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
}

.social-links svg {
  display: block;
  width: 18px;
  height: 18px;
}

.empty-home {
  min-height: calc(100vh - 180px);
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: min(420px, calc(100vh - 260px));
  padding: 54px 24px;
  border: 1px dashed var(--line);
  text-align: center;
}

.empty-state h1 {
  max-width: 520px;
  margin: 16px auto 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.25;
  text-transform: uppercase;
}

.empty-state p:not(.section-label) {
  max-width: 520px;
  margin: 0 auto;
  color: #55534f;
  font-size: 12px;
  line-height: 1.65;
}

.catalogue-empty {
  margin-top: 22px;
}

.empty-action {
  max-width: 260px;
  margin: 28px auto 0;
}

.catalogue,
.product {
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px clamp(32px, 4.8vw, 64px) 0;
}

.product {
  padding-top: 18px;
}

.catalogue-title-row,
.filter-row,
.catalogue-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalogue-title-row {
  margin-bottom: 7px;
}

.section-label {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.44em;
}

.piece-count,
.sort {
  color: var(--muted);
}

.catalogue-filters {
  gap: 31px;
}

.catalogue-filters a {
  color: #77756f;
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalogue-filters a.active {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}

.filter-row {
  justify-content: flex-end;
  min-height: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.catalogue-controls {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}

.catalogue .filter-options {
  top: 22px;
}

.sort-panel .filter-options {
  min-width: 210px;
}

.catalogue-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px 10px;
}

.catalogue-grid {
  margin-top: 22px;
}

.catalogue-card {
  position: relative;
  text-align: center;
}

.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  background: var(--tile);
  color: rgba(255,255,255,0.78);
  overflow: hidden;
}

.placeholder.dashed {
  border: 0;
}

.placeholder.image-filled {
  display: block;
}

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

.placeholder-inner {
  display: grid;
  gap: 5px;
  place-items: center;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.25;
}

.placeholder-inner svg {
  width: 18px;
  height: 18px;
  opacity: 0.55;
}

.placeholder-inner small {
  font-size: 10px;
  opacity: 0.9;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  background: var(--paper);
  padding: 8px 12px;
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.card-text {
  padding-top: 18px;
}

.category {
  margin-bottom: 7px;
  font-size: 8.5px;
}

.model {
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.reference {
  color: #77756f;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.card-price {
  margin-top: 10px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 68px;
}

.pagination a.active {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}

.crumb {
  display: block;
  margin-bottom: 14px;
  color: #77756f;
  letter-spacing: 0.34em;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.main-shot {
  aspect-ratio: 1.08 / 1;
  max-height: calc(100vh - 148px);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.thumb {
  aspect-ratio: 1.16 / 1;
}

.thumb-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.thumb-button .placeholder {
  transition: opacity 160ms ease, outline-color 160ms ease;
}

.thumb-button:hover .placeholder,
.thumb-button:focus-visible .placeholder {
  opacity: 0.82;
}

.thumb-button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.thumb-button.active .placeholder {
  outline: 1px solid var(--ink);
  outline-offset: -1px;
}

.product-info {
  padding-top: 18px;
}

.product-info h1 {
  margin: 8px 0 12px;
  font-size: 23.5px;
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 1.15;
  text-transform: uppercase;
}

.price {
  margin: 18px 0;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.available {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.available::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  background: transparent;
}

.button.primary {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  color: white;
}

.modal-open {
  overflow: hidden;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(40,55,76,0.42);
}

.inquiry-modal[hidden] {
  display: none;
}

.inquiry-panel {
  position: relative;
  width: min(100%, 390px);
  padding: 34px 28px 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(40,55,76,0.18);
  text-align: center;
}

.inquiry-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
}

.inquiry-close:hover,
.inquiry-close:focus-visible {
  color: var(--ink);
}

.inquiry-panel h2 {
  margin: 10px 0 12px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.3;
  text-transform: uppercase;
}

.inquiry-panel p {
  margin: 0 0 22px;
  color: #55534f;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.inquiry-message {
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.36);
  text-align: left;
}

.inquiry-message span,
.inquiry-message small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.inquiry-message strong {
  display: block;
  margin: 8px 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.inquiry-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.inquiry-option {
  gap: 10px;
  margin-bottom: 0;
}

.inquiry-option svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.text-action {
  display: block;
  margin: 18px 0 30px;
  color: #7d7b76;
  text-align: center;
}

.description {
  margin: 18px 0 19px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.description p {
  margin: 0;
  color: #55534f;
  font-size: 12px;
  line-height: 1.62;
}

.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.spec {
  min-height: 46px;
  padding: 11px 0 10px;
  border-bottom: 1px solid var(--line);
}

.spec:nth-child(odd) {
  padding-right: 20px;
}

.spec:nth-child(even) {
  padding-left: 20px;
}

.micro {
  margin-bottom: 6px;
  color: #9b9890;
  font-size: 7.5px;
}

.spec p {
  margin: 0;
  font-size: 10.75px;
  line-height: 1.35;
}

.auth {
  padding-top: 18px;
}

.auth-title {
  margin: 0 0 12px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.auth p {
  margin: 0;
  max-width: 430px;
  color: #55534f;
  font-size: 10.75px;
  line-height: 1.55;
}

.related {
  margin-top: 70px;
  text-align: center;
}

.related .section-label {
  margin-bottom: 26px;
  font-size: 8px;
}

.related-grid {
  gap: 0 12px;
}

.related .placeholder {
  aspect-ratio: 1.06 / 1;
}

.simple-page {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  padding: 68px clamp(28px, 4.5vw, 58px) 0;
}

.sell-source-page {
  max-width: 1120px;
}

.sell-source-copy {
  text-align: left;
}

.simple-copy {
  text-align: center;
}

.simple-copy h1 {
  margin: 22px auto 34px;
  max-width: 720px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.35;
  text-transform: uppercase;
}

.sell-source-copy h1 {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  font-size: 33px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.inquiry-form {
  display: grid;
  gap: 22px;
  text-align: left;
}

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

.inquiry-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.2;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.inquiry-form input,
.inquiry-form select {
  min-height: 54px;
  padding: 0 18px;
}

.inquiry-form textarea {
  min-height: 118px;
  padding: 15px 18px;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #aaa8a3;
}

.request-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 520px);
  border: 1px solid var(--brand-navy);
}

.request-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.request-switch label {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.38em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.request-switch label + input + label {
  border-left: 1px solid var(--brand-navy);
}

.request-switch input:checked + label {
  background: var(--brand-navy);
  color: var(--paper);
}

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

.form-field-full {
  grid-column: 1 / -1;
}

.request-panels {
  display: grid;
}

.request-fields {
  display: none;
}

.sell-source-form:has(#request-source:checked) .source-fields,
.sell-source-form:has(#request-sell:checked) .sell-fields {
  display: block;
}

.choice-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-list legend {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.choice-list label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.choice-list input {
  flex: 0 0 auto;
  width: 24px;
  min-height: 0;
  height: 24px;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 1px solid #c8c5be;
}

.choice-list input:checked {
  background: linear-gradient(var(--brand-navy), var(--brand-navy)) center / 12px 12px no-repeat;
}

.choice-list span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.contact-page {
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: start;
}

.contact-copy {
  padding-top: 30px;
  text-align: left;
}

.contact-copy h1 {
  margin-left: 0;
  margin-right: 0;
  font-size: 17px;
  letter-spacing: 0.2em;
}

.contact-action {
  max-width: 285px;
}

.location-actions {
  display: grid;
  max-width: 285px;
  gap: 10px;
}

.map-action {
  justify-content: center;
  gap: 10px;
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  color: var(--paper);
}

.map-action svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
}

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

.contact-photos.single-photo {
  grid-template-columns: 1fr;
}

.contact-photos img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
}

.contact-photos.single-photo img {
  aspect-ratio: 4 / 3;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .nav-links {
    justify-self: end;
    gap: clamp(22px, 4.6vw, 44px);
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .main-shot {
    max-height: none;
    aspect-ratio: 1 / 1.02;
  }

  .product-info {
    padding-top: 0;
  }

  .product-info h1 {
    max-width: 760px;
  }

  .catalogue-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 12px;
  }

  .contact-page {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-copy {
    padding-top: 0;
    text-align: center;
  }

  .location-actions {
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .site-header,
  .home-main,
  .catalogue,
  .product,
  .simple-page,
  .footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 20px;
  }

  .logo {
    width: 88px;
    height: 47px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding-top: 15px;
  }

  .nav-links a {
    font-size: 7px;
    letter-spacing: 0.32em;
  }

  .catalogue-grid,
  .related-grid,
  .product-layout,
  .contact-page,
  .contact-photos,
  .form-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .home-main {
    padding-top: 18px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-top {
    padding: 0 0 14px;
  }

  .masonry {
    --gallery-h: clamp(430px, calc(100svh - 215px), 650px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    width: 100%;
  }

  .masonry-column {
    gap: 5px;
  }

  .masonry-column:nth-child(2) {
    padding-top: 18px;
  }

  .masonry-column:nth-child(3) {
    padding-top: 8px;
  }

  .masonry-column:nth-child(n + 4) {
    display: none;
  }

  .simple-page {
    padding-top: 48px;
  }

  .product {
    padding-top: 34px;
  }

  .product-info h1 {
    font-size: 19px;
    letter-spacing: 0.26em;
  }

  .button {
    min-height: 44px;
    letter-spacing: 0.32em;
  }

  .inquiry-panel {
    padding: 34px 22px 22px;
  }

  .inquiry-panel h2 {
    font-size: 15px;
    letter-spacing: 0.22em;
  }

  .inquiry-options {
    grid-template-columns: 1fr;
  }

  .simple-copy,
  .sell-source-copy,
  .contact-copy {
    text-align: center;
  }

  .sell-source-copy h1 {
    font-size: 26px;
    text-align: center;
  }

  .request-switch {
    width: 100%;
  }

  .request-switch label {
    min-height: 46px;
    padding: 0 10px;
    font-size: 7.25px;
    letter-spacing: 0.25em;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-action {
    max-width: none;
  }

  .location-actions {
    max-width: none;
  }

  .contact-photos {
    gap: 12px;
  }

  .catalogue {
    padding-top: 38px;
  }

  .catalogue-title-row {
    margin-bottom: 13px;
  }

  .catalogue-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 9px;
  }

  .catalogue-grid {
    margin-top: 18px;
  }

  .catalogue-card .placeholder {
    aspect-ratio: 1 / 0.98;
  }

  .catalogue-card .card-text {
    padding-top: 13px;
  }

  .catalogue-card .category {
    margin-bottom: 6px;
    font-size: 7.25px;
    letter-spacing: 0.3em;
  }

  .catalogue-card .model {
    margin-bottom: 6px;
    font-size: 10.5px;
    letter-spacing: 0.24em;
    line-height: 1.25;
  }

  .catalogue-card .reference {
    font-size: 8.5px;
    letter-spacing: 0.18em;
    line-height: 1.35;
  }

  .catalogue-card .card-price {
    margin-top: 8px;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    line-height: 1.35;
  }

  .related .placeholder {
    aspect-ratio: 1 / 0.98;
  }

  .catalogue-filters {
    flex-wrap: wrap;
    gap: 18px;
  }

  .filter-row {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .catalogue-controls {
    justify-content: space-between;
    gap: 18px;
  }

  .catalogue-controls .filter-panel {
    justify-items: start;
  }

  .catalogue-controls .filter-options {
    left: 0;
    right: auto;
    text-align: left;
  }
}
