/* Keep the branding row compact.  The mega menu itself is rendered below it. */
#header .header-bottom {
  padding-block: .45rem;
}

#header .header-bottom__row {
  min-height: 58px;
}

#header .header-bottom__logo img {
  display: block;
  width: auto;
  max-height: 52px;
}

/* displayTop previously lived in the logo row, which made the header very tall. */
#header .saltech-header-menu {
  width: 100%;
  clear: both;
}

#header .saltech-header-menu .saltech-mega-menu {
  margin-top: 0;
}

/* Keep the full brand header at the top, then condense only while scrolling. */
#header .header-top,
#header .header-bottom,
#header .header-bottom__row,
#header .header-bottom__logo img,
#header .saltech-mega-menu__list,
#header .saltech-mega-menu__item > a,
#header .saltech-mega-menu__item > a img {
  transition: min-height .2s ease, max-height .2s ease, padding .2s ease, opacity .2s ease, width .2s ease, height .2s ease;
}

#header .header-top {
  max-height: 90px;
  overflow: visible;
  position: relative;
  z-index: 30;
}

body.saltech-header-scrolled #header .header-top {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

body.saltech-header-scrolled #header .header-bottom {
  padding-block: .15rem;
}

body.saltech-header-scrolled #header .header-bottom__row {
  min-height: 36px;
}

body.saltech-header-scrolled #header .header-bottom__logo img {
  max-height: 28px;
}

body.saltech-header-scrolled #header .search-widget input,
body.saltech-header-scrolled #header #search_widget input,
body.saltech-header-scrolled #header input[type="search"] {
  min-height: 34px;
}

body.saltech-header-scrolled #header .saltech-mega-menu__list,
body.saltech-header-scrolled #header .saltech-mega-menu__item > a {
  min-height: 52px;
}

body.saltech-header-scrolled #header .saltech-mega-menu__item > a {
  gap: .18rem;
  padding-block: .25rem;
  font-size: .72rem;
}

body.saltech-header-scrolled #header .saltech-mega-menu__item > a img {
  width: 25px;
  height: 25px;
}

/* Match the mega menu to the black/red/white Sal-Tech mark. */
#header .saltech-mega-menu {
  border-bottom-color: var(--saltech-red);
  color: var(--saltech-navy);
}

#header .saltech-mega-menu__item > a,
#header .saltech-mega-menu__section-title,
#header .saltech-mega-menu__leaf,
#header .saltech-mega-menu__link,
#header .saltech-mega-menu__products a {
  color: var(--saltech-navy) !important;
}

#header .saltech-mega-menu__item:hover > a,
#header .saltech-mega-menu__item:focus-within > a,
#header .saltech-mega-menu__section-title:hover,
#header .saltech-mega-menu__leaf:hover,
#header .saltech-mega-menu__link:hover,
#header .saltech-mega-menu__products a:hover {
  color: var(--saltech-red) !important;
}

#header .saltech-mega-menu__panel--box {
  border-top-color: var(--saltech-red);
}

#header .saltech-mega-menu__panel::-webkit-scrollbar-thumb,
#header .saltech-product-index__content::-webkit-scrollbar-thumb {
  background: var(--saltech-red);
}

/* Sal-Tech storefront design system */
:root {
  /* Taken from the Sal-Tech logo: black, white and its signal red. */
  --saltech-navy: #121212;
  --saltech-ink: #292929;
  --saltech-red: #ed1c24;
  --saltech-red-dark: #c91018;
  --saltech-surface: #ffffff;
  --saltech-muted: #f7f7f7;
  --saltech-line: #e5e5e5;
  --saltech-radius: 10px;
}

body {
  color: var(--saltech-ink);
  background: #fff;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

/* Reusable technical backdrop for CMS, account, or campaign pages.
   Add `saltech-technical-page` to the body element of the target page. */
body.saltech-technical-page {
  background:
    linear-gradient(rgba(255, 255, 255, .84), rgba(255, 255, 255, .84)),
    url('../img/backgrounds/technical-parts-banner.png') center top / cover fixed no-repeat;
}

body.saltech-technical-page #wrapper,
body.saltech-technical-page .page-content,
body.saltech-technical-page #content {
  background: transparent;
}

body.saltech-technical-page #content {
  border-radius: var(--saltech-radius);
}

a {
  color: var(--saltech-navy);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--saltech-red);
}

.container,
.container-md,
.container-lg,
.container-xl {
  width: min(100% - 2rem, 1440px);
}

/* Utility/header line: small, readable, and visually separate from shopping. */
#header .header-top {
  min-height: 34px;
  border-bottom: 1px solid var(--saltech-line);
  background: #fff;
  color: #4b5563;
  font-size: .82rem;
}

#header .header-top a {
  color: inherit;
  text-decoration: none;
}

#header .header-top a:hover {
  color: var(--saltech-red);
}

/* Utility toolbar: contact information on the left, customer actions on the right. */
#header .header-top .row {
  min-height: 36px;
  align-items: center;
}

#header .header-top__left,
#header .header-top__right {
  display: flex;
  align-items: center;
}

#header .header-top__right {
  justify-content: flex-end;
  gap: .15rem;
}

#header .ps-contactinfo__phone {
  display: inline-flex;
  gap: .35rem;
  align-items: center;
  color: var(--saltech-navy) !important;
  font-weight: 700;
}

#header .ps-contactinfo__phone::before {
  content: '☎';
  color: var(--saltech-red);
  font-size: .9rem;
}

#header .saltech-support-email {
  display: inline-flex;
  gap: .3rem;
  align-items: center;
  margin-left: .85rem;
  padding-left: .85rem;
  border-left: 1px solid var(--saltech-line);
  color: #555 !important;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
}

#header .saltech-support-email::before {
  content: '✉';
  color: var(--saltech-red);
  font-size: .9rem;
}

#header .saltech-support-email:hover {
  color: var(--saltech-red) !important;
}

#header .ps-languageselector,
#header .ps-currencyselector,
#header .ps-customersignin,
#header .ps-shoppingcart {
  display: flex;
  align-items: center;
}

