:root {
  --blue: #235487;
  --blue-dark: #173a61;
  --orange: #f18a00;
  --orange-dark: #d67600;
  --text: #333;
  --muted: #777;
  --line: #ddd;
  --soft: #f4f4f4;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1380px, calc(100% - 60px));
  margin: 0 auto;
}

.skip-links {
  position: absolute;
  left: -999px;
  top: 0;
}

.topbar {
  background: var(--blue);
  color: #fff;
  font-size: 13px;
}

.topbar-inner,
.footer-bottom-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar nav,
.header-tools,
.slider-dots,
.socials,
.footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar a,
.topbar button {
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-main {
  height: 92px;
  display: grid;
  grid-template-columns: 340px 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  min-height: 54px;
  color: var(--blue);
}

.logo strong {
  color: var(--orange);
  font-size: 29px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.logo span {
  color: var(--blue);
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
}

.logo > span:last-child {
  color: #fff;
  -webkit-text-stroke: 1.2px var(--blue);
  text-shadow:
    1px 0 var(--blue),
    0 1px var(--blue),
    -1px 0 var(--blue),
    0 -1px var(--blue);
  font-weight: 900;
}

.logo-wheel {
  width: 42px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
}

.logo-wheel svg {
  width: 42px;
  height: 42px;
  overflow: visible;
}

.logo-wheel path,
.logo-wheel circle {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-wheel .plate {
  fill: rgba(35, 84, 135, 0.08);
}

.logo-wheel .tire {
  stroke-width: 2.6;
}

.logo-wheel .hub {
  stroke-width: 1.8;
}

.site-search {
  display: grid;
  grid-template-columns: 1fr 94px;
  position: relative;
}

.search-clear {
  position: absolute;
  right: 104px;
  top: 50%;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: none;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: #e5e5e5;
  color: #666;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.site-search.has-value .search-clear {
  display: grid;
}

.search-suggest {
  position: absolute;
  left: 0;
  right: 94px;
  top: 100%;
  z-index: 80;
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.site-search.suggest-open .search-suggest {
  display: block;
}

.search-suggest-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 8px 0;
  border-top: 1px solid #eee;
}

.search-suggest-group strong {
  grid-column: 1 / -1;
  display: block;
  padding: 4px 14px 8px;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.search-suggest a {
  display: block;
  padding: 10px 14px;
  color: #333;
  border-top: 0;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.search-suggest a:hover {
  color: var(--orange);
  background: #f7f7f7;
}

.search-suggest-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  background: #f7f7f7;
}

.search-suggest-footer a {
  color: var(--blue);
  font-weight: 700;
}

.site-search label {
  position: absolute;
  left: -999px;
}

.site-search input {
  height: 42px;
  border: 1px solid #cfcfcf;
  border-right: 0;
  padding: 0 15px;
  outline: 0;
}

.site-search button,
.cart,
.service-link,
.header-tools > button {
  height: 42px;
  border: 1px solid var(--line);
  background: #f7f7f7;
  color: #333;
  padding: 0 12px;
  cursor: pointer;
}

.site-search button {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  font-weight: 700;
}

.cart > span:not(.cart-preview) {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
}

.menu-toggle {
  display: none;
}

.main-menu {
  background: var(--orange);
  border-bottom: 3px solid var(--blue);
}

.menu-inner {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.menu-inner a {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
  white-space: nowrap;
}

.menu-inner a:hover,
.menu-inner .choose {
  background: var(--orange-dark);
}

.mobile-menu-open .main-menu {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.menu-inner img {
  width: 32px;
  height: 22px;
  object-fit: cover;
  object-position: 50% 55%;
  background: #fff;
}

.nav-icon {
  width: 32px;
  height: 22px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.35);
}

.usp-top {
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
}

.usp-top-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  color: var(--blue);
  font-weight: 700;
}

.homepage-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  padding-top: 22px;
}

.side-card,
.customer-card,
.service-block,
.compare-box {
  border: 1px solid var(--line);
  background: #fff;
}

.categories-side h2 {
  margin: 0;
  padding: 14px 16px;
  color: #fff;
  background: var(--blue);
  font-size: 17px;
  text-transform: uppercase;
}

.categories-side a {
  display: block;
  padding: 11px 16px;
  border-bottom: 1px solid #eee;
}

.categories-side a:hover {
  color: var(--orange);
}

.customer-card {
  margin-top: 16px;
  padding: 18px;
  text-align: center;
}

.customer-card.compact {
  margin-top: 0;
}

.avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.service-person {
  background: transparent;
  border-radius: 0;
}

.service-person svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-person circle,
.service-person path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-card h3 {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 18px;
}

.customer-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.customer-card > a {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-weight: 700;
}

.customer-card ul {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid #eee;
  text-align: left;
  list-style: none;
}

.customer-card li {
  padding: 4px 0 4px 18px;
  position: relative;
}

.customer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--orange);
}

.hero-area {
  min-width: 0;
}

.hero-slider {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #e6e6e6;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.slide-copy {
  position: absolute;
  left: 36px;
  bottom: 34px;
  max-width: 520px;
  color: #fff;
}

.slide-copy h1,
.slide-copy h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.12;
}

.slide-copy p {
  margin: 0 0 18px;
  font-size: 16px;
}

.slide-copy a,
.service-block:hover,
.product-tile:hover {
  color: var(--orange);
}

.slide-copy a,
.compare-box button,
.modal-form button,
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 0;
  background: var(--orange);
  color: #fff;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}

.slider-dots {
  justify-content: center;
  margin-top: 10px;
}

.slider-dots button {
  width: 34px;
  height: 8px;
  overflow: hidden;
  border: 0;
  background: #c9c9c9;
  text-indent: -999px;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--orange);
}

.quick-links {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 22px;
  padding-top: 22px;
}

.product-link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 18px;
  align-content: start;
}

.product-link-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px;
  border: 1px solid #ececec;
  background: #fff;
}

.product-link-list img {
  width: 48px;
  height: 34px;
  object-fit: cover;
}

.product-link-list .product-thumb {
  width: 48px;
  height: 34px;
  flex: 0 0 48px;
}

.product-thumb {
  display: inline-block;
  background-image: url("./assets/category-sheet.png");
  background-repeat: no-repeat;
  background-size: 600% 200%;
  background-position: var(--sprite-x) var(--sprite-y);
}

.service-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.service-block {
  min-height: 150px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.service-block h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 19px;
}

.service-block p {
  margin: 0;
  color: var(--muted);
}

.service-illustration {
  width: 82px;
  height: 82px;
  background: transparent;
  border: 0;
  position: relative;
}

.service-illustration::after {
  content: none;
}

.drawing::after {
  content: none;
}

.engineer::after {
  content: none;
}

.section-head {
  display: block;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 25px;
}

.pick-one {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 15px;
}

.select-placeholder {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  padding: 8px 12px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-tile {
  min-height: 238px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  padding: 18px 14px;
  cursor: pointer;
}

.product-tile img {
  width: 150px;
  height: 145px;
  object-fit: cover;
  object-position: var(--pos, 50% 55%);
}

.product-tile h3 {
  margin: 12px 0 0;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.3;
}

.promo-wide {
  position: relative;
  height: 270px;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 34px;
}

.promo-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.promo-copy {
  position: absolute;
  z-index: 1;
  left: 40px;
  bottom: 36px;
  color: #fff;
}

.promo-copy h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.promo-copy p {
  margin: 0 0 16px;
}

.promo-copy a {
  display: inline-block;
  background: var(--orange);
  padding: 10px 18px;
  color: #fff;
  font-weight: 700;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 28px;
  padding-bottom: 46px;
}

.about-copy h1 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 28px;
}

.about-copy p {
  margin: 0 0 14px;
  color: #555;
}

.compare-box {
  padding: 18px;
  align-self: start;
}

.compare-box h3 {
  margin: 0 0 8px;
  color: var(--blue);
}

.compare-box p {
  color: var(--muted);
}

.compare-box button {
  width: 100%;
  margin-top: 8px;
}

.compare-box .muted-btn {
  background: #efefef;
  color: #555;
}

footer {
  color: #fff;
}

.footer-top {
  background: var(--blue);
}

.footer-top-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 340px;
  gap: 28px;
  align-items: center;
}

.footer-top h2 {
  margin: 0 0 8px;
  font-size: 23px;
}

.footer-top p {
  margin: 0;
  color: #dce8f4;
}

.socials a {
  color: #fff;
  text-decoration: underline;
}

.newsletter {
  display: grid;
  gap: 8px;
}

.newsletter input {
  height: 38px;
  border: 0;
  padding: 0 12px;
}

.newsletter small {
  color: #dce8f4;
}

.footer-main {
  background: #2c2c2c;
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
  color: #d6d6d6;
}

.footer-bottom {
  background: #202020;
  font-size: 13px;
}

.footer-bottom a {
  color: #ddd;
}

.footer-bottom button {
  border: 0;
  background: transparent;
  color: #ddd;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.58);
  padding: 20px;
}

.modal.open {
  display: grid;
}

