:root {
  --navy: #071f4d;
  --navy-2: #082b63;
  --red: #e0000b;
  --green: #009b62;
  --text: #0a234f;
  --muted: #68748a;
  --line: #e6eaf1;
  --soft: #f8f9fb;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.35;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.brand-logo-img {
  transform: scale(1.45);
  transform-origin: left center;
}

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

.site-header {
  position: relative;
  z-index: 50;
  height: 82px;
  background: #fff;
  border-bottom: 1px solid #edf0f5;
}

.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo,
.home-logo {
  display: flex;
  align-items: center;
  width: 220px;
  flex: 0 0 220px;
}

.brand-logo img,
.home-logo img {
  width: 100%;
  height: auto;
}

.home-page .home-logo .brand-logo-img {
  transform: translateX(-64px) scale(1.45);
}

.brand-logo .brand-logo-img {
  transform: translateX(-64px) scale(1.45);
}

.main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #051b44;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.main-nav a {
  position: relative;
  height: 82px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  border-radius: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a:focus-visible {
  outline: none;
}

.main-nav .sale {
  color: var(--red);
}

.header-hanging-magnet {
  position: absolute;
  top: 0;
  right: 352px;
  z-index: 2;
  width: 58px;
  height: 82px;
  pointer-events: none;
}

.header-hanger-cord {
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 1;
  width: 3px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f7b88 0%, #151f2b 42%, #0b1421 58%, #aeb8c3 100%);
  box-shadow: 0 0 0 1px rgba(5, 19, 42, .1), 3px 8px 14px rgba(5, 20, 44, .16);
  transform: translateX(-50%);
}

.header-hanger-cord::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 9px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, #d7dde5 0%, #798594 100%);
  box-shadow: 0 1px 2px rgba(5, 20, 44, .16);
  transform: translateX(-50%);
}

.header-magnet-ring {
  position: absolute;
  top: 32px;
  left: 50%;
  z-index: 2;
  width: 39px;
  height: 31px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 52% 50%, transparent 0 31%, #6d7b89 32%, #f9fcff 36%, #a8b4c1 43%, #e9f0f6 58%, #657282 75%, #f7fbff 86%, #8c9aa8 100%),
    linear-gradient(115deg, #fafdff 0%, #b9c3cf 30%, #4b5968 48%, #f6fbff 63%, #96a3b0 100%);
  box-shadow:
    inset 2px 0 4px rgba(255, 255, 255, .88),
    inset -5px -1px 9px rgba(18, 30, 45, .32),
    0 8px 16px rgba(7, 31, 77, .18);
  transform: translateX(-50%) rotate(-13deg) skewY(4deg);
  transform-origin: 50% -23px;
  animation: header-magnet-rest 5.4s ease-in-out infinite;
}

.header-magnet-ring::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 14px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    inset 2px 0 4px rgba(11, 24, 41, .22),
    inset -2px 0 4px rgba(255, 255, 255, .9),
    0 0 0 1px rgba(68, 82, 98, .42);
}

.header-magnet-ring::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 19px;
  z-index: 3;
  width: 3px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f7b88 0%, #151f2b 42%, #0b1421 58%, #aeb8c3 100%);
  box-shadow: 0 12px 0 -1px #111a26;
  transform: rotate(5deg);
}

@keyframes header-magnet-rest {
  0%,
  100% {
    transform: translateX(-50%) rotate(-13deg) skewY(4deg);
  }

  50% {
    transform: translateX(-50%) rotate(-9deg) skewY(4deg);
  }
}

.header-contact {
  flex: 0 0 205px;
  display: grid;
  justify-items: end;
  gap: 2px;
  color: #071f4d;
  line-height: 1.18;
}

.header-contact a {
  color: #071f4d;
  font-size: 12px;
  font-weight: 900;
}

.header-contact a:hover {
  color: var(--red);
}

.header-contact span {
  color: #6c7890;
  font-size: 11px;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 124px;
  flex: 0 0 124px;
}

.header-actions button {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #e1e8f2;
  border-radius: 8px;
  background: #f7f9fc;
  color: #061b45;
}

.header-actions button.coming-soon-action,
.header-actions button:disabled {
  border-radius: 999px;
  background: #eef3f8;
  color: #8d9bb0;
  cursor: not-allowed;
  opacity: .78;
}

.header-actions button.account-action {
  cursor: pointer;
}

.header-actions svg,
.zoom-button svg,
.gallery-benefits svg,
.spec-pills svg,
.stock-row svg,
.buy-card svg,
.help-card svg,
.assurance-strip svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-actions button svg {
  width: 20px;
  height: 20px;
  margin: auto;
}

.catalog-menu-trigger {
  position: relative;
  flex: 0 0 auto;
  min-width: 116px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #071f4d;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(7, 31, 77, .12);
}

.catalog-menu-trigger svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-menu-trigger:hover,
.catalog-menu-trigger:focus-visible,
.catalog-menu-trigger.active {
  border-color: var(--red);
  background: var(--red);
}

.catalog-menu-trigger:focus-visible {
  outline: 3px solid rgba(224, 0, 11, .22);
  outline-offset: 3px;
}

.catalog-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1110;
  background: rgba(5, 18, 45, .44);
}

.catalog-menu-backdrop[hidden],
.catalog-menu-drawer[hidden] {
  display: none;
}

.catalog-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1120;
  width: min(390px, calc(100vw - 24px));
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 20px 0 44px rgba(7, 31, 77, .2);
  transform: translateX(-102%);
  transition: transform .22s ease;
  overscroll-behavior: contain;
}

body.catalog-menu-open {
  overflow: hidden;
  padding-right: var(--body-scrollbar-gutter, 0px);
}

body.catalog-menu-open .catalog-menu-drawer {
  transform: translateX(0);
}

.catalog-menu-head {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
}

