:root {
  color-scheme: light;
  --ink: #121212;
  --muted: #666866;
  --paper: #fbfbfa;
  --surface: #ffffff;
  --surface-strong: #f1f2ef;
  --line: #d9dcd6;
  --accent: #b58a3b;
  --accent-strong: #8a6422;
  --green: #27765f;
  --red: #9e3554;
  --shadow: 0 20px 70px rgba(18, 18, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 15px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(251, 251, 250, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 226px;
}

.brand-onefora {
  width: max-content;
}

.onefora-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
}

.onefora-mark svg {
  display: block;
  width: 50px;
  height: 50px;
}

.onefora-mark rect {
  fill: #121212;
}

.onefora-one,
.onefora-ring,
.onefora-a {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.onefora-one,
.onefora-a {
  stroke: #fff;
  stroke-width: 3;
}

.onefora-ring {
  stroke: #d8bf78;
  stroke-width: 3.2;
}

.onefora-wordmark {
  display: grid;
  gap: 4px;
}

.onefora-name {
  display: inline-flex;
  align-items: baseline;
  color: #121212;
  font-size: 30px;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.onefora-name b,
.onefora-name em {
  font: inherit;
  letter-spacing: 0;
}

.onefora-name em {
  color: var(--accent-strong);
  font-style: normal;
}

.onefora-domain {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.topbar nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.topbar nav a,
.source-link,
.hero-search button,
.load-more,
.result-line button {
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 6px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.topbar nav a,
.source-link {
  padding: 10px 14px;
  color: rgba(18, 18, 18, 0.76);
  font-size: 14px;
}

.topbar nav a:hover,
.source-link:hover {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(181, 138, 59, 0.38);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 124px clamp(18px, 5vw, 72px) 70px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(250, 248, 243, 0.97) 0%, rgba(250, 248, 243, 0.9) 34%, rgba(250, 248, 243, 0.22) 58%, rgba(250, 248, 243, 0) 100%),
    url("/assets/hero-showroom.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(251, 251, 250, 0), var(--paper));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: #4d4a43;
  font-size: 18px;
  line-height: 1.55;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.hero-contact span,
.service-strip span,
.sales-panel span {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 6px;
  font-weight: 800;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-search input {
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 6px;
  outline: none;
  box-shadow: 0 16px 46px rgba(18, 18, 18, 0.07);
}

.hero-search input::placeholder {
  color: rgba(18, 18, 18, 0.46);
}

.hero-search input:focus {
  border-color: rgba(216, 191, 120, 0.75);
}

.hero-search button {
  height: 54px;
  padding: 0 24px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-categories button {
  height: 38px;
  padding: 0 14px;
  color: #3f3b34;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 6px;
  cursor: pointer;
}

.hero-categories button:hover {
  border-color: rgba(181, 138, 59, 0.5);
  background: rgba(255, 255, 255, 0.86);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 0;
  max-width: 760px;
  margin: 36px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(18, 18, 18, 0.08);
}

.hero-stats div {
  min-height: 96px;
  padding: 18px;
  background: transparent;
  border-right: 1px solid rgba(18, 18, 18, 0.08);
}

.hero-stats div:first-child {
  border-radius: 7px 0 0 7px;
}

.hero-stats div:last-child {
  border-radius: 0 7px 7px 0;
}

.hero-stats dt {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.service-strip {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(180px, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 4vw, 56px);
  background: var(--line);
}

.service-strip article {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 118px;
  padding: 22px;
  color: #fff;
  background: #121212;
}

.service-strip article:first-child {
  background: #fff;
  color: var(--ink);
}

.service-strip strong,
.service-strip a {
  font-size: 19px;
  line-height: 1.25;
}

.service-strip article > a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(240px, 0.88fr) minmax(260px, 1fr);
  gap: 16px;
  min-height: min(650px, 70vh);
}

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

.stage-product {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stage-product img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
  padding: 28px;
  background: #fff;
}

.stage-product-large img {
  min-height: 100%;
  padding: 42px;
}

.stage-product div {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px;
  background: rgba(18, 18, 18, 0.76);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.stage-product span,
.stage-product small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.stage-product strong {
  display: block;
  margin: 4px 0;
  font-size: 16px;
}

.scroll-cue {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: 22px;
  z-index: 2;
  color: rgba(18, 18, 18, 0.48);
  font-size: 13px;
}

.catalog-screen,
.brand-screen {
  min-height: 100svh;
  padding: 92px clamp(18px, 4vw, 56px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 1fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p:last-child {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.filterbar {
  position: sticky;
  top: 82px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(5, minmax(150px, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(18, 18, 18, 0.08);
}

.filterbar label {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 12px;
  background: var(--surface);
}

.filterbar label:first-child {
  border-radius: 7px 0 0 7px;
}

.filterbar label:last-child {
  border-radius: 0 7px 7px 0;
}

.filterbar span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.filterbar input,
.filterbar select {
  width: 100%;
  min-width: 0;
  height: 38px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
}

.result-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 28px 0 22px;
}

.result-line strong {
  font-size: 22px;
}

.result-line button,
.load-more {
  padding: 12px 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
}

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

.product-card {
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(181, 138, 59, 0.48);
  box-shadow: var(--shadow);
}

.product-card-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  background: #fff;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  max-height: 270px;
  object-fit: contain;
  padding: 24px;
}

.badge-line {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  color: #fff;
  background: rgba(18, 18, 18, 0.78);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.badge.available {
  background: var(--green);
}

.badge.unavailable {
  background: var(--red);
}

.badge.request {
  background: var(--accent-strong);
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-card-body small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card-body h3 {
  min-height: 54px;
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.price {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.load-more {
  display: block;
  min-width: 220px;
  margin: 34px auto 0;
  background: #121212;
  color: #fff;
  border-color: #121212;
}

.load-more[hidden] {
  display: none;
}

.brand-screen {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f2eb 100%);
  color: var(--ink);
}

.brand-screen .section-head p:last-child {
  color: var(--muted);
}

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

.brand-row {
  position: relative;
  display: grid;
  grid-template-rows: 50px auto;
  gap: 8px;
  min-height: 104px;
  padding: 10px;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 18, 18, 0.09);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.brand-row:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 138, 59, 0.46);
  box-shadow: 0 18px 48px rgba(18, 18, 18, 0.08);
}

.brand-logo-frame,
.brand-copy,
.brand-row i {
  position: relative;
  z-index: 1;
}

.brand-logo-frame {
  display: grid;
  place-items: center;
  min-height: 50px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-logo-frame img {
  width: 100%;
  max-width: 132px;
  max-height: 30px;
  object-fit: contain;
}

.brand-monogram {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: #121212;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  align-content: end;
  gap: 5px;
}

.brand-copy strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.18;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.brand-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-row i {
  display: block;
  width: var(--brand-share);
  height: 2px;
  margin-top: 0;
  background: #d8bf78;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(520px, 100vw);
  height: 100svh;
  overflow: auto;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 80px rgba(18, 18, 18, 0.18);
}

.drawer[hidden] {
  display: none;
}

.drawer-close {
  position: sticky;
  top: 12px;
  left: 100%;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 12px;
  color: #fff;
  background: #121212;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.drawer-product {
  padding: 0 28px 34px;
}

.drawer-product img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.drawer-product h2 {
  margin: 22px 0 12px;
  font-size: 34px;
  line-height: 1.05;
}

.drawer-product dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px 18px;
  margin: 24px 0;
}

.drawer-product dt {
  color: var(--muted);
}

.drawer-product dd {
  margin: 0;
  font-weight: 700;
}

.drawer-product a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 15px 18px;
  color: #fff;
  background: #121212;
  border-radius: 6px;
  font-weight: 800;
}

.product-page {
  padding: 122px clamp(18px, 4vw, 56px) 72px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--accent-strong);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(24px, 5vw, 70px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-detail-media img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.product-page-empty-image {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 420px;
  color: var(--muted);
  background: var(--surface-strong);
  border-radius: 8px;
}

.product-detail-copy {
  position: sticky;
  top: 106px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(18, 18, 18, 0.08);
}

.product-detail-copy h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.product-detail-price {
  margin: 22px 0 0;
  font-size: 30px;
  font-weight: 900;
}

.sales-panel {
  display: grid;
  gap: 6px;
  margin: 28px 0 22px;
  padding: 18px;
  background: #121212;
  color: #fff;
  border-radius: 8px;
}

.sales-panel span {
  color: #d8bf78;
}

.sales-panel strong {
  font-size: 22px;
}

.sales-panel > a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.sales-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.product-facts {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-facts div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  background: #fff;
}

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

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

.technical-section {
  padding-top: 84px;
}

.spec-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.spec-group,
.spec-fallback {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-group h3 {
  margin: 0;
  padding: 18px 20px;
  font-size: 18px;
  line-height: 1.3;
  background: var(--surface-strong);
}

.spec-group dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.spec-group dl div {
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  padding: 13px 16px;
  background: #fff;
}

.spec-group dt {
  color: var(--muted);
}

.spec-group dd {
  min-width: 0;
  margin: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.spec-fallback {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.spec-fallback strong {
  font-size: 22px;
}

.spec-fallback span {
  color: var(--muted);
}

.related-section {
  padding-top: 84px;
}

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

.related-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.related-card span {
  display: grid;
  place-items: center;
  min-height: 210px;
  background: #fff;
}

.related-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.related-card strong {
  min-height: 44px;
  font-size: 16px;
  line-height: 1.3;
}

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

.related-card b {
  font-size: 18px;
}

.site-footer {
  padding: 54px clamp(18px, 4vw, 56px) 30px;
  background:
    linear-gradient(180deg, #f5f2eb 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(190px, 0.8fr) minmax(160px, 0.55fr) minmax(220px, 0.9fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand p,
.footer-service p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.footer-contact,
.footer-nav,
.footer-service {
  display: grid;
  gap: 10px;
}

.footer-contact span,
.footer-nav span,
.footer-service span {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-nav a {
  width: max-content;
  color: var(--ink);
  font-weight: 800;
}

.footer-phone {
  font-size: 23px;
  line-height: 1.1;
}

.footer-nav a {
  color: rgba(18, 18, 18, 0.72);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent-strong);
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.empty-state {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 96px;
  }

  .hero-stage {
    min-height: auto;
  }

  .filterbar,
  .product-grid,
  .product-detail,
  .service-strip,
  .spec-groups,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .filterbar label,
  .filterbar label:first-child,
  .filterbar label:last-child {
    border-radius: 0;
  }

  .product-detail-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 70px;
  }

  .topbar nav {
    display: none;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .onefora-mark,
  .onefora-mark svg {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .onefora-name {
    font-size: 22px;
  }

  .onefora-domain {
    font-size: 10px;
  }

  .source-link {
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero {
    padding: 96px 18px 38px;
    align-content: center;
    min-height: 100svh;
    background-image:
      linear-gradient(180deg, rgba(250, 248, 243, 0.98) 0%, rgba(250, 248, 243, 0.93) 58%, rgba(250, 248, 243, 0.55) 100%),
      url("/assets/hero-showroom-mobile.png");
    background-position: 58% center;
  }

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

  .hero-search,
  .hero-stage,
  .section-head,
  .filterbar,
  .product-grid,
  .product-detail,
  .service-strip,
  .spec-groups,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

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

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

  .hero-stats div {
    min-height: 78px;
    padding: 13px;
  }

  .hero-stats dt {
    font-size: 22px;
  }

  .hero-stats div,
  .hero-stats div:first-child,
  .hero-stats div:last-child {
    border-radius: 0;
  }

  .hero-stage {
    margin-top: 24px;
  }

  .stage-grid {
    display: none;
  }

  .stage-product img {
    min-height: 190px;
    padding: 22px;
  }

  .stage-product-large img {
    min-height: 220px;
    max-height: 240px;
    padding: 24px;
  }

  .catalog-screen,
  .brand-screen {
    padding: 78px 18px;
  }

  .service-strip {
    padding: 1px 18px;
  }

  .service-strip article {
    min-height: 104px;
    padding: 18px;
  }

  .filterbar {
    position: static;
  }

  .product-card {
    min-height: 390px;
  }

  .brand-row {
    grid-template-rows: 48px auto;
    min-height: 104px;
    padding: 10px;
  }

  .brand-logo-frame {
    min-height: 48px;
    padding: 8px;
  }

  .brand-logo-frame img {
    max-height: 28px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .site-footer {
    padding: 42px 18px 24px;
  }

  .site-footer-inner,
  .site-footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    gap: 28px;
  }

  .site-footer-bottom {
    display: grid;
  }

  .footer-phone {
    font-size: 20px;
  }

  .product-page {
    padding: 86px 18px 48px;
  }

  .product-detail-media {
    min-height: 340px;
    padding: 20px;
  }

  .product-detail-media img {
    max-height: 360px;
  }

  .product-detail-copy {
    padding: 20px;
  }

  .product-detail-copy h1 {
    font-size: 30px;
  }

  .product-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .spec-group dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .related-section {
    padding-top: 52px;
  }

  .drawer-product {
    padding: 0 18px 28px;
  }
}