.modal-card {
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  position: relative;
  background: #fff;
  color: var(--text);
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.modal-card h2 {
  margin: 0 0 10px;
  color: var(--blue);
}

.modal-card p {
  color: var(--muted);
}

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

.modal-form label {
  display: grid;
  gap: 6px;
}

.modal-form label:nth-last-of-type(2),
.modal-form label:last-of-type,
.modal-form button,
.form-result {
  grid-column: 1 / -1;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 9px 10px;
}

.form-result {
  color: var(--orange);
  min-height: 20px;
}

@media (max-width: 980px) {
  .header-main {
    height: auto;
    grid-template-columns: 1fr;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .header-tools {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu-inner {
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .menu-inner.open {
    display: flex;
  }

  .menu-inner a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .homepage-grid,
  .quick-links,
  .about-layout,
  .footer-top-inner {
    grid-template-columns: 1fr;
  }

  .left-panel {
    order: 2;
  }

  .product-link-list,
  .category-grid,
  .service-blocks,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .topbar-inner,
  .footer-bottom-inner,
  .usp-top-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .topbar nav,
  .footer-bottom-inner {
    flex-wrap: wrap;
  }

  .site-search,
  .product-link-list,
  .category-grid,
  .service-blocks,
  .footer-grid,
  .modal-form {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 360px;
  }

  .slide-copy {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .slide-copy h1,
  .slide-copy h2 {
    font-size: 26px;
  }

  .service-block {
    grid-template-columns: 72px 1fr;
  }

  .promo-copy {
    left: 22px;
    right: 22px;
  }
}

/* Source-site alignment pass: closer to industrialwheels.com homepage layout. */
.topbar {
  display: none;
}

.header-main {
  width: 100%;
  max-width: none;
  height: 60px;
  grid-template-columns: 280px minmax(360px, 470px) auto;
  gap: 26px;
  padding-left: 30px;
  padding-right: 30px;
  background: var(--blue);
}

.logo {
  min-height: 60px;
  color: #fff;
}

.logo strong {
  color: #fff;
  font-size: 24px;
}

.logo span {
  color: #fff;
  font-size: 20px;
}

.logo > span:last-child {
  color: transparent;
  -webkit-text-stroke: 1.1px #fff;
  text-shadow: 1px 0 #fff, 0 1px #fff, -1px 0 #fff, 0 -1px #fff;
}

.logo-wheel path,
.logo-wheel circle {
  stroke: #fff;
}

.logo-wheel .fork {
  fill: rgba(255, 255, 255, 0.12);
}

.logo-wheel .plate {
  fill: rgba(255, 255, 255, 0.08);
}

.site-search {
  grid-template-columns: 1fr 48px;
  max-width: 470px;
}

.site-search input {
  height: 38px;
  border: 0;
  padding-left: 25px;
  font-size: 15px;
}

.site-search button {
  height: 38px;
  min-width: 48px;
  padding: 0;
  font-size: 0;
  border: 0;
  background: var(--orange);
  position: relative;
}

.site-search button::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 9px;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.site-search button::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 25px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: left center;
}

.header-tools {
  gap: 18px;
  color: #fff;
  font-weight: 700;
}

.header-tools a,
.header-tools > button {
  position: relative;
  color: #fff;
  border: 0;
  background: transparent;
  padding: 0;
  height: auto;
}

.header-flyout {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  width: 230px;
  display: none;
  padding: 16px 18px;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.header-flyout::before {
  content: "";
  position: absolute;
  right: 20px;
  top: -7px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  transform: rotate(45deg);
}

.header-tools a:hover .header-flyout,
.header-tools a:focus-within .header-flyout,
.header-tools button:hover .header-flyout,
.header-tools button:focus-within .header-flyout {
  display: grid;
  gap: 7px;
}

.header-flyout strong {
  color: var(--blue);
  font-size: 15px;
}

.header-flyout a,
.account-flyout a,
.language-list a {
  color: var(--orange);
  font-weight: 700;
}

.language-list span,
.language-list a,
.account-flyout span,
.account-flyout a {
  display: block;
}

.account-flyout {
  width: 285px;
}

.mini-login-form {
  display: grid;
  gap: 7px;
}

.mini-login-form input {
  width: 100%;
  min-height: 34px;
  border: 1px solid #ccc;
  padding: 7px 9px;
  font: inherit;
}

.mini-login-form button {
  min-height: 34px;
  border: 0;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.account-flyout button[data-demo-logout] {
  min-height: 34px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  padding: 7px 9px;
}

.mini-login-result {
  display: block;
  color: #666;
  font-size: 12px;
}

.header-tools .cart {
  position: relative;
  width: 32px;
  height: 32px;
  font-size: 0;
}

.header-tools .cart::before {
  content: "▤";
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 32px;
}

.header-tools .cart > span:not(.cart-preview) {
  position: absolute;
  top: 0;
  right: -5px;
  margin: 0;
}

.wishlist-count {
  min-width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  margin-left: 4px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.cart-preview {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  width: 260px;
  display: none;
  padding: 18px 20px;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.cart-preview::before {
  content: "";
  position: absolute;
  right: 18px;
  top: -7px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  transform: rotate(45deg);
}

.cart.open .cart-preview,
.cart:hover .cart-preview {
  display: grid;
  gap: 9px;
}

.cart-preview strong {
  color: var(--blue);
  font-size: 16px;
}

.cart-preview-items {
  display: grid;
  gap: 6px;
  padding: 8px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.cart-preview-items > span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  color: #555;
}

.cart-preview-items b {
  color: var(--blue);
}

.cart-preview-items em {
  font-style: normal;
  overflow-wrap: anywhere;
}

.cart-preview-items small {
  color: #777;
}

.cart-preview-items a {
  color: var(--orange);
  font-weight: 700;
}

.cart-action {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #fff;
  background: var(--orange);
  font-weight: 700;
  cursor: pointer;
}

.cart-empty-details {
  display: grid;
  gap: 5px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.cart-empty-details b {
  color: var(--blue);
}

.cart-empty-details small {
  color: #666;
  line-height: 1.45;
}

.cart-empty-details a {
  color: var(--orange);
  font-weight: 700;
}

.cart-empty-row {
  min-height: 28px;
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  background: #fafafa;
  color: #777;
  padding: 0 8px;
  font-size: 12px;
}

.header-tools a:first-child::after,
.header-tools a:nth-child(2)::after,
.header-tools button:first-of-type::after {
  content: "⌄";
  margin-left: 4px;
  font-size: 12px;
  font-weight: 400;
}

.main-menu {
  padding-top: 8px;
  background: #f7f7f7;
  border-bottom: 0;
}

.menu-inner {
  min-height: 34px;
}

.menu-inner a {
  min-width: 210px;
  min-height: 34px;
  padding: 0 18px;
  color: var(--blue);
  background: #d8d8d8;
  border-right: 1px solid #c9c9c9;
  font-size: 13px;
  font-weight: 400;
  position: relative;
}

.menu-inner .choose,
.menu-inner .choose:hover {
  color: #fff;
  background: var(--orange);
  font-weight: 700;
}

.menu-inner a:hover {
  color: #fff;
  background: var(--orange-dark);
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 30;
  width: 720px;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  color: #333;
  font-size: 12px;
  font-weight: 400;
}

.mega-menu-wide {
  width: min(980px, calc(100vw - 48px));
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.menu-inner a:hover .mega-menu,
.menu-inner a:focus-within .mega-menu {
  display: grid;
}

.mega-menu div {
  padding: 12px 14px;
  border-right: 1px solid #eee;
}

.mega-menu div:last-child {
  border-right: 0;
}

.mega-menu strong,
.mega-menu span {
  display: block;
}

.mega-menu strong {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 12px;
}

.mega-menu span {
  padding: 4px 0;
  color: #444;
  cursor: pointer;
  line-height: 1.25;
}

.mega-menu span:hover {
  color: var(--orange);
  text-decoration: underline;
}

.compact-menu {
  width: 300px;
  grid-template-columns: 1fr;
}

.usp-top {
  background: #f8f8f8;
  border-bottom: 0;
}

.usp-top-inner {
  min-height: 56px;
  justify-content: space-between;
  color: #000;
  font-size: 15px;
}

.usp-top-inner a::before {
  content: "✓";
  color: #2d8dcc;
  margin-right: 10px;
  font-size: 22px;
}

.homepage-grid {
  grid-template-columns: 1.25fr 0.96fr 280px;
  gap: 18px;
  padding-top: 24px;
}

.banner-left,
.banner-mid {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #ddd;
}

.banner-left img,
.banner-mid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.banner-left img {
  object-position: 64% 58%;
}

.banner-mid img {
  object-position: 72% 55%;
}

.banner-left .slide-overlay,
.banner-mid .slide-overlay {
  background: rgba(0, 0, 0, 0.28);
}

.banner-left .slide-copy,
.banner-mid .slide-copy {
  left: 42px;
  right: 24px;
  bottom: 58px;
  max-width: 500px;
}

.banner-left .slide-copy span,
.banner-mid .slide-copy span {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: #fff;
  background: var(--orange);
  font-size: 17px;
  font-weight: 800;
}

.banner-left .slide-copy h1,
.banner-mid .slide-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}

.banner-left .slide-copy a,
.banner-mid .slide-copy a {
  color: #fff;
  background: transparent;
  padding: 0;
  min-height: 0;
  font-size: 16px;
}

.hero-service {
  margin-top: 0;
  padding: 2px 0 0 26px;
  border: 0;
  text-align: left;
}

.service-photo {
  display: block;
  object-fit: contain;
}

.service-photo-small {
  width: 82px;
  height: 92px;
  margin: 0 0 8px;
  object-fit: contain;
  object-position: left bottom;
}

.hero-service h3 {
  margin-top: 0;
  font-size: 18px;
}

.hero-service ul {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #ddd;
}

.quick-links {
  display: none;
}

.service-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 22px;
}

.service-block {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0;
  padding: 24px 34px 22px;
  border: 1px solid #ddd;
  background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
  text-align: center;
}

.service-block .service-illustration {
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.service-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-illustration .icon-ring {
  fill: none;
  stroke: #e2e2e2;
  stroke-width: 3;
}

.service-illustration .icon-line {
  fill: none;
  stroke: #9fa6ad;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-illustration .icon-accent {
  fill: none;
  stroke: var(--orange);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-block h3 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.2;
}

.service-block p {
  max-width: none;
  margin: 0 auto;
  color: var(--orange);
  font-size: 14px;
}

.category-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 34px 26px;
}

.product-tile {
  min-height: 246px;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-tile:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
}

.product-tile:hover h3,
.product-tile:focus-visible h3 {
  color: var(--blue);
}

.product-tile .product-thumb {
  width: 170px;
  max-width: 100%;
  height: 170px;
  background-color: #fafafa;
}

.product-tile h3 {
  margin: 18px 0 0;
  color: #000;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.promo-wide {
  display: none;
}

.about-layout {
  max-width: none;
  width: 100%;
  border: 1px solid #ddd;
  padding-top: 72px;
  padding-bottom: 72px;
  grid-template-columns: minmax(0, 1180px);
  justify-content: center;
}

.about-layout > * {
  max-width: 1180px;
}

.about-layout .compare-box {
  display: none;
}

.footer-top {
  margin-top: 0;
}

.footer-top {
  background: var(--blue);
}

.footer-top-inner {
  min-height: 230px;
  grid-template-columns: 120px 1.2fr 0.65fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.footer-person {
  align-self: end;
  width: 124px;
  height: 212px;
  object-fit: contain;
  object-position: left bottom;
  margin-bottom: -1px;
}

.footer-call h2 {
  max-width: 260px;
  font-size: 24px;
  line-height: 1.15;
}

.footer-call p {
  max-width: 280px;
}

.socials {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.socials span {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  text-decoration: none;
  font-weight: 800;
  font-size: 0;
}

.socials a::before {
  font-size: 16px;
}

.socials a:nth-of-type(1)::before {
  content: "f";
}

.socials a:nth-of-type(2)::before {
  content: "in";
  font-size: 14px;
}

.socials a:nth-of-type(3)::before {
  content: "▶";
  font-size: 13px;
}

.newsletter label {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.newsletter input {
  height: 46px;
  border-radius: 3px;
}

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

.footer-main {
  background: #fff;
  color: #111;
  padding: 36px 0 42px;
}

.footer-grid-expanded {
  grid-template-columns: 1.25fr 0.78fr 1fr 0.86fr 1.3fr;
  align-items: start;
  gap: 38px;
}

.footer-grid h3 {
  color: #000;
  font-size: 18px;
  margin-bottom: 16px;
}

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

.footer-grid a,
.footer-grid p {
  color: #111;
  margin-bottom: 12px;
  line-height: 1.45;
}

.footer-contact-card {
  align-self: start;
  background: #f7f7f7;
  padding: 26px 32px 28px;
  min-height: 235px;
}

.footer-contact-card h3 {
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 22px;
}

.footer-contact-card p {
  margin-bottom: 9px;
}

.footer-contact-card .footer-card-gap {
  margin-top: 20px;
}

.footer-contact-list a {
  position: relative;
  padding-left: 28px;
}

.footer-contact-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f0f0f0;
}

.footer-contact-list a:first-of-type::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 6px;
  border: 2px solid #9a9a9a;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.footer-contact-list a:nth-of-type(2)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 9px;
  height: 6px;
  border: 1px solid #9a9a9a;
}

.footer-bottom {
  background: #fff;
  color: #111;
  border-top: 1px solid #eee;
  min-height: 50px;
}

.footer-bottom a {
  color: #111;
}

.payment-badge {
  justify-self: end;
  margin-left: auto;
  padding: 3px 8px;
  border: 1px solid #d9e2ef;
  border-radius: 3px;
  color: #0c4f9e;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: 1fr;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

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

  .menu-inner a {
    min-width: 0;
  }

  .homepage-grid,
  .quick-links {
    grid-template-columns: 1fr;
  }

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

  .service-blocks {
    grid-template-columns: 1fr;
  }

  .hero-service {
    padding-left: 0;
  }

  .footer-top-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-person {
    display: none;
  }

  .newsletter,
  .newsletter input,
  .newsletter button {
    width: 100%;
  }

  .footer-grid-expanded {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-contact-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .header-tools {
    align-items: flex-start;
  }

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

  .footer-grid-expanded {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    align-items: end;
    padding: 12px;
  }

  .cookie-card {
    width: 100%;
    max-height: calc(100vh - 24px);
    overflow: auto;
  }

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

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

/* Header alignment pass against the source-site screenshot. */
header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.22s ease;
}

.header-main {
  width: min(1380px, calc(100% - 60px));
  max-width: 1380px;
  margin: 0 auto;
  grid-template-columns: 302px 470px 1fr;
  gap: 20px;
  padding-left: 0;
  padding-right: 0;
}

.logo {
  gap: 1px;
  min-width: 0;
  transform-origin: left center;
  transition: transform 0.24s ease, opacity 0.24s ease;
  white-space: nowrap;
}

.logo-wheel {
  width: 44px;
  height: 48px;
  margin-right: 3px;
  transform-origin: 50% 72%;
  transition: transform 0.28s ease;
}

.logo-wheel img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.logo strong {
  color: #fff;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transition: letter-spacing 0.24s ease;
}

.logo span {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, "Microsoft YaHei", sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.logo > span:last-child {
  color: var(--blue);
  -webkit-text-stroke: 1.15px #fff;
  text-shadow: none;
}

body.scrolled header {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

body.scrolled .header-main {
  height: 54px;
}

body.scrolled .logo {
  transform: scale(0.92);
}

body.scrolled .logo-wheel {
  transform: translateY(1px) rotate(-12deg);
}

body.scrolled .logo > span:last-child {
  opacity: 0.84;
  transform: translateX(-2px);
}

.site-search {
  width: 470px;
  max-width: 470px;
  justify-self: start;
}

.site-search input {
  height: 38px;
  padding-left: 26px;
  color: #173a61;
}

.site-search button {
  width: 48px;
}

.header-tools {
  justify-self: end;
  gap: 18px;
  font-size: 14px;
}

.main-menu,
.usp-top,
main,
footer {
  background-color: #fff;
}

@media (max-width: 980px) {
  .header-main {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-search {
    width: 100%;
    max-width: none;
  }

  .header-tools {
    justify-self: start;
  }
}

/* Inner pages: source-site style catalogue pages. */
.breadcrumb {
  padding: 18px 0 12px;
  color: #777;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--blue);
}

.page-layout {
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 30px;
  padding-bottom: 56px;
}

.side-nav {
  border: 1px solid #ddd;
  align-self: start;
}

.side-nav h2 {
  margin: 0;
  padding: 13px 16px;
  color: #fff;
  background: var(--blue);
  font-size: 17px;
}

.side-nav a,
.side-nav span {
  display: block;
  padding: 10px 16px;
  border-top: 1px solid #eee;
  color: #333;
}

.side-nav a.active,
.side-nav a:hover {
  color: var(--orange);
}

.page-title {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 30px;
  line-height: 1.15;
}

.page-intro {
  max-width: 920px;
  margin: 0 0 24px;
  color: #555;
}

.toolbar {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.toolbar select,
.toolbar input {
  height: 36px;
  border: 1px solid #ccc;
  padding: 0 10px;
}

.toolbar-status,
.listing-footer-status {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.view-tools {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.view-tools button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.view-tools button.active,
.view-tools button:hover {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.listing-save-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.listing-save-share button {
  min-height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  padding: 0 9px;
  cursor: pointer;
  font-weight: 700;
}

.listing-save-share button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.listing-save-share small {
  min-width: 88px;
  color: #777;
}

.listing-summary-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid #e1e1e1;
  background: #f7f7f7;
}

.listing-summary-bar strong {
  color: var(--blue);
}

.listing-summary-bar span {
  flex: 1;
  color: #555;
  font-size: 13px;
}

.listing-summary-bar button {
  min-height: 30px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  padding: 0 10px;
  cursor: pointer;
  font-weight: 700;
}

.listing-summary-bar button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.pagination-status {
  display: flex;
  justify-content: flex-end;
  margin: -16px 0 26px;
  color: #666;
  font-size: 13px;
}

.recent-viewed-strip {
  margin: 18px 0 34px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
}

.recent-viewed-strip h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 22px;
}

.recent-viewed-strip > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.recent-viewed-strip a {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.recent-viewed-strip .product-thumb {
  width: 72px;
  height: 72px;
  min-height: 72px;
}

.recent-viewed-strip strong {
  color: #111;
  font-size: 13px;
  line-height: 1.25;
}

.recent-viewed-strip small {
  color: var(--orange);
  font-weight: 700;
}

.search-notice {
  margin: 18px 0 12px;
  padding: 12px 16px;
  color: #444;
  background: #f7f7f7;
  border-left: 4px solid var(--orange);
}

.empty-state {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 110px;
  padding: 18px 20px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  color: #555;
}

.empty-state strong {
  color: var(--blue);
  font-size: 18px;
}

.empty-state a {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}

.empty-state-wide,
.empty-state-listing {
  grid-column: 1 / -1;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
}

.listing-card {
  color: #111;
  position: relative;
}

.listing-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border: 1px solid transparent;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.listing-card:hover::after,
.listing-card.spec-open::after {
  border-color: #e1e1e1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.listing-badges {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  gap: 4px;
}

.listing-badges b {
  min-width: 34px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.quick-actions {
  position: absolute;
  left: 50%;
  top: 132px;
  min-width: 148px;
  display: none;
  transform: translateX(-50%);
  background: rgba(35, 84, 135, 0.94);
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.quick-actions span {
  display: block;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.listing-card:hover .quick-actions {
  display: block;
}

.wishlist-btn {
  border: 0;
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  font-weight: 800;
}

.listing-card > .wishlist-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #eee;
  font-size: 18px;
}

.wishlist-btn.active {
  color: var(--orange-dark);
}

.listing-card .product-thumb {
  width: min(190px, 100%);
  height: min(190px, 24vw);
  min-height: 150px;
  display: block;
  margin: 0 auto;
  background-color: #fafafa;
  cursor: pointer;
}

.listing-card h3 {
  margin: 14px 0 8px;
  color: #000;
  font-size: 18px;
  line-height: 1.25;
}

.listing-card p {
  margin: 0 0 10px;
  color: #666;
}

.listing-grid.listing-list-view {
  grid-template-columns: 1fr;
  gap: 18px;
}

.listing-list-view .listing-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 156px 1fr auto;
  column-gap: 22px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.listing-list-view .listing-card .product-thumb {
  width: 150px;
  height: 150px;
  min-height: 150px;
  margin: 0;
  grid-row: 1 / 4;
}

.listing-list-view .listing-card h3,
.listing-list-view .listing-card p {
  margin-left: 0;
}

.listing-list-view .listing-card .orange-link {
  justify-self: end;
  grid-column: 3;
  grid-row: 1 / 3;
}

.listing-list-view .listing-compare {
  grid-column: 2;
}

.listing-list-view .listing-spec-mini,
.listing-list-view .listing-inquiry-btn {
  grid-column: 2;
}

.listing-list-view .listing-spec-mini {
  max-width: 520px;
}

.listing-list-view .listing-card > .wishlist-btn {
  right: 48px;
}

.listing-compare {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  color: #666;
  font-size: 13px;
  cursor: pointer;
}

.listing-compare input {
  width: 14px;
  height: 14px;
}

.listing-spec-mini {
  position: absolute;
  left: 0;
  right: 0;
  top: max(150px, min(190px, 24vw));
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.listing-card.spec-open .listing-spec-mini,
.listing-card:has(.product-thumb:hover) .listing-spec-mini,
.listing-card:has(.product-thumb:focus) .listing-spec-mini {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.listing-spec-mini div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  border: 0;
}

.listing-spec-mini dt,
.listing-spec-mini dd {
  margin: 0;
  padding: 4px 0;
}

.listing-spec-mini dt {
  color: #374151;
  background: transparent;
  font-weight: 400;
}

.listing-spec-mini dd {
  color: #333;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.listing-inquiry-btn {
  min-height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  padding: 0 10px;
  cursor: pointer;
  font-weight: 700;
}

.listing-inquiry-btn.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.listing-footer-tools {
  min-height: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: -8px 0 22px;
  padding: 10px 0;
  border-top: 1px solid #e5e5e5;
  color: #555;
  font-size: 13px;
}

.listing-footer-tools label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.listing-footer-tools select {
  min-height: 32px;
  border: 1px solid #ccc;
  background: #fff;
  padding: 0 8px;
}

.listing-footer-tools button {
  min-height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  padding: 0 10px;
  cursor: pointer;
  font-weight: 700;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin: 44px 0 26px;
  color: var(--orange);
  font-size: 13px;
}

.pagination a,
.pagination span {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.pagination .active {
  color: #555;
  background: #f2f2f2;
}

.pagination .next {
  color: #fff;
  background: var(--orange);
  font-size: 18px;
  line-height: 1;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.3);
  padding: 20px;
}

.cookie-card {
  width: min(760px, calc(100vw - 40px));
  background: #fff;
  color: #222;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.cookie-brand-row {
  height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid #e4e4e4;
  font-size: 18px;
}

.cookie-mark {
  width: 36px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  border: 4px solid #222;
}

.cookie-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: -8px;
  width: 24px;
  height: 12px;
  border-bottom: 4px solid #222;
  border-radius: 50%;
}

.cookie-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #e6e6e6;
}

.cookie-tabs button {
  min-height: 50px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: #fff;
  color: #222;
  font-weight: 800;
}

.cookie-tabs button.active {
  color: #174cff;
  border-bottom-color: #174cff;
}

.cookie-body {
  padding: 22px 28px;
}

.cookie-body h2 {
  margin: 0 0 10px;
  font-size: 17px;
}

.cookie-body p {
  margin: 0;
  color: #333;
  line-height: 1.55;
}

.cookie-switches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.cookie-switches label {
  min-height: 94px;
  display: grid;
  place-items: center;
  gap: 8px;
  border-right: 1px solid #e6e6e6;
  font-weight: 800;
}

.cookie-switches label:last-child {
  border-right: 0;
}

.cookie-switches input {
  position: absolute;
  opacity: 0;
}

.cookie-switches i {
  width: 42px;
  height: 24px;
  position: relative;
  display: block;
  border-radius: 999px;
  background: #111;
}

.cookie-switches i::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s ease;
}

.cookie-switches input:checked + i {
  background: #174cff;
}

.cookie-switches input:checked + i::after {
  transform: translateX(18px);
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 22px;
}

.cookie-actions button {
  min-height: 42px;
  border: 2px solid #174cff;
  background: #fff;
  color: #222;
  font-weight: 800;
}

.cookie-actions .allow {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

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

.filter-group {
  border-top: 1px solid #eee;
}

.filter-title {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
}

.filter-assist {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 12px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
}

.filter-assist label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.filter-assist input {
  min-height: 34px;
  border: 1px solid #ccc;
  padding: 7px 9px;
  font: inherit;
  font-weight: 400;
}

.filter-assist button {
  min-height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-weight: 700;
}

.filter-title::after {
  content: "⌄";
  color: var(--orange);
}

.filter-group.collapsed .filter-title::after {
  transform: rotate(-90deg);
}

.filter-options {
  padding: 0 16px 12px;
  color: #666;
  font-size: 13px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  cursor: pointer;
}

.filter-options input {
  width: 14px;
  height: 14px;
}

.filter-group.collapsed .filter-options {
  display: none;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -10px 0 22px;
}

.active-filters button {
  min-height: 28px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  color: var(--blue);
  padding: 0 10px;
  cursor: pointer;
  font-size: 13px;
}

.active-filters [data-clear-filters] {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.compare-strip {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  margin: 30px 0;
  padding: 14px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.compare-strip strong {
  color: var(--blue);
  font-size: 18px;
}

.compare-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #f7f7f7;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.08);
}

.compare-dock-inner {
  min-height: 64px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.compare-dock .primary-btn {
  min-width: 170px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.compare-toggle {
  border: 0;
  background: transparent;
  color: var(--orange);
  font-weight: 700;
  cursor: pointer;
}

.compare-dock span {
  order: -1;
  margin-right: auto;
  color: #555;
}

.compare-dock-panel {
  width: 100%;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  padding: 0 0 14px;
}

.compare-dock.expanded .compare-dock-panel {
  display: grid;
}

.compare-slot {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #888;
  background: #fff;
  border: 1px dashed #ccc;
}

.compare-slot.filled {
  color: var(--blue);
  border-style: solid;
  font-weight: 700;
  justify-content: space-between;
  gap: 8px;
}

.compare-slot [data-remove-slot] {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 0;
  background: #eee;
  color: #555;
  cursor: pointer;
  font-weight: 800;
}

.compare-dock-panel button {
  min-height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  color: #555;
  padding: 0 14px;
  cursor: pointer;
}

.compare-modal {
  position: fixed;
  inset: 0;
  z-index: 115;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.48);
}

.compare-empty {
  margin: 0 0 16px;
  padding: 13px 16px;
  border-left: 4px solid var(--orange);
  background: #f7f7f7;
  color: #555;
}

.compare-modal.compare-has-products .compare-empty {
  display: none;
}

.compare-modal:not(.compare-has-products) .compare-table {
  opacity: 0.45;
}

.info-modal {
  position: fixed;
  inset: 0;
  z-index: 116;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.48);
}

.quick-view-modal,
.catalog-request,
.image-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 117;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.48);
}

.quick-view-modal.open,
.catalog-request.open,
.image-zoom-modal.open {
  display: grid;
}

.cad-request-modal {
  position: fixed;
  inset: 0;
  z-index: 118;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.48);
}

.cad-request-modal.open {
  display: grid;
}

.site-map-modal {
  position: fixed;
  inset: 0;
  z-index: 119;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.48);
}

.site-map-modal.open {
  display: grid;
}

.site-map-card {
  width: min(700px, 100%);
  position: relative;
  background: #fff;
  padding: 28px;
}

.site-map-card h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 24px;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.site-map-grid div {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 12px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
}

.site-map-grid strong {
  color: var(--blue);
  font-size: 15px;
}

.site-map-grid a {
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 0;
  color: #333;
}

.site-map-grid a:hover {
  color: var(--orange);
}

.global-upload-drawer {
  position: fixed;
  inset: 0;
  z-index: 122;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.35);
}

.global-upload-drawer.open {
  display: flex;
}

.global-upload-card {
  width: min(480px, 100%);
  height: 100%;
  overflow: auto;
  background: #fff;
  padding: 28px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  animation: uploadDrawerIn 0.22s ease;
}

@keyframes uploadDrawerIn {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.global-upload-card h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 25px;
}

.global-upload-card p {
  margin: 0 0 18px;
  color: #555;
  line-height: 1.6;
}

.global-upload-card form,
.global-upload-card label {
  display: grid;
  gap: 8px;
}

.global-upload-card form {
  gap: 13px;
}

.global-upload-card input,
.global-upload-card textarea {
  min-height: 40px;
  border: 1px solid #ccc;
  padding: 9px 10px;
  font: inherit;
}

.cad-format-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px 12px;
  margin: 0;
  padding: 12px;
  border: 1px solid #ddd;
}

.cad-format-options legend {
  padding: 0 6px;
  color: var(--blue);
  font-weight: 700;
}

.cad-format-options label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #555;
  font-size: 13px;
}

.cad-format-options input {
  width: 14px;
  height: 14px;
  min-height: 14px;
}

.global-upload-card ol {
  margin: 20px 0 0;
  padding-left: 20px;
  color: #555;
  line-height: 1.8;
}

.footer-utility-strip {
  border-top: 1px solid #ddd;
  background: #f7f7f7;
}

.footer-utility-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.2fr 1.1fr;
  gap: 18px;
  padding: 18px 0;
}

.footer-utility-inner div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-utility-inner strong {
  color: var(--blue);
  margin-right: 4px;
}

.footer-utility-inner a,
.footer-utility-inner span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  padding: 0 9px;
  font-size: 13px;
}

.footer-utility-inner a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer-cert-note {
  color: #777;
}

.quote-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 121;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.48);
}

.quote-confirm-modal.open {
  display: grid;
}

.quote-confirm-card {
  width: min(620px, 100%);
  position: relative;
  background: #fff;
  padding: 28px;
}

.quote-confirm-card h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 24px;
}

.quote-confirm-card p {
  margin: 0 0 16px;
  color: #555;
}

.quote-confirm-card ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #555;
}

.quote-confirm-card li {
  margin-bottom: 7px;
}

.quick-view-card,
.catalog-card {
  width: min(760px, 100%);
  position: relative;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  background: #fff;
  padding: 28px;
}

.catalog-card {
  width: min(560px, 100%);
  grid-template-columns: 1fr;
}

.image-zoom-card {
  width: min(760px, 100%);
  position: relative;
  background: #fff;
  padding: 28px;
}

.image-zoom-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #fafafa;
  border: 1px solid #eee;
}

.image-zoom-stage .product-thumb {
  width: min(560px, 90vw);
  height: min(560px, 72vh);
}

.image-zoom-card p {
  margin: 12px 0 0;
  color: #666;
}

.quick-view-media {
  min-height: 230px;
  display: grid;
  place-items: center;
  border: 1px solid #eee;
  background: #fafafa;
}

.quick-view-media .product-thumb {
  width: 190px;
  height: 190px;
}

.quick-view-card h2,
.catalog-card h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 24px;
}

.quick-view-card p,
.catalog-card p {
  margin: 0 0 14px;
  color: #555;
}

.quick-view-card dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  margin: 0 0 18px;
  border-top: 1px solid #eee;
}

.quick-view-card dt,
.quick-view-card dd {
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid #eee;
}

.quick-view-card dt {
  color: var(--blue);
  font-weight: 700;
}

.catalog-card form {
  display: grid;
  gap: 12px;
}

.catalog-card label {
  display: grid;
  gap: 6px;
}

.catalog-card input {
  min-height: 40px;
  border: 1px solid #ccc;
  padding: 0 10px;
}

.newsletter-result {
  color: #fff;
  font-size: 13px;
}

.quote-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  padding: 14px 16px;
  background: #f7f7f7;
  border-left: 4px solid var(--orange);
}

.quote-checklist strong {
  color: var(--blue);
  margin-right: 8px;
}

.quote-checklist span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #555;
  font-size: 13px;
}

