:root {
  --bg: #f7f2e8;
  --paper: #fffdf9;
  --panel: rgba(255, 253, 249, 0.88);
  --ink: #1f2933;
  --muted: #5b6573;
  --line: rgba(31, 41, 51, 0.12);
  --brand: #0058a3;
  --brand-strong: #003b6f;
  --accent: #fbd914;
  --shadow: 0 18px 44px rgba(16, 31, 54, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(251, 217, 20, 0.18), transparent 28rem),
    linear-gradient(180deg, #fef7ea 0%, #f7f2e8 42%, #efe5d2 100%);
  font: 16px/1.6 "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

code {
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(0, 88, 163, 0.08);
  font-size: 0.92rem;
}

.shell {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(247, 242, 232, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header__inner,
.site-footer__inner,
.section-heading,
.detail-layout,
.three-up,
.faq-grid,
.manual-list,
.family-grid,
.product-grid,
.stat-strip {
  display: grid;
  gap: 1.25rem;
}

.site-header__inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1rem 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.site-brand:hover {
  text-decoration: none;
}

.site-brand__logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.18rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(0, 88, 163, 0.12);
}

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

.site-brand__name {
  font-size: 0.96rem;
  color: var(--ink);
}

.site-brand__tagline {
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
}

.site-main {
  padding-bottom: 4rem;
}

.hero {
  padding: 4.5rem 0 2rem;
}

.hero--home {
  padding-top: 5.5rem;
}

.hero--detail {
  padding-top: 4rem;
}

.hero__kicker,
.section-heading__eyebrow {
  margin: 0 0 0.65rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  letter-spacing: -0.03em;
}

.hero__copy {
  max-width: 52rem;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.hero__subcopy {
  margin-top: 1rem;
  color: var(--muted);
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  max-width: 46rem;
  padding: 0.9rem;
  border-radius: calc(var(--radius) + 8px);
  background: var(--panel);
  border: 1px solid rgba(0, 88, 163, 0.12);
  box-shadow: var(--shadow);
}

.search-form input,
.search-form button {
  min-height: 3.5rem;
  border: 0;
  border-radius: 18px;
  font: inherit;
}

.search-form input {
  padding: 0 1.05rem;
  background: #fff;
  color: var(--ink);
}

.search-form button,
.manual-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.3rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 88, 163, 0.24);
}

.search-form button:hover,
.manual-card__link:hover {
  text-decoration: none;
  filter: brightness(1.04);
}

.stat-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.stat-card,
.info-card,
.family-card,
.product-card,
.manual-card,
.product-info-card,
.sidebar-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  content-visibility: auto;
  contain-intrinsic-size: 320px;
}

.stat-card {
  padding: 1.3rem 1.4rem;
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1.1;
}

.stat-card span {
  color: var(--muted);
}

.section {
  padding: 1.2rem 0 0;
}

.section--latest {
  padding-top: 0.35rem;
}

.section--not-found {
  padding-top: 0.75rem;
}

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

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

.info-card,
.family-card,
.product-card,
.manual-card,
.product-info-card,
.sidebar-card,
.empty-state {
  padding: 1.35rem;
}

.info-card h2,
.product-card h3,
.manual-card h3,
.product-info-card h2,
.product-info-section h3,
.sidebar-card h2,
.empty-state h3 {
  margin-top: 0;
}

.section-heading {
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 1.15rem;
}

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

.section-copy {
  max-width: 44rem;
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.not-found-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.25rem;
}

.not-found-card {
  padding: 1.55rem;
}

.not-found-card h2 {
  max-width: 18ch;
}

.not-found-card--featured {
  background:
    linear-gradient(135deg, rgba(0, 88, 163, 0.08), rgba(255, 255, 255, 0.92)),
    var(--panel);
}

.not-found-diagram {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(0, 88, 163, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-strong);
  font-weight: 700;
}

.not-found-diagram strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  border-radius: 999px;
  background: rgba(251, 217, 20, 0.28);
  font-size: 1.3rem;
}

.not-found-diagram__arrow {
  color: var(--muted);
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.not-found-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 88, 163, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-strong);
  font-weight: 700;
}