#header .ps-languageselector,
#header .ps-currencyselector,
#header .ps-customersignin {
  padding-right: .2rem;
  border-right: 1px solid var(--saltech-line);
}

#header .ps-languageselector .form-select,
#header .ps-currencyselector .form-select {
  width: auto;
  min-height: 30px;
  padding: .15rem 1.55rem .15rem .45rem;
  border: 0;
  border-radius: 5px;
  background-color: transparent;
  color: #444;
  font-size: .8rem;
  font-weight: 600;
  box-shadow: none;
}

#header .ps-languageselector .form-select:hover,
#header .ps-currencyselector .form-select:hover,
#header .ps-languageselector .form-select:focus,
#header .ps-currencyselector .form-select:focus {
  background-color: #fff4f4;
  color: var(--saltech-red);
  box-shadow: none;
}

/* Replaces browser-native language/currency lists with compact menus. */
#header .saltech-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#header .saltech-select {
  position: relative;
}

#header .saltech-select__toggle {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  min-height: 30px;
  padding: .25rem .55rem;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #444;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
}

#header .saltech-select__toggle::after {
  width: .46rem;
  height: .46rem;
  content: '';
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

#header .saltech-select.is-open .saltech-select__toggle,
#header .saltech-select__toggle:hover,
#header .saltech-select__toggle:focus {
  background: #fff3f3;
  color: var(--saltech-red);
}

#header .saltech-select.is-open .saltech-select__toggle::after {
  transform: translateY(2px) rotate(225deg);
}

#header .saltech-select__menu {
  position: absolute;
  top: calc(100% + .35rem);
  right: 0;
  z-index: 1100;
  display: none;
  width: max-content;
  min-width: 145px;
  max-width: min(280px, 90vw);
  max-height: 260px;
  padding: .35rem;
  overflow-y: auto;
  border: 1px solid var(--saltech-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 18, 18, .14);
}

#header .saltech-select.is-open .saltech-select__menu {
  display: grid;
  animation: saltech-menu-in .16s ease-out;
}

#header .saltech-select__option {
  width: 100%;
  padding: .52rem .65rem;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #444;
  font-size: .82rem;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

#header .saltech-select__option:hover,
#header .saltech-select__option:focus,
#header .saltech-select__option.is-selected {
  background: #fff1f1;
  color: var(--saltech-red);
}

#header .saltech-select__menu::-webkit-scrollbar { width: 7px; }
#header .saltech-select__menu::-webkit-scrollbar-thumb { border-radius: 999px; background: var(--saltech-red); }

@keyframes saltech-menu-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

#header .header-top .header-block__action-btn {
  min-height: 30px;
  padding: .3rem .55rem;
  font-size: .8rem;
}

#header .header-top .header-block__icon {
  font-size: 1.05rem;
}

#header .header-top .header-block__badge {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: .22rem;
  border-radius: 50%;
  background: var(--saltech-red);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  line-height: 18px;
  place-items: center;
}

#header .header-bottom {
  border-bottom: 1px solid var(--saltech-line);
  background: rgba(255, 255, 255, .98);
}

#header .header-bottom__row {
  gap: .5rem;
}

/* Search, account and cart become compact action controls instead of loose text. */
#header .search-widget,
#header #search_widget {
  min-width: min(100%, 360px);
}

#header .search-widget form,
#header #search_widget form {
  position: relative;
}

#header .search-widget input,
#header #search_widget input,
#header input[type="search"] {
  min-height: 40px;
  border: 1px solid var(--saltech-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
  color: var(--saltech-ink);
  font-size: .9rem;
}

#header .search-widget input:focus,
#header #search_widget input:focus,
#header input[type="search"]:focus {
  border-color: var(--saltech-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217, 52, 43, .12);
}

/* Rich product data in the predictive search list. */
#header .saltech-search-result { display: grid; grid-template-columns: 64px minmax(0, 1fr); column-gap: .75rem; align-items: center; padding: .7rem .9rem; }
#header .saltech-search-result:hover { background: #fff7f7; }
#header .saltech-search-result__name { grid-column: 2; margin: 0; color: var(--saltech-navy); font-weight: 750; line-height: 1.3; }
#header .saltech-search-result__meta { grid-column: 2; display: flex; flex-wrap: wrap; align-items: center; gap: .3rem .7rem; color: #69717c; font-size: .76rem; }
#header .saltech-search-result__reference { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
#header .saltech-search-result__price { color: var(--saltech-red); font-size: .88rem; }
#header .saltech-search-result__availability { color: #69717c; }
#header .saltech-search-result__availability.is-in-stock { color: #168653; font-weight: 700; }
#header .saltech-search-result .ps-searchbar__result-image { grid-row: 1 / span 2; width: 64px; height: 64px; object-fit: contain; }

/* Product-list sorting: a clear, compact control instead of a plain dropdown. */
#js-product-list-top .products__selection { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 0 0 1.25rem; padding: .8rem 1rem; border: 1px solid var(--saltech-line); border-left: 3px solid var(--saltech-red); border-radius: 8px; background: #fff; }
#js-product-list-top .products__count { color: #66717d; font-size: .88rem; }
#js-product-list-top .products__sort { display: flex; align-items: center; gap: .5rem; }
#js-product-list-top .products__sort-label { color: var(--saltech-navy); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
#js-product-list-top .products__sort-dropdown { position: relative; }
#js-product-list-top .products__sort-dropdown-button { min-width: 185px; min-height: 40px; padding: .5rem 2.2rem .5rem .8rem; border: 1px solid #cbd3dc; border-radius: 7px; background: #fff; color: var(--saltech-navy); font-size: .88rem; font-weight: 700; text-align: left; box-shadow: none; }
#js-product-list-top .products__sort-dropdown-button:hover, #js-product-list-top .products__sort-dropdown-button:focus { border-color: var(--saltech-red); background: #fff; box-shadow: 0 0 0 3px rgba(237, 28, 36, .1); color: var(--saltech-navy); }
#js-product-list-top .products__sort-dropdown .dropdown-menu { min-width: 100%; margin-top: .35rem; padding: .35rem; border: 1px solid var(--saltech-line); border-radius: 8px; box-shadow: 0 10px 24px rgba(15, 30, 67, .14); }
#js-product-list-top .products__sort-dropdown .dropdown-item { padding: .6rem .7rem; border-radius: 5px; color: var(--saltech-ink); font-size: .86rem; white-space: normal; }
#js-product-list-top .products__sort-dropdown .dropdown-item:hover, #js-product-list-top .products__sort-dropdown .dropdown-item:focus, #js-product-list-top .products__sort-dropdown .dropdown-item.current { background: #fff2f3; color: var(--saltech-red); font-weight: 700; }
#js-product-list-top .products__filter-button { min-height: 40px; border-radius: 7px; font-weight: 700; }
@media (max-width: 575px) { #js-product-list-top .products__selection { align-items: stretch; flex-direction: column; } #js-product-list-top .products__sort { width: 100%; } #js-product-list-top .products__sort-dropdown { flex: 1; } #js-product-list-top .products__sort-dropdown-button { width: 100%; min-width: 0; } }

/* Category listing pages use their title and description; omit the large cover banner. */
.category__cover { display: none !important; }

#header .header-block__action-btn,
#header .blockcart,
#header .user-info a {
  border-radius: 999px;
  color: var(--saltech-navy);
  font-weight: 700;
}

