:root {
  --ink: #101820;
  --ink-soft: #26333d;
  --paper: #ffffff;
  --mist: #f3f6f8;
  --line: #dfe6eb;
  --muted: #667681;
  --teal: #045866;
  --teal-dark: #07333d;
  --orange: #e65a1a;
  --red: #cf1018;
  --blue: #1687ca;
  --yellow: #ffd83d;
  --shadow: 0 18px 48px rgba(16, 24, 32, 0.12);
  --radius: 8px;
  --font-body: "Segoe UI", "Inter", Arial, sans-serif;
  --font-display: "Segoe UI", "Inter", Arial, sans-serif;
  font-family: var(--font-body);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid rgba(22, 135, 202, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 280px auto minmax(260px, 480px) auto;
  gap: 18px;
  align-items: center;
  padding: 10px clamp(18px, 3vw, 46px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img { width: 250px; height: auto; }

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a,
.main-nav button {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 9px 10px;
  background: transparent;
  color: inherit;
  opacity: 0.9;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.main-nav a:hover,
.main-nav button:hover {
  border-color: rgba(240, 90, 26, 0.3);
  background: #fff3ed;
  color: #b43d0a;
  opacity: 1;
}

.header-search,
.catalog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fafc;
  color: var(--ink);
}

.header-search input,
.catalog-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
}

.header-search input::placeholder,
.catalog-search input::placeholder { color: #8d9ca7; }

.hero {
  min-height: 560px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 12, 16, 0.96) 0%, rgba(6, 12, 16, 0.86) 38%, rgba(6, 12, 16, 0.28) 72%, rgba(6, 12, 16, 0.1) 100%),
    url("assets/hero-workshop-premium.png") center right / cover no-repeat;
  border-bottom: 5px solid var(--orange);
}

.hero-content {
  width: min(780px, 100%);
  min-width: 0;
  padding: 44px clamp(18px, 4vw, 58px);
  color: #fff;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.02;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1::after {
  content: "";
  display: block;
  width: 118px;
  height: 5px;
  margin-top: 20px;
  background: var(--orange);
}

.hero p {
  max-width: 660px;
  margin: 20px 0 0;
  color: #e7eef3;
  font-size: 18px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
}

.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 26px rgba(230, 90, 26, 0.24);
}

.button-primary:hover { background: #ca4811; }
.button-outline { background: #fff; border-color: var(--line); }
.button-reset { width: 100%; background: var(--ink); color: #fff; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 24px 0 0;
}

.hero-proof div {
  min-height: 82px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
}

.hero-proof dt {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 7px 0 0;
  color: #dce8ee;
  font-size: 14px;
  line-height: 1.28;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip article {
  min-height: 112px;
  padding: 24px clamp(18px, 4vw, 54px);
  background: #fff;
}

.service-strip strong,
.service-strip span { display: block; }
.service-strip strong {
  color: var(--teal-dark);
  font-size: 19px;
  text-transform: uppercase;
}
.service-strip span { margin-top: 7px; color: var(--muted); line-height: 1.38; }

.catalog-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  padding: 32px clamp(18px, 3vw, 46px) 42px;
}

.filters {
  position: sticky;
  top: 86px;
  align-self: start;
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-gutter: stable;
}

.filters-title,
.filter-group,
.catalog-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(16,24,32,0.04);
}

.filters-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
}
.filters-title span,
.catalog-toolbar label span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.filters-title strong {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.catalog-search {
  color: var(--ink);
  background: #fff;
}

.catalog-search input::placeholder { color: #74818b; }
.filter-group { overflow: hidden; }

.filter-heading {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.filter-options {
  display: grid;
  gap: 2px;
  padding: 10px;
}

.filter-option {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #fff;
  color: var(--ink-soft);
  text-align: left;
}

.filter-option strong { color: var(--muted); font-size: 12px; }
.filter-option.active {
  border-color: rgba(230, 90, 26, 0.45);
  background: #fff3ed;
  color: #9b2d04;
}

.filter-more {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafb;
  color: var(--teal-dark);
  font-weight: 900;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.catalog-toolbar h2,
.detail-copy h1,
.section-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
}

.catalog-toolbar p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(230, 90, 26, 0.34);
  border-radius: 999px;
  background: #fff7f2;
  color: #8d2e09;
  font-size: 13px;
  font-weight: 800;
}

.active-chip strong {
  color: var(--orange);
  font-size: 17px;
  line-height: 1;
}

.noscript-note {
  display: block;
  max-width: 640px;
  margin-top: 12px;
  padding: 10px 12px;
  border-left: 4px solid var(--orange);
  background: #fff7f2;
  color: #7a350e;
  font-weight: 800;
  line-height: 1.35;
}

select {
  min-height: 42px;
  min-width: 180px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card-link {
  display: grid;
  grid-template-rows: 205px auto;
  min-height: 100%;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: #cdd6dc;
  box-shadow: var(--shadow);
}

.product-card:focus-within {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.product-card-link:focus-visible {
  outline: 3px solid rgba(22, 135, 202, 0.9);
  outline-offset: -3px;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 16px;
  background: linear-gradient(180deg, #fff, #f7f9fa);
}

.product-media span {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 8px;
  border-radius: 5px;
  background: var(--yellow);
  color: #211a00;
  font-size: 12px;
  font-weight: 900;
}

.product-media img {
  max-width: 92%;
  max-height: 175px;
  object-fit: contain;
}

.product-info {
  display: grid;
  gap: 8px;
  padding: 15px;
}

.product-card-link:hover h3 {
  color: var(--teal);
}

.product-info p {
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 43px;
  margin: 0;
  font-size: 16px;
  line-height: 1.32;
}

.product-info strong {
  font-size: 23px;
  color: var(--ink);
}

.product-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 24px;
}

.product-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(7, 93, 131, 0.16);
  border-radius: 999px;
  background: #eef7fb;
  color: var(--brand-blue-strong);
  font-size: 11px;
  font-weight: 900;
}

.product-info small { color: var(--muted); }

.product-application {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cart-add-button,
.cart-button,
.icon-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.cart-add-button {
  min-height: 38px;
}

.cart-add-button:hover,
.cart-add-button.secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.cart-add-button.secondary {
  background: #f8fafb;
  color: var(--ink-soft);
}

.cart-button {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.cart-button strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
}

.cart-overlay,
.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(16, 24, 32, 0.48);
}

.cart-drawer,
.contact-modal {
  position: fixed;
  z-index: 80;
  background: #fff;
  box-shadow: 0 24px 80px rgba(16, 24, 32, 0.28);
}

.cart-drawer {
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  height: 100vh;
  transform: translateX(102%);
  transition: transform 180ms ease;
}

.cart-open .cart-drawer { transform: translateX(0); }

.cart-drawer-error-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(2px);
}

.cart-drawer-choice-layer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 24, 32, 0.54);
  backdrop-filter: blur(2px);
}