.upload-panel {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
  margin: 0 0 18px;
  padding: 20px 22px;
  border: 1px solid #ddd;
  background: #fff;
}

.upload-panel h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 21px;
}

.upload-panel p {
  margin: 0;
  color: #555;
}

.upload-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #eee;
}

.upload-panel li {
  position: relative;
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid #eee;
  color: #555;
}

.upload-panel li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--orange);
}

.faq-section {
  padding: 8px 0 42px;
}

.faq-section h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 22px;
}

.faq-list {
  border-top: 1px solid #ddd;
}

.faq-list button {
  width: 100%;
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #ddd;
  background: #fff;
  color: #333;
  padding: 0 14px;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq-list button::after {
  content: "+";
  color: var(--orange);
  font-size: 20px;
}

.faq-list button.open::after {
  content: "-";
}

.faq-list div {
  display: none;
  padding: 14px;
  border-bottom: 1px solid #ddd;
  background: #fafafa;
}

.faq-list div.open {
  display: block;
}

.faq-list p {
  margin: 0;
  color: #555;
}

.info-modal.open {
  display: grid;
}

.info-modal-card {
  width: min(620px, 100%);
  position: relative;
  background: #fff;
  padding: 28px;
}

.info-modal-card h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 24px;
}

.info-modal-card p {
  margin: 0 0 18px;
  color: #555;
  line-height: 1.65;
}