#header .header-block__action-btn:hover,
#header .user-info a:hover {
  color: var(--saltech-red);
  background: #fff6f5;
}

/* Main content has deliberate breathing room and consistent page rhythm. */
#main,
main {
  min-height: 40vh;
}

#wrapper,
.page-content,
#content {
  background: #fff;
}

#wrapper {
  padding-block: clamp(1.25rem, 2.5vw, 2.5rem);
}

/* Authentication, registration and guest tracking share a focused account layout. */
body.page-customer-account #center-column {
  max-width: 760px;
  margin-inline: auto;
}

body.page-customer-account #content {
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid var(--saltech-line);
  border-top: 3px solid var(--saltech-red);
  border-radius: var(--saltech-radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 18, 18, .055);
}

body.page-customer-account #content > h1,
body.page-customer-account #content .page-title {
  margin-bottom: 1.35rem;
  text-align: center;
}

body.page-customer-account .login__form-wrapper,
body.page-customer-account #guestOrderTrackingForm,
body.page-customer-account .js-customer-form {
  max-width: 560px;
  margin-inline: auto;
}

body.page-customer-account .form-group,
body.page-customer-account .form-control-label,
body.page-customer-account .form-field {
  margin-bottom: 1rem;
}

body.page-customer-account label,
body.page-customer-account .form-control-label {
  color: var(--saltech-navy);
  font-size: .86rem;
  font-weight: 750;
}

body.page-customer-account .form-control,
body.page-customer-account .form-select {
  min-height: 46px;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  background: #fff;
  color: var(--saltech-ink);
  box-shadow: none;
}

body.page-customer-account .form-control:focus,
body.page-customer-account .form-select:focus {
  border-color: var(--saltech-red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, .12);
}

body.page-customer-account .form-check {
  padding: .55rem .65rem .55rem 2rem;
  margin-bottom: .55rem;
  border-radius: 6px;
  background: #fafafa;
}

body.page-customer-account .form-check-input {
  margin-top: .2rem;
}

body.page-customer-account .form-check-input:checked {
  border-color: var(--saltech-red);
  background-color: var(--saltech-red);
}

body.page-customer-account .form-control-submit,
body.page-customer-account #guestOrderTrackingForm .btn-primary,
body.page-customer-account #login-form .btn-primary[type="submit"] {
  width: 100%;
  min-height: 46px;
  margin-top: .5rem;
}

body.page-customer-account .forgot-password,
body.page-customer-account .no-account,
body.page-customer-account .login__footer,
body.page-customer-account .register-form__footer {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--saltech-line);
  text-align: center;
}

body.page-customer-account .forgot-password a,
body.page-customer-account .no-account a,
body.page-customer-account .login__footer a,
body.page-customer-account .register-form__footer a {
  color: var(--saltech-red);
  font-weight: 700;
}

/* Logged-in customer pages need a wider working area than the focused
   authentication forms above. Keep the navigation and order data consistent. */
body#history #center-column,
body#identity #center-column,
body#addresses #center-column,
body#order-slip #center-column,
body#discount #center-column,
body#order-detail #center-column {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
}

body#history .account-menu--sidebar,
body#identity .account-menu--sidebar,
body#addresses .account-menu--sidebar,
body#order-slip .account-menu--sidebar,
body#discount .account-menu--sidebar,
body#order-detail .account-menu--sidebar {
  position: sticky;
  top: 1.5rem;
  padding: 1.1rem;
  border: 1px solid var(--saltech-line);
  border-radius: var(--saltech-radius);
  background: #fff;
}

body#history .account-menu__title,
body#identity .account-menu__title,
body#addresses .account-menu__title,
body#order-slip .account-menu__title,
body#discount .account-menu__title,
body#order-detail .account-menu__title {
  margin: 0 0 .7rem;
  color: var(--saltech-navy);
  font-size: 1.25rem;
  font-weight: 800;
}

body#history .account-menu__nav,
body#identity .account-menu__nav,
body#addresses .account-menu__nav,
body#order-slip .account-menu__nav,
body#discount .account-menu__nav,
body#order-detail .account-menu__nav {
  display: grid;
  gap: .25rem;
}

body#history .account-menu__link,
body#identity .account-menu__link,
body#addresses .account-menu__link,
body#order-slip .account-menu__link,
body#discount .account-menu__link,
body#order-detail .account-menu__link {
  display: flex;
  gap: .65rem;
  align-items: center;
  min-height: 42px;
  padding: .55rem .65rem;
  border-radius: 7px;
  color: var(--saltech-navy);
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
}

body#history .account-menu__link:hover,
body#history .account-menu__link--active,
body#identity .account-menu__link:hover,
body#identity .account-menu__link--active,
body#addresses .account-menu__link:hover,
body#addresses .account-menu__link--active,
body#order-slip .account-menu__link:hover,
body#order-slip .account-menu__link--active,
body#discount .account-menu__link:hover,
body#discount .account-menu__link--active,
body#order-detail .account-menu__link:hover,
body#order-detail .account-menu__link--active {
  background: #fff3f3;
  color: var(--saltech-red);
}