.cart-confirm-layer {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 24, 32, 0.56);
  backdrop-filter: blur(2px);
}

.cart-error-modal {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 60px rgba(16, 24, 32, 0.24);
}

.cart-error-modal h2 {
  margin: 0;
  font-size: 20px;
}

.cart-error-modal p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.cart-error-modal .button {
  width: 100%;
}

.cart-confirm-modal {
  display: grid;
  gap: 10px;
  width: min(380px, 100%);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 60px rgba(16, 24, 32, 0.26);
}

.cart-confirm-modal h2 {
  margin: 0;
  font-size: 22px;
}

.cart-confirm-modal p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.4;
}

.cart-confirm-modal strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.cart-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.cart-confirm-actions .button {
  width: 100%;
}

.cart-shipping-modal {
  display: grid;
  gap: 14px;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  overflow-x: hidden;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 60px rgba(16, 24, 32, 0.28);
}

.cart-shipping-modal header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-shipping-modal header span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-shipping-modal h2 {
  margin: 2px 0 0;
  font-size: 20px;
}

.cart-shipping-modal-options {
  display: grid;
  gap: 10px;
}

.cart-shipping-modal-postal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid #c9d7e2;
  border-radius: var(--radius);
  background: #f6fafc;
}

.cart-shipping-modal-postal .button {
  min-width: 118px;
  margin: 0;
}

.cart-shipping-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.cart-shipping-choice:has(input:checked) {
  border-color: var(--blue);
  background: #f2f8fc;
  box-shadow: inset 3px 0 0 var(--blue);
}

.cart-shipping-choice input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.cart-shipping-choice span {
  display: grid;
  gap: 3px;
}

.cart-shipping-choice strong {
  font-size: 15px;
  overflow-wrap: anywhere;
}

.cart-shipping-choice em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.cart-shipping-choice b {
  grid-column: 2;
  color: var(--orange);
  font-size: 20px;
  line-height: 1.1;
}

.cart-drawer-header,
.cart-drawer-footer,
.contact-modal header {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header,
.contact-modal header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.cart-drawer-header span,
.contact-modal header span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-drawer-header strong,
.contact-modal h2 {
  margin: 4px 0 0;
  font-size: 24px;
}

.icon-button {
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
}

.cart-drawer-body {
  overflow: auto;
  padding: 14px;
}

.cart-empty {
  display: grid;
  gap: 8px;
  padding: 8px 0;
  line-height: 1.45;
}

.cart-empty strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.cart-empty span {
  display: block;
  color: var(--muted);
}

.cart-line,
.checkout-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img,
.checkout-line img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-line-title {
  display: block;
  font-weight: 900;
  line-height: 1.28;
}

.cart-line span,
.checkout-line span,
.form-note,
.form-status {
  color: var(--muted);
}

.cart-line-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.cart-line-controls button,
.cart-line-controls input {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.cart-line-controls input {
  width: 58px;
  padding: 0 8px;
}

.cart-line-controls .cart-remove-button {
  display: inline-grid;
  width: 34px;
  min-width: 34px;
  padding: 0;
  place-items: center;
  color: var(--muted);
}

.cart-line-controls .cart-remove-button:hover {
  border-color: rgba(240, 90, 26, 0.45);
  color: var(--brand-orange);
}

.cart-remove-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.cart-total,
.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}

.cart-grand-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.cart-total strong,
.checkout-total strong {
  color: var(--ink-soft);
  font-size: 20px;
  font-weight: 850;
}

.cart-grand-total span,
.checkout-grand-total span {
  color: var(--ink);
  font-weight: 800;
}

.cart-grand-total strong,
.checkout-grand-total strong {
  color: var(--orange);
  font-size: 32px;
  font-weight: 900;
}

.cart-shipping-pending strong {
  color: var(--muted);
  font-size: 17px;
  font-weight: 900;
}

.checkout-grand-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.cart-drawer-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-drawer.is-empty .cart-drawer-footer {
  display: none;
}

.cart-drawer-footer .button {
  width: 100%;
  margin-bottom: 12px;
}

.cart-shipping-card {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #c9d7e2;
  border-radius: var(--radius);
  background: #f6fafc;
}

.cart-shipping-field {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 900;
}

.cart-shipping-field span {
  font-size: 15px;
}

.cart-shipping-field input {
  min-height: 46px;
  border: 1px solid #b9c9d4;
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 16px;
}

.cart-quote-button {
  min-height: 46px;
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}

.cart-quote-button:hover {
  background: #093b5c;
}

.cart-quote-button:disabled {
  border-color: #c5d0d8;
  background: #d7e0e6;
  color: #60707d;
  cursor: not-allowed;
}

.cart-shipping-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.cart-shipping-note.is-active {
  color: var(--ink-soft);
}

.cart-shipping-summary {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding: 12px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.cart-shipping-summary span {
  display: grid;
  gap: 2px;
}

.cart-shipping-summary strong {
  font-size: 15px;
}

.cart-shipping-summary small {
  color: var(--muted);
  font-size: 13px;
}

.cart-shipping-summary b {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

@media (max-width: 420px) {
  .cart-drawer-choice-layer {
    place-items: end stretch;
    padding: 12px;
  }

  .cart-confirm-layer {
    place-items: end stretch;
    padding: 12px;
  }

  .cart-confirm-actions {
    grid-template-columns: 1fr;
  }

  .cart-shipping-modal {
    width: 100%;
    max-height: calc(100vh - 24px);
  }

  .cart-shipping-modal-postal {
    grid-template-columns: 1fr;
  }

  .cart-shipping-modal-postal .button {
    width: 100%;
  }
}

.contact-modal {
  top: 50%;
  left: 50%;
  width: min(560px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  transform: translate(-50%, -50%) scale(.98);
  opacity: 0;
  pointer-events: none;
  border-radius: var(--radius);
  transition: opacity 160ms ease, transform 160ms ease;
}

.contact-open .contact-modal {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
}

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

.checkout-page {
  padding: 32px clamp(18px, 3vw, 46px) 56px;
}

.checkout-hero {
  max-width: 920px;
  margin-bottom: 24px;
}

.checkout-hero span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-hero h1 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  text-transform: uppercase;
}

.checkout-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 18px;
}

.checkout-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.info-page {
  padding: 42px clamp(18px, 3vw, 46px) 56px;
}

.info-hero {
  max-width: 900px;
  margin-bottom: 28px;
}

.info-hero span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.info-hero h1 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  text-transform: uppercase;
}

.info-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

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

.info-steps article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-steps strong {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 8px;
  border-radius: var(--radius);
  background: var(--teal-dark);
  color: #fff;
}

.info-steps h2 {
  margin: 18px 0 0;
  font-size: 22px;
}

.info-steps p {
  color: var(--muted);
  line-height: 1.45;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(360px, 1.15fr);
  gap: 18px;
  align-items: start;
}

.info-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-panel h2,
.faq-list h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.public-profile-panel[hidden] {
  display: none;
}

.public-profile-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.business-contact-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.business-contact-list li {
  display: grid;
  gap: 3px;
  color: var(--ink-soft);
}

.business-contact-list li > span:first-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.business-contact-list a {
  color: var(--teal);
  font-weight: 900;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.45;
}

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

.faq-list article {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.5;
}

.checkout-customer {
  grid-column: 1 / -1;
}

.checkout-summary-panel {
  align-self: start;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.checkout-steps button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 900;
}

.checkout-steps button span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: #edf2f5;
  color: var(--ink);
  font-size: 13px;
}