.not-found-links a:hover {
  text-decoration: none;
  background: rgba(0, 88, 163, 0.08);
}

.not-found-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.not-found-list li + li {
  margin-top: 0.8rem;
}

.section-heading__link {
  align-self: center;
  font-weight: 700;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.family-card__media,
.product-card__media {
  display: block;
  overflow: hidden;
  margin: -1.35rem -1.35rem 0;
  border-radius: calc(var(--radius) - 4px) calc(var(--radius) - 4px) 1.1rem 1.1rem;
  background: linear-gradient(180deg, rgba(0, 88, 163, 0.08), rgba(255, 255, 255, 0.8));
}

.family-card__media img,
.product-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease;
}

.family-card:hover .family-card__media img,
.product-card:hover .product-card__media img {
  transform: scale(1.03);
}

.family-card h3,
.product-card h3,
.manual-card h3 {
  font-size: 1.2rem;
}

.family-card__eyebrow,
.product-card__eyebrow,
.manual-card__type,
.manual-card__meta,
.product-card__meta,
.family-card__meta {
  margin: 0;
  color: var(--muted);
}

.family-card__eyebrow,
.product-card__eyebrow,
.manual-card__type {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.family-card__facts,
.product-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.family-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list article {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-list h3 {
  margin-top: 0;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.meta-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 88, 163, 0.1);
  color: var(--brand-strong);
  font-weight: 700;
}

.detail-layout {
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  align-items: start;
}

.detail-main,
.detail-sidebar {
  display: grid;
  gap: 1.25rem;
}

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

.manual-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.manual-card__preview {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #f2f5f8;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.manual-card__preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.manual-card__badges,
.manual-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.manual-card__locale {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.1rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 88, 163, 0.08);
  color: var(--brand-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.manual-card__locale--strong {
  background: rgba(251, 217, 20, 0.24);
}

.manual-card__link {
  min-height: 3rem;
  border-radius: 16px;
}

.manual-card__secondary {
  color: var(--muted);
  font-weight: 700;
}

.product-info-card {
  counter-reset: product-info;
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 31, 54, 0.1);
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.product-info-card .section-heading {
  margin-bottom: 0;
}

.product-info-card__header {
  padding: 1.45rem 1.55rem 1.2rem;
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
  background: #fff;
}

.product-info-sections {
  display: grid;
  gap: 1.05rem;
  padding: 1.15rem;
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.product-info-section {
  counter-increment: product-info;
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem 1.2rem 1.25rem 4.2rem;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 31, 54, 0.08);
}

.product-info-section::before {
  content: counter(product-info, decimal-leading-zero);
  position: absolute;
  left: 1.05rem;
  top: 1.05rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 14px;
  background: #fff;
  color: var(--brand-strong);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0, 88, 163, 0.14);
  box-shadow: 0 8px 18px rgba(16, 31, 54, 0.08);
}

.product-info-section h3,
.product-info-group h4 {
  margin-bottom: 0;
}

.product-info-section p,
.product-info-group p {
  margin: 0;
  color: var(--ink);
}

.product-info-section > p {
  position: relative;
  padding-left: 1rem;
  color: #374151;
}

.product-info-section > p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 88, 163, 0.08);
}