.service-rail {
  position: fixed;
  right: 18px;
  top: 38%;
  z-index: 96;
}

.service-rail > button {
  min-height: 42px;
  writing-mode: vertical-rl;
  border: 0;
  background: var(--orange);
  color: #fff;
  padding: 12px 8px;
  font-weight: 800;
  cursor: pointer;
}

.service-rail-panel {
  position: absolute;
  right: 44px;
  top: 50%;
  width: 286px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  display: none;
  padding: 16px 18px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  transform: translateY(-50%);
}

.service-rail.open .service-rail-panel,
.service-rail:hover .service-rail-panel {
  display: grid;
  gap: 10px;
}

.service-rail-panel strong {
  color: var(--blue);
  font-size: 16px;
}

.service-close {
  position: absolute;
  right: 8px;
  top: 6px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 20px;
  cursor: pointer;
}

.service-status {
  display: block;
  padding-left: 13px;
  position: relative;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

.service-status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.service-rail-panel a {
  color: #333;
  overflow-wrap: anywhere;
}

.service-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}

.service-mini-form {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.service-mini-form label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.service-mini-form input {
  width: 100%;
  border: 1px solid #ddd;
  padding: 9px 10px;
  color: #333;
  font: inherit;
}

.service-mini-form button {
  min-height: 34px;
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
}

.service-mini-form span {
  color: var(--orange);
  font-size: 12px;
  line-height: 1.45;
}

.compare-modal.open {
  display: grid;
}

.compare-modal-card {
  width: min(960px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  position: relative;
  background: #fff;
  padding: 26px;
}

.compare-modal-card h2 {
  margin: 0 0 8px;
  color: var(--blue);
}

.compare-modal-card p {
  margin: 0 0 18px;
  color: #666;
}

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

.compare-table th,
.compare-table td {
  min-width: 150px;
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.compare-table th {
  background: #f5f5f5;
  color: var(--blue);
}

.compare-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  align-items: center;
}

.compare-page-actions a,
.compare-page-actions button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--blue);
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.compare-page-actions a:hover,
.compare-page-actions button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

body:has(.compare-dock) {
  padding-bottom: 64px;
}

.side-service {
  margin-top: 22px;
  border: 0;
  text-align: left;
  padding: 0;
}

.side-service .service-photo-small {
  width: 70px;
  height: 82px;
}

.side-service ul {
  border-top: 1px solid #ddd;
  margin-top: 12px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 38px;
  padding-bottom: 34px;
}

.product-page-layout {
  align-items: start;
}

.product-page-layout {
  display: block;
}

.product-page-layout > .side-nav {
  display: none;
}

.product-content {
  min-width: 0;
  width: 100%;
}

.product-page-heading {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.15;
}

.product-detail-inner {
  grid-template-columns: minmax(420px, 57%) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 18px;
}

.product-media {
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  padding: 14px 34px 18px 86px;
  position: relative;
  min-height: 378px;
}

.product-media .product-thumb {
  width: min(500px, 100%);
  height: 342px;
  display: block;
  margin: 0 auto;
}

.thumb-rail {
  position: absolute;
  left: 8px;
  top: 14px;
  display: grid;
  gap: 9px;
  margin: 0;
}

.thumb-rail button {
  width: 58px;
  height: 52px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 4px;
  cursor: pointer;
}

.thumb-rail button.active,
.thumb-rail button:hover {
  border-color: var(--orange);
}

.thumb-rail .product-thumb {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fafafa;
}

.image-zoom-trigger {
  position: absolute;
  right: 12px;
  top: 12px;
  min-height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  padding: 0 10px;
  cursor: pointer;
  font-size: 13px;
}

.gallery-next {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 28px;
  height: 42px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #111;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.product-summary h1 {
  display: none;
}

.product-summary {
  position: relative;
  min-height: 378px;
}

.product-summary > p {
  max-width: 360px;
  margin: 0 0 8px;
  color: #333;
  font-size: 11px;
  line-height: 1.35;
}

.spec-table {
  display: none;
}

.spec-table th,
.spec-table td {
  padding: 11px 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.spec-table th {
  width: 36%;
  background: #f5f5f5;
}

.cta-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin: -36px 0 8px 88px;
}

.cta-row button {
  cursor: pointer;
}

.quote-ok-btn {
  min-width: 86px;
  height: 30px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.product-summary > .wishlist-line,
.product-summary > .product-utility,
.product-summary > .product-status-panel,
.product-summary > .advisor-panel,
.product-buy-box .secondary-btn,
.product-buy-box > .inquiry-result,
.product-buy-box > .quote-feedback {
  display: none;
}

body:has(.product-detail) .service-rail,
body:has(.product-detail) .compare-dock {
  display: none;
}

body:has(.comparison-table) .service-rail,
body:has(.finder-panel) .service-rail {
  display: none;
}

body:has(.chemical-page) .service-rail {
  display: none;
}

.inquiry-result {
  align-self: center;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.product-buy-box {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-top-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  column-gap: 18px;
  row-gap: 5px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 0;
}

.product-top-service p {
  margin: 0 0 8px;
  color: #555;
  line-height: 1.35;
  font-size: 11px;
  grid-column: 1 / -1;
}

.product-top-service p strong {
  color: #111;
}

.product-top-service .delivery-line,
.product-top-service .quote-help {
  color: var(--orange);
  font-weight: 700;
}

.product-top-service ul {
  grid-column: 1;
  margin: 4px 0 0;
  padding: 0;
  border-top: 0;
  list-style: none;
}

.product-top-service li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  color: #333;
  font-size: 11px;
  font-weight: 700;
}

.product-top-service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--orange);
}