/* Order history stays a usable table on desktop and scrolls inside its own
   card on small screens rather than crushing column text together. */
body#history .page-content--customer {
  max-width: none;
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

body#history .page-content--customer > #order_history_description {
  max-width: 62ch;
  margin-bottom: 1.35rem;
  color: #4b5563;
}

body#history .order-history {
  overflow-x: auto;
  border: 1px solid var(--saltech-line);
  border-radius: 10px;
  background: #fff;
  scrollbar-color: #9ca3af transparent;
}

body#history .order-history__inner {
  min-width: 960px;
}

body#history .order-history__header,
body#history .order-history__row {
  display: grid;
  grid-template-columns: 1.15fr .85fr .9fr 1.3fr 1.45fr .55fr minmax(180px, 1fr);
  column-gap: .8rem;
  align-items: center;
}

body#history .order-history__header {
  min-height: 52px;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--saltech-line);
  background: #fafafa;
  color: #4b5563;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}

body#history .order-history__row {
  min-height: 76px;
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--saltech-line);
}

body#history .order-history__row:last-child { border-bottom: 0; }
body#history .order-history__cell { min-width: 0; overflow-wrap: anywhere; }
body#history .order-history__cell--reference,
body#history .order-history__cell--total { color: var(--saltech-navy); font-weight: 800; }
body#history .order-history__cell--payment { color: #4b5563; font-size: .84rem; }
body#history .order-history__status { display: inline-block; max-width: 100%; padding: .4rem .55rem; border-radius: 6px; font-size: .76rem; font-weight: 750; line-height: 1.15; white-space: normal; }
body#history .order-history__cell--actions { display: flex; flex-wrap: wrap; gap: .35rem; }
body#history .order-history__cell--actions .btn { min-height: 34px; padding: .35rem .55rem; font-size: .8rem; white-space: nowrap; }

@media (max-width: 991px) {
  body#history .account-menu--sidebar,
  body#identity .account-menu--sidebar,
  body#addresses .account-menu--sidebar,
  body#order-slip .account-menu--sidebar,
  body#discount .account-menu--sidebar,
  body#order-detail .account-menu--sidebar { position: static; margin-bottom: 1rem; }
}

body.page-guest-tracking #content > p {
  max-width: 560px;
  margin: -.55rem auto 1.35rem;
  color: #666;
  text-align: center;
}

body.page-guest-tracking #guestOrderTrackingForm {
  display: grid;
  gap: .15rem;
  max-width: 500px;
  padding: 1.25rem;
  margin: 0 auto;
  border: 1px solid var(--saltech-line);
  border-radius: 8px;
  background: #fafafa;
}

body.page-guest-tracking #guestOrderTrackingForm > p {
  margin: 0 0 .55rem;
  color: var(--saltech-navy);
  font-size: .95rem;
  font-weight: 650;
}

body.page-guest-tracking #guestOrderTrackingForm .form-text {
  margin-top: .35rem;
  color: #777;
  font-size: .78rem;
}

body.page-guest-tracking #guestOrderTrackingForm .buttons-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: .25rem 0 0;
  margin: .15rem 0 0;
  border: 0;
  background: transparent;
}

body.page-guest-tracking #guestOrderTrackingForm .buttons-wrapper .btn {
  width: auto;
  min-width: 140px;
  margin: 0;
}

.breadcrumb,
.breadcrumbs {
  margin-bottom: 1.25rem;
  padding: .7rem .9rem;
  border: 1px solid var(--saltech-line);
  border-radius: var(--saltech-radius);
  background: var(--saltech-muted);
  font-size: .85rem;
}

/* Compact breadcrumb trail with a clear current-page state. */
.breadcrumb__wrapper {
  margin-bottom: clamp(.85rem, 2vw, 1.5rem);
  border-top: 1px solid var(--saltech-line);
  border-bottom: 1px solid var(--saltech-line);
  background: #fafafa;
}

.breadcrumb__wrapper .container {
  width: min(100% - 2rem, 1440px);
}

.breadcrumb__wrapper .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  min-height: 44px;
  padding: .45rem 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: .82rem;
}

.breadcrumb__wrapper .breadcrumb-item {
  display: inline-flex;
  gap: .35rem;
  align-items: center;
  color: #777;
}

.breadcrumb__wrapper .breadcrumb-item + .breadcrumb-item::before {
  padding: 0 .15rem;
  color: #a5a5a5;
  content: '›';
  font-size: 1.15rem;
  line-height: 1;
}