.product-info-section > h3 {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-strong);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.product-info-group {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(31, 41, 51, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.product-info-group h4 {
  display: inline-flex;
  width: fit-content;
  min-height: 1.85rem;
  align-items: center;
  padding: 0.1rem 0.7rem;
  border-radius: 999px;
  background: rgba(251, 217, 20, 0.28);
  color: var(--brand-strong);
  font-size: 0.98rem;
}

.product-info-facts {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 0;
}

.product-info-facts div {
  display: grid;
  align-content: start;
  gap: 0.28rem;
  min-height: 5.1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: 0 8px 18px rgba(16, 31, 54, 0.05);
}

.product-info-facts dt {
  color: var(--brand-strong);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
}

.product-info-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.assembly-card {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
}

.assembly-summary {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(0, 88, 163, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.assembly-summary > :first-child,
.assembly-summary h2:first-child,
.assembly-summary h3:first-child,
.assembly-summary p:first-child {
  margin-top: 0;
}

.assembly-summary > :last-child,
.assembly-summary p:last-child,
.assembly-summary ul:last-child,
.assembly-summary ol:last-child,
.assembly-summary table:last-child {
  margin-bottom: 0;
}

.assembly-summary h2,
.assembly-summary h3,
.assembly-summary h4 {
  margin: 1.1rem 0 0.45rem;
  line-height: 1.15;
}

.assembly-summary p,
.assembly-summary ul,
.assembly-summary ol,
.assembly-summary blockquote,
.assembly-summary pre,
.assembly-summary table {
  margin: 0;
}

.assembly-summary ul,
.assembly-summary ol {
  padding-left: 1.2rem;
}

.assembly-summary table {
  width: 100%;
  border-collapse: collapse;
}

.assembly-summary th,
.assembly-summary td {
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  vertical-align: top;
}

.assembly-summary code,
.assembly-summary pre {
  background: rgba(0, 88, 163, 0.06);
}

.assembly-summary pre {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  overflow-x: auto;
}

.assembly-actions,
.assembly-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.assembly-notice {
  margin: 0;
}

.assembly-parts-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0, 88, 163, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.assembly-parts-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.assembly-parts-table th,
.assembly-parts-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  vertical-align: top;
}

.assembly-parts-table th {
  color: var(--brand);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assembly-parts-table tbody tr:last-child td {
  border-bottom: 0;
}

.assembly-parts-table__meta,
.assembly-parts-table__muted {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.assembly-viewer-shell {
  display: grid;
  gap: 1rem;
}

.assembly-viewer {
  width: 100%;
  height: min(78vh, 58rem);
  min-height: 38rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.assembly-viewer > div,
.assembly-viewer iframe,
.assembly-viewer canvas {
  width: 100% !important;
  height: 100% !important;
}

.assembly-fallback {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0, 88, 163, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.assembly-fallback--error {
  border-color: rgba(168, 35, 35, 0.18);
}

.assembly-fallback__preview {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f2f5f8;
}

.assembly-fallback__preview img {
  width: 100%;
  max-height: 28rem;
  object-fit: contain;
  background: #fff;
}

.assembly-fallback__copy {
  color: var(--muted);
}

.assembly-fallback__copy strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.1rem;
  border-radius: 16px;
  background: rgba(0, 88, 163, 0.08);
  color: var(--brand-strong);
  font-weight: 700;
}

.button-link:hover {
  text-decoration: none;
  background: rgba(0, 88, 163, 0.12);
}

.product-gallery,
.product-gallery__thumbs {
  display: grid;
  gap: 0.9rem;
}

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

.product-gallery__thumb {
  margin: 0;
}

.product-gallery__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.product-figure {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.fact-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.fact-list div {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fact-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.fact-list dd {
  margin: 0;
  font-weight: 700;
}

.sidebar-card__copy {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
}

.empty-state {
  text-align: center;
}

.site-footer {
  padding: 1.25rem 0 3rem;
}

.site-footer__inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--muted);
}

.site-footer__links {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.pagination__info {
  margin: 0;
  color: var(--muted);
}

.pagination__links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  min-height: 2.8rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 88, 163, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-strong);
  font-weight: 700;
}

.pagination__link:hover {
  text-decoration: none;
  background: rgba(0, 88, 163, 0.08);
}

.pagination__link--current {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  border-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 980px) {
  .three-up,
  .family-grid,
  .not-found-grid,
  .product-grid,
  .product-grid--latest,
  .faq-grid,
  .detail-layout,
  .manual-list,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .site-header__inner,
  .section-heading,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 4rem;
  }

  .product-info-card__header,
  .product-info-sections {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .product-info-section {
    padding: 4.1rem 1rem 1rem;
  }

  .product-info-section::before {
    left: 1rem;
    top: 1rem;
  }

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

  .search-form {
    grid-template-columns: 1fr;
  }

  .assembly-viewer,
  .assembly-viewer > div,
  .assembly-viewer iframe,
  .assembly-viewer canvas {
    height: 68vh !important;
    min-height: 30rem;
  }

  .site-brand {
    flex-wrap: wrap;
  }

  .site-brand__tagline {
    max-width: none;
  }
}
