:root {
  --pink: #e75091;
  --pink-dark: #c93675;
  --ink: #3f454c;
  --muted: #71777f;
  --line: #e7e9ed;
  --soft: #f5f6f8;
  --dark: #1d2228;
  --content: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body {
  margin: 0;
  background: #fff;
}

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

a:hover {
  color: var(--pink);
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.wrap {
  width: var(--content);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgb(0 0 0 / 6%);
}

.utility {
  background: #7d7d7d;
  color: #fff;
  font-size: 14px;
}

.utility-inner {
  display: flex;
  gap: 22px;
  align-items: center;
  min-height: 36px;
}

.utility-company {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.utility-company::after {
  content: "";
  display: block;
  width: 2px;
  height: 18px;
  background: rgb(255 255 255 / 72%);
}

.utility .language {
  margin-left: auto;
}

.utility .language a {
  color: #fff;
  text-decoration: none;
}

.utility .language a.is-active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.masthead {
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 12px 0;
}

.brand,
.footer-brand {
  color: var(--pink);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand span,
.footer-brand span {
  font-size: 14px;
}

.site-search,
.inline-search {
  display: flex;
  min-width: 0;
}

.site-search {
  width: min(100%, 620px);
  justify-self: start;
}

.site-search select,
.search-results-form select {
  width: 132px;
  border: 1px solid var(--line);
  border-right: 0;
  padding: 7px 10px;
  background: #fff;
  color: var(--ink);
}

.site-search input,
.inline-search input,
.search-results-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-right: 0;
  padding: 7px 12px;
  background: var(--soft);
}

.site-search button,
.inline-search button,
.search-results-form button,
.button,
.table-actions button,
.account-panel button,
.catalog-table button {
  border: 1px solid var(--pink);
  background: var(--pink);
  color: #fff;
  padding: 7px 16px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.button.ghost,
.table-actions button:nth-child(2),
.account-panel .ghost {
  background: #fff;
  color: var(--pink);
}

.account-links {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  justify-self: end;
}

.account-links a,
.account-links button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.account-links > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 28px;
  background: #d3d5d9;
}

.account-links .account-logout::before {
  display: none;
}

.account-links > *:last-child {
  padding-right: 0;
}

.account-links > *:first-child {
  padding-left: 0;
}

.account-logout {
  color: var(--muted) !important;
}

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

.account-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: #6f7276;
}

.account-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal [hidden] {
  display: none !important;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 26, 28, 0.56);
}

.auth-modal__dialog {
  position: relative;
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  padding: 24px 48px 20px;
}

.auth-modal.is-register .auth-modal__dialog,
.auth-modal.is-reset .auth-modal__dialog {
  width: min(620px, calc(100vw - 32px));
}

.auth-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #9aa0a6;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.auth-modal__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 42px 22px 0;
  border: 1px solid var(--line);
}

.auth-modal__tab {
  min-height: 42px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #f6f7f9;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-modal__tab:last-child {
  border-right: 0;
}

.auth-modal__tab.is-active {
  background: var(--pink);
  color: #fff;
}

.auth-modal__title {
  margin: 0 36px 28px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}

.auth-modal__lead {
  margin: -16px 0 18px;
  color: var(--muted);
  text-align: center;
}

.auth-modal__form {
  display: grid;
  gap: 14px;
}

.auth-modal__grid {
  display: grid;
  gap: 18px;
}

.auth-modal.is-register .auth-modal__grid,
.auth-modal.is-reset .auth-modal__grid {
  grid-template-columns: 1fr;
}

.auth-modal__field {
  display: grid;
  margin: 0;
  font-weight: 700;
}

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

.auth-modal__field input,
.auth-modal__field select {
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: #f4f4f5;
  padding: 0 20px;
  font: inherit;
  font-size: 15px;
}

.auth-modal__field input::placeholder {
  color: #9a9da3;
}

.auth-modal__password-wrap {
  position: relative;
}

.auth-modal__password-wrap input {
  width: 100%;
  padding-right: 118px;
}

.auth-modal__field-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-radius: 6px;
  background: #f4f4f5;
}

.auth-modal__field-action input {
  background: transparent;
}

.auth-modal__field-action button {
  min-width: 112px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--pink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-modal__field-action button:disabled {
  opacity: 0.45;
  cursor: default;
}

.auth-modal__hint {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.auth-modal__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.auth-modal__check input {
  margin-top: 4px;
  accent-color: var(--pink);
}

.auth-modal__check a {
  color: #c72d73;
  font-weight: 800;
  text-underline-offset: 3px;
}

.auth-modal__check a:hover,
.auth-modal__check a:focus-visible {
  color: #9e1f5a;
}

.auth-modal__submit {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--pink);
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
}

.auth-modal__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.auth-modal__switch {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.auth-modal__login-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.auth-modal__switch button,
.auth-modal__link {
  border: 0;
  background: transparent;
  color: var(--pink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-modal__link {
  padding: 0;
}

.auth-modal__forgot {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 14px;
}

.auth-modal__message {
  min-height: 20px;
  margin: 0;
  color: #c7304c;
  font-weight: 700;
}

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

.account-edit-modal {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.account-edit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 26, 28, 0.56);
}

.account-edit-modal__dialog {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  padding: 26px 38px 28px;
}

.account-edit-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #9aa0a6;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.account-edit-modal h2 {
  margin: 0 36px 22px 0;
  color: #30343a;
  font-size: 22px;
  font-weight: 800;
}

.account-edit-modal__form,
.account-edit-modal__fields {
  display: grid;
  gap: 14px;
}

.account-edit-modal label {
  display: grid;
  gap: 7px;
  color: #30343a;
  font-weight: 800;
}

.account-edit-modal input,
.account-edit-modal textarea,
.account-edit-modal select {
  width: 100%;
  border: 1px solid #e2e4e8;
  border-radius: 6px;
  background: #f7f7f8;
  padding: 12px 14px;
  color: #20242a;
  font: inherit;
  font-weight: 600;
}

.account-edit-modal input[readonly] {
  color: #5c626a;
  background: #eef0f3;
  cursor: not-allowed;
}

.account-edit-modal textarea {
  resize: vertical;
}

.account-edit-modal label em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.account-edit-modal__message {
  min-height: 20px;
  margin: 0;
  color: #c7304c;
  font-weight: 700;
}

.account-edit-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.account-edit-modal__actions .button {
  min-width: 104px;
}

@media (max-width: 720px) {
  .auth-modal.is-register .auth-modal__grid,
  .auth-modal.is-reset .auth-modal__grid {
    grid-template-columns: 1fr;
  }
}

.main-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.nav-inner a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 13px 0;
  font-weight: 700;
  white-space: nowrap;
}

.nav-inner .is-active {
  color: var(--pink);
}

.page-banner {
  min-height: 220px;
  display: flex;
  align-items: center;
  color: #fff;
  background-image: linear-gradient(90deg, rgb(0 0 0 / 74%), rgb(0 0 0 / 20%)), var(--banner-image);
  background-size: cover;
  background-position: center;
}

.page-banner p {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 8px;
  text-shadow: 0 3px 18px rgb(0 0 0 / 45%);
}

.home-hero,
.home-hero-carousel {
  min-height: 390px;
  position: relative;
  color: var(--ink);
  overflow: hidden;
}

.home-hero {
  display: flex;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.home-hero-track,
.home-hero-slide {
  min-height: inherit;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 420ms ease, transform 700ms ease;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.home-hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-copy {
  width: min(500px, 54vw);
  padding: 28px 32px;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 10px;
  background: linear-gradient(135deg, rgb(255 255 255 / 88%), rgb(239 242 246 / 78%));
  box-shadow: 0 18px 44px rgb(39 48 58 / 12%);
  backdrop-filter: blur(6px);
}

.home-hero h1,
.home-hero-slide h1,
.hero-title {
  margin: 0 0 12px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.home-hero p,
.home-hero-slide p {
  max-width: 620px;
  font-size: 17px;
  margin: 8px 0;
  color: var(--ink);
}

.hero-copy .hero-lead {
  margin: 6px 0 12px;
  line-height: 1.55;
}

.hero-points {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}

.hero-points li {
  position: relative;
  padding-left: 17px;
}

.hero-points li::before {
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgb(74 82 92 / 24%);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: rgb(255 255 255 / 70%);
}

.hero-link:hover,
.hero-link:focus-visible {
  border-color: var(--pink);
  color: var(--pink);
}

.hero-link--primary,
.hero-link--primary:hover,
.hero-link--primary:focus-visible {
  border-color: var(--pink);
  color: #fff;
  background: var(--pink);
}

.hero-pager {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 12%);
  transform: translateX(-50%);
}

.hero-control {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: rgb(255 255 255 / 88%);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.hero-control:hover {
  color: var(--pink);
  background: #fff;
}

.hero-pager span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 84px;
  justify-content: center;
  color: var(--ink);
  font-size: 15px;
  line-height: 40px;
}

.hero-pager b {
  font-weight: 700;
}

.hero-pager i {
  color: var(--muted);
  font-style: normal;
}

.page {
  padding-block: 42px 70px;
}

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

.breadcrumbs span[aria-current="page"],
.breadcrumbs a:last-child {
  color: var(--pink);
}

.breadcrumbs + .two-column {
  margin-top: 16px;
}

.page-title h1 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.2;
}

.page-title p {
  max-width: 720px;
  color: var(--muted);
}

.tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid #f0a7ca;
  margin: 28px 0;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.tabs a,
.tabs button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-bottom: 0;
  padding: 12px 22px;
  background: #fff;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.tabs .is-active,
.tabs a:hover,
.tabs button:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.product-category-tabs {
  position: sticky;
  top: var(--site-header-height, 0px);
  z-index: 40;
  margin-bottom: 0;
  background: #fff;
  box-shadow: 0 8px 14px rgb(33 39 45 / 7%);
}

.product-category-index {
  position: relative;
}

.product-category-tabs a {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.product-group[data-product-category-section] {
  scroll-margin-top: calc(var(--site-header-height, 0px) + var(--product-category-tabs-height, 52px) + 18px);
}

.intro-split,
.media-copy,
.footer-grid,
.contact-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.intro-split img,
.home-intro-media,
.wide-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: 1px solid var(--line);
}

.home-intro-video {
  background: #111;
}

.home-intro-video video,
.home-intro-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-intro-video video {
  object-fit: contain;
}

.media-copy img {
  width: 75%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
}

.rich-content > .media-copy {
  grid-template-columns: 288px minmax(360px, 520px);
  justify-content: start;
  gap: 34px;
  align-items: center;
  margin-bottom: 54px;
}

.rich-content > .product-detail-lead {
  align-items: start;
  gap: clamp(38px, 3.6vw, 56px);
  margin-bottom: 58px;
}

.rich-content > .media-copy img {
  width: 100%;
}

.rich-content > .product-detail-lead img {
  object-fit: contain;
  background: #fff;
}

.product-detail-lead h1 {
  margin: 0 0 34px;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.18;
}

.intro-split h2 {
  margin: 0 0 12px;
}

.intro-split h3 {
  margin: 0 0 10px;
}

.intro-split p {
  margin: 0 0 10px;
}

.page > section + section {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px solid #dde1e6;
}

.product-card-grid,
.category-grid,
.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.product-card,
.category-card {
  display: grid;
  gap: 14px;
  text-align: center;
  border: 1px solid var(--line);
  padding: 18px;
  min-height: 220px;
}

.product-card img,
.category-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center top;
}

.catalog-category-grid .category-card img {
  height: auto;
  aspect-ratio: 1 / 1;
}

.home-product-panel .product-card img {
  width: min(82%, 300px);
  height: 250px;
  margin: 0 auto;
  object-fit: contain;
}

.home-product-panel .product-card {
  border: 0;
  padding: 0;
  min-height: 0;
}

.product-group {
  padding: 30px 0 36px;
  border-bottom: 0;
}

.product-group h2 {
  margin: 0 0 28px;
}

.product-line {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  padding: 0 0 34px;
}

.product-line:last-child {
  padding-bottom: 0;
}

.product-line img {
  width: 220px;
  height: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.product-line h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.model-link-grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 26px;
  row-gap: 22px;
  margin-top: 0;
}

.rich-content > .model-link-grid {
  margin-bottom: 58px;
}

.model-link-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.model-link-grid a:hover {
  border-color: var(--pink);
  color: #fff;
  background: var(--pink);
}

.two-column,
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.product-detail-layout {
  grid-template-columns: 246px minmax(0, 1fr);
  gap: clamp(38px, 3.8vw, 58px);
}

.two-column > *,
.rich-content {
  min-width: 0;
}

.side-nav,
.account-menu {
  border: 1px solid var(--line);
  padding: 18px;
}

.account-dashboard {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 68px;
  align-items: start;
  margin-top: 34px;
}

.account-sidebar {
  position: sticky;
  top: calc(var(--site-header-height, 0px) + 24px);
  max-height: calc(100vh - var(--site-header-height, 0px) - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  border: 0;
  padding: 0;
  background: #fff;
}

.account-sidebar a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 4px 2px;
  color: #006eb8;
  font-weight: 700;
}

.account-sidebar a + a {
  margin-top: 8px;
}

.account-sidebar .is-active {
  background: transparent;
  color: var(--pink);
}

.account-menu-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.account-menu-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.account-nav-group {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.account-nav-group + .account-nav-group {
  padding-top: 18px;
}

.account-nav-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 12px;
  color: #2f3338;
  font-size: 17px;
  font-weight: 800;
}

.account-nav-heading span {
  color: #7b8087;
}

.side-nav h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.side-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-nav a,
.account-menu a {
  display: block;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.account-menu .is-active {
  background: var(--pink);
  color: #fff;
}

.product-tree {
  border: 0;
  padding: 0 14px 16px 0;
  position: sticky;
  top: 172px;
  max-height: calc(100vh - 196px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.product-tree details {
  border: 0;
}

.product-tree summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 36px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 700;
}

.product-tree summary::-webkit-details-marker {
  display: none;
}

.product-tree summary::after {
  content: "⌄";
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
}

.product-tree details[open] > summary::after {
  content: "⌃";
  color: var(--pink);
}

.tree-category {
  padding: 4px 0;
}

.tree-category > summary {
  color: var(--ink);
}

.tree-category.is-active > summary {
  color: var(--pink);
}

.tree-groups {
  display: grid;
  gap: 5px;
  padding: 5px 0 13px 15px;
}

.tree-group > summary {
  min-height: 32px;
  font-size: 15px;
  font-weight: 700;
}

.tree-group > summary a {
  display: inline-flex;
  padding: 4px 0;
  border: 0;
}

.tree-group > summary a.is-current,
.tree-models a.is-current {
  color: var(--pink);
}

.tree-models {
  display: grid;
  gap: 4px;
  padding: 5px 0 13px 19px;
}

.tree-models a,
.tree-empty {
  display: block;
  padding: 4px 0;
  border: 0;
  color: var(--muted);
  font-size: 14px;
}

.tree-models a:hover,
.tree-group > summary a:hover,
.tree-empty:hover {
  color: var(--pink);
}

.rich-content h2,
.faq-block h2,
.calculator h2 {
  margin-top: 58px;
  margin-bottom: 22px;
}

.about-company-wrap > h2 {
  margin-top: 38px;
}

.about-company {
  display: grid;
  gap: 34px;
  max-width: 1120px;
}

.about-company-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 8px;
}

.about-company-hero figure {
  margin: 0;
  min-width: 0;
  background: #f5f6f5;
}

.about-company-hero img,
.about-company-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  object-fit: cover;
}

.about-company-hero img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.about-company-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  border-top: 3px solid var(--pink);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.about-company-kicker {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.about-company-lead h3,
.about-company-section h3,
.about-company-grid h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.about-company-lead p,
.about-company-section p,
.about-company-grid p,
.about-company-list {
  margin: 0;
  color: #51565d;
  font-size: 16px;
  line-height: 1.85;
}

.about-company-lead p + p,
.about-company-section p + p {
  margin-top: 12px;
}

.about-company-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}

.about-company-facts div {
  min-width: 0;
  padding: 22px 24px;
}

.about-company-facts div + div {
  border-left: 1px solid var(--line);
}

.about-company-facts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 28px;
  line-height: 1.1;
}