.breadcrumb__wrapper .breadcrumb-link {
  color: #555;
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb__wrapper .breadcrumb-link:hover {
  color: var(--saltech-red);
}

.breadcrumb__wrapper .breadcrumb-item:first-child .breadcrumb-link::before {
  display: inline-block;
  width: .9rem;
  height: .9rem;
  margin-right: .32rem;
  vertical-align: -.13rem;
  content: '';
  background: currentColor;
  clip-path: polygon(50% 0, 100% 40%, 88% 40%, 88% 100%, 61% 100%, 61% 64%, 39% 64%, 39% 100%, 12% 100%, 12% 40%, 0 40%);
}

.breadcrumb__wrapper .breadcrumb-item:last-child {
  color: var(--saltech-navy);
  font-weight: 800;
}

/* Account flows are already clearly titled; the breadcrumb adds no value there. */
body.page-authentication .breadcrumb__wrapper,
body.page-registration .breadcrumb__wrapper,
body.page-guest-tracking .breadcrumb__wrapper {
  display: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  color: var(--saltech-navy);
  font-weight: 750;
  letter-spacing: -.02em;
}

h1,
.h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

/* Catalogue cards: stronger hierarchy while staying compact. */
.product-miniature,
.product-item,
.thumbnail-container {
  border: 1px solid var(--saltech-line);
  border-radius: var(--saltech-radius);
  background: var(--saltech-surface);
  box-shadow: none;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.product-miniature:hover,
.product-item:hover,
.thumbnail-container:hover {
  border-color: rgba(217, 52, 43, .45);
  box-shadow: 0 10px 22px rgba(23, 37, 84, .08);
  transform: translateY(-3px);
}

/* Browse product photos on the card; Quick View is a secondary action below it. */
.product-miniature__top {
  display: flex;
  flex-direction: column;
}

.product-miniature__top .product-miniature__image-container {
  width: 100%;
}

.product-miniature__quickview-button {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: calc(100% - 1.1rem) !important;
  min-height: 36px;
  margin: .55rem .55rem 0;
  border: 1px solid var(--saltech-line);
  border-radius: 7px;
  background: linear-gradient(to right, var(--saltech-red) 50%, #fff 50%) right / 202% 100%;
  color: var(--saltech-navy);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transform: none !important;
  transition: background-position .3s cubic-bezier(.2, .75, .25, 1), border-color .22s ease, color .22s ease;
}

/* Override Hummingbird's overlay/hidden Quick View behaviour. */
.product-miniature .product-miniature__quickview-button,
.product-miniature .js-quickview.product-miniature__quickview-button {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.product-miniature__quickview-button:hover,
.product-miniature__quickview-button:focus {
  border-color: var(--saltech-red);
  background-position: left;
  color: #fff;
  transform: none !important;
}

.product-miniature .product-miniature__inner:hover .product-miniature__quickview-button,
.product-miniature .product-miniature__inner:has(*:focus-visible) .product-miniature__quickview-button {
  transform: none !important;
}

.product-miniature__quickview-touch {
  display: none !important;
}

.saltech-card-gallery {
  position: relative;
}

.saltech-card-gallery [data-gallery-main] {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .24s ease, transform .24s ease;
}

.saltech-card-gallery [data-gallery-main].is-gallery-changing {
  opacity: 0;
}

.saltech-card-gallery [data-gallery-main].is-gallery-from-right {
  transform: translateX(28px);
}

.saltech-card-gallery [data-gallery-main].is-gallery-from-left {
  transform: translateX(-28px);
}

.saltech-card-gallery__thumbs {
  position: absolute;
  right: .5rem;
  bottom: .5rem;
  left: .5rem;
  display: flex;
  justify-content: center;
  gap: .35rem;
  padding: .35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
}

.saltech-card-gallery:hover .saltech-card-gallery__thumbs,
.saltech-card-gallery:focus-within .saltech-card-gallery__thumbs {
  opacity: 1;
  transform: translateY(0);
}

.saltech-card-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--saltech-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--saltech-navy);
  font-size: 1.5rem;
  line-height: 1;
  place-items: center;
  opacity: 0;
  cursor: pointer;
  transform: translateY(calc(-50% + 4px));
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease, color .18s ease;
}

.saltech-card-gallery__nav:hover,
.saltech-card-gallery__nav:focus {
  border-color: var(--saltech-red);
  color: var(--saltech-red);
}

.saltech-card-gallery__nav--previous {
  left: .5rem;
}

.saltech-card-gallery__nav--next {
  right: .5rem;
}

.saltech-card-gallery:hover .saltech-card-gallery__nav,
.saltech-card-gallery:focus-within .saltech-card-gallery__nav {
  opacity: 1;
  transform: translateY(-50%);
}

.saltech-card-gallery__thumb {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.saltech-card-gallery__thumb img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.saltech-card-gallery__thumb:hover,
.saltech-card-gallery__thumb.is-active {
  border-color: var(--saltech-red);
  box-shadow: 0 0 0 2px rgba(237, 28, 36, .15);
}

.product-miniature .product-title a,
.product-item .product-title a,
.thumbnail-container .product-title a {
  color: var(--saltech-navy);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.product-miniature .price,
.product-item .price,
.thumbnail-container .price {
  color: var(--saltech-red);
  font-weight: 800;
}

/* Make the selling price easy to find in catalogue cards and product pages. */
.product-miniature__price,
.product-miniature .price,
.product-price,
.current-price .current-price-value,
.product-detail .price {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: .25rem .55rem;
  border: 1px solid rgba(237, 28, 36, .22);
  border-radius: 6px;
  background: #fff3f3;
  color: var(--saltech-red) !important;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
}

.product-miniature__regular-price,
.regular-price,
.product-miniature .regular-price {
  display: inline-block;
  margin-right: .35rem;
  color: #717171;
  font-size: .8rem;
}

button,
.btn,
input[type="submit"],
input[type="button"] {
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary,
button.btn-primary,
input.btn-primary {
  border-color: var(--saltech-red);
  background: var(--saltech-red);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--saltech-red-dark);
  background: var(--saltech-red-dark);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(217, 52, 43, .15);
}

/* Filled Bootstrap/Hummingbird actions need white text, not link-hover red. */
.btn-primary:hover,
.btn-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  color: #fff !important;
}

.btn-primary:hover .material-icons,
.btn-primary:focus .material-icons,
.btn-outline-primary:hover .material-icons,
.btn-outline-primary:focus .material-icons,
.btn-secondary:hover .material-icons,
.btn-secondary:focus .material-icons,
.btn-outline-secondary:hover .material-icons,
.btn-outline-secondary:focus .material-icons {
  color: inherit;
}

/* Footer is quieter than the navigation, but easy to scan. */
#footer {
  margin-top: 2rem;
  border-top: 3px solid var(--saltech-red);
  background: #171717;
  color: #f4f4f4;
}

#footer a {
  color: #f4f4f4;
  text-decoration: none;
}

#footer a:hover {
  color: #fff;
  text-decoration: underline;
}

#footer .block-title {
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
}

/* Sal-Tech introduction at the top of the footer. */
#footer .saltech-footer-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: #171717;
}

#footer .saltech-footer-intro__content {
  display: grid;
  justify-items: center;
  padding-block: 1.35rem;
  text-align: center;
}

#footer .saltech-footer-intro .title-store {
  margin: 0;
  color: #fff;
  font-size: 35px;
  font-weight: 800;
}

#footer .saltech-footer-intro .break {
  width: 52px;
  height: 3px;
  margin: .55rem auto .7rem;
  border: 0;
  background: var(--saltech-red);
  opacity: 1;
}