.top-service-links {
  grid-column: 2;
  grid-row: 5 / span 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 0;
  align-self: start;
}

.top-service-links a {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  text-align: center;
  font-size: 11px;
}

.top-service-links a:first-child {
  background: #37b58a;
  border-color: #37b58a;
  color: #fff;
}

.top-service-links a:nth-child(2),
.top-service-links a:nth-child(3),
.top-service-links a:nth-child(4) {
  background: #68aee8;
  border-color: #68aee8;
  color: #fff;
}

.top-service-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.product-action-status {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.advisor-panel {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #ddd;
  background: #fff;
}

.advisor-panel h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 19px;
}

.advisor-panel p {
  margin: 0 0 12px;
  color: #555;
}

.advisor-panel div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.advisor-panel a,
.advisor-panel button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: var(--orange);
  color: #fff;
  padding: 0 13px;
  cursor: pointer;
  font-weight: 700;
}

.advisor-panel button {
  background: #efefef;
  color: #333;
}

.product-support-links {
  margin: 0 0 34px;
  padding: 18px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.product-support-links h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 22px;
}

.product-support-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.product-support-links a,
.product-support-links button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  padding: 0 12px;
  cursor: pointer;
  font-weight: 700;
}

.product-support-links a:hover,
.product-support-links button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.product-support-links p {
  margin: 0;
  color: #666;
  line-height: 1.55;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11px;
}