.catalog-menu-head p {
  margin: 0 0 4px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.catalog-menu-head h2 {
  margin: 0;
  color: #071f4d;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
}

.catalog-menu-close {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f7f9fc;
  color: #071f4d;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.catalog-menu-close:hover,
.catalog-menu-close:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.catalog-menu-close:focus-visible {
  outline: 3px solid rgba(224, 0, 11, .18);
  outline-offset: 2px;
}

.catalog-menu-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 14px;
}

.catalog-menu-main-link,
.catalog-menu-link {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid #e4eaf3;
  border-radius: 8px;
  background: #fff;
  color: #071f4d;
  font-weight: 900;
  line-height: 1.2;
}

.catalog-menu-main-link {
  margin-bottom: 14px;
  background: #071f4d;
  color: #fff;
}

.catalog-menu-main-link em,
.catalog-menu-link em {
  min-width: 34px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #eef3f8;
  color: #53627a;
  text-align: center;
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}

.catalog-menu-main-link em {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.catalog-menu-link:hover,
.catalog-menu-link:focus-visible,
.catalog-menu-main-link:hover,
.catalog-menu-main-link:focus-visible,
.catalog-menu-link.active,
.catalog-menu-main-link.active {
  border-color: var(--red);
  color: var(--red);
}

.catalog-menu-main-link:hover,
.catalog-menu-main-link:focus-visible,
.catalog-menu-main-link.active {
  background: var(--red);
  color: #fff;
}

.catalog-menu-link:focus-visible,
.catalog-menu-main-link:focus-visible {
  outline: 3px solid rgba(224, 0, 11, .16);
  outline-offset: 2px;
}

.catalog-menu-groups {
  display: grid;
  gap: 10px;
}

.catalog-menu-group {
  display: grid;
  gap: 7px;
}

.catalog-menu-root {
  background: #f8fafc;
  text-transform: uppercase;
}

.catalog-menu-toggle {
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.catalog-menu-toggle > span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-menu-toggle > span::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
  transition: transform .18s ease;
}

.catalog-menu-toggle[aria-expanded="true"] > span::before {
  transform: rotate(90deg);
}

.catalog-menu-sublinks {
  display: grid;
  gap: 6px;
  padding-left: 12px;
}

.catalog-menu-sublinks[hidden] {
  display: none;
}

.catalog-menu-child {
  min-height: 40px;
  padding: 9px 10px;
  color: #34435d;
  font-size: 12px;
  font-weight: 800;
}

.catalog-menu-all {
  min-height: 36px;
  background: #fbfcfe;
  color: #071f4d;
}

.catalog-menu-loading {
  margin: 12px 4px 0;
  color: #68748a;
  font-weight: 700;
}

.header-search-layer[hidden] {
  display: none !important;
}

.header-search-layer {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.header-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 45, .28);
  backdrop-filter: blur(2px);
}

.header-search-panel {
  position: absolute;
  top: 88px;
  right: max(18px, calc((100vw - 1180px) / 2));
  width: min(520px, calc(100vw - 36px));
  max-height: min(620px, calc(100vh - 112px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(12, 43, 95, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(5, 20, 50, .22);
}

.header-search-form {
  display: grid;
  gap: 9px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
}

.header-search-form label {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.header-search-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 8px;
}

.header-search-field input {
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 13px;
  background: #fff;
  color: #102a58;
  outline: none;
  font-size: 13px;
  font-weight: 800;
}

.header-search-field input:focus {
  border-color: #b8c5d9;
  box-shadow: 0 0 0 3px rgba(7, 31, 77, .08);
}

.header-search-close {
  width: 38px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 0, 11, .18);
  border-radius: 5px;
  padding: 0;
  background: #fff;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.header-search-close:focus-visible {
  outline: none;
  border-color: rgba(224, 0, 11, .34);
  box-shadow: 0 0 0 3px rgba(224, 0, 11, .09);
}

.header-search-results {
  min-height: 96px;
  overflow-y: auto;
  padding: 10px;
}

.header-search-state {
  position: relative;
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfe;
  color: #425575;
  font-size: 13px;
  font-weight: 800;
}

.header-search-state::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: #e8eef7;
  box-shadow: inset 0 0 0 5px #fff;
}

.header-search-state strong {
  color: #092a60;
  font-size: 13px;
  font-weight: 900;
}

.header-search-state span {
  color: #53647f;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}

.header-search-state-loading::before {
  border: 2px solid #dbe4f0;
  border-top-color: var(--red);
  background: transparent;
  box-shadow: none;
  animation: header-search-spin .75s linear infinite;
}

.header-search-state-empty::before {
  background: #fff5f5;
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px rgba(224, 0, 11, .12);
}

.header-search-state-hint::before {
  background: #eef7f3;
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px rgba(23, 119, 82, .14);
}

.header-search-error {
  border-color: rgba(224, 0, 11, .28);
  color: var(--red);
}

.header-search-state-error {
  border-color: rgba(224, 0, 11, .28);
}

.header-search-state-error::before {
  background: #fff1f2;
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px rgba(224, 0, 11, .18);
}

.header-search-state-error strong {
  color: var(--red);
}

@keyframes header-search-spin {
  to {
    transform: rotate(360deg);
  }
}

.header-search-result {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 9px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: inherit;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.header-search-result:hover,
.header-search-result:focus-visible {
  outline: none;
  border-color: var(--line);
  background: #fbfcfe;
  transform: translateY(-1px);
}

.header-search-media {
  width: 62px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 6px;
  background: #fff;
}

.header-search-media img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.header-search-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.header-search-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #092a60;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.header-search-copy span {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
}

.header-search-result em {
  color: #092a60;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.header-search-all {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0;
  border-radius: 5px;
  background: var(--navy);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.header-search-all:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(7, 31, 77, .14);
}

.cart span {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.cart:not(.has-items) span,
.cart span[hidden] {
  display: none;
}

.cart.coming-soon-action span,
.cart:disabled span {
  background: #aeb8c7;
}

.product-page {
  background: #fff;
}

.product-hydrating .product-page {
  position: relative;
  min-height: 680px;
}

.product-hydrating .product-page > * {
  visibility: hidden;
}

.product-hydrating .product-page::before,
.product-hydrating .product-page::after {
  visibility: visible;
}

.product-hydrating .product-page::before {
  content: "Cargando ficha de producto...";
  position: absolute;
  top: 72px;
  left: 50%;
  z-index: 2;
  width: min(360px, calc(100% - 48px));
  min-height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(7, 31, 77, .08);
  color: var(--navy);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  transform: translateX(-50%);
}

.product-hydrating .product-page::after {
  content: "";
  position: absolute;
  top: 95px;
  left: calc(50% - 116px);
  z-index: 3;
  width: 18px;
  height: 18px;
  border: 3px solid #edf1f6;
  border-top-color: var(--red);
  border-radius: 50%;
  animation: product-loading-spin .8s linear infinite;
}

@keyframes product-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.breadcrumb {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8b95a6;
  font-size: 11px;
}

.breadcrumb a {
  color: #687386;
}

.product-main {
  display: grid;
  grid-template-columns: minmax(350px, 440px) minmax(300px, 1fr) minmax(270px, 305px);
  align-items: start;
  gap: clamp(20px, 2vw, 34px);
}

.gallery-stage {
  position: relative;
  height: 300px;
  border: 1px solid #f0f2f5;
  border-radius: 2px;
  background: #fafafa;
  overflow: hidden;
}

.gallery-stage > img,
.product-main-image {
  width: 100%;
  height: 100%;
  padding: 28px;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  top: 9px;
  left: 0;
  z-index: 3;
  height: 18px;
  padding: 4px 9px 0;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
}

.zoom-button {
  position: absolute;
  top: 16px;
  right: 15px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #061b45;
  box-shadow: 0 4px 13px rgba(12, 34, 70, .08);
  text-decoration: none;
}

.zoom-button svg {
  width: 17px;
  height: 17px;
}

.magnet-display {
  position: absolute;
  inset: 20px 22px 10px;
  filter: drop-shadow(18px 22px 13px rgba(0, 0, 0, .14));
}

.stack-large {
  position: absolute;
  left: 84px;
  top: 6px;
  width: 153px;
  height: 178px;
  transform: rotate(-2deg);
}

.stack-large span {
  position: absolute;
  left: 0;
  top: calc(var(--i) * 22px);
  width: 153px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 49% 18%, #f5f4f1 0 28%, #d5d3cd 52%, #9b9993 76%, #efeeeb 100%);
  border: 1px solid rgba(92, 91, 88, .34);
  box-shadow:
    inset 0 -9px 11px rgba(44, 43, 42, .21),
    inset 0 6px 8px rgba(255, 255, 255, .72),
    0 2px 1px rgba(0, 0, 0, .2);
}

.stack-large span::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 6px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
}

.loose-disc {
  position: absolute;
  left: 230px;
  top: 125px;
  width: 150px;
  height: 45px;
  border-radius: 50%;
  transform: rotate(-9deg);
  background:
    radial-gradient(ellipse at 49% 15%, #f7f6f3 0 28%, #d4d2cc 56%, #8c8982 84%, #efeeeb 100%);
  border: 1px solid rgba(86, 84, 80, .38);
  box-shadow:
    inset 0 -13px 13px rgba(40, 40, 38, .22),
    inset 0 8px 8px rgba(255, 255, 255, .72),
    0 7px 12px rgba(0, 0, 0, .18);
}

.loose-disc::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 9px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 96px));
  gap: 22px;
  margin-top: 16px;
}

.thumb {
  position: relative;
  height: 65px;
  border: 1px solid #edf0f5;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.thumb.active {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(224, 0, 11, .35);
}

.thumb-scene {
  position: absolute;
  inset: 5px;
}

.thumb-stack-loose::before,
.thumb-pair::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 7px;
  width: 27px;
  height: 38px;
  border-radius: 50% 50% 15% 15% / 11% 11% 5% 5%;
  background:
    repeating-linear-gradient(to bottom, #e9e7e2 0 7px, #77746e 8px 9px, #faf9f7 10px 12px);
  box-shadow: 6px 7px 8px rgba(0, 0, 0, .12);
}

.thumb-stack-loose::after,
.thumb-single::before,
.thumb-pair::after {
  content: "";
  position: absolute;
  width: 39px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 49% 20%, #f4f3ef 0 30%, #c9c6bd 60%, #85827b 100%);
  border: 1px solid rgba(90, 87, 80, .28);
  box-shadow: 3px 5px 7px rgba(0, 0, 0, .12);
}

.thumb-stack-loose::after {
  left: 33px;
  top: 35px;
  transform: rotate(-9deg);
}

.thumb-single::before {
  left: 24px;
  top: 23px;
  width: 48px;
  height: 18px;
}

.thumb-pair::before {
  left: 19px;
  width: 22px;
  height: 39px;
}

.thumb-pair::after {
  left: 39px;
  top: 32px;
}

.thumb-pack {
  display: grid;
  grid-template-columns: repeat(4, 11px);
  grid-auto-rows: 9px;
  justify-content: center;
  align-content: center;
  gap: 3px;
}

.thumb-pack::before,
.thumb-pack::after {
  content: "";
}

.thumb-pack {
  background:
    radial-gradient(ellipse at center, #f2f1ee 0 52%, #a6a39c 77%, transparent 78%) 14px 11px / 12px 8px repeat,
    linear-gradient(#fff, #fff);
}

.gallery-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  margin-top: 17px;
}

.gallery-benefits article {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.gallery-benefits svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  color: #071f4d;
  stroke-width: 2.25;
}

.product-icon-img {
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.gallery-benefits .product-icon-img {
  width: 23px;
  height: 23px;
  flex-basis: 23px;
}

.gallery-benefits strong {
  display: block;
  color: #071f4d;
  font-size: 8px;
  font-weight: 900;
}

.gallery-benefits span {
  display: block;
  margin-top: 2px;
  color: #33425e;
  font-size: 7px;
  line-height: 1.25;
  font-weight: 600;
}

.product-info {
  min-width: 0;
  padding-top: 0;
}

.product-info h1 {
  margin: 0 0 8px;
  color: #071f4d;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  color: #46536b;
  font-size: 12px;
}

.stars {
  color: var(--red);
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}

.rating-row strong {
  color: #071f4d;
  font-weight: 900;
  white-space: nowrap;
}

.review-state {
  color: #6c7687;
  font-weight: 800;
}

.rating-row .sku {
  margin-left: auto;
  color: #7b8494;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}

.spec-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 15px;
  color: #071f4d;
  font-size: 11px;
  font-weight: 800;
}

.spec-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.spec-pills svg {
  width: 16px;
  height: 16px;
  color: #071f4d;
  flex: 0 0 16px;
}

.spec-pills .product-icon-img {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.summary {
  width: 95%;
  margin: 0 0 16px;
  color: #263855;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.stock-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  color: #8c95a4;
  font-size: 12px;
  font-weight: 600;
}

.stock-row .in-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 900;
}

.stock-row svg {
  width: 15px;
  height: 15px;
}

.stock-row .divider {
  width: 1px;
  height: 12px;
  background: #d9dee6;
}

.quantity-prices {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
}

.quantity-prices header {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
}

.quantity-prices h2 {
  margin: 0;
  text-transform: uppercase;
  color: #071f4d;
  font-size: 11px;
  font-weight: 900;
}

.quantity-prices header span {
  color: #646d7e;
  font-size: 9px;
  font-weight: 600;
}

.price-grid {
  min-height: 32px;
  display: grid;
  grid-template-columns: minmax(105px, .8fr) minmax(0, 1fr);
  align-items: center;
  padding: 0 13px;
  border-top: 1px solid var(--line);
  color: #071f4d;
  font-size: 12px;
}

.price-head {
  min-height: 25px;
  color: #071f4d;
  font-size: 10px;
  font-weight: 800;
}

.price-grid span:nth-child(2),
.price-grid strong:nth-child(2) {
  text-align: left;
}

.price-grid span:last-child {
  text-align: left;
}

.price-tier-row {
  grid-template-columns: minmax(92px, 1fr) minmax(82px, .8fr) minmax(56px, .55fr);
}

.green {
  color: var(--green);
  font-weight: 900;
}

.purchase-column {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.buy-card {
  padding: 18px 16px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
}

.unit-price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 17px;
}

.unit-price strong,
.buy-card label {
  display: block;
  color: #071f4d;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
}

.unit-price span {
  display: block;
  margin-top: 3px;
  color: #7f8796;
  font-size: 9px;
  font-weight: 700;
}

.unit-price b {
  color: var(--red);
  font-size: 32px;
  line-height: .9;
  font-weight: 900;
  white-space: nowrap;
}

.buy-card label {
  margin-bottom: 6px;
  text-transform: none;
  font-size: 12px;
}

.quantity-control {
  height: 36px;
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.quantity-control button,
.quantity-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: #fff;
  color: #071f4d;
  text-align: center;
  font-weight: 900;
}

.quantity-control button {
  color: #071f4d;
  font-size: 16px;
}

.quantity-control input {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  outline: none;
  font-size: 11px;
}

.quantity-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 8px 0;
}

.quantity-shortcuts button {
  min-height: 28px;
  border: 1px solid #dbe4f0;
  border-radius: 4px;
  background: #fff;
  color: #092a60;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.order-summary {
  min-height: 52px;
  margin-bottom: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fafafa;
}

.order-summary p {
  margin: 0 0 8px;
  color: #273853;
  font-size: 10px;
}

.order-summary p:last-child {
  margin-bottom: 0;
}

.order-summary strong,
.order-summary b {
  color: var(--green);
  font-weight: 800;
}

.order-summary span {
  color: #637087;
  font-weight: 750;
}

.add-cart,
.buy-now {
  width: 100%;
  height: 36px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: var(--red);
  color: #fff;
}

.add-cart svg {
  width: 15px;
  height: 15px;
}

.buy-now {
  margin-top: 7px;
  border: 1px solid #071f4d;
  background: #fff;
  color: #071f4d;
}

.buy-now.cart-checkout-disabled,
.buy-now:disabled {
  border-color: #dbe2ee;
  background: #eef2f7;
  color: #6e7d93;
  cursor: not-allowed;
}

.add-cart.is-added {
  background: var(--green);
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(5, 18, 45, .42);
}

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

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  width: min(430px, calc(100vw - 24px));
  max-width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -20px 0 44px rgba(7, 31, 77, .18);
  transform: translateX(102%);
  transition: transform .22s ease;
  overscroll-behavior: contain;
}

body.cart-drawer-open {
  overflow: hidden;
  padding-right: var(--body-scrollbar-gutter, 0px);
}

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

.cart-drawer-head {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head p {
  margin: 0 0 4px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.cart-drawer-head h2 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
}

.cart-drawer-close {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0;
  background: #fff;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.cart-drawer-items {
  min-height: 0;
  flex: 1 1 auto;
  display: grid;
  align-content: start;
  gap: 0;
  overflow-y: auto;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 82px;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-item.is-unavailable {
  background: #fbfcfe;
}

.cart-drawer-item.is-unavailable .cart-item-media,
.cart-drawer-item.is-unavailable .cart-item-main {
  opacity: .68;
}

.cart-item-media {
  width: 78px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid #eef2f7;
  border-radius: 6px;
  background: #fbfcfe;
  overflow: hidden;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cart-item-main {
  min-width: 0;
}

.cart-item-main h3 {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.28;
  font-weight: 900;
}

.cart-item-main h3 a {
  color: inherit;
  text-decoration: none;
}

.cart-item-meta,
.cart-item-price {
  margin: 6px 0 0;
  color: #5e6b80;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 750;
}

.cart-item-price {
  color: var(--green);
  font-weight: 900;
}

.cart-item-saving,
.cart-item-next-tier,
.cart-minimum-note {
  display: block;
  margin: 5px 0 0;
  color: #52617a;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 750;
}

.cart-item-saving {
  color: var(--red);
  font-weight: 900;
}

.cart-item-next-tier {
  color: #092a60;
}

.cart-item-side {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-start;
  gap: 9px;
}

.cart-item-side strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.cart-item-remove {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 0, 11, .18);
  border-radius: 5px;
  padding: 0;
  background: #fff;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

.cart-item-remove span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.cart-item-remove:hover,
.cart-item-remove:focus-visible {
  border-color: rgba(224, 0, 11, .38);
  background: #fff5f5;
}

.cart-quantity {
  width: 112px;
  height: 34px;
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.cart-quantity button,
.cart-quantity input {
  width: 100%;
  min-width: 0;
  min-height: 32px;
  border: 0;
  background: #fff;
  color: var(--navy);
  text-align: center;
  font-weight: 900;
}

.cart-quantity input {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  outline: none;
  font-size: 11px;
}

.cart-quantity button {
  cursor: pointer;
}

.cart-quantity button:disabled,
.cart-quantity input:disabled {
  background: #eef2f7;
  color: #9aa6b8;
  cursor: not-allowed;
}

.cart-drawer-empty {
  flex: 1 1 auto;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 34px 26px;
  text-align: center;
}

.cart-drawer-empty h3 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.cart-drawer-empty p,
.cart-drawer-foot p {
  margin: 0;
  color: #5e6b80;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}

.cart-drawer-foot {
  display: grid;
  gap: 10px;
  padding: 16px 22px 20px;
  border-top: 1px solid var(--line);
  background: #fbfcfe;
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.cart-subtotal strong {
  font-size: 20px;
}

.cart-saving-total strong {
  color: var(--red);
}

.cart-clear,
.cart-checkout,
.cart-continue {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.cart-clear {
  border: 1px solid rgba(224, 0, 11, .22);
  background: #fff;
  color: var(--red);
  cursor: pointer;
}

.cart-checkout {
  border: 1px solid #dbe2ee;
  background: #eef2f7;
  color: #6e7d93;
  cursor: not-allowed;
}

.cart-checkout:not(:disabled) {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  cursor: pointer;
}

.cart-continue {
  border: 1px solid var(--navy);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.cart-demo-checkout,
.cart-demo-success {
  min-height: 0;
  flex: 1 1 auto;
  display: grid;
  align-content: start;
  gap: 14px;
  overflow-y: auto;
  padding: 18px 22px 22px;
}

.cart-demo-warning,
.cart-demo-form-error {
  border: 1px solid rgba(224, 0, 11, .2);
  border-left: 4px solid var(--red);
  border-radius: 5px;
  padding: 11px 12px;
  background: #fff7f8;
  color: #7c1820;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 850;
}

.cart-demo-form-error {
  background: #fff;
}

.cart-demo-panel,
.cart-demo-success-card {
  display: grid;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  background: #fff;
}

.cart-demo-panel h3,
.cart-demo-success-card h3 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.cart-demo-panel p,
.cart-demo-success-card p,
.cart-demo-country {
  margin: 0;
  color: #5e6b80;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}

.cart-demo-country strong {
  color: var(--navy);
}

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

.cart-demo-field {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.cart-demo-field.is-wide {
  grid-column: 1 / -1;
}

.cart-demo-field span {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 900;
}

.cart-demo-field b {
  color: var(--red);
}

.cart-demo-field input,
.cart-demo-field select,
.cart-demo-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 39px;
  border: 1px solid #d6e0ee;
  border-radius: 5px;
  padding: 9px 10px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 750;
}

.cart-demo-field textarea {
  min-height: 76px;
  resize: vertical;
}

.cart-demo-field input[aria-invalid="true"],
.cart-demo-field select[aria-invalid="true"],
.cart-demo-field textarea[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 0, 11, .08);
}

.cart-demo-field em {
  color: var(--red);
  font-size: 11px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 800;
}

.cart-demo-summary {
  gap: 10px;
}

.cart-demo-summary-items {
  display: grid;
  gap: 8px;
}

.cart-demo-summary-item,
.cart-demo-total {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cart-demo-summary-item {
  border-bottom: 1px solid #eef2f7;
  padding-bottom: 8px;
}

.cart-demo-summary-item span,
.cart-demo-total span {
  min-width: 0;
  color: #44546c;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.cart-demo-summary-item span {
  overflow-wrap: anywhere;
}

.cart-demo-summary-item strong,
.cart-demo-total strong,
.cart-demo-total em {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.25;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.cart-demo-total {
  border-top: 1px solid #eef2f7;
  padding-top: 8px;
}

.cart-demo-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.cart-demo-submit,
.cart-demo-secondary {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.cart-demo-submit {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
}

.cart-demo-secondary {
  border: 1px solid var(--navy);
  background: #fff;
  color: var(--navy);
}

.cart-demo-success-card {
  border-left: 4px solid var(--green);
  background: #fbfefc;
}

.cart-demo-success-kicker {
  color: var(--green);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.cart-drawer-close:focus-visible,
.cart-item-media:focus-visible,
.cart-item-main h3 a:focus-visible,
.cart-item-side button:focus-visible,
.cart-quantity button:focus-visible,
.cart-quantity input:focus-visible,
.cart-clear:focus-visible,
.cart-checkout:focus-visible,
.cart-continue:focus-visible,
.cart-demo-field input:focus-visible,
.cart-demo-field select:focus-visible,
.cart-demo-field textarea:focus-visible,
.cart-demo-submit:focus-visible,
.cart-demo-secondary:focus-visible {
  outline: 3px solid rgba(7, 31, 77, .18);
  outline-offset: 3px;
}

.cart-live-region {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.thank-you-page {
  background: #f6f8fb;
}

.thank-you-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 22px;
  align-items: stretch;
  padding: 38px 0 28px;
}

.thank-you-copy,
.thank-you-summary,
.thank-you-products {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.thank-you-copy {
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 32px;
}

.thank-you-kicker {
  margin: 0;
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.thank-you-copy h1 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .95;
  font-weight: 950;
}

.thank-you-copy p {
  max-width: 620px;
  margin: 0;
  color: #263e68;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 650;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.thank-you-summary {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
}

.thank-you-summary > span {
  color: #60708a;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.thank-you-summary > strong {
  color: var(--red);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.thank-you-details {
  display: grid;
  gap: 8px;
}

.thank-you-details div,
.thank-you-items article {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #edf0f5;
  color: #263e68;
  font-size: 12px;
  font-weight: 750;
}

.thank-you-details span,
.thank-you-items span {
  color: #60708a;
}

.thank-you-products {
  padding: 24px;
}

.thank-you-products .section-heading {
  margin-bottom: 12px;
}

.thank-you-items {
  display: grid;
  gap: 0;
}

.thank-you-items article {
  min-height: 48px;
}

.thank-you-items p {
  margin: 0;
  color: #60708a;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .thank-you-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .thank-you-hero {
    gap: 14px;
    padding: 28px 0 20px;
  }

  .thank-you-copy,
  .thank-you-summary,
  .thank-you-products {
    padding: 20px;
  }

  .thank-you-details div,
  .thank-you-items article {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }
}

.account-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(5, 18, 45, .36);
}

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

.account-drawer[hidden] {
  display: none;
}

.account-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  width: min(390px, calc(100vw - 24px));
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -20px 0 44px rgba(7, 31, 77, .18);
  transform: translateX(102%);
  transition: transform .22s ease;
  overscroll-behavior: contain;
}

body.account-drawer-open {
  overflow: hidden;
  padding-right: var(--body-scrollbar-gutter, 0px);
}

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

.account-drawer-head {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
}

.account-drawer-head p {
  margin: 0 0 4px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.account-drawer-head h2 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
}

.account-drawer-close {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0;
  background: #fff;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.account-drawer-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.account-drawer-body p {
  margin: 0;
  color: #5e6b80;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 750;
}

.account-drawer-body .account-drawer-lead {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.account-drawer-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.account-drawer-disabled,
.account-drawer-understood {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.account-drawer-disabled {
  border: 1px solid #dbe2ee;
  background: #eef2f7;
  color: #6e7d93;
  cursor: not-allowed;
}

.account-drawer-actions a.account-drawer-disabled {
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.account-drawer-understood {
  margin-top: 2px;
  border: 1px solid var(--navy);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.account-drawer-close:focus-visible,
.account-drawer-understood:focus-visible {
  outline: 3px solid rgba(7, 31, 77, .18);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .cart-drawer {
    width: 100vw;
  }

  .cart-drawer-head {
    min-height: 72px;
    padding: 16px 16px 13px;
  }

  .cart-drawer-head h2 {
    font-size: 19px;
  }

  .cart-drawer-item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .cart-item-media {
    width: 68px;
    height: 66px;
  }

  .cart-item-side {
    grid-column: 2;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .cart-drawer-foot {
    padding: 14px 16px 16px;
  }

  .cart-demo-checkout,
  .cart-demo-success {
    padding: 16px;
  }

  .cart-demo-field-grid {
    grid-template-columns: 1fr;
  }

  .cart-demo-summary-item,
  .cart-demo-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .cart-demo-summary-item strong,
  .cart-demo-total strong,
  .cart-demo-total em {
    text-align: left;
  }

  .account-drawer {
    width: 100vw;
  }

  .account-drawer-head {
    min-height: 72px;
    padding: 16px 16px 13px;
  }

  .account-drawer-head h2 {
    font-size: 19px;
  }

  .account-drawer-body {
    padding: 18px 16px;
  }
}

.secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 8px 0 0;
  color: #566177;
  font-size: 10px;
  font-weight: 700;
}

.secure svg {
  width: 14px;
  height: 14px;
}

.secure .product-icon-img {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
}

.help-card {
  padding: 14px 16px 12px;
  background: #fafafa;
  border-radius: 2px;
}

.help-card h2 {
  margin: 0 0 6px;
  color: #071f4d;
  font-size: 12px;
  font-weight: 900;
}

.help-card p {
  width: 92%;
  margin: 0 0 8px;
  color: #36445d;
  font-size: 9px;
  line-height: 1.35;
  font-weight: 600;
}

.help-card a {
  width: 180px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #d9dee7;
  border-radius: 4px;
  background: #fff;
  color: #071f4d;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 900;
}

.help-card svg {
  width: 14px;
  height: 14px;
  color: #19a868;
}

.assurance-strip {
  min-height: 60px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  background: #fafafa;
}

.assurance-strip article {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
  padding: 8px clamp(18px, 2.6vw, 42px);
  border-right: 1px solid var(--line);
}

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

.assurance-strip article div {
  min-width: 0;
}

.assurance-strip svg {
  width: 30px;
  height: 30px;
  color: #071f4d;
  flex: 0 0 30px;
}

.assurance-strip .product-icon-img {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.assurance-strip strong {
  display: block;
  color: #071f4d;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 900;
}

.assurance-strip span {
  display: block;
  color: #4b5870;
  font-size: 9px;
  line-height: 1.25;
  font-weight: 700;
}

.product-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 34px;
  min-height: 126px;
  padding-top: 20px;
  margin-bottom: 28px;
}

.tabs-panel {
  border-top: 1px solid #eff1f5;
}

.tabs {
  min-height: 34px;
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 44px);
}

.tabs a,
.tabs button {
  position: relative;
  height: 34px;
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: #263750;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
}

.tabs a.active,
.tabs button.active {
  color: var(--red);
}

.tabs a.active::after,
.tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.tab-copy {
  max-width: 760px;
  padding: 13px 17px 0;
}

.tab-copy p {
  margin: 0;
  color: #142847;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.product-empty-state {
  margin: 0;
  color: #60708a;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.tab-spec-list {
  display: grid;
  gap: 0;
  border: 1px solid #edf0f5;
  border-radius: 4px;
  overflow: hidden;
}

.tab-spec-list div {
  min-height: 30px;
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 6px 12px;
  border-bottom: 1px solid #edf0f5;
  color: #142847;
  font-size: 11px;
  font-weight: 650;
}

.tab-spec-list div:last-child {
  border-bottom: 0;
}

.tab-spec-list strong {
  color: #071f4d;
  font-weight: 900;
}

.tech-specs {
  padding: 14px 18px 12px;
  border: 1px solid #edf0f5;
  background: #fff;
}

.tech-specs h2 {
  margin: 0 0 9px;
  color: #071f4d;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.tech-specs dl {
  margin: 0;
}

.tech-specs div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 17px;
  border-bottom: 1px solid #edf0f5;
  color: #142847;
  font-size: 11px;
  font-weight: 600;
}

.tech-specs dt,
.tech-specs dd {
  margin: 0;
}

.tech-specs dd {
  text-align: right;
}

.tech-empty dd {
  color: #60708a;
}

.catalog-category-seo h2 {
  margin: 0 0 12px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
}

.catalog-category-seo {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(10, 38, 85, .03);
}

.site-footer {
  margin-top: 10px;
  background: #eef4fb;
  color: var(--navy);
  padding: 24px 0 10px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr .9fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.footer-logo,
.home-footer-logo {
  display: block;
  width: 190px;
}

.footer-logo img,
.home-footer-logo img {
  width: 100%;
  height: auto;
}

.home-page .home-footer-logo .brand-logo-img {
  transform: translateX(-55px) scale(1.45);
}

.footer-logo .brand-logo-img {
  transform: translateX(-55px) scale(1.45);
}

.site-footer h2,
.site-footer h3 {
  margin: 5px 0 14px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: #263e68;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
}

.footer-faq {
  margin-bottom: 22px;
  padding: 20px;
  border: 1px solid rgba(16, 42, 88, .12);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 14px 30px rgba(10, 38, 85, .055);
}

.footer-faq-head {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1fr);
  gap: 8px 28px;
  align-items: end;
  margin-bottom: 16px;
}

.footer-faq-head span {
  color: var(--red);
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.site-footer .footer-faq h2 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 900;
}

.site-footer .footer-faq .footer-faq-head p {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
  color: #4a5b75;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

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

.footer-faq details {
  min-height: 62px;
  border: 1px solid #dce6f2;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}

.footer-faq summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 13px 44px 13px 16px;
  color: #102a58;
  cursor: pointer;
  list-style: none;
  text-transform: none;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
}

.footer-faq summary::-webkit-details-marker {
  display: none;
}

.footer-faq summary::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #eef4fb;
  background-image:
    linear-gradient(var(--red), var(--red)),
    linear-gradient(var(--red), var(--red));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 2px, 2px 10px;
  transform: translateY(-50%);
}

.footer-faq details[open] {
  border-color: rgba(224, 0, 11, .24);
  box-shadow: inset 3px 0 0 var(--red);
}

.footer-faq details[open] summary::after {
  background-size: 10px 2px, 0 0;
}

.site-footer .footer-faq details p {
  margin: -3px 16px 15px;
  color: #43516a;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 650;
}

.site-footer .footer-contact-line {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-footer .footer-contact-line a {
  margin: 0;
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-contact-line a:hover {
  color: var(--red);
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
}

.footer-brand p {
  width: 220px;
  margin-top: 15px;
}

.socials {
  display: flex;
  gap: 17px;
  margin-top: 18px;
}

.socials a {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.socials .footer-social-disabled {
  display: block;
  margin: 0;
  color: #6c7d98;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  cursor: default;
}

.site-footer .footer-future-link {
  display: block;
  margin: 0 0 8px;
  color: #6c7d98;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  cursor: default;
}

.subscribe {
  min-height: 0;
  padding: 18px 18px 14px;
  border: 1px solid #d6e0ee;
  border-radius: 7px;
  background: #fff;
}

.subscribe h2,
.subscribe h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.subscribe form {
  height: 40px;
  display: grid;
  grid-template-columns: 1fr 118px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}

.subscribe input {
  min-width: 0;
  border: 0;
  padding: 0 14px;
  color: #071f4d;
  outline: none;
  font-size: 12px;
}

.subscribe button {
  border: 0;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.footer-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.footer-cta:hover {
  background: #c9000a;
  color: #fff;
}

.subscribe form.future-form {
  border: 1px solid #d6e0ee;
  background: #f5f8fb;
}

.subscribe form.future-form input {
  background: #f5f8fb;
  color: #7a8798;
  cursor: not-allowed;
  opacity: 1;
}

.subscribe form.future-form button {
  background: #aeb8c7;
  color: #fff;
  cursor: not-allowed;
}

.payments {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.payments img {
  display: block;
  width: auto;
  max-width: 82px;
  height: 24px;
  object-fit: contain;
}

.copyright {
  margin: 14px 0 0;
  text-align: center;
  color: #52627a;
  font-size: 11px;
}

.magnet-3d-page {
  min-height: 100vh;
  overflow: hidden;
  background: #f4f7fb;
}

.magnet-3d-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(7, 31, 77, .08);
  backdrop-filter: blur(16px);
}

.magnet-3d-logo {
  width: 210px;
  display: flex;
  align-items: center;
}

.magnet-3d-logo img {
  width: 100%;
  height: auto;
}

.magnet-3d-return {
  position: relative;
  color: #061b45;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.magnet-3d-return::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(1);
}

.magnet-3d-stage {
  position: relative;
  min-height: 100vh;
  cursor: grab;
  touch-action: none;
  user-select: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .9) 0 34%, rgba(244, 247, 251, .26) 58%, rgba(228, 236, 246, .74) 100%),
    radial-gradient(circle at 72% 46%, rgba(224, 0, 11, .1), transparent 24%),
    linear-gradient(135deg, #f8fbff 0%, #e8eef6 100%);
}

.magnet-3d-stage.is-dragging {
  cursor: grabbing;
}

#magnet-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.magnet-3d-copy {
  position: fixed;
  left: max(22px, calc((100vw - 1180px) / 2));
  bottom: 46px;
  z-index: 3;
  width: min(360px, calc(100vw - 44px));
  color: #071f4d;
  pointer-events: none;
}

.magnet-3d-copy p {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.magnet-3d-copy h1 {
  margin: 0 0 19px;
  color: #061b45;
  text-transform: uppercase;
  font-size: 64px;
  line-height: .95;
  font-weight: 1000;
  letter-spacing: 0;
}

.magnet-3d-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.magnet-3d-copy dl div {
  padding: 12px 0 0;
  border-top: 2px solid rgba(224, 0, 11, .88);
}

.magnet-3d-copy dt {
  color: #4a5d78;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 850;
  text-transform: uppercase;
}

.magnet-3d-copy dd {
  margin: 6px 0 0;
  color: #061b45;
  font-size: 18px;
  line-height: 1;
  font-weight: 1000;
}

.magnet-3d-controls {
  position: fixed;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 46px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.magnet-3d-controls button {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(7, 31, 77, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  color: #061b45;
  box-shadow: 0 18px 42px rgba(7, 31, 77, .14);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.magnet-3d-controls button:hover,
.magnet-3d-controls button:focus-visible {
  border-color: rgba(224, 0, 11, .38);
  background: #fff;
  color: var(--red);
  transform: translateY(-2px);
}

.magnet-3d-controls button:focus-visible {
  outline: 3px solid rgba(224, 0, 11, .12);
  outline-offset: 3px;
}

.magnet-3d-controls svg {
  width: 22px;
  height: 22px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 760px) {
  .magnet-3d-topbar {
    height: 72px;
    padding: 0 16px;
  }

  .magnet-3d-logo {
    width: 178px;
  }

  .magnet-3d-stage {
    min-height: 100svh;
  }

  .magnet-3d-copy {
    left: 16px;
    right: 16px;
    bottom: 96px;
    width: auto;
  }

  .magnet-3d-copy h1 {
    max-width: 310px;
    font-size: 40px;
  }

  .magnet-3d-copy dl {
    max-width: 350px;
  }

  .magnet-3d-copy dd {
    font-size: 15px;
  }

  .magnet-3d-controls {
    right: 16px;
    bottom: 24px;
  }
}

@media (max-width: 420px) {
  .magnet-3d-copy h1 {
    font-size: 34px;
  }

  .magnet-3d-copy dt {
    font-size: 9px;
  }

  .magnet-3d-controls button {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 1180px) {
  .brand-logo,
  .home-logo {
    width: 205px;
    flex-basis: 205px;
  }

  .main-nav {
    gap: 22px;
  }

  .catalog-menu-trigger {
    min-width: 108px;
    padding: 0 12px;
  }

  .header-hanging-magnet {
    right: 138px;
  }

  .header-contact {
    display: none;
  }

  .header-actions {
    width: 118px;
    flex-basis: 118px;
    gap: 8px;
  }

}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .header-search-panel {
    top: 16px;
    right: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100vh - 32px);
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    min-height: 76px;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .header-actions,
  .home-page .header-actions {
    order: 2;
  }

  .catalog-menu-trigger {
    order: 1;
  }

  .header-hanging-magnet {
    display: none;
  }

  .brand-logo,
  .home-logo {
    width: 190px;
    flex-basis: 190px;
  }

  .brand-logo .brand-logo-img {
    transform: translateX(-55px) scale(1.45);
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
  }

  .main-nav a {
    height: 34px;
    flex: 0 0 auto;
  }

  .main-nav a::after {
    bottom: 0;
  }

  .product-main,
  .product-details,
  .assurance-strip,
  .footer-faq-head,
  .footer-faq-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-faq .footer-faq-head p {
    grid-column: 1;
  }

  .gallery-stage {
    height: 280px;
  }

  .product-main {
    gap: 24px;
  }

  .assurance-strip {
    height: auto;
  }

  .assurance-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 18px;
  }

  .tabs {
    gap: 18px;
    overflow-x: auto;
  }

  .tabs a,
  .tabs button {
    flex: 0 0 auto;
  }

  .tab-copy {
    width: auto;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .header-inner {
    gap: 10px;
  }

  .brand-logo,
  .home-logo {
    width: 178px;
    flex-basis: 178px;
  }

  .brand-logo .brand-logo-img {
    transform: translateX(-52px) scale(1.45);
  }

  .main-nav {
    gap: 16px;
    font-size: 10px;
  }

  .catalog-menu-trigger {
    min-width: 38px;
    width: 38px;
    height: 34px;
    padding: 0;
  }

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

  .catalog-menu-trigger svg {
    width: 19px;
    height: 19px;
  }

  .catalog-menu-drawer {
    width: min(360px, calc(100vw - 18px));
  }

  .catalog-menu-head {
    min-height: 72px;
    padding: 16px 16px 13px;
  }

  .catalog-menu-head h2 {
    font-size: 20px;
  }

  .catalog-menu-body {
    padding: 10px;
  }

  .header-actions,
  .home-page .header-actions {
    width: 82px;
    flex-basis: 82px;
    flex-grow: 0;
    flex-shrink: 0;
    gap: 8px;
  }

  .header-actions button:not(:first-child):not(.cart),
  .home-page .header-actions button:not(:first-child):not(.cart) {
    display: none;
  }

  .thumbs,
  .gallery-benefits {
    gap: 8px;
  }

  .breadcrumb {
    min-height: 34px;
    align-items: flex-start;
    overflow-x: auto;
    padding: 7px 0;
    white-space: nowrap;
  }

  .breadcrumb span,
  .breadcrumb a {
    flex: 0 0 auto;
  }

  .magnet-display {
    inset: 20px 10px 10px;
  }

  .stack-large {
    left: 68px;
  }

  .loose-disc {
    left: 205px;
    top: 130px;
    width: 128px;
    height: 41px;
  }

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

  .gallery-benefits strong {
    font-size: 10px;
  }

  .gallery-benefits span {
    font-size: 9px;
  }

  .product-info h1 {
    font-size: 22px;
    line-height: 1.18;
  }

  .unit-price {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .unit-price b {
    font-size: 28px;
  }

  .rating-row,
  .spec-pills {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .rating-row .sku {
    margin-left: 0;
  }

  .product-details {
    gap: 16px;
  }

  .tabs {
    height: auto;
    min-height: 0;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
  }

  .tabs a,
  .tabs button {
    height: 30px;
    border: 1px solid #edf0f5;
    border-radius: 999px;
    padding: 0 10px;
    background: #fff;
  }

  .tabs a.active,
  .tabs button.active {
    border-color: var(--red);
    background: rgba(224, 0, 11, .06);
  }

  .tabs a.active::after,
  .tabs button.active::after {
    display: none;
  }

  .tab-copy {
    padding-top: 12px;
  }

  .tab-spec-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .tech-specs div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 4px 0;
  }

  .tech-specs dt,
  .tech-specs dd {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* Homepage */

.home-page {
  font-size: 13px;
}

.home-page .container {
  width: min(1190px, calc(100% - 58px));
}

.home-page .site-header {
  height: 82px;
  border-bottom: 1px solid #edf0f5;
}

.home-page .header-inner {
  gap: 24px;
}

.home-logo {
  display: flex;
  align-items: center;
  width: 220px;
  flex: 0 0 220px;
}

.home-logo img {
  width: 100%;
  height: auto;
}

.home-page .main-nav {
  gap: 30px;
  font-size: 12px;
  font-weight: 900;
}

.home-page .main-nav a {
  height: 82px;
}

.home-page .header-actions {
  width: 124px;
  flex: 0 0 124px;
  gap: 10px;
}

.home-page .header-actions button {
  width: 34px;
  height: 34px;
}

.home-page .cart span {
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  font-size: 11px;
}

.home-page .hero {
  --hero-bg-position: right center;
  position: relative;
  min-height: 462px;
  overflow: hidden;
  background: #eef3f7;
}

.header-hanging-magnet {
  display: none;
}

.home-page .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 0;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%);
  mask-image: linear-gradient(90deg, transparent 0, #000 16%);
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(2, 29, 77, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 29, 77, .035) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: .35;
  pointer-events: none;
}

.home-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .84) 34%, rgba(255, 255, 255, .4) 64%, rgba(255, 255, 255, .12) 100%);
  pointer-events: none;
}

.home-pull-magnet {
  position: absolute;
  top: -82px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  pointer-events: none;
}

.home-pull-cord {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.home-pull-cord path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-pull-cord-shadow {
  stroke: rgba(80, 52, 29, .28);
  stroke-width: 9;
  filter: drop-shadow(3px 6px 7px rgba(7, 31, 77, .18));
}

.home-pull-cord-core {
  stroke: #9a7246;
  stroke-width: 6.4;
  filter: drop-shadow(2px 5px 6px rgba(7, 31, 77, .16));
}

.home-pull-cord-twist {
  stroke-width: 4.9;
  stroke-linecap: butt;
  stroke-dasharray: 3 8;
  opacity: .62;
}

.home-pull-cord-twist-a {
  stroke: #5f3f24;
  stroke-dashoffset: 0;
}

.home-pull-cord-twist-b {
  stroke: #d8b884;
  stroke-dashoffset: 5.5;
  opacity: .72;
}

.home-pull-cord-highlight {
  stroke: rgba(255, 236, 197, .86);
  stroke-width: 1.35;
  stroke-dasharray: 18 13;
  stroke-dashoffset: 4;
}

.home-pull-cord circle {
  fill: #b68a58;
  stroke: #6a4828;
  stroke-width: 1;
  filter: drop-shadow(0 2px 3px rgba(7, 31, 77, .2));
}

.home-pull-handle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 96px;
  height: 82px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
  transform-origin: 50% 12%;
  will-change: transform;
}

.home-pull-handle:active {
  cursor: grabbing;
}

.home-pull-handle:focus-visible {
  outline: 2px solid rgba(224, 0, 11, .45);
  outline-offset: 6px;
  border-radius: 999px;
}

.home-pull-ring {
  position: absolute;
  top: 5px;
  left: -4px;
  width: 108px;
  height: 86px;
  transform: rotate(-2deg);
}

.home-pull-ring-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.home-pull-card {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: min(410px, calc(100vw - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(203, 214, 228, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(7, 31, 77, .18);
  color: #08224f;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
  transform-origin: 12px 18px;
  pointer-events: auto;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  backdrop-filter: blur(10px);
}

.home-pull-card.is-visible {
  opacity: 1;
  visibility: visible;
}

.home-pull-card p {
  margin: 0;
}

.home-pull-card p + p {
  margin-top: 11px;
}

.home-page .hero-inner {
  position: relative;
  z-index: 3;
  min-height: 486px;
  display: grid;
  grid-template-columns: minmax(390px, 520px) minmax(0, 1fr);
  align-items: center;
}

.home-page .hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 8px;
}

.home-page .hero-kicker {
  margin: 0 0 11px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 900;
}

.home-page .hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: 49px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.home-page .hero-copy h1 span {
  display: block;
  color: inherit;
}

.home-page .hero-copy h1 .hero-title-accent {
  color: var(--red);
}

.home-page .lead {
  margin: 13px 0 18px;
  color: #071f4f;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 750;
}

.home-page .hero-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
  color: #19335f;
  font-weight: 600;
}

.home-page .hero-points li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.home-page .icon-img {
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.home-page .hero-points .icon-img {
  width: 22px;
  height: 22px;
  transform: scale(1.75);
}

.home-page .hero-points svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .hero-points li:nth-child(2) svg,
.home-page .hero-points li:nth-child(3) svg {
  color: var(--navy);
}

.home-page .hero-buttons {
  display: flex;
  gap: 18px;
}

.home-page .hero-shop-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.home-page .hero-shop-note span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 31, 77, .16);
  border-radius: 6px;
  padding: 0 12px;
  background: rgba(255, 255, 255, .9);
  color: #102b5e;
  font-size: 11px;
  font-weight: 850;
}

.home-page .btn {
  min-width: 172px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.home-page .btn.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(224, 0, 11, .25);
}

.home-page .btn.secondary {
  border: 2px solid #1b3463;
  background: #fff;
  color: #0c2a5d;
}

.home-page .hero-img {
  position: absolute;
  mix-blend-mode: multiply;
  filter: contrast(1.04) saturate(.85);
}

.home-page .hero-stack {
  width: 244px;
  right: 252px;
  top: 38px;
}

.home-page .hero-ring {
  width: 248px;
  left: 0;
  top: 116px;
}

.home-page .hero-block {
  width: 242px;
  right: 108px;
  top: 128px;
}

.home-page .hero-bars {
  width: 278px;
  right: 222px;
  bottom: 32px;
  transform: rotate(-5deg);
}

.home-page .hero-small {
  width: 190px;
  right: -5px;
  bottom: 34px;
}

.home-page .value-strip {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(10, 38, 85, .04);
  overflow: hidden;
}

.home-page .value-strip article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.home-page .value-strip article:last-child {
  border-right: 0;
}

.home-page .value-strip svg,
.home-page .trust-strip svg,
.home-page .card-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .value-strip svg {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: var(--red);
  stroke-width: 2.3;
}

.home-page .value-strip .icon-img {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  transform: scale(1.75);
}

.home-page .value-strip article:nth-child(even) svg,
.home-page .value-strip article:nth-child(5) svg {
  color: var(--navy);
}

.home-page .value-strip strong {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 900;
}

.home-page .value-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.home-page .discount {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(290px, 390px) minmax(0, 1fr) minmax(170px, 220px);
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 35, 78, .04);
}

.home-page .discount-card {
  position: relative;
  overflow: hidden;
  padding: 32px 34px;
  background: linear-gradient(135deg, #062d6a 0%, #002257 100%);
  color: #fff;
}

.home-page .discount-card > div {
  position: relative;
  z-index: 1;
  max-width: 235px;
}

.home-page .discount-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -155px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.home-page .discount-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
}

.home-page .discount-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.home-page .discount-card img {
  position: absolute;
  right: 26px;
  bottom: 16px;
  width: 130px;
  border-radius: 4px;
  mix-blend-mode: screen;
  filter: saturate(.25) contrast(1.25);
}

.home-page .price-table {
  padding: 22px 34px;
  color: #102a58;
  font-weight: 800;
}

.home-page .price-table > div {
  min-height: 43px;
  display: grid;
  grid-template-columns: 1.1fr 1fr .75fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.home-page .price-table > div:last-child {
  border-bottom: 0;
}

.home-page .table-head {
  text-transform: uppercase;
  color: #0d275a;
  font-size: 12px;
}

.home-page .price-table span:last-child {
  text-align: right;
}

.home-page .price-request-link {
  justify-self: start;
  color: var(--red);
  text-decoration: none;
  font-weight: 900;
  border-bottom: 1px solid rgba(229, 39, 54, .32);
}

.home-page .price-request-link:hover {
  border-bottom-color: currentColor;
}

.home-page .price-request-link:focus-visible {
  outline: 3px solid rgba(229, 39, 54, .18);
  outline-offset: 3px;
  border-radius: 3px;
}

.home-page .red {
  color: var(--red);
}

.home-page .save-box {
  position: relative;
  overflow: hidden;
  padding: 72px 40px;
  background: #f6f7fa;
}

.home-page .save-box p {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.18;
  font-weight: 900;
}

.home-page .save-box strong {
  color: var(--red);
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.home-page .save-box > span {
  position: absolute;
  right: 14px;
  bottom: -18px;
  color: rgba(8, 38, 88, .04);
  font-size: 158px;
  font-weight: 900;
}

.home-page .categories,
.home-page .products,
.home-page .applications {
  margin-top: 24px;
}

.home-page .categories h2,
.home-page .products h2,
.home-page .applications h2 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 900;
}

.home-page .categories,
.home-page .products {
  text-align: center;
}

.home-page .section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.home-page .section-heading p {
  margin: 0;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.home-page .section-heading span {
  max-width: 560px;
  color: #5b687d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 650;
}

.home-page .section-line {
  width: 40px;
  height: 3px;
  margin: 12px auto 20px;
  border-radius: 4px;
  background: var(--red);
}

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

.home-page .product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.home-page .category-card,
.home-page .product-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(10, 38, 85, .035);
}

.home-page .category-card {
  min-height: 164px;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.home-page .category-card img {
  width: 132px;
  height: 78px;
  object-fit: contain;
  margin: 0 auto 12px;
  mix-blend-mode: multiply;
}

.home-page .category-card strong {
  display: block;
  min-height: 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.home-page .category-card span {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 900;
}

.home-page .section-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 22px;
  border: 1px solid #d6e0ee;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.home-page .section-link:hover {
  border-color: #c6d2e2;
  box-shadow: 0 8px 18px rgba(10, 38, 85, .08);
}

.home-page .section-link:focus-visible {
  outline: 3px solid rgba(7, 31, 77, .16);
  outline-offset: 3px;
}

.home-page .application-layout {
  display: grid;
  grid-template-columns: minmax(250px, 318px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.home-page .application-list {
  display: grid;
  gap: 10px;
}

.home-page .application-list a {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 5px 14px;
  padding: 13px 16px 13px 18px;
  border: 1px solid #dbe5f1;
  border-radius: 7px;
  background: #fff;
  color: #122a59;
  box-shadow: 0 6px 16px rgba(10, 38, 85, .03);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.home-page .application-list a.active,
.home-page .application-list a:hover,
.home-page .application-list a:focus-visible {
  border-color: #cbd8e8;
  background: #f8fafc;
  box-shadow: inset 3px 0 0 var(--red), 0 10px 20px rgba(10, 38, 85, .045);
}

.home-page .application-list a:hover,
.home-page .application-list a:focus-visible {
  color: var(--red);
}

.home-page .application-list a:focus-visible {
  outline: 3px solid rgba(7, 31, 77, .16);
  outline-offset: 3px;
}

.home-page .application-list strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.home-page .application-list span {
  align-self: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef3f8;
  color: #586881;
  font-size: 11px;
  font-weight: 800;
}

.home-page .application-feature {
  min-height: 268px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: 7px;
  background:
    linear-gradient(115deg, rgba(5, 23, 52, .96), rgba(12, 48, 90, .9) 58%, rgba(45, 88, 126, .72)),
    url("assets/hero-bg-poster.jpg") right center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.home-page .application-feature p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .72);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.home-page .application-feature h3 {
  max-width: 650px;
  margin: 0;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 900;
}

.home-page .application-feature > div:first-child > a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.home-page .application-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-self: end;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.home-page .application-cases a {
  min-height: 76px;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
}

.home-page .application-cases a:first-child {
  border-left: 0;
  padding-left: 0;
}

.home-page .application-cases img {
  grid-row: 1 / span 2;
  width: 76px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}

.home-page .application-cases strong,
.home-page .application-cases span {
  grid-column: 2;
  display: block;
  padding: 0;
}

.home-page .application-cases strong {
  margin-top: 0;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.home-page .application-cases span {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 650;
}

.home-page .products {
  margin-top: 40px;
}

.home-page .product-card {
  min-width: 0;
  min-height: 254px;
  padding: 16px 18px 15px;
  overflow: hidden;
  text-align: left;
}

.home-page .product-card img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  margin-bottom: 14px;
  mix-blend-mode: multiply;
  transform-origin: center;
}

.home-page .product-card h3 {
  margin: 0 0 4px;
  color: #092a60;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.home-page .product-card p {
  margin: 0 0 6px;
  color: #54617b;
  font-size: 11px;
  font-weight: 700;
}

.home-page .rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.home-page .rating span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #e7f7ef;
  color: #007a4d;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 900;
}

.home-page .rating em {
  color: #263e68;
  font-size: 11px;
  font-style: normal;
}

.home-page .product-card > strong {
  display: block;
  margin-bottom: 11px;
  color: #092a60;
  font-size: 19px;
  font-weight: 900;
}

.home-page .card-button {
  width: 100%;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.home-page .card-button svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  stroke-width: 2.3;
}

.home-page .trust-strip {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}

.home-page .trust-strip article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 14px 34px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.home-page .trust-strip article:last-child {
  border-right: 0;
}

.home-page .trust-strip svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--navy);
  stroke-width: 2.3;
}

.home-page .trust-strip .icon-img {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  transform: scale(1.75);
}

.home-page .trust-strip strong {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.home-page .trust-strip span {
  display: block;
  margin-top: 4px;
  color: #50617c;
  font-size: 11px;
  font-weight: 700;
}

.home-page .home-seo {
  margin-top: 20px;
}

.home-page .home-seo-content {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(135deg, #f9fbfe 0%, #fff 100%);
  box-shadow: 0 12px 26px rgba(10, 38, 85, .04);
}

.home-page .home-seo h2 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 900;
}

.home-page .home-seo-text {
  display: grid;
  gap: 12px;
}

.home-page .home-seo p {
  margin: 0;
  color: #41516c;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.home-page .site-footer {
  margin-top: 10px;
  padding: 24px 0 10px;
  background: #eef4fb;
}

.home-page .footer-inner {
  grid-template-columns: 1.6fr 1fr .9fr 1fr 1.45fr;
  gap: 48px;
}

.home-footer-logo {
  display: block;
  width: 190px;
}

.home-footer-logo img {
  width: 100%;
  height: auto;
}

.home-page .site-footer h3 {
  margin: 5px 0 16px;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.home-page .site-footer p,
.home-page .site-footer a {
  margin-bottom: 9px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
}

.home-page .footer-brand p {
  width: 220px;
  margin-top: 15px;
}

.home-page .socials {
  gap: 17px;
  margin-top: 18px;
}

.home-page .socials a {
  font-size: 20px;
  font-weight: 800;
}

.home-page .subscribe {
  min-height: 0;
  padding: 18px 18px 14px;
  border: 1px solid #d6e0ee;
  border-radius: 7px;
  background: #fff;
}

.home-page .subscribe h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.home-page .subscribe form {
  height: 40px;
  grid-template-columns: 1fr 118px;
  margin-top: 14px;
  border-radius: 5px;
}

.home-page .subscribe input {
  padding: 0 14px;
  font-size: 12px;
}

.home-page .subscribe button {
  font-size: 11px;
}

.home-page .payments {
  margin-top: 18px;
  font-size: 16px;
}

.home-page .payments img[alt="Mastercard"] {
  height: 25px;
}

.home-page .copyright {
  margin-top: 14px;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .home-page .main-nav {
    gap: 22px;
  }

  .home-page .header-contact {
    display: none;
  }

  .home-page .home-logo .brand-logo-img {
    transform: translateX(-64px) scale(1.45);
  }

  .home-page .hero-stack {
    right: 210px;
  }

  .home-page .hero-block {
    right: 78px;
  }

  .home-page .hero-bars {
    right: 185px;
  }

  .home-page .value-strip article {
    gap: 12px;
    padding: 18px 14px;
  }

  .home-page .trust-strip article {
    padding: 14px 22px;
  }

  .home-page .footer-inner {
    gap: 34px;
  }
}

@media (max-width: 980px) {
  .home-page .container {
    width: min(100% - 28px, 760px);
  }

  .home-page .site-header {
    height: auto;
  }

  .home-page .header-inner {
    min-height: 76px;
    flex-wrap: wrap;
    gap: 24px;
    padding: 10px 0;
  }

  .home-logo {
    width: 190px;
    flex-basis: 190px;
  }

  .home-page .home-logo .brand-logo-img {
    transform: translateX(-55px) scale(1.45);
  }

  .home-page .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    font-size: 12px;
  }

  .home-page .main-nav a {
    height: 34px;
    flex: 0 0 auto;
  }

  .home-page .main-nav a::after {
    bottom: 0;
  }

  .home-page .hero,
  .home-page .hero-inner {
    min-height: 620px;
  }

  .home-page .hero {
    --hero-bg-position: right center;
  }

  .home-page .hero-bg-video {
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .home-page .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 45px;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(42px, 10vw, 58px);
  }

  .home-page .value-strip,
  .home-page .discount,
  .home-page .category-grid,
  .home-page .product-grid,
  .home-page .application-layout,
  .home-page .application-cases,
  .home-page .trust-strip,
  .home-page .home-seo-content,
  .home-page .footer-inner {
    grid-template-columns: 1fr;
  }

  .home-page .application-feature {
    min-height: 0;
  }

  .home-page .application-cases {
    gap: 12px;
  }

  .home-page .application-cases a,
  .home-page .application-cases a:first-child {
    min-height: 68px;
    padding: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .home-page .application-cases a:first-child {
    border-top: 0;
  }

  .home-page .value-strip article,
  .home-page .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-page .value-strip article:last-child,
  .home-page .trust-strip article:last-child {
    border-bottom: 0;
  }

  .home-page .discount {
    margin-top: 18px;
  }

  .home-page .discount-card,
  .home-page .price-table,
  .home-page .save-box {
    min-height: 190px;
  }

  .home-page .footer-inner {
    gap: 22px;
  }

  .home-page .home-seo-content {
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .home-page .home-logo {
    width: 178px;
    flex-basis: 178px;
  }

  .home-page .home-logo .brand-logo-img {
    transform: translateX(-52px) scale(1.45);
  }

  .home-page .home-footer-logo .brand-logo-img {
    transform: translateX(-45px) scale(1.45);
  }

  .home-page .hero,
  .home-page .hero-inner {
    min-height: 560px;
  }

  .home-page .hero {
    --hero-bg-position: right center;
  }

  .home-page .main-nav {
    gap: 16px;
    font-size: 10px;
  }

  .home-page .header-actions {
    display: flex;
    width: 82px;
    flex: 0 0 82px;
    gap: 8px;
    margin-left: auto;
  }

  .home-page .header-actions button {
    display: block;
    width: 34px;
    height: 34px;
  }

  .home-page .header-actions button:not(:first-child):not(.cart) {
    display: none;
  }

  .home-page .hero-inner {
    padding-top: 34px;
  }

  .home-page .hero-copy h1 {
    font-size: 34px;
  }

  .home-page .lead {
    max-width: 32ch;
    font-size: 15px;
  }

  .home-page .hero-buttons {
    display: grid;
    grid-template-columns: minmax(0, 220px);
    gap: 10px;
  }

  .home-page .btn {
    min-width: 0;
    padding: 0 10px;
    font-size: 10.5px;
  }

  .home-page .hero-stack {
    width: 155px;
    right: 150px;
    top: 26px;
  }

  .home-page .hero-ring {
    width: 170px;
    left: 0;
    top: 80px;
  }

  .home-page .hero-block {
    width: 155px;
    right: 54px;
    top: 94px;
  }

  .home-page .hero-bars {
    width: 185px;
    right: 130px;
    bottom: 30px;
  }

  .home-page .hero-small {
    width: 132px;
    right: -8px;
    bottom: 32px;
  }

  .home-page .categories h2,
  .home-page .products h2,
  .home-page .applications h2 {
    font-size: 22px;
    overflow-wrap: anywhere;
  }

  .home-page .price-table {
    padding: 18px 16px;
    font-size: 12px;
  }

  .home-page .price-table > div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 9px 0;
  }

  .home-page .price-table .table-head {
    display: none;
  }

  .home-page .price-table span:nth-child(2) {
    color: #53627a;
  }

  .home-page .price-table span.red {
    color: var(--red);
  }

  .home-page .price-table span:last-child {
    text-align: left;
  }

  .home-page .price-table .price-request-link {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .home-page .price-table > div:last-child span:last-child {
    display: none;
  }

  .home-page .application-list a {
    grid-template-columns: 1fr;
    min-height: 64px;
    gap: 8px;
  }

  .home-page .application-list span {
    justify-self: start;
  }

  .home-page .application-feature {
    min-width: 0;
    padding: 22px;
    background-position: center bottom;
  }

  .home-page .application-feature > div,
  .home-page .application-feature p,
  .home-page .application-feature h3 {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .home-page .application-feature h3 {
    font-size: 20px;
  }

  .home-page .application-cases a {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .home-page .category-card,
  .home-page .product-card {
    min-height: auto;
  }

  .home-page .home-seo-content {
    padding: 22px 18px;
  }

  .home-page .home-seo h2 {
    font-size: 20px;
  }

  .home-page .home-seo p {
    font-size: 13px;
  }

  .home-page .subscribe form {
    grid-template-columns: 1fr;
    height: auto;
  }

  .home-page .subscribe input,
  .home-page .subscribe button {
    height: 38px;
  }
}

/* Catalog */

[hidden] {
  display: none !important;
}

.catalog-page main {
  background: #fff;
  padding-bottom: 20px;
}

.catalog-page .site-footer {
  margin-top: 28px;
}

.catalog-hero {
  min-height: 176px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  align-items: end;
  gap: 28px;
  margin-top: 22px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 12px 26px rgba(10, 38, 85, .04);
}

.catalog-kicker {
  margin: 0 0 9px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.catalog-hero h1 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 900;
}

.catalog-hero p {
  max-width: 690px;
  margin: 13px 0 0;
  color: #41516c;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.catalog-summary {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 7px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 38, 85, .035);
}

.catalog-summary strong {
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.catalog-summary span,
.catalog-summary em {
  display: block;
  color: #53617a;
  font-size: 12px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 800;
}

.catalog-summary em {
  margin-top: 7px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 11px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px 150px;
  align-items: end;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(10, 38, 85, .035);
}

.catalog-search,
.catalog-sort {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.catalog-search span,
.catalog-sort span {
  color: #0d275a;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.catalog-search input,
.catalog-sort select {
  width: 100%;
  height: 42px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fbfcfe;
  color: #102a58;
  outline: none;
  font-size: 13px;
  font-weight: 700;
}

.catalog-search input {
  padding: 0 14px;
}

.catalog-sort select {
  padding: 0 12px;
}

.catalog-search input:focus,
.catalog-sort select:focus {
  border-color: #b8c5d9;
  box-shadow: 0 0 0 3px rgba(7, 31, 77, .07);
}

.catalog-toolbar.is-disabled .catalog-search input,
.catalog-toolbar.is-disabled .catalog-sort select {
  border-color: #dbe2ee;
  background: #eef2f7;
  color: #7a8699;
  cursor: not-allowed;
}

.catalog-sidebar.is-disabled .category-filter {
  opacity: .64;
  cursor: not-allowed;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(220px, 248px) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  margin-top: 20px;
}

.catalog-sidebar {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px;
  background: #fbfcfe;
  box-shadow: 0 10px 22px rgba(10, 38, 85, .035);
}

.catalog-sidebar-head,
.catalog-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.catalog-sidebar h2,
.catalog-results h2 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
}

.catalog-sidebar-head span {
  color: var(--red);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
}

.catalog-category-list {
  display: grid;
  gap: 12px;
  max-height: 520px;
  margin-top: 8px;
  overflow: auto;
  padding-right: 2px;
}

.catalog-category-group {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.catalog-subcategory-list {
  display: grid;
  gap: 5px;
  margin-left: 8px;
  padding-left: 10px;
  border-left: 2px solid #dfe7f4;
}

.catalog-subcategory-list[hidden] {
  display: none;
}

.category-filter {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 7px 10px;
  background: #fff;
  color: #102a58;
  text-align: left;
  font-size: 11px;
  font-weight: 850;
}

.catalog-category-list .category-filter {
  margin-top: 0;
}

.category-filter-parent {
  min-height: 40px;
  border-color: #cbd6e8;
  background: #f4f7fc;
  color: var(--navy);
  font-size: 12px;
}

.category-filter-parent span {
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.25;
  white-space: normal;
}

.category-filter-parent span::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
  transition: transform .18s ease;
}

.catalog-category-group.is-open > .category-filter-parent span::before {
  transform: rotate(90deg);
}

.category-filter-child {
  min-height: 31px;
  padding: 6px 9px;
  font-size: 10.5px;
}

.category-filter span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-filter.category-filter-parent span {
  white-space: normal;
}

.category-filter em {
  flex: 0 0 auto;
  color: #77849a;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.category-filter.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.category-filter.active em {
  color: rgba(255, 255, 255, .86);
}

.catalog-results {
  min-width: 0;
}

.catalog-category-seo {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding: 18px;
}

.catalog-category-seo > p,
.category-guide p {
  margin: 0;
  color: #43516a;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 650;
}

.category-guide,
.category-links {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #edf1f6;
}

.category-guide strong,
.category-links strong {
  color: #102a58;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

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

.category-links strong {
  grid-column: 1 / -1;
}

.category-links a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--red);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

.category-faq-note {
  padding-top: 10px;
  border-top: 1px solid #edf1f6;
  color: #5a6780;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}

.catalog-results-head {
  min-height: 34px;
  margin-bottom: 12px;
}

.catalog-results-head p {
  margin: 5px 0 0;
  color: #627089;
  font-size: 12px;
  font-weight: 800;
}

.catalog-reset-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 0, 11, .2);
  border-radius: 5px;
  background: #fff;
  color: var(--red);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.catalog-state {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  background: #fff;
  color: #334766;
  font-size: 13px;
  font-weight: 800;
}

.catalog-error {
  border-color: rgba(224, 0, 11, .35);
  color: var(--red);
}

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

.catalog-product-card {
  min-width: 0;
  min-height: 292px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(10, 38, 85, .03);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.catalog-product-card:hover {
  border-color: #cfd7e5;
  box-shadow: 0 14px 30px rgba(10, 38, 85, .07);
  transform: translateY(-2px);
}

.catalog-card-link {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.catalog-product-media {
  display: grid;
  place-items: center;
  height: 126px;
  padding: 9px 14px;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
  overflow: hidden;
}

.catalog-product-media img {
  width: 100%;
  height: 100%;
  max-width: 98%;
  max-height: 116px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transform: scale(1.16);
  transform-origin: center;
}

.catalog-product-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 11px 15px 13px;
}

.catalog-product-title {
  min-height: 34px;
  display: -webkit-box;
  overflow: hidden;
  color: #092a60;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.catalog-card-specs {
  min-height: 28px;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
  margin: 8px 0 9px;
  color: #44546f;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 800;
}

.catalog-card-specs span {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #edf1f6;
  border-radius: 999px;
  padding: 4px 7px;
  background: #f8fafc;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  color: #263e68;
  font-size: 11px;
  font-weight: 850;
}

.catalog-card-meta span {
  color: var(--green);
}

.catalog-card-meta em {
  color: #77849a;
  font-size: 10px;
  font-style: normal;
}

.catalog-product-price {
  display: block;
  margin: 0;
  color: #092a60;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.catalog-price-block {
  display: grid;
  gap: 4px;
  margin: 8px 0 7px;
}

.catalog-price-block span,
.catalog-tier-preview {
  color: #5d6a82;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
}

.catalog-tier-preview {
  min-height: 27px;
  display: block;
  margin-bottom: 10px;
  color: #092a60;
}

.catalog-card-button {
  width: 100%;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.catalog-card-button svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-add-cart {
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  background: #092a60;
}

.catalog-add-cart svg {
  flex: 0 0 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-more {
  min-width: 170px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px auto 0;
  border: 0;
  border-radius: 5px;
  background: var(--navy);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .catalog-hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 34px;
  }

  .catalog-summary {
    width: 100%;
    max-width: 280px;
  }

  .catalog-toolbar,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    padding: 14px;
  }

  .catalog-category-list {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .category-filter {
    margin-top: 10px;
  }

  .catalog-category-list .category-filter {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .catalog-hero {
    min-height: 0;
    gap: 18px;
    padding: 30px 0 22px;
  }

  .catalog-hero h1 {
    font-size: 32px;
  }

  .catalog-hero p {
    font-size: 13px;
  }

  .catalog-toolbar {
    padding: 12px;
  }

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

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

  .catalog-results-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .catalog-product-card {
    min-height: 0;
  }
}

/* Info pages */

.info-page main {
  background: #fff;
  padding-bottom: 24px;
}

.info-page .site-footer {
  margin-top: 28px;
}

.info-hero {
  min-height: 176px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  align-items: end;
  gap: 28px;
  margin-top: 22px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 12px 26px rgba(10, 38, 85, .04);
}

.info-kicker {
  margin: 0 0 9px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.info-hero h1 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 900;
}

.info-hero p {
  max-width: 710px;
  margin: 13px 0 0;
  color: #41516c;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.info-hero-note {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 7px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 38, 85, .035);
}

.info-hero-note strong {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.info-hero-note span,
.info-hero-note a {
  display: block;
  margin-top: 7px;
  color: #53617a;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.info-hero-note a {
  color: var(--red);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  align-items: start;
  gap: 24px;
  margin-top: 20px;
}

.info-content,
.info-sidebar {
  min-width: 0;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-panel,
.info-sidebar-card,
.contact-form-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(10, 38, 85, .035);
}

.info-panel {
  padding: 22px;
}

.info-panel h2,
.info-sidebar-card h2,
.contact-form-panel h2 {
  margin: 0 0 12px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
}

.info-panel h3 {
  margin: 18px 0 8px;
  color: #102a58;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.info-panel p,
.info-panel li,
.info-sidebar-card p,
.info-sidebar-card a,
.contact-form-panel p {
  color: #43516a;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 650;
}

.info-panel p {
  margin: 0 0 12px;
}

.info-panel p:last-child {
  margin-bottom: 0;
}

.info-panel ul,
.info-panel ol {
  margin: 10px 0 0;
  padding-left: 19px;
}

.info-panel li + li {
  margin-top: 7px;
}

.info-panel a,
.info-sidebar-card a,
.contact-tile a {
  color: var(--red);
  font-weight: 900;
}

.info-grid,
.contact-grid,
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.info-tile,
.contact-tile,
.method-card {
  min-width: 0;
  border: 1px solid #edf1f6;
  border-radius: 7px;
  padding: 15px;
  background: #fbfcfe;
}

.info-tile strong,
.contact-tile strong,
.method-card strong {
  display: block;
  margin-bottom: 6px;
  color: #0d275a;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.info-tile span,
.contact-tile span,
.method-card span {
  display: block;
  color: #56637a;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}

.method-card {
  border-left: 4px solid var(--navy);
}

.method-card.is-planned {
  border-left-color: var(--red);
}

.status-label {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(224, 0, 11, .08);
  color: var(--red);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
}

.info-sidebar {
  display: grid;
  gap: 14px;
}

.info-sidebar-card,
.contact-form-panel {
  padding: 18px;
}

.info-sidebar-card p {
  margin: 0 0 10px;
}

.info-sidebar-card a {
  display: block;
  margin-top: 8px;
}

.info-link-list {
  display: grid;
  gap: 8px;
}

.info-link-list a {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #edf1f6;
  border-radius: 5px;
  padding: 8px 10px;
  background: #fbfcfe;
  color: #102a58;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.info-link-list a::after {
  content: "->";
  color: var(--red);
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #0d275a;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fbfcfe;
  color: #102a58;
  outline: none;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input {
  height: 42px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px 14px;
}

.contact-form button {
  height: 40px;
  border: 0;
  border-radius: 5px;
  background: var(--navy);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.contact-form-panel.is-future .contact-form button {
  border: 1px solid #dbe2ee;
  background: #eef2f7;
  color: #32445f;
  cursor: default;
}

.info-alert {
  border-left: 4px solid var(--red);
  padding: 13px 15px;
  background: #fff7f8;
}

.info-alert strong {
  color: var(--red);
}

@media (max-width: 980px) {
  .info-hero,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .info-hero {
    align-items: start;
    padding-top: 34px;
  }

  .info-hero-note {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .info-hero {
    min-height: 0;
    gap: 18px;
    padding: 30px 0 22px;
    border: 0;
    box-shadow: none;
  }

  .info-hero h1 {
    font-size: 31px;
  }

  .info-hero p {
    font-size: 13px;
  }

  .info-panel,
  .info-sidebar-card,
  .contact-form-panel {
    padding: 16px;
  }

  .info-grid,
  .contact-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }
}

/* Final polish */

@media (max-width: 980px) {
  .header-inner,
  .home-page .header-inner {
    row-gap: 24px;
  }

  .main-nav a,
  .home-page .main-nav a {
    height: 34px;
  }
}

@media (max-width: 560px) {
  .header-search-form {
    padding: 14px 14px 12px;
  }

  .header-search-results {
    padding: 8px;
  }

  .header-search-result {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    min-height: 72px;
  }

  .header-search-media {
    width: 54px;
    height: 52px;
  }

  .header-search-result em {
    grid-column: 2;
    margin-top: -6px;
    font-size: 14px;
  }

  .site-footer,
  .home-page .site-footer {
    padding: 18px 0 8px;
  }

  .footer-faq {
    margin-bottom: 16px;
    padding: 16px;
  }

  .site-footer .footer-faq h2 {
    font-size: 18px;
  }

  .footer-faq summary {
    min-height: 56px;
    padding: 12px 42px 12px 14px;
    font-size: 12px;
  }

  .footer-inner,
  .home-page .footer-inner {
    gap: 12px;
  }

  .footer-logo,
  .home-footer-logo {
    width: 154px;
  }

  .footer-logo .brand-logo-img {
    transform: translateX(-45px) scale(1.45);
  }

  .footer-brand p,
  .home-page .footer-brand p {
    width: auto;
    margin-top: 9px;
  }

  .site-footer h2,
  .site-footer h3,
  .home-page .site-footer h3 {
    margin: 3px 0 8px;
    font-size: 12px;
  }

  .site-footer p,
  .site-footer a,
  .site-footer .footer-future-link,
  .home-page .site-footer p,
  .home-page .site-footer a {
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 1.28;
  }

  .socials,
  .home-page .socials {
    gap: 13px;
    margin-top: 11px;
  }

  .socials a,
  .socials .footer-social-disabled,
  .home-page .socials a {
    font-size: 16px;
  }

  .subscribe,
  .home-page .subscribe {
    padding: 12px;
  }

  .subscribe h2,
  .subscribe h3,
  .home-page .subscribe h3 {
    font-size: 12px;
    line-height: 1.22;
  }

  .subscribe form,
  .home-page .subscribe form {
    margin-top: 10px;
  }

  .payments,
  .home-page .payments {
    margin-top: 11px;
    font-size: 13px;
  }

  .copyright,
  .home-page .copyright {
    margin-top: 9px;
    font-size: 10px;
  }

  .product-info h1 {
    font-size: clamp(21px, 5.8vw, 23px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .home-page .hero-shop-note {
    display: grid;
    justify-items: start;
    margin-top: 12px;
  }

  .home-page .hero-shop-note span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 10px;
  }
}

.site-footer,
.home-page .site-footer {
  position: relative;
  margin-top: 36px;
  padding: 34px 0 18px;
  border-top: 4px solid var(--red);
  background:
    linear-gradient(135deg, rgba(19, 58, 112, .98) 0%, rgba(26, 74, 132, .98) 56%, rgba(34, 91, 142, .96) 100%);
  color: #fff;
}

.footer-faq {
  margin-bottom: 24px;
  border-color: rgba(255, 255, 255, .18);
  background: linear-gradient(135deg, #ffffff 0%, #f6f9fd 100%);
  box-shadow: 0 20px 42px rgba(3, 12, 32, .18);
}

.footer-location {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  min-height: 236px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(3, 12, 32, .18);
}

.footer-location-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: #fff;
}

.footer-location-copy span {
  color: var(--red);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.site-footer .footer-location-copy h2 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 900;
}

.site-footer .footer-location-copy p,
.site-footer .footer-location-copy a {
  margin: 0;
  color: #263e68;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.site-footer .footer-location-copy a {
  width: fit-content;
  margin-top: 8px;
  padding: 9px 13px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.footer-location iframe {
  width: 100%;
  height: 100%;
  min-height: 236px;
  border: 0;
}

.footer-inner,
.home-page .footer-inner {
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(120px, .72fr)) minmax(250px, 1fr);
  gap: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.site-footer h3,
.home-page .site-footer h3 {
  position: relative;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: 0;
}

.site-footer h3::after,
.home-page .site-footer h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--red);
}

.site-footer p,
.site-footer a,
.site-footer .footer-future-link,
.home-page .site-footer p,
.home-page .site-footer a {
  color: rgba(255, 255, 255, .82);
}

.site-footer a:hover,
.home-page .site-footer a:hover {
  color: #fff;
}

.footer-inner a:not(.footer-logo):not(.home-footer-logo):not(.footer-cta),
.footer-contact-line a {
  position: relative;
  width: fit-content;
  padding-bottom: 3px;
}

.footer-inner a:not(.footer-logo):not(.home-footer-logo):not(.footer-cta)::after,
.footer-contact-line a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s ease;
}

.footer-inner a:not(.footer-logo):not(.home-footer-logo):not(.footer-cta):hover::after,
.footer-inner a:not(.footer-logo):not(.home-footer-logo):not(.footer-cta):focus-visible::after,
.footer-contact-line a:hover::after,
.footer-contact-line a:focus-visible::after {
  transform: scaleX(1);
}

.footer-brand p,
.home-page .footer-brand p {
  width: min(260px, 100%);
  color: rgba(255, 255, 255, .78);
}

.footer-logo,
.home-footer-logo {
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 26px rgba(3, 12, 32, .14);
}

.subscribe,
.home-page .subscribe {
  border-color: rgba(255, 255, 255, .16);
  background: #fff;
  box-shadow: 0 16px 34px rgba(3, 12, 32, .18);
}

.site-footer .subscribe h3,
.home-page .site-footer .subscribe h3 {
  color: var(--navy);
}

.site-footer .subscribe p,
.home-page .site-footer .subscribe p {
  color: #263e68;
}

.footer-cta {
  box-shadow: 0 12px 24px rgba(224, 0, 11, .22);
}

.footer-privacy-note {
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

.footer-privacy-note p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.footer-privacy-note a {
  display: inline;
  margin: 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: inherit;
  font-weight: 900;
}

.privacy-consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 120;
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(209, 219, 233, .96);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 46px rgba(7, 31, 77, .2);
  color: var(--navy);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(12px);
}

.privacy-consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-consent-text {
  display: grid;
  gap: 4px;
}

.privacy-consent-text strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-consent-text p {
  margin: 0;
  color: #334b72;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.privacy-consent-text a,
.privacy-consent-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 900;
}

.privacy-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.privacy-consent-actions button {
  min-width: 112px;
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(224, 0, 11, .22);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.privacy-consent-actions button:hover,
.privacy-consent-actions button:focus-visible {
  background: #f00010;
  box-shadow: 0 16px 28px rgba(224, 0, 11, .28);
  transform: translateY(-1px);
  outline: none;
}

.privacy-consent-actions button:active {
  transform: translateY(0);
}

.copyright,
.home-page .copyright {
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 1180px) {
  .footer-inner,
  .home-page .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .privacy-consent-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .privacy-consent-actions {
    justify-content: space-between;
  }

  .privacy-consent-actions button {
    flex: 1 1 auto;
  }

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

  .footer-location iframe {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .site-footer,
  .home-page .site-footer {
    padding: 24px 0 14px;
  }

  .footer-location-copy {
    padding: 18px;
  }

  .footer-inner,
  .home-page .footer-inner {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

.header-actions button,
.quantity-control button,
.quantity-shortcuts button,
.account-drawer,
.account-drawer-close,
.account-drawer-understood,
.home-page .btn,
.home-page .section-link,
.home-page .price-request-link,
.home-page .card-button,
.catalog-card-button,
.catalog-more,
.catalog-reset-link,
.category-filter,
.add-cart,
.buy-now,
.tabs button,
.subscribe button,
.contact-form button {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.catalog-product-media img,
.home-page .product-card img {
  transition: transform .24s ease;
}

.header-actions button:focus-visible,
.home-page .btn:focus-visible,
.home-page .card-button:focus-visible,
.catalog-card-link:focus-visible,
.catalog-more:focus-visible,
.catalog-reset-link:focus-visible,
.category-filter:focus-visible,
.add-cart:focus-visible,
.buy-now:focus-visible,
.tabs button:focus-visible,
.subscribe button:focus-visible,
.contact-form button:focus-visible {
  outline: 3px solid rgba(7, 31, 77, .16);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .header-actions button:not(:disabled):hover,
  .quantity-control button:not(:disabled):hover,
  .quantity-shortcuts button:not(:disabled):hover,
  .home-page .btn:hover,
  .home-page .section-link:hover,
  .home-page .card-button:hover,
  .catalog-card-link:hover .catalog-card-button,
  .catalog-more:not(:disabled):hover,
  .catalog-reset-link:hover,
  .category-filter:not(:disabled):hover,
  .add-cart:not(:disabled):hover,
  .buy-now:not(:disabled):hover,
  .tabs button:not(:disabled):hover,
  .subscribe button:not(:disabled):hover,
  .contact-form button:not([aria-disabled="true"]):not(:disabled):hover {
    transform: translateY(-1px);
  }

  .header-actions button:not(:disabled):hover,
  .quantity-control button:not(:disabled):hover,
  .quantity-shortcuts button:not(:disabled):hover {
    border-color: rgba(224, 0, 11, .35);
    background: #fff3f4;
    color: var(--red);
    box-shadow: 0 8px 18px rgba(10, 38, 85, .08);
  }

  .home-page .btn.primary:hover,
  .home-page .card-button:hover,
  .catalog-card-link:hover .catalog-card-button,
  .catalog-more:not(:disabled):hover,
  .add-cart:not(:disabled):hover,
  .subscribe button:not(:disabled):hover,
  .contact-form button:not([aria-disabled="true"]):not(:disabled):hover {
    background: #b80009;
    color: #fff;
    box-shadow: 0 10px 22px rgba(10, 38, 85, .14);
  }

  .home-page .btn.secondary:hover,
  .home-page .section-link:hover,
  .catalog-reset-link:hover,
  .buy-now:not(:disabled):hover,
  .category-filter:not(:disabled):not(.active):hover {
    border-color: rgba(224, 0, 11, .35);
    background: #fff7f8;
    color: var(--red);
    box-shadow: 0 8px 18px rgba(10, 38, 85, .08);
  }

  .category-filter:not(:disabled):not(.active):hover {
    box-shadow: inset 3px 0 0 var(--red), 0 8px 18px rgba(10, 38, 85, .08);
  }

  .catalog-product-card:hover .catalog-product-media img {
    transform: scale(1.22);
  }

  .home-page .product-card:hover img {
    transform: scale(1.06);
  }

  .header-actions button:not(:disabled):active,
  .home-page .btn:active,
  .home-page .section-link:active,
  .home-page .card-button:active,
  .catalog-card-link:active .catalog-card-button,
  .catalog-more:not(:disabled):active,
  .catalog-reset-link:active,
  .category-filter:not(:disabled):active,
  .add-cart:not(:disabled):active,
  .buy-now:not(:disabled):active,
  .tabs button:not(:disabled):active,
  .subscribe button:not(:disabled):active,
  .contact-form button:not([aria-disabled="true"]):not(:disabled):active {
    transform: translateY(0);
  }
}

@media (hover: none) {
  .catalog-product-card:hover {
    transform: none;
  }

  .catalog-product-card:hover .catalog-product-media img {
    transform: scale(1.16);
  }

  .home-page .product-card:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-search-state-loading::before,
  .main-nav a::after,
  .catalog-menu-trigger,
  .catalog-menu-drawer,
  .catalog-menu-close,
  .header-actions button,
  .account-drawer,
  .account-drawer-close,
  .account-drawer-understood,
  .home-page .btn,
  .home-page .card-button,
  .catalog-product-card,
  .catalog-card-button,
  .catalog-more,
  .catalog-reset-link,
  .category-filter,
  .add-cart,
  .buy-now,
  .tabs button,
  .subscribe button,
  .contact-form button,
  .catalog-product-media img,
  .home-page .product-card img {
    animation: none !important;
    transition: none !important;
  }

  .header-actions button:hover,
  .catalog-menu-trigger:hover,
  .home-page .btn:hover,
  .home-page .card-button:hover,
  .catalog-product-card:hover,
  .catalog-card-link:hover .catalog-card-button,
  .catalog-more:hover,
  .catalog-reset-link:hover,
  .category-filter:hover,
  .add-cart:hover,
  .buy-now:hover,
  .tabs button:hover,
  .subscribe button:hover,
  .contact-form button:hover {
    transform: none !important;
  }

  .catalog-product-card:hover .catalog-product-media img {
    transform: scale(1.16) !important;
  }

  .home-page .product-card:hover img {
    transform: none !important;
  }
}

/* Compact mobile catalog grids */

@media (max-width: 700px) {
  .container {
    width: min(1190px, calc(100% - 28px));
  }

  .home-page .category-grid,
  .home-page .product-grid,
  .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .categories,
  .home-page .products {
    margin-top: 24px;
  }

  .home-page .categories h2,
  .home-page .products h2,
  .home-page .applications h2 {
    font-size: 20px;
    line-height: 1.12;
  }

  .home-page .section-line {
    margin: 9px auto 14px;
  }

  .home-page .category-card {
    min-height: 134px;
    justify-content: center;
    padding: 10px 8px;
  }

  .home-page .category-card img {
    width: 100%;
    max-width: 108px;
    height: 58px;
    margin-bottom: 8px;
  }

  .home-page .category-card strong {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .home-page .category-card span {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
  }

  .home-page .product-card {
    min-height: 244px;
    display: flex;
    flex-direction: column;
    padding: 10px;
  }

  .home-page .product-card a:first-child {
    display: grid;
    place-items: center;
  }

  .home-page .product-card img {
    height: 68px;
    margin-bottom: 9px;
  }

  .home-page .product-card h3 {
    min-height: 42px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.22;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .home-page .product-card p {
    min-height: 14px;
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-page .rating {
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 7px;
  }

  .home-page .rating span,
  .home-page .rating em {
    font-size: 9.5px;
    line-height: 1.2;
  }

  .home-page .rating span {
    padding: 3px 6px;
  }

  .home-page .product-card > strong {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .home-page .card-button {
    height: 30px;
    gap: 5px;
    margin-top: auto;
    padding: 0 5px;
    font-size: 9.5px;
    line-height: 1.1;
    text-align: center;
  }

  .home-page .card-button svg {
    width: 13px;
    height: 13px;
    flex-basis: 13px;
  }

  .catalog-product-card,
  .catalog-card-link {
    min-height: 0;
  }

  .catalog-product-media {
    height: 92px;
    padding: 6px 8px;
  }

  .catalog-product-media img {
    max-height: 84px;
    transform: scale(1.08);
  }

  .catalog-product-body {
    padding: 9px 9px 10px;
  }

  .catalog-product-title {
    min-height: 42px;
    font-size: 11.3px;
    line-height: 1.24;
    -webkit-line-clamp: 3;
  }

  .catalog-card-specs {
    min-height: 0;
    gap: 4px;
    margin: 6px 0;
    font-size: 8.2px;
  }

  .catalog-card-specs span {
    padding: 3px 4px;
  }

  .catalog-card-specs span:nth-child(n+2) {
    display: none;
  }

  .catalog-card-meta {
    flex-wrap: wrap;
    gap: 4px 7px;
    font-size: 9.5px;
  }

  .catalog-card-meta em {
    font-size: 9px;
  }

  .catalog-price-block {
    gap: 3px;
    margin: 7px 0 6px;
  }

  .catalog-product-price {
    font-size: 14px;
    line-height: 1.12;
  }

  .catalog-price-block span {
    font-size: 9px;
    line-height: 1.2;
  }

  .catalog-tier-preview {
    display: none;
  }

  .catalog-card-button,
  .catalog-add-cart {
    height: 30px;
    gap: 5px;
    font-size: 9px;
    line-height: 1.1;
    text-align: center;
  }

  .catalog-card-button {
    padding: 0 5px;
  }

  .catalog-add-cart {
    width: calc(100% - 18px);
    margin: 0 9px 9px;
    padding: 0 5px;
  }

  .catalog-card-button svg,
  .catalog-add-cart svg {
    width: 13px;
    height: 13px;
    flex-basis: 13px;
  }
}

@media (max-width: 340px) {
  .container {
    width: min(1190px, calc(100% - 20px));
  }

  .home-page .category-grid,
  .home-page .product-grid,
  .catalog-product-grid {
    gap: 6px;
  }

  .home-page .category-card,
  .home-page .product-card {
    padding-right: 8px;
    padding-left: 8px;
  }
}