.about-company-facts span {
  color: #51565d;
  font-weight: 700;
}

.about-company-section,
.about-company-grid section {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  padding: 26px 30px;
}

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

.about-company-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.about-company-list + p {
  margin-top: 18px;
}

.about-company-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-company-gallery img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.about-company-closing {
  margin: 0;
  border-left: 4px solid var(--pink);
  background: #f8f8f8;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
}

.rich-content > .media-copy + h2 {
  margin-top: 0;
}

.faq-block {
  margin-top: 60px;
  margin-bottom: 58px;
}

.faq-block h2 {
  margin-top: 0;
}

.rich-content table,
.catalog-table,
.account-panel table,
.calculator table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.product-info-lead {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.product-info-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  contain: inline-size;
  margin: 12px 0 28px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.product-info-table {
  width: 800px;
  min-width: 800px;
  table-layout: fixed;
  border-collapse: collapse;
  background: #fff;
}

.product-info-col-model {
  width: 80px;
}

.product-info-col-illustration {
  width: 108px;
}

.product-info-col-support {
  width: 80px;
}

.product-info-col-interface-image {
  width: 94px;
}

.product-info-col-interface-text {
  width: 134px;
}

.product-info-col-size {
  width: 174px;
}

.product-info-col-capacity {
  width: 130px;
}

.product-info-col-support-name {
  width: 80px;
}

.product-info-col-support-image {
  width: 142px;
}

.product-info-col-support-match {
  width: 132px;
}

.product-info-col-support-interface-text {
  width: 200px;
}

.product-info-col-support-size {
  width: 172px;
}

.product-info-col-heavy-model {
  width: 88px;
}

.product-info-col-heavy-image {
  width: 132px;
}

.product-info-col-heavy-interface-text {
  width: 178px;
}

.product-info-col-heavy-size {
  width: 196px;
}

.product-info-col-heavy-capacity {
  width: 98px;
}

.product-info-table--heavy-lineup .product-info-col-interface-image {
  width: 124px;
}

.product-info-col-motor-model {
  width: 7%;
}

.product-info-col-motor-size {
  width: 15%;
}

.product-info-col-motor-support {
  width: 18%;
}

.product-info-col-motor-image {
  width: 23%;
}

.product-info-col-motor-description {
  width: 37%;
}

.product-info-table th,
.product-info-table td {
  border: 1px solid #5f6469;
  padding: 5px 5px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.32;
  text-align: left;
  vertical-align: middle;
  overflow-wrap: normal;
  word-break: normal;
}

.product-info-table th {
  background: #e1e1e1;
  font-weight: 800;
  white-space: normal;
}

.product-info-table--lineup td:first-child,
.product-info-table--config td:first-child,
.product-info-table--support-lineup td:first-child,
.product-info-table--heavy-lineup td:first-child,
.product-info-table--bearing-config td:first-child {
  font-weight: 700;
  white-space: nowrap;
}

.product-info-table--lineup th:first-child,
.product-info-table--lineup td:first-child {
  width: 80px;
}

.product-info-table--lineup th:nth-child(2),
.product-info-table--lineup td:nth-child(2) {
  width: 108px;
  text-align: center;
}

.product-info-table--lineup th:nth-child(4),
.product-info-table--lineup td:nth-child(4) {
  width: 94px;
  text-align: center;
}

.product-info-table--lineup td:nth-child(5) {
  width: 134px;
}

.product-info-table--lineup th:nth-child(6),
.product-info-table--lineup td:nth-child(6) {
  width: 174px;
}

.product-info-table--lineup th:nth-child(7),
.product-info-table--lineup td:nth-child(7) {
  width: 130px;
}

.bearing-capacity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.bearing-capacity--compact {
  gap: 4px;
}

.product-line-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  min-height: 82px;
  margin: 0 auto;
}

.product-line-figure img {
  display: block;
  width: auto;
  max-width: 96px;
  max-height: 90px;
  object-fit: contain;
}

.product-interface-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  min-height: 82px;
  margin: 0 auto;
}

.product-interface-figure img {
  display: block;
  width: auto;
  max-width: 84px;
  max-height: 90px;
  object-fit: contain;
}

.product-info-table--support-lineup .product-line-figure {
  width: 124px;
  min-height: 90px;
}

.product-info-table--support-lineup .product-line-figure img {
  max-width: 124px;
  max-height: 100px;
}

.product-info-table--support-lineup td:nth-child(2) {
  overflow: hidden;
}

.product-info-table--heavy-lineup .product-line-figure {
  width: 112px;
  min-height: 90px;
}

.product-info-table--heavy-lineup .product-line-figure img {
  max-width: 112px;
  max-height: 100px;
}

.product-info-table--heavy-lineup td:nth-child(2) {
  overflow: hidden;
}

.product-info-table--heavy-lineup .product-interface-figure {
  width: 118px;
}

.product-info-table--heavy-lineup .product-interface-figure img {
  max-width: 118px;
}

.product-line-figure--motor {
  width: 170px;
  min-height: 150px;
}

.product-line-figure--motor img {
  max-width: 170px;
  max-height: 150px;
}

.product-line-figure--nut {
  width: 170px;
  min-height: 150px;
}

.product-line-figure--nut img {
  max-width: 170px;
  max-height: 150px;
}

.product-line-figure--locknut {
  width: 190px;
  min-height: 150px;
}

