:root {
  --ink: #111827;
  --ink-soft: #515960;
  --navy: #515960;
  --blue: #41494f;
  --orange: #f37406;
  --orange-dark: #d78433;
  --paper: #fcfbf3;
  --sand: #fde0b7;
  --copper: #e9ac6c;
  --steel: #9ea2a6;
  --line: #ddd9ce;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(13, 24, 38, .13);
  font-family: "Aptos", "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 248, .94);
  border-bottom: 1px solid rgba(20, 34, 53, .1);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  display: block;
  width: 86px;
  height: 76px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 18px);
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 850;
}

.main-nav a {
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(81, 89, 96, .14);
  background: rgba(255, 255, 255, .55);
  border-radius: 8px;
}

.main-nav a:hover,
.nav-newsletter:hover {
  color: var(--orange);
  border-color: rgba(243, 116, 6, .28);
  background: rgba(243, 116, 6, .08);
}

.nav-newsletter {
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(81, 89, 96, .14);
  color: inherit;
  background: rgba(255, 255, 255, .55);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #e8edf0;
  border-radius: 8px;
}

.language-switch button {
  min-width: 36px;
  height: 32px;
  border: 0;
  color: var(--ink-soft);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.language-switch .is-active {
  color: var(--white);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: var(--white);
  background: #20262a;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 30, .82) 0%, rgba(10, 18, 30, .56) 45%, rgba(10, 18, 30, .18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, 100%);
  padding: 76px clamp(20px, 6vw, 82px) 132px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 13vw, 156px);
  line-height: .86;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-actions .button {
  min-height: 58px;
  padding: 17px 28px;
  font-size: 17px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.two-column,
.partner-band,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
}

p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.copy-grid p {
  margin-top: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.catalog-note {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-weight: 700;
}

.catalog-search {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: -12px 0 24px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catalog-search label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.catalog-search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.text-button {
  justify-self: start;
  padding: 0;
  border: 0;
  color: var(--orange);
  background: transparent;
  cursor: pointer;
  font-weight: 850;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter,
.scan-button {
  min-height: 38px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--paper);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.filter {
  padding: 8px 14px;
}

.filter.is-active,
.filter:hover {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

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

.product-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(13, 24, 38, .06);
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(253, 224, 183, .65), rgba(252, 251, 243, .96)),
    var(--paper);
  border: 1px solid rgba(81, 89, 96, .12);
}

.product-image--cimdi {
  aspect-ratio: 1 / 1;
  background: #fff;
}

.product-image--apavi {
  aspect-ratio: 1.12;
  background: #fff;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
  transform: none;
}

.product-image--cimdi img {
  padding: 0;
  object-position: center center;
}

.product-image--apavi img {
  padding: 14px;
}

.product-card:hover .product-image img {
  transform: scale(1.018);
  transition: transform .25s ease;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  color: var(--ink-soft);
  background: var(--sand);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.product-card p {
  min-height: 76px;
  margin: 0;
}

.product-card button {
  justify-self: start;
}

.catalog-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.catalog-actions [hidden] {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.empty-state p {
  margin-bottom: 0;
}

.partner-form label {
  color: inherit;
  font-size: 13px;
  font-weight: 850;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

input {
  min-height: 46px;
  width: 100%;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: var(--white);
}

input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 100, 35, .18);
}

.scan-button {
  justify-self: start;
  padding: 8px 12px;
}

.text-link {
  color: var(--orange);
  font-weight: 900;
}

.document-list {
  display: grid;
  gap: 12px;
}

.document-list article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.document-list p {
  margin: 4px 0 0;
}

.document-list a {
  color: var(--orange);
  font-weight: 900;
}

.doc-type {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.where-section {
  display: grid;
  gap: clamp(30px, 5vw, 58px);
  background: #efeee6;
}

.where-heading {
  max-width: 820px;
}

.where-content {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.dealer-list {
  display: grid;
  gap: 14px;
}

.dealer-list article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px 22px;
  align-items: center;
  min-height: 164px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(81, 89, 96, .12);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(13, 24, 38, .06);
}

.dealer-logo-wrap {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dealer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.dealer-logo-placeholder {
  color: var(--ink-soft);
  background: var(--sand);
  border-style: dashed;
  font-size: 12px;
  font-weight: 900;
}

.dealer-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.dealer-copy h3 {
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1;
  letter-spacing: 0;
}

.dealer-copy p {
  display: grid;
  gap: 12px;
  margin: 0;
}

.dealer-copy p a {
  display: block;
}

.dealer-list a:not(.button) {
  color: var(--ink-soft);
  font-weight: 800;
}

.dealer-button {
  grid-column: 2;
  justify-self: start;
  min-width: 250px;
  min-height: 58px;
  padding: 17px 30px;
  font-size: 16px;
  white-space: nowrap;
}

.map-visual {
  width: 100%;
  align-self: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-panel {
  display: grid;
  gap: 18px;
}

.map-panel article {
  display: grid;
  gap: 12px;
}

.map-panel h3 {
  color: var(--navy);
  font-size: 22px;
}

.map-helper {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.store-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 320px;
  overflow: auto;
  padding: 10px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(81, 89, 96, .14);
  border-radius: 8px;
}

.store-button {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(81, 89, 96, .16);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.store-button:hover,
.store-button.is-active {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.google-map {
  min-height: 300px;
  border: 0;
}

.partner-band {
  min-height: 520px;
  align-items: center;
  color: var(--white);
  background: var(--blue);
}

.partner-band h2,
.partner-band p {
  color: var(--white);
}

.partner-band p {
  max-width: 620px;
  color: rgba(255,255,255,.76);
}

.partner-form {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
}

.partner-form input {
  min-height: 54px;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.newsletter-form label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.newsletter-form p {
  margin: 0;
  font-size: 13px;
}

.newsletter-dialog {
  width: min(620px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.newsletter-dialog::backdrop {
  background: rgba(9, 15, 24, .62);
}

.newsletter-modal-content {
  padding: clamp(26px, 5vw, 44px);
  background: var(--white);
}

.newsletter-modal-content h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 42px);
}

.brand-coordination {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(160px, .75fr) minmax(160px, .75fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #303030;
}

.coordination-brand {
  display: grid;
  gap: 20px;
  align-content: start;
}

.coordination-brand img {
  width: min(230px, 80%);
  height: auto;
}

.coordination-brand p {
  max-width: 360px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 15px;
  line-height: 1.55;
}

.coordination-brand a,
.coordination-links a {
  color: var(--white);
  font-weight: 850;
}

.coordination-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  color: rgba(255,255,255,.9);
  font-weight: 800;
}

.coordination-contact-line span {
  color: rgba(255,255,255,.78);
}

.coordination-contact-line a[href^="tel"],
.coordination-contact-line a[href^="mailto"] {
  color: var(--orange);
  font-size: 22px;
}

.coordination-links {
  display: grid;
  gap: 15px;
  align-content: start;
}

.coordination-links h2,
.coordination-newsletter h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
}

.coordination-newsletter {
  display: grid;
  gap: 18px;
  align-content: start;
}

.coordination-newsletter form {
  display: grid;
  gap: 18px;
}

.coordination-newsletter input {
  min-height: 58px;
  border: 1px solid rgba(255,255,255,.25);
  background: var(--white);
  font-size: 16px;
}

.coordination-newsletter .button {
  justify-self: start;
  min-height: 62px;
  padding-inline: 38px;
  font-size: 18px;
}

.privacy-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.privacy-section span {
  color: rgba(255,255,255,.72);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #303030;
}

.footer-logo {
  width: 96px;
  max-height: 74px;
  object-fit: contain;
}

.site-footer span {
  color: rgba(255,255,255,.76);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
}

.footer-links button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.cookie-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: min(440px, calc(100vw - 36px));
  padding: 14px;
  color: var(--white);
  background: #0d1624;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-bar.is-hidden {
  display: none;
}

.cookie-bar span {
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.cookie-bar button {
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  white-space: nowrap;
}

#product-dialog {
  width: min(940px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

#product-dialog::backdrop {
  background: rgba(9, 15, 24, .72);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 0;
  background: var(--white);
}

.dialog-layout img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  padding: 24px;
  background: var(--paper);
}

.dialog-copy {
  padding: 42px;
}

.product-page {
  background: var(--paper);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 6vw, 72px) clamp(20px, 5vw, 72px);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-main-image {
  display: grid;
  min-height: 520px;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(13, 24, 38, .07);
  cursor: zoom-in;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  max-height: 580px;
  object-fit: contain;
  padding: clamp(18px, 4vw, 38px);
  pointer-events: none;
}

button.product-main-image {
  width: 100%;
  padding: 0;
  color: inherit;
  font: inherit;
}

.image-zoom-dialog {
  width: min(1180px, calc(100vw - 28px));
  height: min(820px, calc(100vh - 28px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #111820;
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.image-zoom-dialog::backdrop {
  background: rgba(9, 15, 24, .78);
}

.image-zoom-toolbar {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
}

.zoom-control,
.zoom-close {
  display: grid;
  min-width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  background: rgba(17, 24, 32, .82);
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.zoom-control:hover,
.zoom-close:hover {
  background: var(--orange);
}

#zoom-reset {
  min-width: 72px;
  font-size: 14px;
}

.image-zoom-stage {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: auto;
  overscroll-behavior: contain;
  background: #f6f6f0;
  cursor: default;
}

.image-zoom-stage.is-zoomed {
  cursor: grab;
}

.image-zoom-stage.is-dragging {
  cursor: grabbing;
}

.image-zoom-stage img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  padding: clamp(24px, 5vw, 60px);
  user-select: none;
  -webkit-user-drag: none;
}

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

.product-thumbs button {
  min-height: 90px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
}

.product-thumbs button.is-active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 116, 6, .16);
}

.product-thumbs img {
  width: 100%;
  height: 86px;
  object-fit: contain;
}

.product-info {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.back-link {
  justify-self: start;
  color: var(--orange);
  font-weight: 900;
}

.product-info h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .92;
  letter-spacing: 0;
}

.product-description-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.product-description-list li::marker {
  color: var(--orange);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 22px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(52px, 7vw, 86px);
}

.product-detail-panel {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-detail-panel h2,
.product-buy-section h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.product-buy-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: clamp(46px, 7vw, 82px) clamp(20px, 5vw, 72px);
  background: #efeee6;
}

.product-buy-section > div:first-child {
  max-width: 760px;
}

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

.buy-grid article {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px 22px;
  align-items: center;
  min-height: 210px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(81, 89, 96, .12);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(13, 24, 38, .06);
}

.dealer-logo {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--ink-soft);
  background: var(--sand);
  border: 1px dashed rgba(81, 89, 96, .34);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.buy-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.buy-copy h3 {
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1;
  letter-spacing: 0;
}

.buy-copy p {
  display: grid;
  gap: 12px;
  margin: 0;
}

.buy-copy a {
  color: var(--ink-soft);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.buy-link {
  grid-column: 1 / -1;
  justify-self: stretch;
  min-width: 0;
  min-height: 54px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(243, 116, 6, .22);
  white-space: nowrap;
}

.buy-link[aria-disabled="true"] {
  cursor: default;
}

.product-not-found {
  min-height: 60vh;
}

.spec-table {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.spec-table div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .language-switch {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .language-switch {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.is-open .main-nav {
    flex-direction: column;
    gap: 4px;
  }

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

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

  .two-column,
  .where-content,
  .partner-band,
  .newsletter-section,
  .contact-section,
  .product-hero,
  .product-detail-grid,
  .product-buy-section {
    grid-template-columns: 1fr;
  }

  .product-info {
    position: static;
  }

  .product-main-image {
    min-height: 420px;
  }

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

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

  .buy-grid article {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .buy-link {
    justify-self: stretch;
  }

  .dealer-list article {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .dealer-logo-wrap {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 74px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 74px;
    height: 64px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 54px 20px 90px;
  }

  .product-grid,
  .copy-grid,
  .contact-cards,
  .where-content,
  .brand-coordination {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .filters {
    justify-content: flex-start;
  }

  .input-row,
  .document-list article,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .document-list a {
    justify-self: start;
  }

  .dialog-layout img {
    min-height: auto;
  }

  .product-main-image {
    min-height: 320px;
  }

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

  .product-thumbs button {
    min-height: 76px;
  }

  .product-thumbs img {
    height: 66px;
  }

  .buy-grid {
    grid-template-columns: 1fr;
  }

  .buy-grid article {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .dealer-list article {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .dealer-logo-wrap {
    width: 112px;
    height: 86px;
  }

  .buy-grid .dealer-logo-wrap {
    width: 96px;
    height: 96px;
  }

  .dealer-button {
    grid-column: 1;
    justify-self: stretch;
  }

  .dealer-logo {
    width: 64px;
    height: 64px;
  }

  .store-list {
    grid-template-columns: 1fr;
  }

  .buy-link {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-footer {
    display: grid;
  }

  .dialog-copy {
    padding: 26px;
  }

  .cookie-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
  }
}
