:root {
  --graphite: #172027;
  --graphite-2: #24313a;
  --steel: #64717d;
  --line: #d9e0e6;
  --soft: #f3f6f8;
  --soft-2: #eef3f7;
  --white: #ffffff;
  --orange: #f47a20;
  --orange-2: #ffb15d;
  --blue: #1769aa;
  --blue-2: #0e4f85;
  --green: #1f8a5b;
  --shadow: 0 18px 46px rgba(20, 31, 39, 0.13);
  --shadow-strong: 0 24px 70px rgba(10, 21, 29, 0.2);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--graphite);
  background: #f6f8fa;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--orange);
  color: var(--graphite);
  padding: 8px 12px;
  z-index: 30;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.topbar {
  background: var(--graphite);
  color: #dbe3ea;
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
  flex-wrap: wrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 34px rgba(20,31,39,0.06);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr minmax(190px, 250px) auto;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--graphite);
}
.brand:hover { text-decoration: none; }
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--graphite), var(--blue));
  border-radius: 6px;
  font-weight: 800;
}
.brand strong { display: block; font-size: 17px; }
.brand small { display: block; color: var(--steel); font-size: 12px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.site-nav a { color: var(--graphite); font-weight: 650; }
.site-nav a:hover { color: var(--blue); text-decoration: none; }
.header-search input,
.filters input,
.filters select,
.selector-form input,
.selector-form select {
  width: 100%;
  border: 1px solid rgba(23, 32, 39, 0.12);
  border-radius: 8px;
  padding: 11px 13px;
  font: inherit;
  background: var(--white);
  color: var(--graphite);
  box-shadow: 0 1px 2px rgba(20, 31, 39, 0.02);
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}
.filters select,
.selector-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364717d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 38px;
  cursor: pointer;
}
.header-search input:hover,
.filters input:hover,
.filters select:hover,
.selector-form input:hover,
.selector-form select:hover {
  border-color: rgba(23, 32, 39, 0.24);
  background: #fafbfc;
}
.header-search input:focus,
.filters input:focus,
.filters select:focus,
.selector-form input:focus,
.selector-form select:focus {
  outline: 0;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 105, 170, 0.08), 0 2px 4px rgba(20, 31, 39, 0.04);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.header-email,