.qty-row input {
  width: 52px;
  height: 28px;
  border: 1px solid #ccc;
  padding: 0 8px;
}

.qty-stepper {
  display: none;
  gap: 4px;
}

.qty-stepper button {
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-weight: 800;
}

.compare-check {
  display: none;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: #555;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}

.secondary-btn {
  background: #efefef;
  color: #333;
}

.form-panel {
  max-width: 760px;
  display: grid;
  gap: 14px;
}

.form-panel label {
  display: grid;
  gap: 6px;
  color: #333;
}

.form-panel input,
.form-panel textarea,
.form-panel select {
  min-height: 40px;
  border: 1px solid #ccc;
  padding: 9px 10px;
}

.file-name {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 13px;
}

.upload-drop {
  padding: 10px;
  border: 1px dashed transparent;
}

.upload-drop.drag-over {
  border-color: var(--orange);
  background: #fff8ef;
}

.password-toggle {
  width: fit-content;
  min-height: 30px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  color: var(--blue);
  padding: 0 10px;
  cursor: pointer;
}

.account-help {
  max-width: 760px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid #ddd;
  background: #fafafa;
}

.account-help h2 {
  margin: 0 0 8px;
  color: var(--blue);
}

.account-help p {
  margin: 0 0 12px;
  color: #555;
}

.account-help a {
  display: inline-flex;
  margin-right: 12px;
  color: var(--orange);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-box {
  border: 1px solid #ddd;
  padding: 22px;
}

.contact-box h2 {
  margin: 0 0 12px;
  color: var(--blue);
}

.detail-tabs,
.related-products {
  margin-bottom: 34px;
}

.detail-tabs {
  max-width: calc(57% - 12px);
}

.tab-head {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.tab-head button {
  min-width: auto;
  min-height: 34px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--orange);
  padding: 0 18px 0 0;
  font-weight: 700;
  cursor: pointer;
}

.tab-head button.active {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.tab-body {
  display: none;
  padding: 0;
  max-width: none;
}

.tab-body h2,
.related-products h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 24px;
}

.tab-body p {
  margin: 0 0 12px;
  color: #555;
}

.download-list {
  display: grid;
  max-width: 620px;
  margin-bottom: 16px;
  border-top: 1px solid #ddd;
}

.download-list a {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ddd;
  color: #333;
}

.download-list strong::before {
  content: "";
  width: 18px;
  height: 22px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  border: 1px solid #aaa;
  background: linear-gradient(135deg, #fff 0 70%, #ddd 70% 100%);
}

.download-list span {
  color: var(--orange);
  font-size: 13px;
}

.download-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  margin-bottom: 14px;
}

.download-matrix a {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-content: center;
  padding: 12px 14px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.download-matrix strong {
  color: var(--blue);
}

.download-matrix span {
  color: #666;
  font-size: 13px;
}

.download-matrix em {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--orange);
  font-style: normal;
  font-size: 13px;
}

.download-usage {
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 14px;
}

.download-usage label {
  color: var(--blue);
  font-weight: 700;
}

.download-usage select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #d8d8d8;
  padding: 9px 10px;
  background: #fff;
  color: #555;
}

.finder-panel,
.service-hero-panel {
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid #ddd;
  background: #fff;
}

.finder-panel h2,
.service-hero-panel h2 {
  margin: 0 0 14px;
  color: var(--blue);
}

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

.finder-grid label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
}

.finder-grid input,
.finder-grid select {
  min-height: 40px;
  border: 1px solid #ccc;
  padding: 0 10px;
  background: #fff;
  color: #555;
}

.finder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.finder-results {
  margin-top: 22px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.finder-results h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--blue);
}

.finder-results p {
  margin: 0 0 14px;
  color: var(--muted);
}

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

.finder-result-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  grid-template-rows: auto auto auto;
  gap: 3px 12px;
  align-items: center;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px;
  color: var(--text);
}

.finder-result-card .product-thumb {
  grid-row: 1 / 4;
  width: 68px;
  height: 58px;
}

.finder-result-card strong {
  color: var(--blue);
  font-size: 15px;
}

.finder-result-card span,
.finder-result-card small {
  color: var(--muted);
  line-height: 1.35;
}

.filter-help-grid,
.service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 28px;
}

.filter-help-grid article,
.service-link-grid a {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid #ddd;
  background: #fff;
}

.filter-help-grid h2,
.service-link-grid strong {
  margin: 0;
  color: var(--blue);
  font-size: 20px;
}

.service-link-grid span,
.filter-help-grid p {
  color: #555;
}

.service-hero-panel {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: end;
  background: #f7f7f7;
}

.service-hero-panel .service-photo {
  width: 210px;
  max-height: 270px;
  object-fit: contain;
  justify-self: center;
}

.service-faq {
  margin-top: 18px;
}

.contact-service-shortcuts {
  margin: 28px 0 0;
}

.contact-service-shortcuts h2 {
  color: var(--blue);
}

.contact-service-shortcuts > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-service-shortcuts a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid #ddd;
  background: #fff;
}

.contact-service-shortcuts strong {
  color: var(--blue);
}

.contact-service-shortcuts span {
  color: #555;
}

.sitemap-page,
.catalog-page,
.chemical-page {
  padding-bottom: 48px;
}

.sitemap-page-grid,
.catalog-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sitemap-page-grid section,
.catalog-panel,
.chemical-note {
  padding: 22px;
  border: 1px solid #ddd;
  background: #fff;
}