.checkout-steps button.is-active {
  border-color: rgba(240, 90, 26, 0.55);
  color: var(--orange);
  background: #fff8f4;
}

.checkout-step-panel {
  display: grid;
  gap: 16px;
}

.check-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.check-row input {
  width: auto;
}

.segmented-control {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafb;
}

.segmented-control button {
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  padding: 10px 14px;
  background: transparent;
  font-weight: 900;
  color: var(--ink-soft);
}

.segmented-control button.is-active {
  background: #fff;
  color: var(--orange);
  box-shadow: var(--shadow-soft);
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.review-grid section {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafb;
}

.review-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.review-grid p {
  margin: 4px 0;
  color: var(--ink-soft);
}

.checkout-instructions ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.payment-data {
  display: grid;
  gap: 8px;
}

.payment-data div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafb;
}

.payment-data dt {
  color: var(--muted);
  font-weight: 900;
}

.payment-data dd {
  margin: 0;
  font-weight: 900;
}

.checkout-shipping-box {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafb;
}

.shipping-options {
  display: grid;
  gap: 8px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.shipping-option span {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.shipping-option small {
  color: var(--orange);
  font-size: 16px;
  font-weight: 900;
}

.mercadopago-wallet:not(:empty) {
  margin-top: 14px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px dashed #b9c3ca;
  border-radius: var(--radius);
  background: #fff;
}

.empty-state strong,
.empty-state span { display: block; }
.empty-state span { margin-top: 6px; color: var(--muted); }
.empty-state .button { margin-top: 18px; }

.product-page {
  padding: 28px clamp(18px, 3vw, 46px) 56px;
  background: #fff;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.product-breadcrumbs span::before,
.product-breadcrumbs a + a::before {
  content: "/";
  margin-right: 8px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
}

.detail-main-image,
.detail-thumbs button,
.detail-thumbs a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafb;
}

.detail-main-image {
  display: grid;
  min-height: 470px;
  place-items: center;
  padding: 28px;
}

.detail-main-image img {
  max-height: 420px;
  object-fit: contain;
}

.detail-thumbs {
  order: -1;
  display: grid;
  align-content: start;
  gap: 10px;
}

.detail-thumbs button,
.detail-thumbs a {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  padding: 6px;
}

.detail-thumbs .active,
.detail-thumbs button[aria-current="true"] {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}
.detail-thumbs img { max-height: 64px; object-fit: contain; }

.detail-brand {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-copy h1 {
  max-width: 780px;
  font-size: clamp(32px, 4vw, 50px);
}

.detail-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: 16px;
}

.detail-price strong {
  color: var(--orange);
  font-size: 38px;
}

.detail-price s { color: var(--muted); }

.detail-summary,
.detail-action-note,
.detail-note {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.detail-note {
  padding: 13px 15px;
  background: #eef7fb;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px;
}

.detail-action-note {
  margin: 10px 0 18px;
  font-size: 14px;
}

.compatibility-panel {
  max-width: 760px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid #cfe1ea;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: #f2f8fb;
}

.compatibility-panel h2 {
  margin: 0;
  font-size: 19px;
  text-transform: uppercase;
}

.compatibility-panel p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.48;
}

.compatibility-panel ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.42;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 22px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-list div {
  min-height: 72px;
  padding: 13px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.detail-actions {
  display: grid;
  grid-template-columns: minmax(240px, .95fr) minmax(220px, .75fr);
  gap: 10px;
  margin-top: 18px;
  max-width: 700px;
}

.detail-actions .button {
  min-height: 54px;
  font-size: 16px;
}

.related-products {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
}

.section-title h2 { font-size: 24px; }
.section-title span { color: var(--muted); }

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

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

.related-grid img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #f8fafb;
}

.related-grid strong {
  min-height: 38px;
  font-size: 14px;
  line-height: 1.3;
}

.related-grid span {
  color: var(--orange);
  font-weight: 900;
}

.related-meta {
  min-height: 0;
  color: var(--brand-blue) !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.related-price {
  color: var(--orange) !important;
  font-weight: 900;
}

.related-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--ink) !important;
}

.related-reasons em {
  padding: 4px 7px;
  border-radius: 999px;
  background: #eef7f8;
  color: var(--teal);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(260px, .8fr);
  gap: 24px;
  align-items: start;
  padding: 28px clamp(18px, 3vw, 46px);
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--ink);
  color: #dce8ee;
}