.header-phone { color: var(--graphite); font-weight: 750; }
.header-email { color: var(--steel); }
.menu-toggle { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #141414;
  font-weight: 750;
  text-align: center;
  box-shadow: 0 10px 26px rgba(244,122,32,0.22);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.btn:hover {
  text-decoration: none;
  filter: brightness(0.99);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(244,122,32,0.28);
}
.btn--secondary {
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(23,105,170,0.18);
}
.btn--ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.42);
  color: var(--white);
  box-shadow: none;
}
.btn--small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 14px;
}
.hero {
  position: relative;
  background:
    radial-gradient(circle at 76% 20%, rgba(23,105,170,0.34), transparent 34%),
    linear-gradient(110deg, rgba(15,24,31,0.99) 0%, rgba(23,32,39,0.94) 47%, rgba(23,32,39,0.62) 100%),
    linear-gradient(135deg, var(--graphite), var(--graphite-2));
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
  min-height: 660px;
  padding: 48px 0 54px;
}
.hero h1,
.subhero h1,
.product-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}
.lead {
  margin: 0 0 24px;
  font-size: 20px;
  color: inherit;
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-proof div {
  padding: 15px 16px;
  background: rgba(255,255,255,0.06);
}
.hero-proof strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}
.hero-proof span {
  display: block;
  margin-top: 6px;
  color: #cfd9e1;
  font-size: 13px;
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.trust-list li {
  border-left: 3px solid var(--orange);
  padding-left: 10px;
  color: #e7edf2;
  font-size: 14px;
}
.hero__visual {
  position: relative;
  min-height: 420px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  box-shadow: var(--shadow-strong);
}
.hero__visual img {
  border-radius: var(--radius);
  box-shadow: none;
  background: #edf1f4;
}
.visual-note {
  position: absolute;
  top: 28px;
  left: 28px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(23,32,39,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  color: var(--graphite);
  box-shadow: var(--shadow);
}
.visual-note span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.visual-note strong {
  display: block;
  margin-top: 4px;
  line-height: 1.2;
}
.spec-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(23,32,39,0.72);
  border: 1px solid rgba(255,255,255,0.18);
}
.spec-strip span {
  padding: 12px;
  font-size: 13px;
  color: #eef4f8;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 18px 0 0;
  color: var(--steel);
  font-size: 14px;
}
.section { padding: 70px 0; }
.section--soft { background: var(--soft-2); }
.section--dark {
  background: var(--graphite);
  color: var(--white);
}
.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}
.section-head h2,
.prose h2,
.info-panel h2,
.site-footer h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.14;
  letter-spacing: 0;
}
.section-head p,
.prose p { color: var(--steel); }
.section--dark p { color: #d8e0e6; }
.category-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.category-card,
.content-grid article,
.product-card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(20,31,39,0.05);
}
.category-card,
.content-grid article,
.info-panel {
  padding: 20px;
}
.category-card,
.content-grid article {
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.category-card:hover,
.content-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(23,105,170,0.28);
  box-shadow: 0 16px 40px rgba(20,31,39,0.1);
}
.category-card h3,
.content-grid h3,
.product-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.2;
}
.priority-card {
  border-top: 3px solid var(--orange);
}
.query-meta {
  margin: 0 0 8px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.category-card p,
.content-grid p,
.product-card p {
  color: var(--steel);
}
.text-link,
.text-button {
  color: var(--blue);
  font-weight: 750;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}
.filters {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
  border: none;
  border-radius: 16px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s ease;
}
.filters:hover {
  box-shadow: 0 20px 50px rgba(20, 31, 39, 0.06);
}
.filters__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--soft-2);
  padding-bottom: 14px;
  margin-bottom: 4px;
}
.filters .eyebrow { margin-bottom: 3px; }
.filters h2 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.filters .text-button {
  background: none;
  border: none;
  color: var(--steel);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.filters .text-button:hover {
  color: var(--orange);
  background: var(--soft);
}
.filter-hint {
  margin: -6px 0 6px;
  color: var(--steel);
  font-size: 12px;
  line-height: 1.4;
}
.filters label {
  display: grid;
  gap: 8px;
  color: var(--graphite-2);
  font-weight: 700;
  font-size: 13px;
  border-bottom: 1px solid #f6f8fa;
  padding-bottom: 12px;
}
.filters label:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.selector-form label {
  display: grid;
  gap: 6px;
  color: var(--graphite);
  font-weight: 650;
  font-size: 14px;
}
.filter-cta {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16222b, #234055);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(22, 34, 43, 0.12);
}
.filter-cta span {
  color: #d2dde5;
  font-size: 13px;
}
.filter-cta a {
  color: var(--orange-2);
  font-weight: 800;
}
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  color: var(--steel);
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(20,31,39,0.05);
}
.catalog-toolbar p { margin: 0; }
.catalog-count {
  color: var(--graphite);
  font-weight: 800;
}
.catalog-count span {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 32px;
  margin-right: 8px;
  border-radius: 6px;
  background: var(--graphite);
  color: var(--white);
}
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}
.active-filters[hidden] { display: none; }
.active-filters button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(23, 105, 170, 0.08);
  border-radius: 8px;
  padding: 6px 12px;
  background: rgba(23, 105, 170, 0.05);
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(23, 105, 170, 0.02);
}
.active-filters button:hover {
  background: rgba(244, 122, 32, 0.08);
  border-color: rgba(244, 122, 32, 0.2);
  color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244, 122, 32, 0.06);
}
.active-filters button span {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin-left: 2px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23,105,170,0.3);
  box-shadow: 0 20px 52px rgba(20,31,39,0.13);
}
.product-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(23,105,170,0.08), transparent),
    var(--soft);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}