.sitemap-page-grid h2,
.catalog-panel h2,
.chemical-note h2 {
  margin: 0 0 14px;
  color: var(--blue);
}

.sitemap-page-grid a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #333;
}

.sitemap-page-grid a:hover {
  color: var(--orange);
}

.catalog-panel ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #555;
}

.chemical-table-wrap {
  overflow-x: auto;
  margin: 0 0 18px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.chemical-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
  background: #fff;
}

.chemical-table th,
.chemical-table td {
  border: 1px solid #ddd;
  padding: 8px 10px;
  text-align: left;
  font-size: 12px;
  line-height: 1.35;
}

.chemical-table th {
  color: var(--blue);
  background: #f5f5f5;
  font-size: 12px;
}

.chemical-table td:not(:first-child):not(:last-child) {
  text-align: center;
  font-weight: 800;
  color: var(--blue);
}

.chemical-table tr.hidden {
  display: none;
}

.chemical-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin: 18px 0;
}

.chemical-key dl {
  margin: 0;
  display: grid;
  gap: 7px;
}

.chemical-key dl div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
}

.chemical-key dt {
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.chemical-key dd {
  margin: 0;
  color: #555;
  line-height: 1.45;
}

.chemical-reference-panel {
  margin: 16px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: #f8f8f8;
}

.chemical-reference-panel h2 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 18px;
}

.chemical-reference-panel p {
  margin: 0 0 8px;
  font-weight: 700;
}

.chemical-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto auto;
  gap: 10px;
  align-items: end;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid #ddd;
  background: #fff;
}

.chemical-toolbar label {
  display: grid;
  gap: 5px;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}

.chemical-toolbar input[type="search"] {
  height: 36px;
  border: 1px solid #ccc;
  padding: 0 10px;
  font-size: 13px;
}

.chemical-toggle {
  grid-auto-flow: column;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: #333;
}

.chemical-toolbar button {
  height: 36px;
  border: 1px solid #ddd;
  background: #f6f6f6;
  color: var(--blue);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 700;
}

.chemical-toolbar span {
  color: #555;
  font-size: 12px;
}

.chemical-disclaimer {
  padding: 18px 22px;
  background: #f8f8f8;
}

.chemical-disclaimer h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 18px;
}

.chemical-disclaimer p {
  margin: 0;
  color: #555;
  line-height: 1.55;
}

.chemical-note p {
  color: #555;
}

.knowledge-page {
  padding-bottom: 38px;
}

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

.knowledge-grid article,
.knowledge-steps,
.knowledge-media-row {
  padding: 20px;
  border: 1px solid #ddd;
  background: #fff;
}

.knowledge-grid h2,
.knowledge-steps h2,
.knowledge-media-row h2 {
  margin: 0 0 10px;
  color: var(--blue);
}

.knowledge-grid p,
.knowledge-steps p,
.knowledge-media-row li {
  color: #555;
}

.knowledge-steps ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #555;
}

.knowledge-media-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.knowledge-media-row .product-thumb {
  width: 220px;
  height: 220px;
  justify-self: center;
}

.account-page,
.thanks-page {
  padding-bottom: 48px;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.account-form,
.account-side-panel,
.account-table-card,
.thanks-card {
  border: 1px solid #ddd;
  background: #fff;
}

.account-side-panel,
.thanks-card {
  padding: 22px;
}

.account-side-panel h2,
.thanks-card h2 {
  margin: 0 0 14px;
  color: var(--blue);
}

.account-side-panel ul,
.thanks-card ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #555;
}

.account-table-card {
  overflow-x: auto;
  margin-bottom: 18px;
}

.account-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.account-table th,
.account-table td {
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 14px;
  text-align: left;
}

.account-table th {
  color: var(--blue);
  background: #f5f5f5;
}

.account-actions,
.saved-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.saved-products-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
}

.thanks-card {
  max-width: 760px;
}

.utility-page {
  padding-bottom: 48px;
}

.search-result-panel,
.comparison-table-wrap {
  padding: 22px;
  border: 1px solid #ddd;
  background: #fff;
}

.utility-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 18px;
}

.utility-search-form input {
  min-height: 42px;
  border: 1px solid #ccc;
  padding: 0 12px;
}

.search-result-list {
  display: grid;
  gap: 10px;
}

.search-result-list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
}

.search-result-list .product-thumb {
  width: 64px;
  height: 56px;
  grid-row: span 2;
  background-color: #fff;
}

.search-result-list strong {
  color: var(--blue);
}

.search-result-list span {
  color: #555;
}

.channel-notice {
  display: grid;
  gap: 4px;
  margin: 0 0 18px;
  padding: 14px 18px;
  border-left: 4px solid var(--orange);
  background: #f8f8f8;
}

.channel-notice strong {
  color: var(--blue);
}

.channel-notice span {
  color: #555;
}

.quote-basket-summary {
  margin: 0 0 18px;
  padding: 18px 22px;
  border: 1px solid #ddd;
  background: #f8f8f8;
}

.quote-basket-summary h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 20px;
}

.quote-basket-summary ul {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.quote-basket-summary li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #e5e5e5;
}

.quote-basket-summary a {
  color: var(--blue);
  font-weight: 800;
}

.quote-basket-summary span {
  color: #555;
}

.quote-basket-summary button {
  min-height: 34px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  padding: 0 12px;
  cursor: pointer;
  font-weight: 700;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-bottom: 18px;
}

.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 12px 14px;
  text-align: left;
}

.comparison-table th {
  color: var(--blue);
  background: #f5f5f5;
}

.download-note {
  max-width: 880px;
  color: #666;
}

.download-process {
  max-width: 880px;
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  margin: 12px 0 16px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  background: #fff;
}

.download-process strong,
.download-process span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}

.download-process strong {
  color: var(--blue);
  background: #f5f5f5;
}

.download-process span {
  color: #555;
}

.legal-page {
  padding-bottom: 48px;
}

.legal-page h1 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 30px;
}

.legal-card {
  max-width: 980px;
  border-top: 1px solid #ddd;
}

.legal-card h2 {
  margin: 0;
  padding: 18px 0 8px;
  color: var(--blue);
  font-size: 21px;
}

.legal-card p {
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #eee;
  color: #555;
  line-height: 1.7;
}

.product-utility {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e5e5e5;
}

.product-utility button {
  min-height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  padding: 0 12px;
  cursor: pointer;
}

.wishlist-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.wishlist-line .wishlist-btn {
  min-height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--blue);
  padding: 0 12px;
}

.wishlist-line .wishlist-btn.active {
  color: var(--orange);
}

.wishlist-line span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.utility-result {
  color: var(--orange);
  font-size: 13px;
}

.product-status-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 18px 0 0;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.product-status-panel div {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 42px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.product-status-panel dt,
.product-status-panel dd {
  margin: 0;
  display: flex;
  align-items: center;
  padding: 8px 10px;
}

.product-status-panel dt {
  background: #f5f5f5;
  color: var(--blue);
  font-weight: 700;
}

.product-status-panel dd {
  color: #555;
}

.product-side-info {
  position: absolute;
  left: 0;
  right: 0;
  top: 388px;
  margin-top: 0;
}

.product-side-info h2,
.product-long-specs-side h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 17px;
}

.product-side-info dl {
  margin: 0;
}

.product-side-info dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 5px 0;
  font-size: 12px;
}

.product-side-info dt,
.product-side-info dd {
  margin: 0;
}

.product-side-info dt {
  color: var(--blue);
  font-weight: 700;
}

.product-side-info dd {
  color: #555;
  line-height: 1.45;
}

.original-product-detail-block {
  max-width: calc(57% - 12px);
  margin: 0 0 28px;
  padding-top: 12px;
}

.product-copy-block,
.product-action-panel,
.product-long-specs {
  min-width: 0;
}

.product-copy-block h2,
.product-action-panel h2,
.product-long-specs h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 15px;
}

.product-copy-block {
  background: #f8f8f8;
  padding: 18px 22px;
}

.product-copy-block h3 {
  margin: 14px 0 5px;
  color: #111;
  font-size: 13px;
}

.product-copy-block p {
  margin: 0;
  color: #555;
  line-height: 1.55;
  font-size: 12px;
}

.product-action-panel {
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #ddd;
  background: #f8f8f8;
}

.product-action-panel label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
}

.product-action-panel input {
  height: 38px;
  border: 1px solid #ccc;
  padding: 0 10px;
}

.product-action-panel button {
  min-height: 38px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.product-action-panel span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.product-action-panel a {
  display: block;
  padding: 9px 0;
  border-top: 1px solid #e3e3e3;
  color: #333;
  font-weight: 700;
}

.product-action-panel a:hover {
  color: var(--orange);
}

.product-long-specs {
  margin-top: 20px;
}

.product-long-specs-side {
  position: absolute;
  left: 0;
  right: 0;
  top: 552px;
  margin-top: 0;
}

.product-long-specs table {
  width: 100%;
  border-collapse: collapse;
  border-top: 0;
}

.product-long-specs th,
.product-long-specs td {
  padding: 5px 8px;
  border-bottom: 2px solid #fff;
  text-align: left;
  vertical-align: top;
  font-size: 11px;
}

.product-long-specs th {
  width: 34%;
  background: #f4f4f4;
  color: var(--blue);
}

.product-long-specs td {
  background: #f8f8f8;
  color: #555;
}

.quote-feedback {
  margin: 10px 0 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 18px;
  align-items: start;
  margin: 28px 0;
  padding: 22px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.review-panel h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 22px;
}

.review-panel p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.rating-box {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  text-align: center;
}

.rating-box strong {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.rating-box span {
  margin: 8px 0 4px;
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0;
}

.rating-box small,
.review-result {
  color: #666;
  font-size: 13px;
}

.review-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.review-form label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
}

.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 10px;
  color: #333;
  font: inherit;
}