.site-footer strong {
  display: block;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}

.site-footer span,
.site-footer p {
  color: #aebdc6;
  line-height: 1.45;
}

.site-footer span {
  display: block;
  margin-top: 6px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.site-footer a,
.site-footer button {
  min-height: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #dce8ee;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(220, 232, 238, 0.28);
  text-underline-offset: 4px;
}

.site-footer button:hover,
.site-footer a:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.site-footer p {
  margin: 0;
}

.footer-business[hidden] {
  display: none;
}

.footer-business {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-business strong {
  font-size: 14px;
}

.footer-business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-business-list a,
.footer-business-list span {
  margin: 0;
  color: #dce8ee;
  font-weight: 800;
}

.not-found-panel {
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: 720px;
}

.not-found-panel h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.not-found-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

@media (max-width: 1319px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .brand img { width: 230px; }
  .main-nav { order: 3; }
  .catalog-shell,
  .product-detail { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 10px;
    padding: 7px 14px 8px;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .brand img { width: clamp(150px, 46vw, 196px); }
  .cart-button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 36px;
    padding: 0 12px;
  }
  .cart-button strong {
    min-width: 22px;
    height: 22px;
  }
  .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 38px;
    padding: 0 12px;
  }
  .main-nav {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }
  .main-nav a,
  .main-nav button {
    min-height: 30px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    font-size: 10px;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
  }
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(6, 12, 16, 0.9) 0%, rgba(6, 12, 16, 0.82) 48%, rgba(6, 12, 16, 0.72) 100%),
      url("assets/hero-workshop-premium.png") 58% center / cover no-repeat;
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 28px 16px 24px;
  }
  .hero h1 {
    max-width: 350px;
    font-size: clamp(29px, 8.4vw, 34px);
    line-height: 1.08;
    font-weight: 820;
  }
  .hero h1::after {
    width: 84px;
    height: 4px;
    margin-top: 14px;
  }
  .hero p {
    max-width: 352px;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.42;
  }
  .hero-actions { margin-top: 18px; }
  .button {
    min-height: 42px;
    padding: 0 16px;
  }
  .service-strip,
  .product-grid,
  .related-grid,
  .info-steps,
  .info-layout,
  .faq-list,
  .spec-list { grid-template-columns: 1fr; }
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 18px;
  }
  .hero-proof div {
    min-width: 0;
    min-height: 66px;
    padding: 9px;
  }
  .hero-proof dt { font-size: 10px; }
  .hero-proof dd { font-size: 12px; line-height: 1.2; }
  .catalog-shell,
  .product-page { padding-left: 16px; padding-right: 16px; }
  .product-breadcrumbs { display: none; }
  .catalog-toolbar,
  .section-title { align-items: stretch; flex-direction: column; }
  .product-card-link { grid-template-rows: 180px auto; }
  .product-detail { gap: 12px; }
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-thumbs {
    order: 1;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  .detail-thumbs button,
  .detail-thumbs a { width: auto; height: 46px; }
  .detail-thumbs img { max-height: 36px; }
  .detail-main-image {
    min-height: 168px;
    padding: 10px;
  }
  .detail-main-image img { max-height: 150px; }
  .detail-brand {
    margin-bottom: 4px;
    font-size: 11px;
  }
  .detail-copy h1 {
    font-size: clamp(23px, 6.3vw, 29px);
    line-height: 1.06;
  }
  .detail-price { margin-top: 8px; }
  .detail-price strong { font-size: 29px; }
  .detail-summary,
  .detail-action-note,
  .detail-note {
    font-size: 16px;
    line-height: 1.45;
  }
  .detail-summary { margin: 12px 0 0; }
  .detail-actions { margin-top: 10px; }
  .detail-actions { grid-template-columns: 1fr; }
  .detail-actions .button {
    width: 100%;
    min-height: 48px;
  }
  .detail-decision-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }
  .detail-decision-bar div {
    padding: 10px 11px;
  }
  .site-footer { grid-template-columns: 1fr; }
  .checkout-layout,
  .form-grid { grid-template-columns: 1fr; }
}

/* 2026 product-first redesign around the approved raster logo. */
:root {
  --paper-warm: #fbfcfd;
  --panel: #ffffff;
  --panel-soft: #f6f9fb;
  --steel: #e5edf2;
  --brand-blue: #075d83;
  --brand-blue-strong: #064b70;
  --brand-orange: #f05a1a;
  --brand-ink: #101820;
  --brand-navy: #15212b;
}

body {
  background: var(--paper-warm);
}

.site-header {
  grid-template-columns: minmax(370px, 430px) minmax(300px, auto) minmax(320px, 460px) 50px;
  gap: clamp(14px, 2vw, 24px);
  min-height: 94px;
  padding: 12px clamp(18px, 3vw, 46px);
  background: var(--paper-warm);
  color: var(--brand-ink);
  border-bottom: 1px solid rgba(7, 93, 131, 0.14);
  border-top: 4px solid var(--brand-orange);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.05);
  backdrop-filter: none;
  transition: grid-template-columns 320ms ease, min-height 320ms ease, padding 320ms ease, box-shadow 320ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 2px 0;
  overflow: hidden;
  isolation: isolate;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  position: relative;
  width: min(390px, 100%);
  height: 82px;
  overflow: hidden;
  transition: width 320ms ease, height 320ms ease;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/logo-encendido-yrigoyen-isotipo.png") left center / contain no-repeat;
  opacity: 0;
  transform: scale(0.92);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 240ms ease;
  pointer-events: none;
}

.brand-mark img,
.brand img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 390px;
  max-width: none;
  height: 82px;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  transform-origin: left center;
  transition: opacity 120ms ease, transform 220ms ease;
}