.product-line-figure--locknut img {
  max-width: 190px;
  max-height: 160px;
}

.bearing-capacity span {
  display: inline-block;
  width: 18px;
  height: 14px;
  border: 2px solid #2f3338;
  transform: skewX(-10deg);
  background: #fff;
}

.bearing-capacity span.is-filled {
  background: #5a5a5a;
}

.bearing-capacity--compact span {
  width: 17px;
  height: 14px;
}

.product-model-list {
  margin: -5px;
}

.product-model-list span {
  display: block;
  padding: 5px;
  border-top: 1px solid #5f6469;
  text-align: center;
}

.product-model-list span:first-child {
  border-top: 0;
}

.product-info-table--support-lineup td:nth-child(2),
.product-info-table--support-lineup td:nth-child(3),
.product-info-table--support-lineup td:nth-child(4),
.product-info-table--heavy-lineup td:nth-child(2),
.product-info-table--heavy-lineup td:nth-child(3),
.product-info-table--heavy-lineup td:nth-child(6) {
  text-align: center;
}

.product-info-table--heavy-lineup td:nth-child(4):not(:last-child) {
  word-break: keep-all;
}

.product-info-table--heavy-lineup th:last-child,
.product-info-table--heavy-lineup td:last-child {
  text-align: center;
}

.product-info-table--motor-lineup {
  width: 100%;
  min-width: 820px;
}

.product-info-table--motor-lineup td:nth-child(1),
.product-info-table--motor-lineup td:nth-child(2),
.product-info-table--motor-lineup td:nth-child(3),
.product-info-table--motor-lineup td:nth-child(4) {
  text-align: center;
}

.product-info-table--motor-lineup th {
  white-space: normal;
}

.product-info-table--motor-lineup td:nth-child(2),
.product-info-table--motor-lineup td:nth-child(3) {
  font-size: 15px;
  line-height: 1.65;
}

.product-info-table--motor-lineup td:nth-child(5) {
  padding: 12px 18px;
}

.product-info-table--motor-lineup-integrated .product-info-col-motor-support {
  width: 19%;
}

.product-info-table--motor-lineup-integrated .product-info-col-motor-description {
  width: 36%;
}

.product-info-table--nut-lineup {
  width: 100%;
  min-width: 820px;
}

.product-info-table--nut-lineup th {
  white-space: normal;
}

.product-info-table--nut-lineup td:nth-child(1),
.product-info-table--nut-lineup td:nth-child(2),
.product-info-table--nut-lineup td:nth-child(3) {
  text-align: center;
}

.product-info-table--nut-lineup td:nth-child(1) {
  font-size: 20px;
  font-weight: 800;
}

.product-info-table--nut-lineup td:nth-child(2) {
  font-size: 18px;
  line-height: 1.75;
}

.product-info-table--nut-lineup td:nth-child(4) {
  padding: 12px 18px;
}

.product-info-col-nut-model {
  width: 9%;
}

.product-info-col-nut-size {
  width: 22%;
}

.product-info-col-nut-image {
  width: 24%;
}

.product-info-col-nut-description {
  width: 45%;
}

.product-info-table--locknut-lineup {
  width: 100%;
  min-width: 820px;
}

.product-info-table--locknut-lineup th {
  white-space: normal;
}

.product-info-table--locknut-lineup td:nth-child(1),
.product-info-table--locknut-lineup td:nth-child(2),
.product-info-table--locknut-lineup td:nth-child(3) {
  text-align: center;
}

.product-info-table--locknut-lineup td:nth-child(1) {
  font-size: 18px;
}

.product-info-table--locknut-lineup td:nth-child(3) {
  font-size: 20px;
  line-height: 1.65;
}

.product-info-table--locknut-lineup td:nth-child(4) {
  padding: 12px 18px;
  font-size: 18px;
  line-height: 1.55;
}

.product-info-col-locknut-model {
  width: 12%;
}

.product-info-col-locknut-image {
  width: 34%;
}

.product-info-col-locknut-coverage {
  width: 20%;
}

.product-info-col-locknut-description {
  width: 34%;
}

.product-info-table--linear-actuator {
  width: 100%;
  min-width: 820px;
}

.product-info-table--linear-actuator th {
  white-space: normal;
}

.product-info-table--linear-actuator td {
  padding: 10px 12px;
  line-height: 1.45;
}

.product-info-table--linear-actuator .series-name {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.linear-actuator-col-series {
  width: 9%;
}

.linear-actuator-col-guide {
  width: 21%;
}

.linear-actuator-col-drive {
  width: 22%;
}

.linear-actuator-col-accuracy {
  width: 22%;
}

.linear-actuator-col-position {
  width: 26%;
}

.linear-actuator-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 14px 0 32px;
}

.linear-actuator-figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.linear-actuator-figure img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 12px;
}

.linear-actuator-figure figcaption {
  border-top: 1px solid var(--line);
  padding: 9px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.linear-actuator-render-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 14px 0 32px;
}

.linear-actuator-render-series {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.linear-actuator-render-series h3 {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.linear-actuator-render-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
}

.linear-actuator-render-figure {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: #fafbfc;
}

.linear-actuator-render-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: contain;
  padding: 6px;
}

.linear-actuator-render-figure figcaption {
  overflow-wrap: anywhere;
  border-top: 1px solid var(--line);
  padding: 7px 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.product-info-table--engineering-group {
  width: 100%;
  min-width: 840px;
}

.product-info-table--engineering-group th {
  white-space: normal;
}

.product-info-table--engineering-group td {
  padding: 10px 12px;
  line-height: 1.45;
}

.product-info-table--engineering-group .series-name {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.engineering-group-col-series {
  width: 12%;
}

.engineering-group-col-structure {
  width: 19%;
}

.engineering-group-col-stroke {
  width: 20%;
}

.engineering-group-col-performance {
  width: 25%;
}

.engineering-group-col-note {
  width: 24%;
}

.product-group-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 14px 0 32px;
}

.product-group-gallery--single {
  grid-template-columns: minmax(0, 1fr);
}

.product-group-figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.product-group-figure img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 12px;
}

.product-group-figure--tall img {
  height: 330px;
}

.product-group-gallery--single .product-group-figure img {
  height: 430px;
}

.product-group-figure figcaption {
  border-top: 1px solid var(--line);
  padding: 9px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.product-info-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-info-feature-list li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
  line-height: 1.55;
}

.product-info-feature-list li:last-child {
  margin-bottom: 0;
}

.product-info-feature-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink);
  font-weight: 800;
}

.product-info-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 28px;
  width: 800px;
  max-width: 100%;
  margin: 12px 0 28px;
}

.product-info-split .product-info-table {
  width: 100%;
  min-width: 0;
}

.product-info-shot {
  margin: 12px 0 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-info-shot img {
  display: block;
  width: 900px;
  max-width: 100%;
  height: auto;
  background: #fff;
}

.product-info-table--part-number th,
.product-info-table--designation th {
  text-align: center;
}

.product-info-table--part-number td,
.product-info-table--designation td,
.product-info-table--bearing-config td {
  text-align: center;
}

.product-info-note {
  margin: -16px 0 28px;
  color: #5b6067;
  font-size: 14px;
  line-height: 1.7;
}

.series-spec-figure {
  margin: 0 0 28px;
  width: 100%;
}

.series-spec-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: #fff;
}

.series-spec-section {
  margin: 0 0 34px;
}

.series-spec-section h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.series-spec-media {
  display: grid;
  grid-template-columns: minmax(180px, 28%) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.series-spec-media__image {
  width: 100%;
  max-width: 280px;
  margin: 0;
  justify-self: start;
}

.series-spec-media__image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: #fff;
}

.series-spec-table,
.series-dimension-table {
  border-collapse: collapse;
  text-align: center;
}

.series-spec-table {
  table-layout: fixed;
}

.series-spec-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.series-spec-media .series-spec-table-scroll {
  min-width: 0;
}

.series-spec-table--contents {
  width: 450px;
  min-width: 450px;
}

.series-spec-table--interface {
  table-layout: auto;
  width: max-content;
  min-width: 660px;
}

.series-spec-table--contents th:nth-child(1),
.series-spec-table--contents td:nth-child(1) {
  width: 90px;
}

.series-spec-table--contents th:nth-child(2),
.series-spec-table--contents td:nth-child(2) {
  width: 220px;
}

.series-spec-table--contents th:nth-child(3),
.series-spec-table--contents td:nth-child(3) {
  width: 72px;
}

.series-spec-table--contents th:nth-child(4),
.series-spec-table--contents td:nth-child(4) {
  width: 68px;
}

.series-spec-table--interface th:nth-child(1),
.series-spec-table--interface td:nth-child(1) {
  width: 168px;
}