.review-form button {
  min-height: 42px;
  border: 0;
  background: var(--orange);
  color: #fff;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}

.review-result {
  grid-column: 1 / -1;
  color: var(--orange);
  font-weight: 700;
}

.recently-viewed {
  padding: 8px 0 40px;
}

.recently-viewed h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 16px;
}

.recent-row {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.recent-row a {
  width: 120px;
  flex: 0 0 120px;
  min-height: 0;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  color: #222;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.25;
}

.recent-row .product-thumb {
  width: 110px;
  height: 88px;
  display: block;
  margin-bottom: 8px;
  background-color: #fafafa;
}

.related-products {
  padding-top: 10px;
}

.related-products .listing-grid {
  display: flex;
  gap: 42px;
  overflow-x: auto;
}

.related-products .listing-card {
  width: 135px;
  flex: 0 0 135px;
  display: block;
  min-height: 0;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.related-products .listing-card .product-thumb {
  width: 120px;
  height: 110px;
  min-height: 110px;
  margin-bottom: 10px;
}

.related-products .listing-card h3 {
  font-size: 12px;
  line-height: 1.25;
}

.related-products .listing-card p,
.related-products .listing-card .orange-link,
.related-products .listing-card .quick-actions,
.related-products .listing-card .listing-compare,
.related-products .listing-card .wishlist-btn {
  display: none;
}

.quote-steps {
  margin: 0 0 28px;
  padding-left: 22px;
  color: #555;
}

.quote-steps li {
  margin-bottom: 8px;
}

.quote-questions {
  margin: 22px 0;
  padding: 18px 22px;
  background: #f7f7f7;
  color: #555;
}

.quote-questions h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 20px;
}

.quote-form-grid {
  max-width: none;
  grid-template-columns: repeat(2, 1fr);
}

.quote-form-grid label:nth-last-of-type(3),
.quote-form-grid label:nth-last-of-type(2),
.quote-form-grid label:nth-last-of-type(1),
.quote-form-grid .captcha-placeholder,
.quote-form-grid .required-note,
.quote-form-grid button,
.quote-form-grid .form-result {
  grid-column: 1 / -1;
}

.captcha-placeholder {
  width: 304px;
  min-height: 78px;
  justify-self: end;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  background: #fafafa;
  color: #555;
}

.captcha-placeholder span {
  width: 28px;
  height: 28px;
  border: 2px solid #9a9a9a;
  background: #fff;
}

.captcha-placeholder strong,
.captcha-placeholder small {
  display: block;
}

.captcha-placeholder small {
  color: #888;
}

.required-note {
  justify-self: end;
  margin: -6px 0 0;
  color: var(--orange);
  font-size: 13px;
}

.quote-form-grid button {
  justify-self: end;
  min-width: 120px;
}

.field-hint {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 12px;
  line-height: 1.45;
}

.inline-form-result {
  display: block;
  color: var(--orange);
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 95;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--blue);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateY(10px);
}

.mobile-menu-backdrop {
  display: none;
}

body.show-back-to-top .back-to-top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .page-layout,
  .product-detail,
  .contact-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .page-layout > article,
  .comparison-table-wrap,
  .chemical-table-wrap,
  .account-table-card {
    min-width: 0;
    max-width: 100%;
  }

  .compare-strip,
  .quote-form-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-list-view .listing-card {
    grid-template-columns: 110px 1fr;
    column-gap: 14px;
  }

  .listing-list-view .listing-card .product-thumb {
    width: 110px;
    height: 110px;
    min-height: 110px;
  }

  .listing-list-view .listing-card .orange-link,
  .listing-list-view .listing-compare {
    grid-column: 2;
    justify-self: start;
  }

  .compare-dock-inner {
    min-height: 92px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .compare-dock span {
    grid-column: 1 / -1;
  }

  .compare-dock-panel {
    grid-template-columns: 1fr;
  }

  .quote-form-grid button {
    justify-self: stretch;
  }

  .captcha-placeholder,
  .required-note {
    width: 100%;
    justify-self: stretch;
  }

  .recent-row {
    grid-template-columns: 1fr;
  }

  .download-matrix {
    grid-template-columns: 1fr;
  }

  .download-usage {
    grid-template-columns: 1fr;
  }

  .finder-grid,
  .filter-help-grid,
  .service-link-grid,
  .service-hero-panel,
  .contact-service-shortcuts > div,
  .sitemap-page-grid,
  .catalog-download-grid,
  .knowledge-grid,
  .knowledge-media-row,
  .account-layout,
  .saved-products-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-panel .service-photo {
    max-height: 220px;
  }

  .download-process,
  .site-map-grid,
  .footer-utility-inner,
  .recent-viewed-strip > div {
    grid-template-columns: 1fr;
  }

  .chemical-guide-grid,
  .chemical-toolbar {
    grid-template-columns: 1fr;
  }

  .chemical-toolbar {
    align-items: stretch;
  }

  .chemical-toggle {
    grid-template-columns: auto 1fr;
  }

  .product-status-panel {
    grid-template-columns: 1fr;
  }

  .product-detail-inner,
  .original-product-detail-block {
    grid-template-columns: 1fr;
  }

  .product-page-layout,
  .product-content,
  .product-detail-inner,
  .product-detail-inner > * {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .original-product-detail-block {
    max-width: none;
  }

  .product-summary {
    min-height: 0;
  }

  .product-side-info,
  .product-long-specs-side {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 18px;
  }

  .product-media .product-thumb {
    height: 280px;
  }

  .product-long-specs {
    grid-column: auto;
  }

  .product-long-specs th,
  .product-long-specs td {
    display: block;
    width: 100%;
  }

  .review-panel,
  .review-form {
    grid-template-columns: 1fr;
  }

  .review-form button {
    width: 100%;
  }

  .recent-row a {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .recent-row span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .listing-badges {
    position: static;
    margin-bottom: 6px;
  }

  .listing-card > .wishlist-btn {
    top: 2px;
    right: 2px;
  }

  .wishlist-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-actions {
    display: none;
  }

  .service-rail {
    right: 8px;
    top: auto;
    bottom: 154px;
  }

  .service-rail-panel {
    right: 42px;
    top: auto;
    bottom: 0;
    width: min(250px, calc(100vw - 72px));
    max-height: min(520px, calc(100vh - 190px));
    transform: none;
  }

  .quick-view-card {
    grid-template-columns: 1fr;
  }

  .quick-view-media {
    min-height: 190px;
  }

  .upload-panel,
  .site-map-grid {
    grid-template-columns: 1fr;
  }

  .finder-result-grid {
    grid-template-columns: 1fr;
  }

  .finder-result-card {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .footer-grid-expanded > div:not(.footer-open) a,
  .footer-grid-expanded > div:not(.footer-open) p {
    display: none;
  }

  .footer-grid-expanded h3 {
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .footer-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-align: left;
  }

  .footer-toggle::after {
    content: "+";
    color: var(--orange);
  }

  .footer-open .footer-toggle::after {
    content: "-";
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 60px 0 0;
    z-index: 88;
    border: 0;
    background: rgba(0, 0, 0, 0.16);
  }

  .mobile-menu-open .mobile-menu-backdrop {
    display: block;
  }

  .mobile-menu-open .main-menu {
    position: relative;
    z-index: 89;
  }
}

/* Responsive screenshot QA pass: prevent nav overflow and improve mobile media/button layout. */
@media (min-width: 981px) {
  .menu-inner {
    width: 100%;
  }

  .menu-inner a {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  .menu-inner a:last-child {
    border-right: 0;
  }
}

@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 28px, 720px);
  }

  .product-media {
    min-height: 0;
    padding: 12px;
  }

  .product-media .product-thumb {
    width: 100%;
    height: min(62vw, 300px);
  }

  .thumb-rail {
    position: static;
    display: flex;
    gap: 8px;
    margin: 10px 0 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .thumb-rail::-webkit-scrollbar {
    display: none;
  }

  .thumb-rail button {
    flex: 0 0 58px;
  }
}

@media (max-width: 620px) {
  .header-tools {
    gap: 10px;
  }

  .header-tools > a,
  .header-tools > button {
    min-height: 34px;
  }

  .cookie-consent {
    align-items: end;
    padding: 10px;
  }

  .cookie-card {
    width: min(100%, 370px);
    max-height: min(72vh, 560px);
  }

  .cookie-brand-row,
  .cookie-body,
  .cookie-switches label,
  .cookie-actions {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cookie-body p {
    font-size: 13px;
    line-height: 1.45;
  }

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

  .product-media .product-thumb {
    height: min(68vw, 270px);
  }

  .service-rail {
    display: none;
  }

  .slide-copy {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .slide-copy a,
  .primary-btn,
  .secondary-btn,
  .quote-form-grid button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