#footer .saltech-footer-intro .list-footer {
  max-width: 720px;
  margin: 0;
  color: #d1d1d1;
  font-size: 16px;
  line-height: 1.55;
}

/* Keep social icons simple; remove any button-like fill or oversized padding. */
#footer .ps-socialfollow ul { display: flex; justify-content: center; align-items: center; gap: .7rem; margin: 0; padding: 0; list-style: none; }
#footer .ps-socialfollow li.twitter, #footer .ps-socialfollow li.x-twitter, #footer .ps-socialfollow li.x { order: -1; }
#footer .ps-socialfollow li:has(a[href*="x.com"]), #footer .ps-socialfollow li:has(a[href*="twitter.com"]) { order: -1; }
#footer .ps-socialfollow a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0 !important;
  border-radius: 50%;
  background: transparent !important;
  color: #f4f4f4;
  place-items: center;
}

#footer .ps-socialfollow a:hover {
  background: transparent !important;
  color: var(--saltech-red);
  text-decoration: none;
  transform: scale(1.06);
}

/* Product sharing: put X/Twitter first and give all share icons a modest lift. */
body#product .social-sharing ul { display: flex; align-items: center; gap: .8rem; margin: 0; padding: 0; list-style: none; }
body#product .social-sharing li.twitter, body#product .social-sharing li.x-twitter, body#product .social-sharing li.x { order: -1; }
body#product .social-sharing li:has(a[href*="x.com"]), body#product .social-sharing li:has(a[href*="twitter.com"]) { order: -1; }
body#product .social-sharing a { display: inline-flex; align-items: center; justify-content: center; min-width: 1.1em; min-height: 1.1em; font-size: 1.1em; transform-origin: center; }
body#product .social-sharing a:hover { color: var(--saltech-red); transform: scale(1.06); }

#footer .saltech-control-report {
  margin-top: .85rem;
  list-style: none;
}

#footer .saltech-control-report img {
  display: block;
  width: min(100%, 190px);
  height: auto;
  border-radius: 4px;
}

/* Custom Sal-Tech legal/payment footer, replacing the default PrestaShop line. */
#footer .post-footer-container {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

#footer #post-footer {
  display: grid;
  justify-items: center;
  gap: .45rem;
  padding-bottom: .65rem;
  text-align: center;
  font-size: 16px;
}

#footer .cms-line-footer ul,
#footer .payments {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .9rem;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

#footer .cms-line-footer a {
  color: #f4f4f4;
  font-size: 1rem;
  font-weight: 600;
}

#footer .post-footer__notice {
  margin: 0;
  color: #b9b9b9;
  font-size: 1rem;
}

#footer .payments {
  gap: .55rem;
  align-items: center;
}

#footer .payments img {
  display: block;
  width: 52px;
  height: 30px;
  border-radius: 3px;
  object-fit: contain;
}

#footer .rights {
  width: 100%;
  padding-top: .65rem;
  margin: .2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

/* Secondary homepage content: support product modules without competing with them. */
.saltech-solutions {
  max-width: 1320px;
  margin: clamp(2.5rem, 6vw, 5rem) auto 0;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border-top: 1px solid var(--saltech-line);
}