.brand-wordmark {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: var(--brand-blue-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-6px);
  transition: max-width 0ms linear 120ms, opacity 160ms ease, transform 240ms ease;
  white-space: normal;
}

.header-compact .site-header {
  grid-template-columns: minmax(204px, 250px) 0fr minmax(320px, 1fr) 50px;
  min-height: 62px;
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.1);
}

.header-compact .brand-mark {
  width: 50px;
  height: 44px;
}

.header-compact .brand-mark img {
  opacity: 0;
  transform: scale(0.84);
}

.header-compact .brand-mark::after {
  opacity: 1;
  transform: scale(1);
}

.header-compact .brand-wordmark {
  max-width: 160px;
  opacity: 1;
  transform: translateX(0);
  transition: max-width 0ms linear 120ms, opacity 160ms ease 150ms, transform 240ms ease 120ms;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .brand-mark,
  .brand-mark img,
  .brand img,
  .brand-wordmark,
  .main-nav {
    transition: none;
  }
}

.main-nav {
  grid-column: auto;
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  order: 0;
  padding-top: 0;
  color: var(--brand-blue-strong);
  font-size: 12px;
  letter-spacing: 0.02em;
  transform-origin: center;
  transition: opacity 260ms ease, transform 300ms ease, visibility 260ms ease;
  overflow: hidden;
  white-space: nowrap;
}

.main-nav a,
.main-nav button {
  --nav-icon: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-height: 38px;
  padding: 1px 14px 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--brand-orange);
  box-shadow: 0 7px 16px rgba(240, 90, 26, 0.18);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  opacity: 1;
}

.main-nav a:nth-child(1) { --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1'/%3E%3Crect x='14' y='4' width='6' height='6' rx='1'/%3E%3Crect x='4' y='14' width='6' height='6' rx='1'/%3E%3Crect x='14' y='14' width='6' height='6' rx='1'/%3E%3C/g%3E%3C/svg%3E"); }
.main-nav a:nth-child(2) { --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 6h13M8 12h13M8 18h13'/%3E%3Cpath d='m3 6 .8.8L6 4.5M3 12l.8.8L6 10.5M3 18l.8.8L6 16.5'/%3E%3C/g%3E%3C/svg%3E"); }
.main-nav a:nth-child(3) { --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h11v10H3zM14 10h4l3 3v4h-7z'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/g%3E%3C/svg%3E"); }
.main-nav a:nth-child(4) { --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v11H7l-3 3z'/%3E%3Cpath d='M8 9h8M8 13h5'/%3E%3C/g%3E%3C/svg%3E"); }
.main-nav a:nth-child(5) { --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.5 9a2.7 2.7 0 0 1 5 1.4c0 2.1-2.5 2.2-2.5 4.1M12 18h.01'/%3E%3C/g%3E%3C/svg%3E"); }

.main-nav a:hover,
.main-nav button:hover {
  background: #d94f14;
  color: #ffffff;
  box-shadow: 0 9px 18px rgba(240, 90, 26, 0.24);
  opacity: 1;
}

.header-compact .main-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px) scale(0.98);
  visibility: hidden;
}

.header-search {
  min-height: 48px;
  border-color: rgba(7, 93, 131, 0.18);
  background: #f7fafc;
  color: var(--brand-ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transition: min-height 320ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.header-compact .header-search {
  min-height: 50px;
  border-color: rgba(7, 93, 131, 0.28);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.055);
}

.header-search input::placeholder {
  color: #75858f;
}

.cart-button {
  position: relative;
  width: 50px;
  min-width: 50px;
  min-height: 50px;
  aspect-ratio: 1;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 999px;
  background: #f7fafc;
  border-color: rgba(7, 93, 131, 0.26);
  color: var(--brand-blue-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.cart-button:hover {
  border-color: rgba(7, 93, 131, 0.45);
  background: #ffffff;
  color: var(--brand-blue);
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.08);
}

.cart-button svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.cart-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.cart-button strong {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 7px;
  border: 2px solid var(--paper-warm);
  border-radius: 999px;
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(7, 93, 131, 0.22);
}

.cart-button strong[hidden] {
  display: none;
}

.commerce-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 24px clamp(18px, 3vw, 46px) 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 55%, rgba(241,247,250,0.82) 100%),
    radial-gradient(circle at 90% 12%, rgba(240,90,26,0.14), transparent 32%),
    linear-gradient(135deg, rgba(7,93,131,0.08), transparent 42%);
  border-bottom: 1px solid var(--steel);
}

.commerce-intro h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(30px, 3.9vw, 52px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.commerce-intro p {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.service-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
}

.service-strip article {
  min-height: 96px;
  border-right: 1px solid var(--steel);
  background: #fff;
}

.service-strip article:last-child {
  border-right: 0;
}

.catalog-spotlights {
  padding: 12px clamp(18px, 3vw, 46px);
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
  border-bottom: 1px solid var(--steel);
}

.catalog-spotlights-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 24px;
  align-items: end;
  margin-bottom: 10px;
}

.catalog-spotlights-head span {
  display: block;
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-spotlights-head h2 {
  margin: 4px 0 0;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.02;
  text-transform: uppercase;
}

.catalog-spotlights-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.spotlight-card {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 13px 14px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.045);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.spotlight-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 90, 26, 0.38);
  background: #fff;
}

.spotlight-card img {
  display: none;
}

.spotlight-card span {
  color: var(--brand-orange);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spotlight-card strong {
  color: var(--brand-ink);
  font-size: 16px;
  line-height: 1.12;
}

.spotlight-card small {
  grid-area: copy;
  display: none;
}

.spotlight-card b {
  display: none;
}

.catalog-shell {
  grid-template-columns: 300px minmax(0, 1fr);
  padding-top: 18px;
}

.catalog-mobile-tools,
.filters-mobile-head,
.filter-backdrop {
  display: none;
}

.filters-title,
.filter-group,
.catalog-search,
.product-card,
.checkout-panel,
.info-panel,
.faq-list article,
.info-steps article {
  border-color: var(--steel);
  box-shadow: 0 8px 22px rgba(16, 24, 32, 0.05);
}

.filter-heading {
  background: var(--brand-blue-strong);
}

.filter-option.active {
  border-color: rgba(240, 90, 26, 0.48);
  background: #fff2eb;
  color: #953606;
}

.catalog-toolbar {
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: #fff;
}

.catalog-toolbar h2 {
  font-size: clamp(26px, 2.4vw, 34px);
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 14px;
}

.product-card {
  border-radius: 10px;
}

.product-card-link {
  grid-template-rows: 128px auto;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 93, 131, 0.28);
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.12);
}

.product-media {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #edf2f5;
}

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

.product-info {
  gap: 5px;
  padding: 10px 12px 12px;
}

.product-info p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--brand-blue-strong);
  font-size: 11px;
  line-height: 1.18;
  letter-spacing: 0.02em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-info h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 0;
  color: var(--brand-ink);
  font-size: 15px;
  line-height: 1.18;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-info strong {
  color: var(--brand-ink);
  font-size: 21px;
  letter-spacing: 0;
}