.series-spec-table--interface th:nth-child(1) {
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.series-spec-table--interface th:not(:first-child),
.series-spec-table--interface td:not(:first-child) {
  width: 88px;
}

.series-spec-table--dimensions,
.series-dimension-table {
  table-layout: auto;
  width: 1320px;
  min-width: 1320px;
}

.series-spec-table--linear {
  width: max-content;
  min-width: min(100%, 760px);
}

.series-spec-table--motor {
  width: max-content;
  min-width: 2200px;
  table-layout: auto;
}

.series-spec-table--integrated-c {
  width: max-content;
  min-width: 2360px;
  table-layout: auto;
}

.series-spec-table--integrated-c tbody tr {
  height: 38px;
}

.series-spec-table--integrated-c tbody td {
  padding-top: 7px;
  padding-bottom: 7px;
  line-height: 1.25;
  vertical-align: middle;
}

.series-spec-table--motor-compatibility {
  width: max-content;
  min-width: 1560px;
  table-layout: auto;
}

.series-spec-table--motor-support {
  width: max-content;
  min-width: min(100%, 760px);
  table-layout: auto;
}

.series-spec-table--nut {
  width: max-content;
  min-width: 1600px;
  table-layout: auto;
}

.series-spec-table--nut-compact {
  min-width: 1320px;
}

.series-spec-table--nut-classification {
  width: 100%;
  min-width: 760px;
  table-layout: auto;
}

.series-spec-table--locknut {
  width: max-content;
  min-width: 1560px;
  table-layout: auto;
}

.series-spec-table--locknut-compact {
  min-width: 980px;
}

.series-spec-properties {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.series-spec-properties > div {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.series-spec-properties dt,
.series-spec-properties dd {
  margin: 0;
  padding: 10px 12px;
  line-height: 1.35;
}

.series-spec-properties dt {
  background: #f0f2f5;
  color: var(--ink);
  font-weight: 800;
}

.series-spec-properties dd {
  color: var(--body);
}

.linear-series-spec-item {
  margin: 0 0 36px;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.linear-series-spec-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.linear-series-spec-item h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}

.linear-series-spec-figure {
  margin: 0 0 16px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.motion-series-spec-item {
  margin: 0 0 42px;
  padding: 0 0 38px;
  border-bottom: 1px solid var(--line);
}

.motion-series-spec-item:last-of-type {
  margin-bottom: 18px;
}

.motion-series-spec-figure {
  margin: 0 0 18px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.motion-series-spec-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
}

.motion-series-table-block {
  margin: 18px 0 0;
}

.motion-series-table-block h5 {
  margin: 0 0 9px;
  font-size: 1rem;
  line-height: 1.4;
}

.motion-series-table-scroll {
  border: 1px solid var(--line);
}

.motion-series-table {
  table-layout: auto;
  width: max-content;
  min-width: 100%;
  border: 0;
}

.motion-series-table th,
.motion-series-table td {
  min-width: 88px;
  max-width: 260px;
  padding: 8px 10px;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
}

.motion-series-table th:first-child,
.motion-series-table td:first-child {
  min-width: 120px;
}

@media (max-width: 720px) {
  .motion-series-spec-figure {
    padding: 6px;
  }

  .motion-series-table th,
  .motion-series-table td {
    min-width: 96px;
    padding: 7px 8px;
  }
}

.linear-series-spec-figure img {
  display: block;
  width: 100%;
  max-height: none;
  object-fit: contain;
}

.motor-series-spec-figure {
  padding: 18px;
  background: #fff;
}

.motor-series-spec-figure img {
  display: block;
  width: 100%;
  max-height: 760px;
  height: auto;
  object-fit: contain;
}

.integrated-motor-series-spec-item {
  margin: 0 0 38px;
  padding: 0 0 36px;
  border-bottom: 1px solid var(--line);
}

.integrated-motor-series-spec-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.integrated-motor-series-spec-item h4,
.integrated-motor-series-spec-item h5 {
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.integrated-motor-series-spec-item h4 {
  font-size: 1.15rem;
}

.integrated-motor-series-spec-item h5 {
  margin-top: 18px;
  font-size: 1rem;
}

.integrated-motor-series-spec-figure {
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.integrated-motor-series-spec-figure img {
  display: block;
  width: 100%;
  max-height: 820px;
  height: auto;
  object-fit: contain;
}

.nut-series-spec-item {
  margin: 0 0 38px;
  padding: 0 0 36px;
  border-bottom: 1px solid var(--line);
}

.nut-series-spec-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.nut-series-spec-item h4,
.nut-series-spec-item h5 {
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.nut-series-spec-item h4 {
  font-size: 1.15rem;
}

.nut-series-spec-item h5 {
  margin-top: 18px;
  font-size: 1rem;
}

.nut-series-spec-figure {
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.nut-series-spec-figure img {
  display: block;
  width: 100%;
  max-height: 820px;
  height: auto;
  object-fit: contain;
}

.series-spec-table--dimensions th:first-child,
.series-spec-table--dimensions td:first-child,
.series-dimension-table th:first-child,
.series-dimension-table td:first-child {
  min-width: 112px;
}

.series-spec-table--dimensions th:not(:first-child),
.series-spec-table--dimensions td:not(:first-child),
.series-dimension-table th:not(:first-child),
.series-dimension-table td:not(:first-child) {
  min-width: 58px;
}

.series-spec-table--linear th:not(:first-child),
.series-spec-table--linear td:not(:first-child) {
  min-width: 84px;
}

.series-spec-table--dimensions th:last-child,
.series-spec-table--dimensions td:last-child,
.series-dimension-table th:last-child,
.series-dimension-table td:last-child {
  min-width: 118px;
}

.series-spec-table--linear th:first-child,
.series-spec-table--linear td:first-child,
.series-spec-table--linear th:last-child,
.series-spec-table--linear td:last-child {
  min-width: 128px;
}

.series-spec-table--motor th:first-child,
.series-spec-table--motor td:first-child {
  min-width: 168px;
  white-space: nowrap;
}

.series-spec-table--motor th:last-child,
.series-spec-table--motor td:last-child {
  min-width: 150px;
}

.series-spec-table--integrated-c th,
.series-spec-table--motor-compatibility th,
.series-spec-table--motor-support th,
.series-spec-table--nut th,
.series-spec-table--locknut th,
.series-spec-table--nut-classification th {
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.series-spec-table--nut th:first-child,
.series-spec-table--nut td:first-child,
.series-spec-table--locknut th:first-child,
.series-spec-table--locknut td:first-child {
  min-width: 126px;
  white-space: nowrap;
}

.series-spec-table--nut-classification th:first-child,
.series-spec-table--nut-classification td:first-child {
  min-width: 190px;
}

.series-spec-table--integrated-c th:first-child,
.series-spec-table--integrated-c td:first-child,
.series-spec-table--motor-compatibility th:first-child,
.series-spec-table--motor-compatibility td:first-child {
  min-width: 158px;
  white-space: nowrap;
}

.series-spec-table--motor-compatibility th:nth-child(4),
.series-spec-table--motor-compatibility td:nth-child(4),
.series-spec-table--motor-compatibility th:nth-child(5),
.series-spec-table--motor-compatibility td:nth-child(5),
.series-spec-table--motor-compatibility th:nth-child(6),
.series-spec-table--motor-compatibility td:nth-child(6) {
  min-width: 156px;
}

.series-dimension-table caption {
  caption-side: top;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  text-align: left;
}

.series-spec-table th,
.series-spec-table td {
  padding: 7px 9px;
  font-size: 0.9rem;
  line-height: 1.32;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.series-spec-table.motion-series-table th,
.series-spec-table.motion-series-table td {
  min-width: 88px;
  max-width: none;
  padding: 7px 10px;
  line-height: 1.35;
  vertical-align: middle;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.series-spec-table.motion-series-table tbody tr {
  height: auto;
}

.series-spec-table.motion-series-table th:first-child,
.series-spec-table.motion-series-table td:first-child {
  width: auto;
  min-width: 145px;
}

.series-spec-table.motion-series-table--compact {
  width: 100%;
  min-width: 680px;
  table-layout: fixed;
}

.series-spec-table.motion-series-table--compact th,
.series-spec-table.motion-series-table--compact td {
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.series-spec-table.motion-series-table--compact th:first-child,
.series-spec-table.motion-series-table--compact td:first-child {
  width: auto;
  min-width: 0;
}

.series-spec-table.motion-series-table--standard th:first-child,
.series-spec-table.motion-series-table--standard td:first-child {
  min-width: 145px;
}

.series-spec-table.motion-series-table--dense th,
.series-spec-table.motion-series-table--dense td {
  min-width: 80px;
  padding-right: 8px;
  padding-left: 8px;
}

.series-spec-table.motion-series-table--dense th:first-child,
.series-spec-table.motion-series-table--dense td:first-child {
  min-width: 130px;
}

.series-spec-table--dimensions th,
.series-spec-table--dimensions td,
.series-dimension-table th,
.series-dimension-table td {
  padding: 7px 8px;
  font-size: 0.92rem;
  line-height: 1.25;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.series-spec-table small,
.series-spec-table--dimensions small,
.series-dimension-table small {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  line-height: 1.15;
}

.series-spec-unit {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: right;
}

@media (max-width: 760px) {
  .series-spec-media {
    grid-template-columns: 1fr;
  }

  .series-spec-media__image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 14px;
  }

  .series-spec-properties {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .series-spec-properties {
    grid-template-columns: 1fr;
  }
}

th,
td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f0f2f5;
}

.qa {
  border-top: 1px dashed var(--line);
  padding: 14px 0;
}

.qa-question-row,
.qa-answer-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 8px;
  align-items: start;
}

.qa-answer-row {
  margin-top: 10px;
}

.qa-mark {
  display: block;
  color: var(--pink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.qa-question-row .qa-mark {
  padding-top: 0;
}

.qa-answer-row .qa-mark {
  padding-top: 0;
}

.site-search-page {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}

.search-results-form {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 0;
  max-width: 880px;
}

.search-results-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.search-results-summary p {
  margin: 0;
  color: #54606d;
}

.search-results-count {
  flex: 0 0 auto;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  font-weight: 700;
}

.search-results-list {
  display: grid;
  gap: 16px;
}

.search-result-card {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--pink);
  background: linear-gradient(180deg, #fff, #fbfbfc);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.search-result-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgb(24 31 42 / 7%);
  border-color: #d8dce3;
}

.search-result-card h2,
.search-result-card p {
  margin: 0;
}

.search-result-card h2 {
  font-size: 24px;
}

.search-result-card p {
  color: #566270;
  line-height: 1.75;
}

.search-result-card mark {
  background: #ffe4f1;
  color: inherit;
  padding: 0 2px;
}

.search-result-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #6c7684;
  font-size: 14px;
}

.search-result-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgb(236 76 142 / 10%);
  color: var(--pink);
  font-weight: 700;
}

.search-result-arrow {
  margin-left: auto;
  color: var(--pink);
  font-size: 20px;
  font-weight: 700;
}

.search-result-trail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #6c7684;
  font-size: 14px;
}

.search-result-trail i {
  font-style: normal;
  color: #adb5bf;
}

.search-results-empty {
  margin: 0;
  padding: 22px 24px;
  border: 1px dashed #d7dce3;
  background: #fafafb;
  color: #566270;
}

.qa h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.qa p {
  margin: 0;
  line-height: 1.75;
}

.manual-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 240px));
  gap: 44px;
}

.manual-card {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.manual-card img {
  width: 100%;
  aspect-ratio: 1 / 1.414;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft);
}

.manual-card:hover {
  color: var(--pink);
}

.catalog-search-card {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: 36px;
  align-items: center;
  max-width: 720px;
  padding: 10px 0 28px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.catalog-search-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.catalog-search-card:hover {
  color: var(--pink);
}

.filter-panel,
.account-panel,
.calculator,
.empty-note {
  border: 1px solid var(--line);
  padding: 24px;
  background: #fff;
}

.account-dashboard .account-panel {
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
}

.account-main {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.account-signin-prompt {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 300px;
  padding: 8px 0 0;
  border: 0;
  background: transparent;
}

.account-signin-prompt h2 {
  margin: 0 0 12px;
  color: #30343a;
  font-size: 28px;
}

.account-signin-prompt p {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.account-signin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.account-signin-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--link);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}

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

.account-summary-block {
  min-width: 0;
}

.account-contact-block {
  max-width: 720px;
}

.account-address-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 62px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.account-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.account-block-head h2,
.account-history-card h2,
.account-privacy-note h2 {
  margin: 0;
  color: #30343a;
  font-size: 28px;
  font-weight: 800;
}

.account-block-head button {
  border: 0;
  border-bottom: 2px dotted currentColor;
  padding: 0;
  background: transparent;
  color: #0070ba;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.account-summary-block dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.account-summary-block dl div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px dashed var(--line);
}

.account-summary-block dt {
  color: #30343a;
  font-weight: 800;
}

.account-summary-block dd {
  margin: 0;
  color: #20242a;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.account-summary-block address {
  display: grid;
  gap: 7px;
  color: #30343a;
  font-style: normal;
  line-height: 1.45;
}

.account-summary-block address span:empty,
.account-summary-block address span:first-child:is(:empty) {
  display: none;
}

.account-history-card {
  border: 1px solid var(--line);
  padding: 28px 32px;
  background: #fff;
}

.account-history-card p,
.account-privacy-note p {
  margin: 10px 0 20px;
  color: #30343a;
  line-height: 1.7;
}

.account-history-card .button {
  background: #006eb8;
  border-color: #006eb8;
}

.account-orders-panel {
  display: grid;
  gap: 26px;
}

.account-orders-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.account-orders-head h2 {
  margin: 0;
  color: #30343a;
  font-size: 32px;
  font-weight: 800;
}

.account-orders-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.account-order-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.account-order-tabs button {
  border: 0;
  border-bottom: 4px solid transparent;
  padding: 0 4px 12px;
  background: transparent;
  color: #30343a;
  font: inherit;
  font-weight: 800;
  cursor: default;
}

.account-order-tabs .is-active {
  border-bottom-color: var(--pink);
}

.account-order-filters {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(160px, 220px) minmax(220px, 300px);
  gap: 18px 24px;
  align-items: start;
}

.account-order-filters label {
  display: grid;
  gap: 8px;
  color: #30343a;
  font-weight: 800;
}

.account-order-filters select,
.account-order-filters input {
  height: 42px;
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 10px;
  color: #30343a;
  font: inherit;
}

.account-order-count {
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.account-cart-panel {
  display: grid;
  gap: 18px;
}

.account-cart-panel .account-panel-title {
  margin-bottom: 8px;
}

.account-cart-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 28px;
  color: var(--muted);
  font-weight: 700;
}

.account-cart-summary strong {
  color: var(--ink);
}

.account-cart-summary small {
  flex-basis: 100%;
  text-align: right;
  font-weight: 500;
}

.account-cart-table {
  min-width: 900px;
}

.account-cart-table th,
.account-cart-table td {
  vertical-align: middle;
}

.account-cart-table .account-select-cell {
  width: 52px;
  text-align: center;
}

.account-cart-table .account-select-cell input {
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
}

.account-cart-description {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.account-cart-qty {
  width: 82px;
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 9px;
  color: var(--ink);
  font: inherit;
}

.account-cart-delete {
  border: 0;
  background: transparent;
  padding: 8px 2px;
  color: var(--pink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.account-cart-delete:hover {
  color: #c92568;
}

.account-cart-delete:disabled,
.account-order-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.account-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.account-order-form {
  margin: 0;
}

.account-orders-table th,
.account-orders-table td {
  vertical-align: middle;
}

.account-orders-table th {
  white-space: nowrap;
}

.account-orders-table {
  min-width: 840px;
  table-layout: fixed;
}

.account-orders-panel .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.account-orders-table th:nth-child(1),
.account-orders-table td:nth-child(1) {
  width: 112px;
  white-space: nowrap;
}

.account-orders-table th:nth-child(2),
.account-orders-table td:nth-child(2) {
  width: 136px;
  white-space: nowrap;
}

.account-orders-table td:nth-child(2) {
  overflow-wrap: normal;
}

.account-orders-table th:nth-child(4),
.account-orders-table td:nth-child(4) {
  width: 100px;
}

.account-orders-table th:nth-child(5),
.account-orders-table td:nth-child(5) {
  width: 128px;
  min-width: 128px;
}

.account-orders-table td:nth-child(5) {
  white-space: normal;
}

.account-order-row {
  cursor: pointer;
}

.account-order-row:hover td,
.account-order-row:focus td {
  background: #fff8fb;
}

.account-order-row:focus {
  outline: 2px solid rgba(231, 80, 145, 0.34);
  outline-offset: -2px;
}

.account-order-total {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.45;
}

.account-order-total__pending {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid rgba(231, 80, 145, 0.34);
  background: #fff7fb;
  color: var(--pink);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.account-order-total small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.account-order-products {
  line-height: 1.55;
}

.account-order-products span {
  display: block;
  overflow-wrap: anywhere;
}

.account-order-products span + span {
  margin-top: 8px;
}

.account-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  border: 1px solid #f2bdd7;
  background: #fff4fa;
  color: var(--pink);
  font-weight: 800;
  white-space: nowrap;
}

.account-order-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.account-order-detail-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 26, 28, 0.56);
}

.account-order-detail-modal__dialog {
  position: relative;
  width: min(820px, calc(100vw - 32px));
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  padding: 28px 38px 32px;
}

.account-order-detail-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #9aa0a6;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.account-order-detail-modal h2 {
  margin: 0 40px 22px 0;
  color: #30343a;
  font-size: 26px;
  font-weight: 800;
}

.account-order-detail-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.account-order-detail-summary div,
.account-order-detail-fees div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}

.account-order-detail-summary div:nth-last-child(-n + 2),
.account-order-detail-fees div:last-child {
  border-bottom: 0;
}

.account-order-detail-summary dt,
.account-order-detail-fees dt {
  color: #30343a;
  font-weight: 800;
}

.account-order-detail-summary dd,
.account-order-detail-fees dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.account-order-detail-section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.account-order-detail-section + .account-order-detail-section {
  margin-top: 22px;
}

.account-order-detail-section h3 {
  margin: 0 0 14px;
  color: #30343a;
  font-size: 20px;
  font-weight: 800;
}

.account-order-detail-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.account-order-detail-table th,
.account-order-detail-table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.account-order-detail-table th {
  background: #f4f6f8;
  color: #30343a;
  white-space: nowrap;
}

.account-order-detail-fees {
  margin: 0;
}

.account-order-attachments {
  display: grid;
  gap: 12px;
}

.account-order-attachment {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fafbfc;
}

.account-order-attachment strong {
  display: block;
  color: #30343a;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.account-order-attachment p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.account-order-attachment a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--link);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}

.account-order-detail-empty,
.account-order-detail-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .account-order-detail-modal__dialog {
    padding: 24px 22px 28px;
  }

  .account-order-detail-summary {
    grid-template-columns: 1fr;
  }

  .account-order-detail-summary div:nth-last-child(-n + 2) {
    border-bottom: 1px dashed var(--line);
  }

  .account-order-detail-summary div:last-child {
    border-bottom: 0;
  }

  .account-order-detail-summary div,
  .account-order-detail-fees div {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

.account-privacy-note {
  padding-top: 8px;
}

.account-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: #3f4349;
  font-size: 24px;
  font-weight: 800;
}

.account-panel-title span {
  width: 4px;
  height: 18px;
  background: var(--pink);
}

.account-info-form {
  display: grid;
  gap: 22px;
  max-width: 560px;
}

.account-info-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.account-info-label {
  color: #555b62;
  font-weight: 800;
}

.account-info-row input {
  min-height: 34px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #20242a;
  font-size: 20px;
  font-weight: 500;
}

.account-info-row input:placeholder-shown {
  color: #a0a4aa;
}

.account-field-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #b7bbc0;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.account-form-actions {
  margin-top: 18px;
  padding-left: 206px;
}

.account-save-button {
  min-width: 92px;
}

.account-password-panel {
  max-width: 740px;
  padding-top: 8px;
}

.account-password-note {
  margin: -8px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.account-password-form {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.account-password-rule {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--pink);
  background: #fff7fb;
  color: #626a73;
  line-height: 1.7;
}

.account-password-actions {
  display: flex;
  justify-content: flex-start;
}

.tabs + .account-panel {
  margin-top: 28px;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 14px 0 22px;
}

.filter-grid,
.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.filter-grid.compact {
  grid-template-columns: repeat(2, minmax(180px, 260px));
}

.filter-grid label,
.calc-grid label,
.account-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.filter-grid select,
.filter-grid input,
.calc-grid select,
.account-panel input,
.calculator input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 10px;
  background: #fff;
}

.account-info-panel .account-info-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 18px;
  color: inherit;
}

.account-info-panel .account-info-row input {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: #20242a;
  font-size: 20px;
  font-weight: 500;
}

.catalog-filter-panel {
  padding: 20px;
}

.catalog-filter-panel h2 {
  margin: 0 0 12px;
}

.active-filter-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.active-filter-summary {
  display: flex;
  min-width: 0;
  gap: 12px;
  align-items: center;
}

.active-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink);
  font-weight: 500;
}

.active-filter-reset {
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid var(--line);
  background: #f4f5f7;
  color: var(--ink);
  padding: 9px 18px;
  font-weight: 700;
  box-shadow: none;
  cursor: pointer;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 9px;
  background: #f4f5f7;
  border: 1px solid var(--line);
  color: var(--ink);
}

.facet-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 0 18px;
  margin-bottom: 10px;
}

.facet-column {
  flex: 0 0 178px;
  min-width: 178px;
  margin: 0;
  padding: 0;
  border: 0;
}

.facet-column legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.facet-option-list {
  height: 148px;
  overflow-y: auto;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px;
}

.facet-option-list label {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  max-height: 3.2em;
  overflow: hidden;
  padding: 3px 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition:
    opacity 160ms ease,
    transform 180ms ease,
    max-height 200ms ease,
    padding 200ms ease,
    visibility 0s linear 0s;
}

.facet-option-list label.is-unavailable {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-4px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 140ms ease,
    transform 180ms ease,
    max-height 200ms ease,
    padding 200ms ease,
    visibility 0s linear 200ms;
}

.facet-option-list input {
  margin-top: 2px;
}

.facet-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-top: 0;
}

.facet-compare button {
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  padding: 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.facet-compare button:last-child {
  border-right: 0;
}

.facet-compare button.is-active {
  background: var(--pink);
  color: #fff;
}

.facet-actions {
  display: flex;
  gap: 12px;
  margin: 2px 0 16px;
}

.facet-actions button {
  border: 1px solid var(--pink);
  background: var(--pink);
  color: #fff;
  padding: 9px 16px;
  font-weight: 700;
}

.facet-actions .ghost {
  border-color: var(--line);
  background: #f4f5f7;
  color: var(--ink);
}

.table-actions {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.table-scroll {
  overflow-x: auto;
  max-width: 100%;
  position: relative;
}

.catalog-bulk-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #565c62;
  border: 1px solid #565c62;
  border-bottom: 0;
}

.catalog-bulk-actions button {
  min-height: 34px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.catalog-bulk-actions button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.catalog-table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  margin-top: 10px;
  background: #565c62;
  border: 1px solid #565c62;
  border-bottom: 0;
}

.catalog-table-toolbar__spacer {
  min-height: 1px;
}

.catalog-price-notice {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.3;
}

.catalog-price-notice span {
  white-space: nowrap;
}

.catalog-price-notice button {
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.catalog-price-notice button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.catalog-price-notice button:disabled {
  cursor: default;
  opacity: 1;
}

.catalog-price-notice.is-authenticated {
  gap: 0;
}

.catalog-price-notice.is-authenticated button {
  background: rgba(255, 255, 255, 0.08);
}

.catalog-table {
  width: auto;
  min-width: 100%;
  table-layout: fixed;
  font-size: 14px;
}

.catalog-table th,
.catalog-table td {
  overflow-wrap: break-word;
  padding: 10px 11px;
  line-height: 1.45;
}

.catalog-table td {
  vertical-align: middle;
}

.catalog-table tbody tr.is-page-last-row td {
  background-image: linear-gradient(to top, var(--line) 1px, transparent 1px);
  background-repeat: no-repeat;
  background-position: bottom left;
}

.catalog-table th {
  white-space: normal;
}

.catalog-table th:nth-child(-n + 4),
.catalog-table td:nth-child(-n + 4) {
  position: sticky;
  z-index: 2;
  background: #fff;
  border-right-color: #d9dee6;
  box-shadow: inset -1px 0 0 var(--line);
}

.catalog-table th:nth-child(-n + 4) {
  z-index: 3;
  background: #f0f2f5;
}

.catalog-table th:nth-child(1),
.catalog-table td:nth-child(1) {
  left: 0;
}

.catalog-table th:nth-child(2),
.catalog-table td:nth-child(2) {
  left: 76px;
}

.catalog-table th:nth-child(3),
.catalog-table td:nth-child(3) {
  left: 186px;
}

.catalog-table th:nth-child(4),
.catalog-table td:nth-child(4) {
  left: 351px;
  border-right-width: 0;
}

.catalog-table:not(.catalog-table--series) th:nth-child(5),
.catalog-table:not(.catalog-table--series) td:nth-child(5) {
  padding-left: 24px;
  white-space: nowrap;
  font-size: 13px;
}

.catalog-price-cell {
  color: #4b5563;
  font-weight: 600;
}

.catalog-table--series th:nth-child(-n + 4),
.catalog-table--series td:nth-child(-n + 4) {
  position: sticky;
}

.catalog-table--series th:nth-child(1),
.catalog-table--series td:nth-child(1) {
  left: 0;
}

.catalog-table--series th:nth-child(2),
.catalog-table--series td:nth-child(2) {
  left: 92px;
}

.catalog-table--series th:nth-child(3),
.catalog-table--series td:nth-child(3) {
  left: 248px;
}

.catalog-table--series th:nth-child(3) {
  white-space: nowrap;
}

.catalog-table--series th:nth-child(4),
.catalog-table--series td:nth-child(4) {
  left: 336px;
  border-right-width: 0;
}

.catalog-table--series th:nth-child(5),
.catalog-table--series td:nth-child(5) {
  position: static;
  z-index: auto;
  background: #fff;
  box-shadow: none;
  border-right-width: 1px;
}

.catalog-table--series th:nth-child(5) {
  background: #f0f2f5;
}

.catalog-table--series th:nth-child(6),
.catalog-table--series td:nth-child(6) {
  padding-left: 8px;
}

.catalog-table--series {
  font-size: 14px;
}

.catalog-table--series th,
.catalog-table--series td {
  padding: 9px 9px;
}

.catalog-table--series th:nth-child(3),
.catalog-table--series td:nth-child(3),
.catalog-table--series th:nth-child(4),
.catalog-table--series td:nth-child(4) {
  font-size: 13px;
  line-height: 1.4;
}

.catalog-table--series td:nth-child(3) .inline-link,
.catalog-table--series td:nth-child(3) a {
  white-space: nowrap;
}

.catalog-table--series th:nth-child(4),
.catalog-table--series td:nth-child(4) {
  white-space: nowrap;
}

.catalog-select-cell {
  text-align: center;
  vertical-align: middle;
}

.catalog-select-cell input {
  width: 16px;
  height: 16px;
  accent-color: var(--pink);
}

.table-scroll.is-scrolled-x::after {
  content: "";
  position: sticky;
  left: var(--catalog-frozen-width, 533px);
  bottom: 0;
  z-index: 4;
  display: block;
  width: 36px;
  height: var(--catalog-shadow-height, 0);
  margin-top: calc(var(--catalog-shadow-height, 0) * -1);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(32, 39, 48, 0.24), rgba(32, 39, 48, 0));
}

.floating-catalog-head {
  position: fixed;
  top: var(--site-header-height, 0px);
  z-index: 45;
  display: none;
  overflow: hidden;
  pointer-events: none;
}

.floating-catalog-fixed {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--catalog-frozen-width, 533px);
  overflow: hidden;
  background: #f0f2f5;
}

.floating-catalog-head.is-visible {
  display: block;
}

.floating-catalog-head table {
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
  background: #fff;
}

.floating-catalog-head th {
  border: 1px solid var(--line);
  padding: 10px 11px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
  white-space: normal;
  overflow-wrap: break-word;
  background: #f0f2f5;
}

.floating-catalog-fixed th:nth-child(-n + 5) {
  box-shadow: inset -1px 0 0 var(--line);
}

.floating-catalog-fixed th:nth-child(n + 6) {
  visibility: hidden;
}

.floating-catalog-fixed.is-series th:nth-child(-n + 4) {
  box-shadow: inset -1px 0 0 var(--line);
}

.floating-catalog-fixed.is-series th:nth-child(n + 5) {
  visibility: hidden;
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  margin: 18px 0 0;
  color: var(--ink);
}

.catalog-page-size label,
.pagination {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.catalog-page-size select {
  border: 1px solid var(--line);
  background: #fff;
  padding: 5px 24px 5px 8px;
  color: var(--ink);
  font: inherit;
}

.pagination button {
  border: 1px solid transparent;
  background: #fff;
  color: var(--ink);
  padding: 4px 8px;
  font: inherit;
  cursor: pointer;
}

.pagination button:hover,
.pagination button.is-active {
  border-color: var(--pink);
  color: var(--pink);
}

.pagination button:disabled {
  color: var(--muted);
  cursor: default;
}

.pagination button:disabled:hover {
  border-color: transparent;
}

.pagination-ellipsis {
  color: var(--muted);
}

.page-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 28px 0 0;
  color: var(--ink);
}

.page-pagination a,
.page-pagination span {
  display: inline-flex;
  min-width: 30px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.page-pagination a:hover,
.page-pagination a.is-active {
  border-color: var(--pink);
  color: var(--pink);
}

.page-pagination .pagination-status {
  min-width: auto;
  padding-right: 12px;
  border-color: transparent;
  background: transparent;
}

.page-pagination .is-disabled {
  color: var(--muted);
}

.thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.qty {
  width: 64px;
  border: 1px solid var(--line);
  padding: 6px;
}

.resource-list,
.news-list {
  display: grid;
  gap: 22px;
}

.resource-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  align-items: center;
  background: #f3f4f6;
  padding: 24px;
}

.resource-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
}

.certificate-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
}