.saltech-solutions__heading {
  max-width: 720px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.saltech-solutions__eyebrow {
  margin: 0 0 .45rem;
  color: var(--saltech-red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.saltech-solutions__heading h2 {
  margin-bottom: .55rem;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
}

.saltech-solutions__heading > p:last-child {
  margin: 0;
  color: #666;
}

.saltech-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.saltech-solution-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 142px;
  overflow: hidden;
  border: 1px solid var(--saltech-line);
  border-radius: var(--saltech-radius);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.saltech-solution-card:hover {
  border-color: rgba(237, 28, 36, .5);
  box-shadow: 0 10px 22px rgba(18, 18, 18, .08);
  transform: translateY(-3px);
}

.saltech-solution-card > img {
  width: 100%;
  height: 100%;
  min-height: 142px;
  object-fit: contain;
  background: #fff;
}

.saltech-solution-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.saltech-solution-card h3 {
  margin: 0 0 .4rem;
  font-size: .98rem;
}

.saltech-solution-card p {
  margin: 0;
  color: #606060;
  font-size: .83rem;
  line-height: 1.45;
}

.saltech-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--saltech-line);
  border-radius: var(--saltech-radius);
  background: var(--saltech-line);
}

.saltech-trust-strip > div {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: 1rem 1.15rem;
  background: #fff;
}

.saltech-trust-strip .material-icons {
  color: var(--saltech-red);
  font-size: 1.55rem;
}

.saltech-trust-strip span {
  display: grid;
  color: #666;
  font-size: .8rem;
}

.saltech-trust-strip strong {
  margin-bottom: .14rem;
  color: var(--saltech-navy);
  font-size: .9rem;
}

/* Product page: compact, sales-focused layout while retaining native PS9 markup. */
body#product #main { max-width: 1440px; margin-inline: auto; }
body#product .product-container, body#product .product-page, body#product .product__main { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; padding: clamp(1rem, 3vw, 2.5rem); border: 1px solid var(--saltech-line); border-radius: 16px; background: #fff; }
body#product .product-cover, body#product .product-images, body#product .product-image { border-radius: 12px; }
body#product .product-cover, body#product .product-images { overflow: hidden; background: #fff; }
body#product .product-cover img, body#product .product-images img { width: 100%; max-height: 620px; object-fit: contain; }
body#product .product-information, body#product .product__information { position: sticky; top: 1.25rem; }
body#product h1, body#product .product-title { margin: 0 0 .65rem; color: var(--saltech-navy); font-size: clamp(1.55rem, 2.6vw, 2.35rem); font-weight: 800; line-height: 1.14; }
body#product .saltech-product-identity { display: flex; flex-wrap: wrap; gap: .45rem .6rem; margin: -.1rem 0 1rem; }
body#product .saltech-product-identity__primary { display: inline-flex; flex: 0 0 auto; flex-wrap: nowrap; gap: .6rem; align-items: center; }
body#product .saltech-product-identity__reference, body#product .saltech-product-identity__condition { display: inline-flex; align-items: center; gap: .35rem; min-height: 30px; padding: .35rem .6rem; border-radius: 5px; font-size: .78rem; font-weight: 800; line-height: 1; }
body#product .saltech-product-identity__reference { border: 1px solid rgba(237, 28, 36, .28); background: #fff2f3; color: var(--saltech-red); }
body#product .saltech-product-identity__condition { border: 1px solid #cfe3d7; background: #f1faf4; color: #167747; text-transform: capitalize; }
body#product .saltech-product-identity__reference > span, body#product .saltech-product-identity__condition > span { color: #5f6974; font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; }
body#product .saltech-product-stock { display: inline-flex; align-items: center; gap: .4rem; min-height: 30px; padding: .35rem .6rem; border: 1px solid #b9dfc7; border-radius: 5px; background: #eaf8ef; color: #171b20; font-size: .78rem; font-weight: 800; line-height: 1; }
body#product .saltech-product-stock__label { color: #171b20; font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
body#product .saltech-product-stock__quantity { color: #168653; font-size: .95rem; font-weight: 900; line-height: 1.2; }
body#product .product-reference, body#product .product__reference { margin-bottom: 1rem; color: #69717c; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
body#product .product-prices, body#product .product__prices { display: flex; flex-wrap: wrap; gap: .45rem 1rem; align-items: baseline; margin: 1.15rem 0; padding: .9rem 1rem; border: 1px solid rgba(237, 28, 36, .22); border-radius: 10px; background: linear-gradient(90deg, rgba(237, 28, 36, .06), #fff 62%); }
body#product .current-price, body#product .product-price { color: var(--saltech-red); font-size: clamp(1.45rem, 2.3vw, 2rem); font-weight: 800; }
body#product .product-variants, body#product .product__variants { margin-block: 1.1rem; padding-block: .9rem; border-top: 1px solid var(--saltech-line); border-bottom: 1px solid var(--saltech-line); }
body#product .product-variants label, body#product .product__variants label { color: var(--saltech-navy); font-size: .88rem; font-weight: 800; }
body#product .product-variants select, body#product .product__variants select { min-height: 44px; border: 1px solid #cfd5dc; border-radius: 8px; background-color: #fff; }
body#product .product-actions, body#product .product__actions { display: grid; gap: .8rem; padding-top: .35rem; }
body#product .product-actions .btn-primary, body#product .product__actions .btn-primary, body#product button[data-button-action='add-to-cart'] { min-height: 50px; border: 0; border-radius: 8px; background: var(--saltech-red); box-shadow: none; color: #fff; font-size: 1rem; font-weight: 800; transition: background .2s ease, transform .2s ease; }
body#product .product-actions .btn-primary:hover, body#product .product__actions .btn-primary:hover, body#product button[data-button-action='add-to-cart']:hover { background: var(--saltech-navy); transform: translateY(-1px); }
body#product .product-tabs, body#product .tabs, body#product .product__tabs { margin-top: clamp(1.5rem, 4vw, 3rem); padding: clamp(1rem, 3vw, 2rem); border: 1px solid var(--saltech-line); border-radius: 16px; background: #fff; }
body#product .nav-tabs { gap: .35rem; border-bottom: 1px solid var(--saltech-line); }
body#product .nav-tabs .nav-link { border: 0; border-bottom: 3px solid transparent; color: var(--saltech-navy); font-weight: 800; }
body#product .nav-tabs .nav-link.active, body#product .nav-tabs .nav-link:hover { border-bottom-color: var(--saltech-red); color: var(--saltech-red); }
body#product .tab-content { padding-top: 1.25rem; line-height: 1.7; }

/* Replace Hummingbird's product reassurance tiles with the useful product-tab navigation. */
body#product .product__bottom-right .blockreassurance--product {
  display: none;
}

/* Disable the native Customer Reassurance module on every storefront page. */
#block-reassurance,
.blockreassurance,
.blockreassurance--product,
.blockreassurance--footer,
[data-module-name='blockreassurance'] {
  display: none !important;
}

body#product #product-details .nav-tabs,
body#product .product-tabs .nav-tabs,
body#product .product__tabs .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
}

body#product #product-details .nav-tabs .nav-item,
body#product .product-tabs .nav-tabs .nav-item,
body#product .product__tabs .nav-tabs .nav-item {
  flex: 0 0 auto;
}

body#product #product-details .nav-tabs .nav-link,
body#product .product-tabs .nav-tabs .nav-link,
body#product .product__tabs .nav-tabs .nav-link {
  display: block;
  padding: .9rem 1.05rem .8rem;
  white-space: nowrap;
  font-size: .83rem;
  letter-spacing: .035em;
  text-transform: uppercase;
}

body#product #product-details .tabs > ul,
body#product .product-tabs .tabs > ul,
body#product .product__tabs .tabs > ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--saltech-line);
  list-style: none;
}

body#product #product-details .tabs > ul > li,
body#product .product-tabs .tabs > ul > li,
body#product .product__tabs .tabs > ul > li { flex: 0 0 auto; }

body#product #product-details .tabs > ul > li > a,
body#product .product-tabs .tabs > ul > li > a,
body#product .product__tabs .tabs > ul > li > a {
  display: block;
  padding: .9rem 1.05rem .8rem;
  border-bottom: 3px solid transparent;
  color: var(--saltech-navy);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
}

#product-details .nav-tabs,
#product-details .tabs > ul,
#product .product-tabs > ul,
#product .product__tabs > ul,
#product .product-tabs .nav,
#product .product__tabs .nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  width: 100%;
}

#product-details .nav-tabs > *,
#product-details .tabs > ul > li,
#product .product-tabs > ul > li,
#product .product__tabs > ul > li,
#product .product-tabs .nav > *,
#product .product__tabs .nav > * { flex: 0 0 auto; }

body#product #product-details .tabs > ul > li > a:hover,
body#product #product-details .tabs > ul > li > a[aria-selected='true'],
body#product #product-details .tabs > ul > li.active > a {
  border-bottom-color: var(--saltech-red);
  color: var(--saltech-red);
}

.saltech-variation-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.saltech-variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .45rem;
}