.product-info small {
  line-height: 1.35;
  font-size: 13px;
}

.product-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
  color: #526471;
  font-size: 11px;
  font-weight: 800;
}

.product-card-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border: 1px solid #d8e4ea;
  border-radius: 999px;
  background: #fff;
}

.product-page {
  padding: 30px clamp(18px, 3vw, 46px) 48px;
}

.product-breadcrumbs {
  margin-bottom: 18px;
}

.product-detail {
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  padding: 24px;
  border: 1px solid var(--steel);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(16, 24, 32, 0.07);
}

.detail-gallery {
  position: sticky;
  top: 126px;
}

.detail-main-image {
  border-color: var(--steel);
  background: #fff;
}

.detail-copy h1 {
  max-width: 780px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.06;
  text-transform: none;
}

.detail-brand {
  color: var(--brand-orange);
}

.detail-price strong {
  color: var(--brand-orange);
  font-size: clamp(34px, 4vw, 52px);
}

.detail-buy-box {
  max-width: 720px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(7, 93, 131, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
}

.detail-buy-box .detail-price {
  margin-top: 0;
}

.detail-buy-box .detail-actions {
  margin-top: 14px;
}

.detail-decision-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 16px 0 0;
}

.detail-decision-bar div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(7, 93, 131, 0.16);
  border-radius: var(--radius);
  background: #f5fafc;
}

.detail-decision-bar span,
.detail-decision-bar strong {
  display: block;
}

.detail-decision-bar span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-decision-bar strong {
  margin-top: 5px;
  color: var(--brand-ink);
  font-size: 15px;
  line-height: 1.25;
}

.detail-summary {
  max-width: 720px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.55;
}

.detail-actions {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(210px, 0.72fr);
  gap: 12px;
  max-width: 680px;
}

.detail-actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  font-size: 17px;
}

.detail-actions .button svg {
  flex: 0 0 auto;
}

.detail-actions .button-primary {
  background: var(--brand-orange);
}

.detail-purchase-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.detail-purchase-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 40px;
  padding: 8px 9px;
  border: 1px solid rgba(7, 93, 131, 0.15);
  border-radius: var(--radius);
  background: #fff;
}

.detail-purchase-notes svg {
  flex: 0 0 auto;
  color: var(--brand-orange);
}