.fav-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(20,31,39,0.1);
}
.fav-button.is-active {
  background: var(--orange);
  border-color: var(--orange);
}
.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 18px;
  flex: 1;
}
.product-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.product-code {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 800;
}
.type-pill,
.availability-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.type-pill {
  color: var(--blue-2);
  background: #eaf3fb;
}
.availability-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #113124;
  background: #dff5ea;
  box-shadow: 0 8px 20px rgba(20,31,39,0.1);
}
.availability-badge.is-order {
  color: #4c3212;
  background: #fff1da;
}
.spec-list {
  display: grid;
  gap: 7px;
  margin: 0;
}
.spec-list div {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 8px;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid #eef2f5;
}
.spec-list div:last-child { border-bottom: 0; }
.spec-list dt { color: var(--steel); }
.spec-list dd { margin: 0; font-weight: 650; }
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.price {
  color: var(--graphite);
  font-size: 20px;
  letter-spacing: 0;
}
.price--request {
  color: var(--blue-2);
}
.compare-check { font-size: 13px; color: var(--steel); }
.product-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.product-card__actions .btn { flex: 1 1 auto; }
.prose-grid,
.selection-grid,
.subhero__grid,
.product-hero__grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}
.prose {
  max-width: 860px;
}
.prose p { margin: 0 0 16px; }
.info-panel {
  box-shadow: 0 8px 24px rgba(20,31,39,0.06);
}
.info-panel h3 { margin-top: 0; }
.check-list,
.link-list,
.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.check-list li {
  padding-left: 20px;
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--white);
}
th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  background: var(--graphite);
  color: var(--white);
}
.selector-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
}
.selector-form .btn { grid-column: 1 / -1; }
.nameplate-box {
  display: grid;
  gap: 6px;
  max-width: 420px;
  margin-top: 24px;
  padding: 18px;
  border: 1px dashed rgba(255,255,255,0.36);
  border-radius: var(--radius);
}
.nameplate-box span { color: #d9e0e6; }
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px 18px;
}
summary {
  cursor: pointer;
  font-weight: 750;
}
details p {
  margin: 12px 0 0;
  color: var(--steel);
}
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--graphite), var(--blue));
  border-radius: var(--radius);
}
.cta-band h2,
.cta-band p { margin: 0; }
.subhero {
  padding: 54px 0 64px;
  background: var(--soft);
}
.subhero img,
.product-hero__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}
.product-hero {
  padding: 44px 0 62px;
  background: var(--soft);
}
.product-hero__grid {
  grid-template-columns: 0.9fr 1.1fr;
}
.spec-list--large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}
.spec-list--large div {
  grid-template-columns: 140px 1fr;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.link-cloud a {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  background: var(--white);
}
.site-footer {
  padding: 48px 0;
  background: var(--graphite);
  color: #dbe3ea;
}
.footer-grid { grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr; }
.site-footer a { color: #ffffff; }
.site-footer h2 { font-size: 20px; color: #ffffff; }
.brand--footer { color: #ffffff; margin-bottom: 12px; }
address { font-style: normal; color: #dbe3ea; }
.mobile-whatsapp {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 6px;
  background: #25d366;
  color: #102018;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.compare-panel {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 26;
  width: min(460px, calc(100% - 32px));
  max-height: 70vh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 16px;
}
.compare-panel table { min-width: 420px; }
.muted { color: var(--steel); }
.no-results {
  border: 1px dashed var(--line);
  padding: 20px;
  border-radius: var(--radius);
}
@media (max-width: 1080px) {
  .header__inner { grid-template-columns: auto auto; }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 6px;
    padding: 9px 12px;
  }
  .site-nav,
  .header-search,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
  }
  .site-header.is-open .site-nav,
  .site-header.is-open .header-search,
  .site-header.is-open .header-actions {
    display: flex;
    flex-wrap: wrap;
  }
  .site-header.is-open .header-search { display: block; }
  .hero__grid,
  .subhero__grid,
  .product-hero__grid,
  .prose-grid,
  .selection-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .category-grid,
  .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-actions { justify-content: flex-start; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 24px, 1180px); }
  .topbar { display: none; }
  .hero__grid { min-height: auto; padding: 38px 0; }
  .hero h1,
  .subhero h1,
  .product-hero h1 { font-size: 34px; }
  .lead { font-size: 17px; }
  .trust-list,
  .hero-proof,
  .spec-strip,
  .selector-form,
  .category-grid,
  .content-grid,
  .product-grid,
  .spec-list--large,
  .cta-band {
    grid-template-columns: 1fr;
  }
  .hero-proof div { padding: 13px 14px; }
  .visual-note {
    position: static;
    max-width: none;
    margin: 10px 0;
  }
  .spec-strip { position: static; margin-top: 10px; }
  .catalog-toolbar,
  .product-card__footer { flex-direction: column; align-items: flex-start; }
  .product-card__actions .btn { flex-basis: 100%; }
  .section { padding: 46px 0; }
  .mobile-whatsapp { display: flex; }
  body { padding-bottom: 64px; }
}