.news-row {
  display: grid;
  grid-template-columns: 190px 100px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px dashed #d7dce3;
}

.home-news h2 {
  margin-bottom: 18px;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--pink);
}

.news-filters span {
  color: var(--ink);
}

.home-news-list {
  display: grid;
}

.home-news-row {
  display: grid;
  gap: 8px;
  padding: 18px 0 20px;
  border-bottom: 1px dashed #d7dce3;
}

.news-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 15px;
}

.news-meta strong {
  font-weight: 700;
}

.news-title {
  color: var(--ink);
  font-size: 17px;
}

.home-news-row:hover .news-title {
  color: var(--pink);
}

.article-detail {
  max-width: 900px;
}

.article-detail img {
  width: 100%;
  margin-top: 20px;
}

.assumption,
.calc-result {
  display: block;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 18px;
  margin: 18px 0;
}

.life-calculator {
  margin-top: 38px;
  color: var(--ink);
}

.life-calculator__intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 0 0 30px;
}

.life-calculator__intro h2,
.life-section-heading h3 {
  margin: 0;
}

.life-calculator__intro h2 {
  font-size: 32px;
}

.life-calculator__intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.life-source-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.life-conditions,
.life-results {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.life-input-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.life-setup {
  min-width: 0;
}

.life-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  margin-bottom: 24px;
}