.detail-purchase-notes em {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-action-note {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
}

.compatibility-panel {
  max-width: 760px;
  margin-top: 24px;
  border-color: rgba(7, 93, 131, 0.18);
  background: #f2f8fb;
}

.spec-list {
  margin-top: 18px;
  border-color: var(--steel);
}

.related-products {
  margin-top: 28px;
}

.related-card {
  background: #fff;
}

.site-footer {
  background: var(--brand-navy);
}

@media (max-width: 1319px) {
  .site-header {
    grid-template-columns: minmax(240px, 310px) minmax(280px, 1fr) auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    width: 100%;
  }

  .header-compact .site-header {
    grid-template-columns: minmax(204px, 250px) 0fr minmax(260px, 1fr) 50px;
  }

  .header-compact .main-nav {
    grid-column: 2;
    grid-row: 1;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
  }

  .header-compact .header-search {
    grid-column: 3;
    grid-row: 1;
  }

  .header-compact .cart-button {
    grid-column: 4;
    grid-row: 1;
  }
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
  }

  .detail-gallery {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px 14px;
    background: var(--paper-warm);
  }

  .brand {
    max-width: calc(100vw - 86px);
  }

  .brand-mark {
    width: min(218px, 57vw);
    height: 54px;
  }

  .brand-mark img,
  .brand img {
    width: min(218px, 57vw);
    height: 54px;
  }

  .brand-wordmark {
    font-size: 12px;
    max-width: 0;
  }

  .header-compact .site-header {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    min-height: 58px;
    gap: 8px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .header-compact .brand {
    max-width: 48px;
  }

  .header-compact .brand-mark {
    width: 48px;
    height: 40px;
  }

  .header-compact .brand-mark img {
    opacity: 0;
  }

  .header-compact .brand-wordmark {
    max-width: 0;
    opacity: 0;
  }

  .cart-button {
    width: 46px;
    min-width: 46px;
    min-height: 46px;
  }

  .header-search {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 44px;
  }

  .header-compact .header-search {
    grid-column: 2;
    grid-row: 1;
    min-height: 46px;
  }

  .header-compact .cart-button {
    grid-column: 3;
    grid-row: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px 8px;
    width: 100%;
    overflow: visible;
    padding: 2px 0 0;
    border-top: 1px solid rgba(7, 93, 131, 0.12);
  }

  .header-compact .main-nav {
    position: absolute;
    display: grid;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    visibility: hidden;
  }

  .main-nav a,
  .main-nav button {
    display: inline-flex;
    height: 30px;
    min-height: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    place-items: center;
    padding: 0;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    box-shadow: none;
    font-size: 0;
    line-height: 0;
    text-align: center;
    white-space: nowrap;
  }

  .main-nav a::before,
  .main-nav button::before {
    content: "";
    display: block;
    width: 19px;
    height: 19px;
    background: currentColor;
    mask: var(--nav-icon) center / contain no-repeat;
  }

  .product-card-facts {
    gap: 4px;
    font-size: 11px;
  }

  .product-card-facts span {
    min-height: 22px;
    padding: 0 6px;
  }

  .main-nav a:hover,
  .main-nav button:hover {
    border-bottom-color: var(--brand-orange);
  }

  .commerce-intro {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 13px 18px 11px;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%),
      linear-gradient(135deg, rgba(7,93,131,0.07), transparent 46%);
  }

  .commerce-intro h1 {
    max-width: 330px;
    font-size: clamp(23px, 6.5vw, 28px);
    line-height: 1.04;
  }

  .commerce-intro p {
    max-width: 330px;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.32;
  }

  .commerce-intro .button {
    display: none;
  }

  .service-strip { display: none; }

  .catalog-spotlights {
    display: none;
  }

  .catalog-spotlights-head {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 10px;
  }

  .catalog-spotlights-head h2 {
    font-size: clamp(22px, 6vw, 27px);
  }

  .catalog-spotlights-head p {
    font-size: 14px;
    line-height: 1.36;
  }

  .spotlight-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .spotlight-grid::-webkit-scrollbar {
    display: none;
  }

  .spotlight-card {
    min-width: min(84vw, 340px);
    min-height: 76px;
    padding: 11px;
    scroll-snap-align: start;
  }

  .spotlight-card img {
    display: none;
  }

  .spotlight-card strong {
    font-size: 15px;
  }

  .spotlight-card small {
    display: none;
  }

  .spotlight-card b {
    display: none;
  }

  .catalog-shell {
    display: block;
    position: relative;
    padding: 10px 14px 32px;
  }

  .catalog-mobile-tools {
    position: absolute;
    top: 20px;
    left: 24px;
    z-index: 2;
    display: block;
    margin: 0;
  }

  .filter-drawer-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 38px;
    min-height: 38px;
    padding: 0;
    border: 1px solid var(--steel);
    border-radius: var(--radius);
    background: #fff;
    color: var(--brand-ink);
    font-weight: 900;
  }

  .filter-drawer-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
  }

  .filter-drawer-button svg {
    flex: 0 0 auto;
    color: var(--brand-blue);
  }

  .filter-drawer-button em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .filter-drawer-button strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 58;
    display: block;
    background: rgba(16, 24, 32, 0.44);
  }

  .filter-backdrop[hidden] {
    display: none;
  }

  .filters {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 60;
    width: min(360px, calc(100vw - 34px));
    max-height: none;
    overflow: auto;
    padding: 14px;
    scrollbar-gutter: auto;
    background: var(--paper-warm);
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  .filters-open .filters {
    transform: translateX(0);
  }

  .filters-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px 2px;
  }

  .filters-mobile-head strong {
    font-size: 24px;
  }

  .catalog-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 10px 10px 58px;
  }

  .catalog-toolbar h2 {
    font-size: 0;
  }

  .catalog-toolbar h2::before {
    content: "Catálogo";
    display: block;
    color: var(--brand-ink);
    font-size: 18px;
    line-height: 1;
  }

  .catalog-toolbar p {
    display: none;
  }

  .catalog-toolbar label {
    display: contents;
  }

  .catalog-toolbar label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .catalog-toolbar select {
    width: 126px;
    min-height: 38px;
    padding: 0 32px 0 10px;
    font-size: 13px;
  }


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

  .product-card-link {
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .product-media {
    min-height: 150px;
    border-right: 1px solid #edf2f5;
    border-bottom: 0;
  }

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

  .product-info {
    align-content: center;
    padding: 14px;
  }

  .product-info h3 {
    font-size: 16px;
  }

  .product-info strong {
    font-size: 23px;
  }

  .product-page {
    padding: 16px 14px 34px;
  }

  .product-detail {
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
  }

  .detail-main-image {
    min-height: 168px;
  }

  .detail-main-image img {
    max-height: 150px;
  }

  .detail-thumbs button {
    min-height: 46px;
  }

  .detail-copy h1 {
    font-size: clamp(22px, 5.8vw, 27px);
    line-height: 1.08;
  }

  .detail-summary {
    font-size: 16px;
  }

  .detail-buy-box {
    margin-top: 14px;
    padding: 13px;
  }

  .detail-actions {
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 8px;
  }

  .detail-actions .button {
    width: 100%;
  }

  .detail-actions .button-outline {
    padding-inline: 0;
  }

  .detail-actions .button-outline span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .detail-purchase-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    font-size: 11px;
  }

  .detail-purchase-notes span {
    min-height: 50px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 7px 5px;
    text-align: center;
  }

  .detail-purchase-notes em {
    white-space: normal;
  }

  .detail-decision-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .detail-decision-bar div {
    padding: 8px 6px;
  }

  .detail-decision-bar span {
    font-size: 9px;
  }

  .detail-decision-bar strong {
    font-size: 12px;
  }
}