.saltech-variation-static {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: .45rem;
  padding: .55rem .8rem;
  border: 1px solid #d9dee5;
  border-radius: 7px;
  background: #f7f8fa;
  color: var(--saltech-navy);
  font-size: .86rem;
  font-weight: 700;
}

.saltech-variation-option {
  min-height: 40px;
  padding: .55rem .8rem;
  border: 1px solid #cfd5dc;
  border-radius: 7px;
  background: #fff;
  color: var(--saltech-navy);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.15;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.saltech-variation-option:hover:not(:disabled) {
  border-color: var(--saltech-red);
  color: var(--saltech-red);
  transform: translateY(-1px);
}

.saltech-variation-option.is-selected {
  border-color: var(--saltech-red);
  background: var(--saltech-red);
  color: #fff;
}

.saltech-variation-option:disabled {
  cursor: not-allowed;
  opacity: .42;
}

/* Horizontal product content tabs replacing Hummingbird's accordion. */
body#product .product__bottom { display: block; width: 100%; }
body#product .product__bottom-left { width: 100%; max-width: none; }
.saltech-product-tabs { width: 100%; max-width: none; margin-top: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--saltech-line); border-radius: 14px; background: #fff; overflow: hidden; }
.saltech-product-tabs__nav { display: flex; flex-wrap: nowrap; overflow-x: auto; border-bottom: 1px solid var(--saltech-line); background: #fafafa; scrollbar-width: thin; }
.saltech-product-tabs__button { flex: 0 0 auto; padding: 1rem 1.1rem .85rem; border: 0; border-bottom: 3px solid transparent; background: transparent; color: var(--saltech-navy); font-size: .84rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; white-space: nowrap; }
.saltech-product-tabs__button:hover, .saltech-product-tabs__button.is-active { border-bottom-color: var(--saltech-red); background: #fff; color: var(--saltech-red); }
.saltech-product-tabs__panels { padding: clamp(1rem, 3vw, 2rem); }
.saltech-product-tabs__panel { display: none; line-height: 1.7; }
.saltech-product-tabs__panel.is-active { display: block; animation: saltech-tab-reveal .2s ease both; }
.saltech-product-details-list { margin: 0; padding: 0; list-style: none; }
.saltech-product-details-list .details__item { display: grid; grid-template-columns: minmax(130px, .35fr) 1fr; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--saltech-line); }
.saltech-product-details-list .details__item:last-child { border-bottom: 0; }
.saltech-product-details-list .details__title { color: var(--saltech-navy); font-weight: 800; }
#product .product-comments, #product .product-comment, #product #product_comments_block_tab, #product .comments-note, #product [data-product-comments], #product .product-comments-additional-info, #product .product-comment-list, #product .product-comment-form, #product .comments, #product #product-comments-list-header { display: none !important; }
/* Disable every product review/comments entry point, including the Hummingbird review CTA. */
.product-comments, .product-comment, #product_comments_block_tab, .comments-note, [data-product-comments], .product-comments-additional-info, .product-comment-list, .product-comment-form, .comments, #product-comments-list-header, .product-reviews, #product-reviews,
#product .product__comments, #product .product__comment, #product .product__reviews, #product .product__review,
#product .comments__add, #product .comments__write-review, #product .reviews__add, #product .reviews__write-review,
#empty-product-comment, #product-footer-review-button, #product .product-comment-list-item,
#product [class*="comment"][class*="review"], #product [class*="review"] { display: none !important; }

/* Do not expose raw ERP/warehouse stock states such as "Out of stock" or
 * "Will be back ordered" on the storefront. Remote-warehouse availability is
 * managed separately from physical on-hand stock. */
#product .product-availability, #product .product__availability,
#product [data-product-availability], #product #product-availability {
  display: none !important;
}

/* Product sharing is not part of the purchase flow. Keep the product panel focused
 * on the price, variants and Add to cart action. */
body#product .social-sharing,
body#product .product-social-sharing,
body#product .product__share,
body#product .product__social-sharing {
  display: none !important;
}

/* Keep the custom Best Sellers block aligned with the homepage product sections. */
.saltech-best-sellers {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
}
@keyframes saltech-tab-reveal { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 575px) { .saltech-product-tabs { border-right: 0; border-left: 0; border-radius: 0; } .saltech-product-tabs__panels { padding: 1rem; } .saltech-product-details-list .details__item { grid-template-columns: 1fr; gap: .2rem; } }

@media (max-width: 767px) {
  body#product .product-container,
  body#product .product-page,
  body#product .product__main {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  body#product .product-information,
  body#product .product__information {
    position: static;
  }

  body#product .product-tabs,
  body#product .tabs,
  body#product .product__tabs {
    padding: 1rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  #header .header-bottom {
    padding-block: .35rem;
  }

  #header .header-bottom__row {
    min-height: 48px;
  }

  #header .header-bottom__logo img {
    max-height: 40px;
  }

  .container,
  .container-md,
  .container-lg,
  .container-xl {
    width: min(100% - 1rem, 1440px);
  }

  #wrapper {
    padding-block: 1rem;
  }

  body.page-customer-account #content {
    padding: 1.15rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  #header .search-widget,
  #header #search_widget {
    width: 100%;
    min-width: 0;
  }

  .breadcrumb,
  .breadcrumbs {
    padding: .55rem .7rem;
    font-size: .78rem;
  }

  .breadcrumb__wrapper .container {
    width: min(100% - 1rem, 1440px);
  }

  .breadcrumb__wrapper .breadcrumb {
    min-height: 40px;
    font-size: .76rem;
  }

  .saltech-card-gallery__thumbs {
    position: static;
    margin: .35rem .35rem 0;
    opacity: 1;
    transform: none;
  }

  .saltech-card-gallery__nav {
    opacity: 1;
    transform: translateY(-50%);
  }

  .saltech-solutions {
    margin-top: 2rem;
    padding-inline: .5rem;
  }

  .saltech-solutions__grid,
  .saltech-trust-strip {
    grid-template-columns: 1fr;
  }

  .saltech-solution-card {
    grid-template-columns: 98px 1fr;
    min-height: 124px;
  }

  .saltech-solution-card > img {
    min-height: 124px;
  }
}