.life-section-heading > span {
  display: none;
}

.life-section-heading h3 {
  font-size: 24px;
}

.life-section-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.life-setup-grid label {
  display: grid;
  gap: 8px;
  color: #4c525a;
  font-size: 14px;
  font-weight: 700;
}

.life-setup-grid select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

.life-setup-grid select:disabled {
  background: var(--soft);
  color: #949aa2;
}

.life-model-summary {
  margin: 22px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--pink);
  background: #f5f6f8;
}

.life-model-summary__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.life-model-summary__head strong {
  font-size: 22px;
}

.life-model-summary__head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.life-model-summary dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
  margin: 0;
}

.life-model-summary dl div {
  min-width: 0;
}

.life-model-summary dt {
  color: var(--muted);
  font-size: 12px;
}

.life-model-summary dd {
  margin: 4px 0 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.life-assumptions {
  align-self: start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f7f8f9;
}

.life-assumptions h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.life-assumptions ol {
  display: grid;
  gap: 8px;
  margin: 18px 0 2px 20px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.life-section-heading--actions .life-add-condition {
  align-self: center;
  min-height: 42px;
}

.life-add-condition:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.life-condition-table {
  border: 1px solid var(--line);
  background: #fff;
}

.life-condition-head,
.life-condition-row {
  display: grid;
  grid-template-columns: 58px repeat(4, minmax(120px, 1fr)) 44px;
  align-items: center;
}

.life-condition-head {
  min-height: 54px;
  background: #555b62;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.life-condition-head span,
.life-condition-row > strong,
.life-condition-row label {
  padding: 12px;
}

.life-condition-row {
  min-height: 72px;
  border-top: 1px solid var(--line);
}

.life-condition-row:first-child {
  border-top: 0;
}

.life-condition-row.has-error {
  box-shadow: inset 3px 0 0 #d83b4b;
  background: #fff7f8;
}

.life-condition-row > strong {
  color: var(--muted);
  text-align: center;
}

.life-condition-row label {
  display: block;
  min-width: 0;
  border-left: 1px solid var(--line);
}

.life-condition-row label span {
  display: none;
}

.life-condition-row input {
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 1px solid #d5d9df;
  padding: 8px 10px;
  background: #fff;
  color: var(--ink);
}

.life-condition-row input:focus,
.life-setup-grid select:focus {
  border-color: var(--pink);
  outline: 2px solid rgb(231 72 141 / 16%);
  outline-offset: 1px;
}

.life-remove-condition {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  justify-self: center;
  border: 0;
  background: transparent;
  color: #767d85;
  font-size: 24px;
  line-height: 1;
}

.life-remove-condition:hover {
  color: #c92f42;
}

.life-condition-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.life-condition-foot > span {
  color: var(--muted);
  font-weight: 700;
}

.life-condition-foot > span.is-valid {
  color: #23734d;
}

.life-condition-foot > span.is-invalid {
  color: #b03342;
}

.life-calculate {
  min-width: 190px;
}

.life-validation {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 3px solid #d83b4b;
  background: #fff3f5;
  color: #982c39;
  font-weight: 700;
  line-height: 1.6;
}

.life-result-status {
  align-self: center;
  padding: 8px 11px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.life-result-status.is-good,
.life-factor.is-good {
  color: #23734d;
}

.life-result-status.is-review,
.life-factor.is-review {
  color: #9b6a00;
}

.life-result-status.is-danger,
.life-factor.is-danger {
  color: #b03342;
}

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

.life-metrics article {
  display: grid;
  min-height: 142px;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.life-metrics article span,
.life-metrics article small {
  color: var(--muted);
}

.life-metrics article strong {
  font-size: 25px;
  overflow-wrap: anywhere;
}

.life-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.life-result-header h3 {
  margin: 0;
  font-size: 26px;
}

.life-result-header p {
  margin: 6px 0 0;
  color: var(--muted);
}

.life-result-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.life-primary-result,
.life-safety-panel,
.life-chart-panel {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.life-primary-result {
  display: grid;
  align-content: center;
  min-height: 220px;
  padding: 26px;
  border-left: 4px solid var(--pink);
}

.life-primary-result > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.life-primary-result > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
}

.life-primary-result > div strong {
  font-size: 40px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.life-primary-result > div small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.life-primary-result dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.life-primary-result dt {
  color: var(--muted);
  font-size: 12px;
}

.life-primary-result dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.life-safety-panel {
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: 220px;
  padding: 24px 26px;
}

.life-safety-panel h4,
.life-chart-panel h4 {
  margin: 0;
  font-size: 18px;
}

.life-gauge__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 9px;
}

.life-gauge__label span {
  color: #555b62;
  font-size: 13px;
  font-weight: 700;
}

.life-gauge__label strong {
  font-size: 18px;
}

.life-gauge.is-good .life-gauge__label strong {
  color: #23734d;
}

.life-gauge.is-review .life-gauge__label strong {
  color: #8a6108;
}

.life-gauge.is-danger .life-gauge__label strong {
  color: #b03342;
}

.life-gauge__track {
  position: relative;
  height: 12px;
  border-radius: 2px;
}

.life-gauge__track.is-fatigue {
  background: linear-gradient(to right, #e8bdc4 0 50%, #ecd793 50% 83.33%, #9dccb3 83.33% 100%);
}

.life-gauge__track.is-static {
  background: linear-gradient(to right, #e8bdc4 0 60%, #ecd793 60% 80%, #9dccb3 80% 100%);
}

.life-gauge__track i {
  position: absolute;
  top: -5px;
  left: var(--marker);
  width: 3px;
  height: 22px;
  background: #343a40;
  box-shadow: 0 0 0 2px #fff;
  animation: life-marker-in 520ms ease-out both;
}

.life-gauge__scale {
  position: relative;
  height: 16px;
  margin-top: 4px;
  color: #858b92;
  font-size: 10px;
}

.life-gauge__scale span {
  position: absolute;
  transform: translateX(-50%);
}

.life-gauge__scale span:first-child {
  left: 0;
  transform: none;
}

.life-gauge__track.is-fatigue + .life-gauge__scale span:nth-child(2) {
  left: 50%;
}

.life-gauge__track.is-fatigue + .life-gauge__scale span:last-child {
  left: 83.33%;
}

.life-gauge__track.is-static + .life-gauge__scale span:nth-child(2) {
  left: 60%;
}

.life-gauge__track.is-static + .life-gauge__scale span:last-child {
  left: 80%;
}

.life-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.life-chart-panel {
  min-width: 0;
  padding: 22px 24px;
  background: #f7f8f9;
}

.life-chart-panel > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.life-chart-panel > header span {
  color: var(--muted);
  font-size: 12px;
}

.life-life-bars,
.life-utilization-list {
  display: grid;
  gap: 14px;
}

.life-life-row {
  display: grid;
  grid-template-columns: 28px minmax(80px, 1fr) minmax(96px, auto);
  align-items: center;
  gap: 12px;
}

.life-life-row > span,
.life-util-condition > b {
  color: #6c737b;
  font-size: 12px;
}

.life-life-row > strong,
.life-util-line > strong {
  font-size: 12px;
  text-align: right;
}

.life-bar-track,
.life-util-track {
  height: 10px;
  overflow: hidden;
  border-radius: 2px;
  background: #e3e6e9;
}

.life-bar-track i,
.life-util-track i {
  display: block;
  width: var(--bar-size);
  height: 100%;
  transform-origin: left center;
  animation: life-bar-in 560ms ease-out both;
}

.life-bar-track i {
  background: #4f5962;
  box-shadow: inset -3px 0 0 var(--pink);
}

.life-util-condition {
  display: grid;
  gap: 8px;
  padding-bottom: 13px;
  border-bottom: 1px solid #dfe2e5;
}

.life-util-condition:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.life-util-line {
  display: grid;
  grid-template-columns: 70px minmax(70px, 1fr) 52px;
  align-items: center;
  gap: 10px;
}

.life-util-line > span {
  color: #626970;
  font-size: 12px;
}

.life-util-track i {
  background: #4b9a70;
}

.life-util-line.is-over .life-util-track i {
  background: #c83e50;
}

.life-util-line.is-over > strong {
  color: #a82e3d;
}

@keyframes life-bar-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes life-marker-in {
  from { left: 0; opacity: 0; }
  to { left: var(--marker); opacity: 1; }
}

.life-checks,
.life-detail {
  margin-top: 28px;
}

.life-checks h4,
.life-detail h4 {
  margin: 0 0 14px;
  font-size: 18px;
}

.life-checks ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.life-checks li,
.life-checks__clear {
  margin: 0;
  padding: 11px 14px;
  border-left: 3px solid #d6a12c;
  background: #fff9ea;
  color: #6d5722;
  line-height: 1.6;
}

.life-checks li.is-danger {
  border-left-color: #d83b4b;
  background: #fff3f5;
  color: #8e2d39;
}

.life-checks__clear {
  border-left-color: #3b9669;
  background: #f0faf5;
  color: #276547;
}

.life-detail-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.life-detail table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.life-detail th,
.life-detail td {
  padding: 13px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.life-detail th:last-child,
.life-detail td:last-child {
  border-right: 0;
}

.life-detail th {
  background: #eef0f3;
  font-size: 13px;
}

.life-factor {
  font-weight: 800;
}

.life-disclaimer {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .life-setup-grid,
  .life-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .life-model-summary dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .life-result-overview,
  .life-visual-grid {
    grid-template-columns: 1fr;
  }

  .life-condition-head {
    display: none;
  }

  .life-condition-table {
    border: 0;
    background: transparent;
  }

  .life-condition-row {
    grid-template-columns: 44px repeat(2, minmax(0, 1fr)) 40px;
    gap: 12px;
    margin-bottom: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .life-condition-row:first-child {
    border-top: 1px solid var(--line);
  }

  .life-condition-row > strong {
    grid-row: 1 / 3;
    align-self: center;
    padding: 0;
  }

  .life-condition-row label {
    padding: 0;
    border-left: 0;
  }

  .life-condition-row label span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  }

  .life-remove-condition {
    grid-column: 4;
    grid-row: 1 / 3;
  }
}

@media (max-width: 1100px) {
  .life-input-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .life-calculator {
    margin-top: 28px;
  }

  .life-calculator__intro {
    display: grid;
    gap: 18px;
  }

  .life-calculator__intro h2 {
    font-size: 28px;
  }

  .life-source-badge {
    justify-self: start;
  }

  .life-section-heading,
  .life-section-heading--actions {
    grid-template-columns: 1fr;
  }

  .life-section-heading--actions .life-add-condition {
    grid-column: 1;
    justify-self: start;
  }

  .life-result-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .life-primary-result,
  .life-safety-panel,
  .life-chart-panel {
    padding: 20px;
  }

  .life-primary-result > div strong {
    font-size: 32px;
  }

  .life-primary-result dl {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .life-chart-panel > header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .life-life-row {
    grid-template-columns: 24px minmax(70px, 1fr) minmax(82px, auto);
    gap: 8px;
  }

  .life-util-line {
    grid-template-columns: 62px minmax(60px, 1fr) 48px;
    gap: 7px;
  }

  .life-setup-grid,
  .life-metrics,
  .life-model-summary dl {
    grid-template-columns: 1fr;
  }

  .life-setup-grid {
    padding-left: 0;
  }

  .life-model-summary {
    margin-left: 0;
  }

  .life-condition-row {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .life-condition-row > strong {
    grid-row: 1 / 5;
  }

  .life-condition-row label {
    grid-column: 2;
  }

  .life-remove-condition {
    grid-column: 3;
    grid-row: 1 / 5;
  }

  .life-condition-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .life-calculate {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .life-bar-track i,
  .life-util-track i,
  .life-gauge__track i {
    animation: none;
  }
}

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

.footer-summary {
  background: #e5e5e5;
  padding: 62px 0;
}

.footer-brand {
  margin-bottom: 26px;
  font-size: 38px;
}

.footer-about p,
.footer-links p,
.manual-list a {
  color: #5b6067;
  font-size: 16px;
  font-weight: 700;
}

.footer-about p {
  max-width: 520px;
  line-height: 1.65;
}

.footer-links h2 {
  margin: 0 0 14px;
  font-size: 23px;
}

.footer-links p {
  margin: 0 0 18px;
}

.manual-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  column-gap: 58px;
  row-gap: 10px;
}

.manual-list a {
  display: block;
}

.manual-list .quick-link-primary {
  grid-column: 1 / -1;
}

.contact-footer {
  display: block;
  padding: 62px 0 72px;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1.46fr) minmax(396px, 0.54fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid #d9dce0;
}

.contact-copy {
  min-width: 0;
}

.contact-company-name {
  max-width: 520px;
  line-height: 1.35;
}

.contact-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.contact-footer h2 {
  margin: 0 0 24px;
  font-size: 24px;
}

.contact-footer h3 {
  margin: 0 0 16px;
  font-size: 17px;
}

.contact-footer p {
  margin: 0 0 14px;
  color: #33383f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-domestic > p:first-of-type,
.contact-international > p:first-of-type {
  color: #59616d;
  font-weight: 600;
  line-height: 1.5;
}

.contact-line span {
  color: #8a8d92;
}

.contact-line a,
.contact-line {
  color: #ff565a;
  font-weight: 800;
}

.qr-group {
  display: grid;
  grid-template-columns: repeat(3, 132px);
  gap: 4px;
  justify-content: center;
  justify-items: center;
  justify-self: end;
  margin-left: auto;
  margin-top: 54px;
}

.qr {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  object-fit: cover;
  background: #fff;
  border: 8px solid #fff;
  box-shadow: inset 0 0 0 3px #111;
  image-rendering: pixelated;
}

.qr-wechat,
.qr-tech,
.qr-whatsapp {
  background-image:
    linear-gradient(90deg, #111 10px, transparent 10px),
    linear-gradient(#111 10px, transparent 10px),
    radial-gradient(circle at 22px 22px, #111 0 10px, transparent 11px),
    radial-gradient(circle at 62px 22px, #111 0 10px, transparent 11px),
    radial-gradient(circle at 22px 62px, #111 0 10px, transparent 11px),
    repeating-linear-gradient(45deg, #111 0 5px, transparent 5px 10px);
  background-size: 14px 14px, 14px 14px, 104px 104px, 104px 104px, 104px 104px, 18px 18px;
  background-position: 4px 4px, 10px 10px, 0 0, 0 0, 0 0, 0 0;
}

.qr-card {
  display: grid;
  grid-template-rows: 106px auto;
  justify-items: center;
  align-items: start;
  width: 132px;
  text-align: center;
}

.qr-card strong {
  display: block;
  margin-top: 4px;
  color: #5b6067;
  font-size: 12px;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
  width: 100%;
  min-height: 34px;
}

.social {
  display: flex;
  gap: 26px;
  align-items: center;
  padding-top: 34px;
}

.social h3 {
  margin: 0;
  font-size: 22px;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.social-link span {
  padding: 4px;
  color: var(--ink);
  font-size: 12px;
  text-align: center;
}

.social-link:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e2e4e8;
  color: #858b94;
  font-size: 13px;
}

.footer-legal a {
  color: #555c66;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--pink);
  text-decoration: underline;
}

.legal-document {
  width: min(900px, 100%);
  margin: 0 auto 64px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid #e5e8ed;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgb(21 27 38 / 6%);
}

.legal-document__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8eaee;
  color: #6f7580;
  font-size: 14px;
}

.legal-document__meta strong {
  color: #343941;
}

.legal-document__content {
  color: #404650;
  font-size: 16px;
  line-height: 1.85;
}

.legal-document__content h2 {
  margin: 34px 0 12px;
  color: #2c3139;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.4;
}

.legal-document__content h2:first-child {
  margin-top: 0;
}

.legal-document__content p {
  margin: 0 0 16px;
}

.legal-document__content a,
.account-legal-links a {
  color: #c72d73;
  text-underline-offset: 3px;
}

.account-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 14px;
}

.more {
  float: right;
  font-size: 15px;
  color: var(--pink);
}

.muted {
  color: var(--muted);
}

.not-found {
  display: grid;
  gap: 18px;
  max-width: 760px;
  padding: 86px 0 110px;
}

.not-found__code {
  margin: 0;
  color: var(--pink);
  font-size: 18px;
  font-weight: 800;
}

.not-found h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.1;
}

.not-found p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.lead-form,
.order-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.lead-form label,
.order-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.lead-form input,
.lead-form textarea,
.order-form input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 10px;
  background: #fff;
}

.lead-form textarea,
.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form button {
  justify-self: start;
}

.site-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  max-width: min(340px, calc(100vw - 44px));
  padding: 13px 16px;
  color: #fff;
  background: var(--dark);
  box-shadow: 0 14px 38px rgb(0 0 0 / 24%);
}

.site-toast[hidden] {
  display: none;
}

.inline-link,
.catalog-table .inline-link {
  display: inline;
  width: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--pink);
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.inline-link:hover,
.catalog-table .inline-link:hover {
  color: var(--pink-dark);
  text-decoration: underline;
}

.model-preview-open {
  overflow: hidden;
}

.model-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgb(20 24 29 / 62%);
}

.model-preview-modal.is-open {
  display: flex;
}

.model-preview-panel {
  width: min(1180px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: auto minmax(360px, 1fr) auto;
  background: #fff;
  box-shadow: 0 24px 80px rgb(0 0 0 / 26%);
}

.model-preview-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.model-preview-selects {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 12px;
}

.model-preview-selects label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.model-preview-selects select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
}

.model-preview-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.model-preview-download {
  white-space: nowrap;
}

.model-preview-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.model-preview-stage {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(135deg, #f5f7f9 0%, #ffffff 44%, #eef2f5 100%);
}

.model-preview-stage canvas {
  display: block;
  width: 100%;
  height: min(62vh, 620px);
  min-height: 360px;
  touch-action: none;
  cursor: grab;
}

.model-preview-stage canvas:active {
  cursor: grabbing;
}

.model-preview-status {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  color: var(--muted);
  background: rgb(255 255 255 / 82%);
  pointer-events: none;
}

.model-preview-status:empty {
  display: none;
}

.model-preview-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.model-preview-title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.model-preview-render-controls {
  display: flex;
  align-items: end;
  gap: 20px;
}

.model-preview-material-control,
.model-preview-brightness-control {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.model-preview-segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(62px, 1fr));
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.model-preview-segmented button {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  color: var(--muted);
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.model-preview-segmented button + button {
  border-left: 1px solid var(--line);
}

.model-preview-segmented button.is-active {
  color: #fff;
  background: var(--ink);
}

.model-preview-brightness-control {
  width: 180px;
}

.model-preview-brightness-control > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.model-preview-brightness-control output {
  color: var(--ink);
}

.model-preview-brightness-control input {
  width: 100%;
  accent-color: var(--pink);
  cursor: pointer;
}

@media (max-width: 900px) {
  .masthead,
  .intro-split,
  .media-copy,
  .footer-grid,
  .contact-main,
  .two-column,
  .account-layout,
  .resource-card,
  .catalog-search-card {
    grid-template-columns: 1fr;
  }

  .rich-content > .media-copy {
    grid-template-columns: minmax(0, 1fr);
  }

  .account-links,
  .utility-inner {
    flex-wrap: wrap;
  }

  .contact-address-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .account-sidebar,
  .account-dashboard .account-panel {
    position: static;
    max-height: none;
    overflow: visible;
    min-height: 0;
  }

  .account-info-panel .account-info-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .account-summary-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .account-contact-block {
    max-width: none;
  }

  .account-address-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .account-orders-head {
    display: grid;
  }

  .search-results-form {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 10px;
  }

  .search-results-form select,
  .search-results-form input {
    border-right: 1px solid var(--line);
  }

  .search-results-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-order-filters {
    grid-template-columns: 1fr;
  }

  .account-order-count {
    text-align: left;
  }

  .about-company-hero,
  .about-company-grid,
  .about-company-gallery {
    grid-template-columns: 1fr;
  }

  .about-company-lead {
    padding: 24px 0;
  }

  .account-summary-block dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .account-form-actions {
    padding-left: 0;
  }

  .category-grid,
  .product-card-grid,
  .application-grid,
  .filter-grid,
  .calc-grid,
  .lead-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .linear-actuator-render-gallery {
    grid-template-columns: 1fr;
  }

  .page-banner p {
    font-size: 32px;
  }

  .hero-copy {
    width: min(520px, 78vw);
    padding: 28px 30px;
  }

  .product-tree {
    position: static;
    max-height: none;
    overflow: visible;
    scrollbar-gutter: auto;
  }

  .model-preview-bar,
  .model-preview-selects {
    grid-template-columns: 1fr;
  }

  .model-preview-actions {
    justify-content: space-between;
  }

  .model-preview-footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .model-preview-render-controls {
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  :root {
    --content: min(100vw - 24px, 1120px);
  }

  .masthead,
  .nav-inner,
  .category-grid,
  .product-card-grid,
  .application-grid,
  .filter-grid,
  .calc-grid,
  .news-row,
  .product-line,
  .lead-form,
  .site-search {
    grid-template-columns: 1fr;
  }

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

  .model-preview-modal {
    padding: 12px;
  }

  .model-preview-panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    grid-template-rows: auto minmax(220px, 1fr) auto;
    overflow: hidden;
  }

  .model-preview-bar {
    gap: 10px;
    padding: 12px;
  }

  .model-preview-selects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .model-preview-stage {
    min-height: 220px;
  }

  .model-preview-stage canvas {
    height: min(42vh, 340px);
    min-height: 220px;
  }

  .model-preview-footer {
    padding: 10px 12px;
  }

  .model-preview-title {
    font-size: 15px;
  }

  .model-preview-render-controls {
    align-items: stretch;
    gap: 10px;
  }

  .model-preview-material-control,
  .model-preview-brightness-control {
    min-width: 0;
    width: 50%;
  }

  .linear-actuator-render-series {
    padding: 12px;
  }

  .linear-actuator-render-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-company {
    gap: 24px;
  }

  .about-company-facts {
    grid-template-columns: 1fr;
  }

  .about-company-facts div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-company-section,
  .about-company-grid section {
    padding: 22px 18px;
  }

  .about-company-facts div {
    padding: 18px;
  }

  .site-search select,
  .site-search input {
    width: 100%;
    border-right: 1px solid var(--line);
  }

  .brand {
    font-size: 30px;
  }

  .page-title h1,
  .home-hero h1,
  .home-hero-slide h1,
  .hero-title {
    font-size: 34px;
  }

  .home-hero p,
  .home-hero-slide p {
    font-size: 18px;
  }

  .hero-copy {
    width: calc(100vw - 54px);
    padding: 24px 22px;
  }

  .home-hero,
  .home-hero-carousel {
    min-height: 540px;
  }

  .home-hero h1,
  .home-hero-slide h1,
  .hero-title {
    margin-bottom: 9px;
    font-size: 28px;
  }

  .home-hero p,
  .home-hero-slide p {
    font-size: 15px;
  }

  .hero-copy {
    width: calc(100vw - 24px);
    padding: 20px;
  }

  .hero-copy .hero-lead {
    margin: 4px 0 10px;
    line-height: 1.45;
  }

  .hero-points {
    gap: 4px;
    font-size: 13.5px;
    line-height: 1.38;
  }

  .hero-actions {
    gap: 6px;
    margin-top: 12px;
  }

  .hero-link {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12.5px;
  }

  .hero-pager {
    bottom: 12px;
  }

  .page-banner {
    min-height: 170px;
  }

  .page-banner p {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .manual-list {
    grid-template-columns: 1fr;
  }

  .manual-card-list {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 18px;
  }

  .contact-international {
    padding-top: 0;
  }

  .qr-group {
    grid-template-columns: repeat(3, 96px);
    gap: 10px;
  }

  .qr {
    width: 84px;
    height: 84px;
  }

  .qr-card {
    grid-template-rows: 88px auto;
    width: 96px;
  }

  .qr-card strong {
    font-size: 12px;
    min-height: 34px;
  }
}