/* Product-first refinement pass: keep the approved logo prominent without pushing products below the fold. */
@media (min-width: 1320px) {
  .site-header {
    grid-template-columns: minmax(370px, 430px) minmax(300px, auto) minmax(320px, 1fr) 50px;
    align-items: center;
    gap: clamp(14px, 2vw, 24px);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-mark {
    width: 390px;
    height: 82px;
  }

  .brand-mark img,
  .brand img {
    width: 390px;
    height: 82px;
    max-height: none;
  }

  .header-compact .site-header {
    grid-template-columns: minmax(204px, 250px) 0fr minmax(320px, 1fr) 50px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .header-compact .brand-mark {
    width: 50px;
    height: 44px;
  }

  .header-compact .brand-mark img {
    opacity: 0;
  }

  .main-nav {
    grid-column: 2;
    order: initial;
    justify-content: flex-end;
    padding-top: 0;
    white-space: nowrap;
    gap: 10px;
    font-size: 11px;
  }

  .main-nav a,
  .main-nav button {
    height: 38px;
    min-height: 38px;
    padding: 1px 12px 0;
    background: var(--brand-orange);
    color: #ffffff;
    box-shadow: 0 7px 16px rgba(240, 90, 26, 0.18);
  }

  .header-search {
    grid-column: 3;
    min-height: 48px;
  }

  .header-compact .main-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px) scale(0.98);
    visibility: hidden;
  }

  .header-compact .header-search {
    grid-column: 3;
    min-height: 50px;
  }

  .cart-button {
    grid-column: 4;
    width: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .header-compact .cart-button {
    grid-column: 4;
  }

  .commerce-intro {
    align-items: center;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .commerce-intro h1 {
    max-width: 780px;
    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1.02;
  }

  .commerce-intro p {
    max-width: 680px;
    margin-top: 7px;
    font-size: 15px;
  }

  .catalog-spotlights {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .catalog-spotlights-head {
    display: block;
    margin: 0;
  }

  .catalog-spotlights-head span {
    font-size: 10px;
  }

  .catalog-spotlights-head h2 {
    margin-top: 3px;
    font-size: 20px;
    line-height: 1.02;
  }

  .catalog-spotlights-head p {
    display: none;
  }

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

  .spotlight-card {
    min-height: 72px;
    padding: 7px;
    gap: 2px;
    box-shadow: none;
  }

  .spotlight-card img {
    display: none;
  }

  .spotlight-card span {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .spotlight-card strong {
    font-size: 12px;
    line-height: 1.12;
  }

  .spotlight-card b {
    display: none;
  }

  .service-strip article {
    min-height: 74px;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .catalog-shell {
    padding-top: 12px;
  }

  .catalog-toolbar {
    min-height: auto;
    padding: 10px 16px;
  }

  .catalog-toolbar h2 {
    font-size: clamp(26px, 2vw, 32px);
  }

  .catalog-toolbar p {
    display: none;
  }

  .product-card-link {
    grid-template-rows: 128px auto;
  }

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

/* Final first-viewport authority: keep this after the historical desktop overrides. */
.site-header {
  grid-template-columns: minmax(300px, 370px) minmax(0, 1fr) 52px;
  grid-template-areas:
    "brand search cart"
    "brand nav cart";
  column-gap: clamp(18px, 3vw, 34px);
  row-gap: 9px;
  align-items: center;
  min-height: 104px;
  padding: 10px clamp(18px, 3vw, 46px) 11px;
}

.brand { grid-area: brand; }
.header-search { grid-area: search; min-height: 46px; }
.cart-button { grid-area: cart; }

.main-nav {
  grid-area: nav;
  justify-content: flex-start;
  gap: 9px;
  min-width: 0;
  width: auto;
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.035em;
}

.main-nav a,
.main-nav button {
  min-height: 34px;
  height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(7, 93, 131, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--brand-blue-strong);
  box-shadow: none;
  line-height: 1;
}

.main-nav a:hover,
.main-nav button:hover {
  border-color: rgba(240, 90, 26, 0.46);
  background: #fff5ef;
  color: #ad3a0c;
  box-shadow: none;
}

.header-compact .site-header {
  grid-template-columns: minmax(202px, 246px) minmax(0, 1fr) 52px;
  grid-template-areas: "brand search cart";
  min-height: 62px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.header-compact .main-nav {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.header-compact .header-search {
  grid-area: search;
  grid-column: auto;
  min-width: 0;
  width: 100%;
  min-height: 50px;
}

.header-compact .cart-button {
  grid-area: cart;
  grid-column: auto;
}

.commerce-intro {
  padding-top: 11px;
  padding-bottom: 9px;
}

.commerce-intro h1 {
  max-width: 880px;
  font-size: clamp(31px, 3.4vw, 46px);
}

.commerce-intro p {
  max-width: 790px;
  margin-top: 8px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.38;
}

.catalog-spotlights {
  display: grid;
  grid-template-columns: minmax(168px, 230px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-top: 11px;
  padding-bottom: 11px;
}

.catalog-spotlights-head {
  display: block;
  margin: 0;
}

.catalog-spotlights-head h2 {
  margin-top: 3px;
  font-size: clamp(21px, 2vw, 28px);
}

.catalog-spotlights-head p { display: none; }

.spotlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 9px;
}

.spotlight-card {
  min-height: 66px;
  padding: 10px 12px;
  gap: 3px;
  box-shadow: none;
}

.spotlight-card span {
  font-size: 10px;
  line-height: 1.15;
}

.spotlight-card strong { font-size: 15px; }
.catalog-shell { padding-top: 14px; }

.catalog-toolbar {
  margin-bottom: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.catalog-toolbar p { display: none; }

@media (max-width: 1319px) {
  .site-header {
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr) 52px;
    grid-template-areas:
      "brand search cart"
      "nav nav nav";
    row-gap: 9px;
  }

  .main-nav { justify-content: center; }

  .header-compact .site-header {
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr) 52px;
    grid-template-areas: "brand search cart";
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 48px;
    grid-template-areas:
      "brand cart"
      "search search"
      "nav nav";
    gap: 7px 10px;
    min-height: 0;
    padding: 7px 14px 8px;
  }

  .brand { max-width: calc(100vw - 86px); }
  .cart-button { width: 46px; min-width: 46px; min-height: 46px; }
  .header-search { min-height: 42px; }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    border-top: 1px solid rgba(7, 93, 131, 0.12);
    padding-top: 7px;
  }

  .main-nav a,
  .main-nav button {
    height: 32px;
    min-height: 32px;
    padding: 0;
    border: 1px solid rgba(7, 93, 131, 0.16);
    background: #ffffff;
    color: var(--brand-blue-strong);
    font-size: 0;
    line-height: 0;
  }

  .main-nav a::before,
  .main-nav button::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: currentColor;
    mask: var(--nav-icon) center / contain no-repeat;
  }

  .header-compact .site-header {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    grid-template-areas: "brand search cart";
    min-height: 58px;
  }

  .commerce-intro { padding: 12px 18px 10px; }
  .commerce-intro h1 { max-width: 360px; font-size: clamp(24px, 6.5vw, 29px); }
  .commerce-intro p { max-width: 360px; font-size: 13px; }

  .catalog-spotlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 10px 14px;
  }

  .spotlight-grid {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .spotlight-card {
    min-width: min(58vw, 230px);
    min-height: 66px;
    scroll-snap-align: start;
  }
}
