:root {
  --purple: #8e30a8;
  --purple-dark: #65006c;
  --purple-soft: #f6edff;
  --nav-text: #f7eafb;
  --nav-surface-hover: rgb(255 255 255 / 8%);
  --nav-surface-pressed: rgb(101 0 108 / 16%);
  --nav-indicator: #fff;
  --ink: #121212;
  --muted: #5f5f67;
  --line: #ece9ef;
  --blue: #4387f6;
  --shell: 1100px;
  --desktop-header-height: 121px;
  --site-header-height: var(--desktop-header-height);
  --font-sans: Arial, "Microsoft YaHei", "Microsoft YaHei UI", sans-serif;
  --motion-fast: 180ms;
  --motion-base: 320ms;
  --motion-slow: 680ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-distance: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: #fff;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  margin: 0;
  background: #fff;
  color: var(--ink);
}

main {
  min-width: 0;
  flex: 1 0 auto;
}

body,
button {
  font-family: var(--font-sans);
}

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

figure {
  margin: 0;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link:focus {
  z-index: 1000;
  top: 8px;
  left: 8px;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  clip-path: none !important;
  padding: 10px 16px;
  background: #fff;
  color: var(--purple-dark);
}

:focus-visible {
  outline: 3px solid var(--purple-dark);
  outline-offset: 3px;
}

.site-header :focus-visible,
.product-mega a:focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 3px var(--purple-dark);
}

#main-content:focus {
  outline: 0;
}

/* Shared header: reproduced from the live purple WordPress header. */
.site-header {
  position: relative;
  z-index: 80;
  height: var(--desktop-header-height);
  background: var(--purple);
  box-shadow: 0 0 0 rgb(43 0 56 / 0%);
  transition: box-shadow var(--motion-base) var(--motion-ease-standard);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgb(43 0 56 / 18%);
}

.site-header__inner {
  display: flex;
  height: var(--desktop-header-height);
  align-items: center;
}

.site-brand {
  display: block;
  width: 150px;
  flex: 0 0 150px;
}

.site-brand img {
  width: 150px;
  height: auto;
}

.site-brand > span {
  color: #fff;
  font-weight: 700;
}

.site-nav {
  height: 100%;
  margin-left: auto;
}

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

.site-nav__list {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 24px;
}

.site-nav__item {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

.site-nav__link {
  position: relative;
  display: flex;
  min-width: 96px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 4px;
  background: transparent;
  color: var(--nav-text);
  font-size: 16px;
  white-space: nowrap;
  transition:
    background-color var(--motion-fast) var(--motion-ease-standard),
    transform var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease-standard);
}

.site-nav__link::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 3px;
  background: var(--nav-indicator);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0.42);
  transform-origin: center;
  transition:
    opacity var(--motion-fast) var(--motion-ease-standard),
    transform var(--motion-base) var(--motion-ease);
}

.site-nav__link[aria-current="page"],
.site-nav__link[data-section-current="true"] {
  background: transparent;
  color: #fff;
  font-weight: 600;
}

.site-nav__link[aria-current="page"]::after,
.site-nav__link[data-section-current="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__item--has-children[data-open="true"] > .site-nav__link {
  background: var(--nav-surface-hover);
  color: #fff;
}

.site-nav__link:active {
  background: var(--nav-surface-pressed);
}

.nav-chevron {
  display: inline-flex;
  width: 10px;
  height: 14px;
  align-items: center;
  margin-left: 8px;
}

.nav-chevron img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.submenu-toggle {
  display: none;
}

.product-mega {
  position: absolute;
  z-index: 90;
  top: 100%;
  right: auto;
  left: calc(50% - 98px);
  display: block;
  width: 196px;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  border-top: 3px solid var(--purple);
  background: #fff;
  box-shadow: 0 18px 32px rgb(5 12 24 / 24%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -8px, 0);
  visibility: hidden;
  transition:
    max-height 280ms var(--motion-ease),
    opacity var(--motion-fast) var(--motion-ease-standard),
    transform 280ms var(--motion-ease),
    visibility 0s linear 280ms;
}

.site-nav__item--has-children[data-open="true"] > .product-mega,
html:not(.js) .site-nav__item--has-children:hover > .product-mega,
html:not(.js) .site-nav__item--has-children:focus-within > .product-mega {
  max-height: var(--submenu-open-height, 240px);
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition-delay: 0s;
}

.product-mega li + li {
  border-top: 1px solid rgb(101 0 108 / 12%);
}

.product-mega a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--ink);
  font-size: 14px;
  text-align: center;
  transition:
    background-color var(--motion-fast) var(--motion-ease-standard),
    color var(--motion-fast) var(--motion-ease-standard),
    box-shadow var(--motion-fast) var(--motion-ease-standard),
    padding-left var(--motion-fast) var(--motion-ease);
}

.product-mega a:hover,
.product-mega a:focus-visible,
.product-mega a[aria-current="page"] {
  padding-left: 24px;
  background: var(--purple);
  box-shadow: none;
  color: #fff;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__icon {
  position: absolute;
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition:
    opacity var(--motion-fast) var(--motion-ease-standard),
    transform var(--motion-base) var(--motion-ease);
}

.menu-toggle__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.72);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--bars {
  opacity: 0;
  transform: rotate(90deg) scale(0.72);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Home */
.home-carousel {
  position: relative;
  padding-bottom: 0;
  background: #fff;
}

.carousel-viewport {
  position: relative;
  height: calc(100vh - var(--site-header-height));
  height: calc(100svh - var(--site-header-height));
  height: calc(100dvh - var(--site-header-height));
  min-height: 0;
  overflow: hidden;
  background: #e9e9e9;
  touch-action: pan-y;
}

@media (min-aspect-ratio: 3 / 2) {
  .carousel-slide:nth-child(3) .carousel-slide__image {
    object-position: 20% center;
  }
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform var(--motion-slow) var(--motion-ease);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
}

.carousel-slide__backdrop,
.carousel-slide__image {
  width: 100%;
  height: 100%;
  object-position: center;
}

.carousel-slide__backdrop {
  display: none;
}

.carousel-slide__image {
  position: relative;
  z-index: 1;
  object-fit: cover;
}

@media (max-aspect-ratio: 3 / 2) {
  .carousel-slide__backdrop {
    position: absolute;
    inset: -32px;
    display: block;
    width: calc(100% + 64px);
    max-width: none;
    height: calc(100% + 64px);
    object-fit: cover;
    filter: blur(24px) brightness(0.58) saturate(0.78);
    transform: scale(1.04);
  }

  .carousel-slide__image {
    object-fit: contain;
  }
}

.js .carousel-track {
  position: relative;
  display: block;
  transform: none !important;
  transition: none;
  will-change: auto;
}

.js .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.018);
  visibility: hidden;
  transition:
    opacity var(--motion-slow) var(--motion-ease-standard),
    transform 1200ms var(--motion-ease),
    visibility 0s linear var(--motion-slow);
}

.js .carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  visibility: visible;
  transition-delay: 0s;
}

html.js[data-motion="full"] .carousel-slide.is-active .carousel-slide__image {
  animation: carousel-focus var(--carousel-duration, 6000ms) linear both;
}

.home-carousel[data-paused="true"] .carousel-slide.is-active .carousel-slide__image {
  animation-play-state: paused;
}

@media (max-aspect-ratio: 3 / 2) {
  html.js[data-motion="full"] .carousel-slide.is-active .carousel-slide__image {
    animation: none;
  }
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  z-index: 3;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.carousel-dot {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.carousel-dot::before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgb(255 255 255 / 30%);
  box-shadow:
    0 1px 5px rgb(0 0 0 / 32%),
    0 0 0 1px rgb(0 0 0 / 38%);
  content: "";
  transition:
    background-color var(--motion-base) var(--motion-ease-standard),
    box-shadow var(--motion-base) var(--motion-ease-standard);
}

.carousel-dot.is-active::before {
  background: #fff;
  box-shadow:
    0 1px 6px rgb(0 0 0 / 36%),
    0 0 0 1px rgb(0 0 0 / 46%);
}

.carousel-dot:focus-visible {
  border-radius: 999px;
  outline: 2px solid #fff;
  outline-offset: -7px;
  box-shadow: inset 0 0 0 2px rgb(0 0 0 / 58%);
}

.home-products {
  background: #fff;
  text-align: center;
}

.home-products__inner {
  padding-block: clamp(38px, 4vw, 54px) 20px;
}

.home-products h1 {
  margin: 0 0 20px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 22px;
  min-height: 300px;
}

.home-product-image {
  display: grid;
  min-height: 270px;
  place-items: center;
  transition: transform var(--motion-base) var(--motion-ease);
}

.home-product-image img {
  width: 100%;
  max-height: 275px;
  object-fit: contain;
  transition: transform 520ms var(--motion-ease);
}

.home-product-image:hover img {
  transform: translateY(-4px);
}

.source-button {
  display: inline-flex;
  min-width: 104px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 6px auto 0;
  padding: 9px 18px;
  border-radius: 3px;
  background: #d8d8d8;
  color: #fff;
  font-size: 15px;
  transition:
    background-color var(--motion-fast) var(--motion-ease-standard),
    box-shadow var(--motion-base) var(--motion-ease-standard),
    transform var(--motion-base) var(--motion-ease);
}

/* Product center */
.products-hero {
  width: 100%;
  overflow: hidden;
  background: #171b1e;
}

.products-hero img {
  width: 100%;
  height: auto;
}

.catalog-layout {
  display: grid;
  width: min(calc(100% - 40px), 1240px);
  grid-template-columns: 282px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
  padding-block: 44px 72px;
}

.category-nav {
  position: sticky;
  top: 20px;
  max-height: calc(100dvh - 40px);
  overflow: auto;
  padding: 0;
  border: 1px solid #e9e3ed;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 36px rgb(52 19 62 / 8%);
  scrollbar-color: #d9bce5 transparent;
  scrollbar-width: thin;
}

.category-nav__heading {
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 10px;
  color: var(--purple-dark);
  font-size: 22px;
  font-weight: 700;
}

.category-nav__heading img {
  width: 24px;
  height: 24px;
  filter: invert(26%) sepia(91%) saturate(2089%) hue-rotate(264deg) brightness(78%) contrast(102%);
}

.category-nav__toggle {
  position: relative;
  display: flex;
  width: calc(100% - 32px);
  min-height: 52px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 16px 10px;
  padding: 10px 46px 10px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  transition:
    background-color var(--motion-fast) var(--motion-ease-standard),
    color var(--motion-fast) var(--motion-ease-standard),
    box-shadow var(--motion-fast) var(--motion-ease-standard);
}

.category-nav__toggle[aria-expanded="true"] {
  background: #efe0f8;
  box-shadow: inset 3px 0 var(--purple);
}

.category-nav__chevron {
  position: absolute;
  right: 18px;
  width: 9px;
  height: 14px;
  filter: invert(26%) sepia(91%) saturate(2089%) hue-rotate(264deg) brightness(78%) contrast(102%);
  transform: rotate(180deg);
  transition: transform var(--motion-base) var(--motion-ease);
}

.category-nav__toggle[aria-expanded="true"] .category-nav__chevron {
  transform: rotate(0);
}

.category-nav__list {
  margin: 0;
  padding: 0 16px 14px;
  border-top: 0;
  list-style: none;
}

.js .category-nav__list {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  border-top-color: transparent;
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  visibility: hidden;
  transition:
    max-height var(--motion-base) var(--motion-ease),
    margin-top var(--motion-base) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease-standard),
    opacity var(--motion-fast) var(--motion-ease-standard),
    transform var(--motion-base) var(--motion-ease),
    visibility 0s linear var(--motion-base);
}

.js .category-nav__list[data-open="true"] {
  max-height: var(--category-open-height, 2400px);
  margin-top: 0;
  border-top-color: transparent;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition-delay: 0s;
}

@media (min-width: 1001px) {
  .js .category-nav__list {
    max-height: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }
}

.category-node,
.category-node__children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-node__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee9f1;
}

.category-node__link {
  display: flex;
  min-width: 0;
  min-height: 52px;
  flex: 1 1 auto;
  align-items: center;
  padding: 12px 14px;
  color: #23202a;
  font-size: 15px;
  font-weight: 500;
  transition:
    background-color var(--motion-fast) var(--motion-ease-standard),
    box-shadow var(--motion-fast) var(--motion-ease-standard),
    color var(--motion-fast) var(--motion-ease-standard),
    padding-left var(--motion-fast) var(--motion-ease);
}

.category-node__branch-toggle {
  display: grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  margin-right: 2px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--purple-dark);
  cursor: pointer;
}

.category-node__branch-toggle img {
  width: 8px;
  height: 13px;
  filter: invert(26%) sepia(91%) saturate(2089%) hue-rotate(264deg) brightness(78%) contrast(102%);
  transform: rotate(180deg);
  transition: transform var(--motion-fast) var(--motion-ease-standard);
}

.category-node__branch-toggle[aria-expanded="true"] img {
  transform: rotate(0);
}

.category-node__children {
  position: relative;
  margin-left: 18px;
  padding-left: 14px;
}

.category-node__children::before {
  position: absolute;
  top: 0;
  bottom: 8px;
  left: 2px;
  border-left: 1px dashed #d9bce5;
  content: "";
}

.category-node__children > .category-node {
  position: relative;
}

.category-node__children > .category-node::before {
  position: absolute;
  top: 21px;
  left: -15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-dark);
  content: "";
}

.category-node__children .category-node__row {
  border-bottom: 0;
}

.category-node__children .category-node__link {
  min-height: 44px;
  margin-block: 2px;
  padding: 9px 12px;
  border-radius: 9px;
  background: #f8f2fc;
  color: #735480;
  font-size: 14px;
}

.js .category-node__children {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 220ms var(--motion-ease),
    opacity var(--motion-fast) var(--motion-ease-standard),
    visibility 0s linear 220ms;
}

.js .category-node__children[data-open="true"] {
  max-height: var(--category-branch-open-height, 1200px);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.category-node__link:hover,
.category-node__link:focus-visible,
.category-node.is-active-ancestor > .category-node__row > .category-node__link {
  background: var(--purple-soft);
  box-shadow: inset 3px 0 var(--purple);
  color: var(--purple-dark);
}

.category-node__link[aria-current="page"] {
  background: var(--purple);
  box-shadow: inset 3px 0 var(--purple-dark);
  color: #fff;
  font-weight: 700;
}

.category-node__children .category-node__link[aria-current="page"] {
  box-shadow: 0 0 0 2px var(--purple-dark);
}

.category-node__branch-toggle:hover,
.category-node__branch-toggle:focus-visible {
  background: var(--purple-soft);
}

.catalog-results {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e9e3ed;
}

.catalog-results h1,
.catalog-results h2,
.catalog-results p {
  margin: 0;
}

.catalog-results h1,
.catalog-results h2 {
  color: #23202a;
  font-size: 22px;
  font-weight: 700;
}

.catalog-results p {
  flex: 0 0 auto;
  color: #6f6875;
  font-size: 14px;
}

.catalog-results strong {
  color: var(--purple-dark);
  font-size: 18px;
}

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

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 15px;
}

.product-card {
  overflow: hidden;
  border: 1px solid #eceef2;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transition:
    border-color var(--motion-base) var(--motion-ease-standard),
    box-shadow var(--motion-base) var(--motion-ease-standard),
    transform var(--motion-base) var(--motion-ease);
}

.product-card--static {
  cursor: default;
}

.product-card__link {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  color: inherit;
  text-decoration: none;
}

.product-card__link:focus-visible {
  outline-offset: -3px;
}

.product-card__visual {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 777 / 369;
  place-items: center;
  padding: 0;
  border-bottom: 1px solid #eceef2;
  background: #fff;
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 700ms var(--motion-ease);
}

.product-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  place-items: center;
  padding: 20px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.product-card__badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  background: rgb(27 37 54 / 88%);
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
}

.product-card__body {
  display: flex;
  min-height: 98px;
  flex-direction: column;
  padding: 12px 14px 16px;
}

.product-card__category {
  margin-bottom: 7px;
  color: #666d77;
  font-size: 12px;
  line-height: 1.55;
}

.product-card h2 {
  margin: auto 0 0;
  color: #171d27;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.product-card--linked h2 {
  transition: color 200ms linear;
}

.product-card__action {
  align-self: flex-start;
  margin-top: 10px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-underline-offset: 4px;
}

.empty-state {
  padding: 70px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.empty-state a {
  color: var(--purple);
  text-decoration: underline;
}

.catalog-pagination {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 36px;
}

.catalog-pagination__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.catalog-pagination__page,
.catalog-pagination__control {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid #dfd3e4;
  border-radius: 8px;
  background: #fff;
  color: var(--purple-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition:
    border-color var(--motion-fast) var(--motion-ease-standard),
    background-color var(--motion-fast) var(--motion-ease-standard),
    color var(--motion-fast) var(--motion-ease-standard),
    transform var(--motion-fast) var(--motion-ease);
}

.catalog-pagination__control {
  min-width: 82px;
}

.catalog-pagination__ellipsis {
  display: inline-grid;
  width: 26px;
  min-height: 44px;
  place-items: center;
  color: #8c8491;
}

.catalog-pagination__page:hover,
.catalog-pagination__page:focus-visible,
.catalog-pagination__control:hover,
.catalog-pagination__control:focus-visible {
  border-color: var(--purple);
  background: var(--purple-soft);
  color: var(--purple-dark);
  transform: translateY(-1px);
}

.catalog-pagination__page[aria-current="page"] {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}

.catalog-pagination__summary {
  margin: 0;
  color: #746d79;
  font-size: 13px;
}

/* Product detail */
.product-detail-layout {
  width: min(calc(100% - 40px), 1240px);
  --detail-accent: #65006c;
  --detail-ink: #20242a;
  --detail-muted: #656c74;
  --detail-line: #dde1e5;
  --detail-soft: #f6f7f8;
}

.product-detail-layout .category-nav {
  border-color: var(--detail-line);
  border-radius: 0;
  box-shadow: none;
  scrollbar-color: #cfd3d7 transparent;
}

.product-detail-layout .category-nav__heading {
  min-height: 58px;
  padding: 13px 18px 9px;
  color: var(--detail-ink);
  font-size: 20px;
}

.product-detail-layout .category-nav__toggle {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding-inline: 18px 44px;
  border-block: 1px solid var(--detail-line);
  border-radius: 0;
  background: var(--detail-soft);
  color: var(--detail-ink);
  font-size: 16px;
}

.product-detail-layout .category-nav__toggle[aria-expanded="true"] {
  background: var(--detail-soft);
  box-shadow: inset 3px 0 var(--detail-accent);
}

.product-detail-layout .category-nav__list {
  padding: 8px 14px 14px;
}

.product-detail-layout .category-node__children::before {
  border-left-color: #d8dce0;
  border-left-style: solid;
}

.product-detail-layout .category-node__children > .category-node::before {
  width: 4px;
  height: 4px;
  background: #a7adb3;
}

.product-detail-layout .category-node__children .category-node__link {
  border-radius: 0;
  background: transparent;
  color: #555d65;
}

.product-detail-layout .category-node__link:hover,
.product-detail-layout .category-node__link:focus-visible,
.product-detail-layout .category-node.is-active-ancestor > .category-node__row > .category-node__link {
  background: var(--detail-soft);
  box-shadow: inset 2px 0 var(--detail-accent);
  color: var(--detail-accent);
}

.product-detail-layout .category-node__link[aria-current="page"],
.product-detail-layout .category-node__children .category-node__link[aria-current="page"] {
  background: #f1f2f3;
  box-shadow: inset 3px 0 var(--detail-accent);
  color: var(--detail-accent);
}

.product-detail-layout .category-node__branch-toggle:hover,
.product-detail-layout .category-node__branch-toggle:focus-visible {
  background: #f1f2f3;
}

.product-detail {
  min-width: 0;
  color: var(--detail-ink);
}

.product-detail__breadcrumb {
  display: flex;
  min-height: 44px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #7a8188;
  font-size: 13px;
}

.product-detail__breadcrumb a {
  color: #5d646b;
  transition: color var(--motion-fast) var(--motion-ease-standard);
}

.product-detail__breadcrumb a:hover,
.product-detail__breadcrumb a:focus-visible {
  color: var(--detail-accent);
}

.product-detail__breadcrumb [aria-current="page"] {
  color: var(--detail-ink);
}

.product-detail__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 40px;
  border-block: 1px solid var(--detail-line);
  background: #fff;
}

.product-detail__visual {
  display: grid;
  min-height: 452px;
  overflow: hidden;
  place-items: center;
  padding: 28px 12px;
  background: #fff;
}

.product-detail__visual img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.product-detail__summary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 34px 26px 34px 0;
}

.product-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
  color: var(--detail-accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.product-detail__meta span {
  display: inline;
}

.product-detail__meta span + span {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid #cfd3d7;
  color: #5f666d;
  font-weight: 500;
}

.product-detail__summary h1 {
  margin-bottom: 14px;
  color: var(--detail-ink);
  font-size: clamp(27px, 2.1vw, 32px);
  font-weight: 700;
  line-height: 1.35;
}

.product-detail__lead {
  margin-bottom: 22px;
  color: var(--detail-muted);
  font-size: 15px;
  line-height: 1.85;
}

.product-detail__quick-facts {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 0 24px;
  border-block: 1px solid var(--detail-line);
}

.product-detail__quick-facts div {
  display: grid;
  min-width: 0;
  grid-template-columns: 102px minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #eaedef;
}

.product-detail__quick-facts div:last-child {
  border-bottom: 0;
}

.product-detail__quick-facts dt {
  margin: 0;
  color: #747b82;
  font-size: 12px;
  line-height: 1.55;
}

.product-detail__quick-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--detail-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail__button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  transition:
    border-color var(--motion-fast) var(--motion-ease-standard),
    background-color var(--motion-fast) var(--motion-ease-standard),
    color var(--motion-fast) var(--motion-ease-standard);
}

.product-detail__button--primary {
  background: var(--detail-accent);
  color: #fff;
}

.product-detail__button--secondary {
  padding-inline: 4px;
  border-color: transparent;
  background: #fff;
  color: #4f565d;
  text-decoration: underline;
  text-decoration-color: #aeb3b8;
  text-underline-offset: 4px;
}

.product-detail__section-nav {
  display: flex;
  margin-top: 22px;
  border-bottom: 1px solid var(--detail-line);
  background: #fff;
}

.product-detail__section-nav a {
  position: relative;
  display: inline-flex;
  min-width: 112px;
  min-height: 48px;
  align-items: center;
  justify-content: flex-start;
  margin-right: 28px;
  padding: 11px 0;
  color: #464d54;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--motion-fast) var(--motion-ease-standard);
}

.product-detail__section-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--detail-accent);
  content: "";
  opacity: 0;
  transition:
    opacity var(--motion-fast) var(--motion-ease-standard);
}

.product-detail__section-nav a:hover,
.product-detail__section-nav a:focus-visible {
  color: var(--detail-accent);
}

.product-detail__section-nav a:hover::after,
.product-detail__section-nav a:focus-visible::after {
  opacity: 1;
}

.product-detail__section {
  scroll-margin-top: 24px;
  margin-top: 38px;
  padding: 0;
  border: 0;
  background: #fff;
}

.product-detail__section-heading {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--detail-line);
}

.product-detail__section-heading::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--detail-accent);
  content: "";
}

.product-detail__section-heading h2 {
  margin: 0;
  color: var(--detail-ink);
  font-size: 22px;
  line-height: 1.4;
}

.product-detail__feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--detail-line);
}

.product-detail__feature {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 28px;
  padding: 19px 2px;
  border-bottom: 1px solid var(--detail-line);
  background: #fff;
  transition: background-color var(--motion-fast) var(--motion-ease-standard);
}

.product-detail__feature h3 {
  margin: 0;
  padding-left: 12px;
  border-left: 3px solid var(--detail-accent);
  color: var(--detail-ink);
  font-size: 16px;
  line-height: 1.55;
}

.product-detail__feature p {
  margin: 0;
  color: var(--detail-muted);
  font-size: 14px;
  line-height: 1.8;
}

.product-detail__spec-groups {
  display: grid;
  gap: 28px;
}

.product-detail__spec-group {
  min-width: 0;
}

.product-detail__spec-group h3 {
  margin: 0;
  padding: 10px 14px;
  border-left: 3px solid var(--detail-accent);
  background: var(--detail-soft);
  color: var(--detail-ink);
  font-size: 16px;
  line-height: 1.5;
}

.product-detail__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--detail-line);
  border-top: 0;
}

.product-detail__table-wrap table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.product-detail__table-wrap th,
.product-detail__table-wrap td {
  padding: 13px 16px;
  border-bottom: 1px solid #e5e8ea;
  overflow-wrap: anywhere;
  text-align: left;
  vertical-align: top;
}

.product-detail__table-wrap tr:last-child th,
.product-detail__table-wrap tr:last-child td {
  border-bottom: 0;
}

.product-detail__table-wrap th {
  width: 32%;
  background: #f3f4f5;
  color: #454c53;
  font-size: 13px;
  font-weight: 600;
}

.product-detail__table-wrap td {
  background: #fff;
  color: #343a40;
  font-size: 14px;
  line-height: 1.65;
}

.product-detail__pending {
  padding: 24px 26px;
  border: 1px solid var(--detail-line);
  border-left: 3px solid #8a9096;
  background: var(--detail-soft);
}

.product-detail__pending strong {
  display: block;
  margin-bottom: 7px;
  color: var(--detail-ink);
  font-size: 16px;
  line-height: 1.55;
}

.product-detail__pending p {
  margin: 0;
  color: var(--detail-muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-detail__downloads {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail__downloads a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 11px 16px;
  border: 1px solid var(--detail-line);
  color: var(--detail-accent);
  font-weight: 600;
}

.product-detail__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 24px 26px;
  border-left: 4px solid var(--detail-accent);
  background: var(--detail-soft);
  color: var(--detail-ink);
}

.product-detail__contact strong {
  display: block;
}

.product-detail__contact strong {
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.55;
}

.product-detail__contact p {
  margin: 0;
  color: var(--detail-muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-detail__contact .product-detail__button {
  flex: 0 0 auto;
}

/* About and contact */
.inner-hero {
  overflow: hidden;
  background: #e5e5e5;
}

.inner-hero img {
  width: 100%;
  height: auto;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 34px;
  padding-block: 36px 22px;
}

.about-copy h1 {
  margin-bottom: 30px;
  font-size: 27px;
}

.about-copy p {
  margin-bottom: 19px;
  font-size: 14px;
  line-height: 1.85;
  text-align: justify;
  text-indent: 2em;
}

.about-achievements {
  margin: 16px 0 0;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.8;
}

.about-building img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  transition: transform 800ms var(--motion-ease);
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 18px 0 32px;
}

.company-stat {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-right: 1px solid #444;
}

.company-stat:last-child {
  border-right: 0;
}

.company-stat__icon {
  width: auto;
  height: 44px;
  object-fit: contain;
  transition: transform var(--motion-base) var(--motion-ease);
}

.company-stat strong {
  display: block;
  font-size: 22px;
}

.company-stat span {
  display: block;
  font-size: 10px;
}

.about-section {
  padding-block: 45px;
}

.about-section h2 {
  margin-bottom: 30px;
  color: #a12cc3;
  font-size: 30px;
  text-align: center;
}

.history-visual img,
.certificates-visual img {
  width: 100%;
  height: auto;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 78px;
  padding-inline: 42px;
}

.culture-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition:
    filter var(--motion-base) var(--motion-ease-standard),
    transform 560ms var(--motion-ease);
}

.advantage-tabs {
  display: flex;
  justify-content: center;
  gap: 130px;
  margin-bottom: 35px;
  color: #141414;
  font-weight: 700;
  text-decoration: underline;
}

.advantage-tabs span:first-child {
  color: #bf47dc;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.advantage-item {
  display: grid;
  min-height: 90px;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  padding: 14px 28px;
  border-right: 2px solid #8a257e;
  border-bottom: 2px solid #8a257e;
  transition:
    background-color var(--motion-base) var(--motion-ease-standard),
    transform var(--motion-base) var(--motion-ease);
}

.advantage-item:nth-child(even) {
  border-right: 0;
}

.advantage-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.advantage-item strong {
  font-size: 23px;
  transition:
    color var(--motion-fast) var(--motion-ease-standard),
    transform var(--motion-base) var(--motion-ease);
}

.advantage-item p {
  margin: 0;
  color: #97919d;
  font-size: 13px;
}

.contact-body {
  display: grid;
  width: min(95%, 1300px);
  grid-template-columns: 32.308% 63.6%;
  gap: 4.092%;
  align-items: start;
  padding-block: 80px 12px;
}

.contact-details h1 {
  margin: 0 0 13px;
  padding-bottom: 21px;
  border-bottom: 1px solid #d9d9d9;
  color: #222;
  font-size: 30px;
  line-height: 1.2;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin: 0;
  border-bottom: 1px solid #d9d9d9;
  padding: 16px 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  min-height: 70px;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding-bottom: 11px;
}

.contact-list span,
.footer-column,
.download-content {
  overflow-wrap: anywhere;
}

.contact-list img {
  width: 26px;
  max-height: 30px;
  object-fit: contain;
  transition: transform var(--motion-base) var(--motion-ease);
}

.contact-list__copy {
  display: grid;
  min-width: 0;
  gap: 0;
  color: #222;
  font-size: 15px;
  line-height: 1.5;
}

.contact-list__copy strong {
  color: #666;
  font-weight: 400;
  line-height: 22.5px;
}

.contact-list__copy > span {
  padding-top: 6px;
  color: #333;
  font-size: 16px;
  line-height: 30px;
}

.contact-list__meta {
  display: block;
}

.location-card {
  overflow: hidden;
  min-width: 0;
  align-self: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* 当前联系页地图：静态图片完整显示，不裁切、不拉伸。 */
.contact-location-figure {
  overflow: hidden;
  width: min(100%, 825px);
  margin: 0 auto;
  background: #f4f4f4;
}

.contact-location-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.contact-map-attribution {
  margin: 0;
  padding: 5px 8px;
  background: #fff;
  color: #666;
  font-size: 11px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-align: left;
}

/* 已停用的高德 JS API 交互组件样式，保留用于受控回退。 */
.contact-map-shell {
  position: relative;
  overflow: hidden;
  height: 401px;
  min-height: 0;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgb(248 245 250 / 92%), rgb(236 229 241 / 92%)),
    #eee9f1;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #eee9f1;
}

.contact-map:focus-visible {
  outline: 3px solid #6d0478;
  outline-offset: -3px;
}

.contact-map__state {
  position: absolute;
  z-index: 600;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(135deg, #f3edf6, #e9e1ed);
  transition:
    opacity var(--motion-base) var(--motion-ease-standard),
    visibility var(--motion-base) var(--motion-ease-standard);
}

.contact-map__fallback-image {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.72) contrast(0.86);
  opacity: 0.34;
  transform: scale(1.02);
}

.contact-map__state::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 24%), rgb(58 21 67 / 18%));
  content: "";
}

.contact-map__state-panel {
  display: grid;
  width: min(100%, 360px);
  justify-items: center;
  gap: 7px;
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: 14px;
  padding: 24px 26px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 16px 38px rgb(39 17 46 / 18%);
  color: #2c2530;
  text-align: center;
  backdrop-filter: blur(12px);
}

.contact-map__state-panel strong {
  font-size: 18px;
}

.contact-map__state-panel > span:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-map__state-mark {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 3px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 8px;
  background: linear-gradient(145deg, #a228b6, #65006c);
  box-shadow: 0 7px 16px rgb(101 0 108 / 28%);
  transform: rotate(-45deg);
}

.contact-map__state-mark::after {
  position: absolute;
  inset: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
}

.contact-map-shell.is-map-ready .contact-map__state {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-map-shell .amap-info-content {
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 14px 34px rgb(39 17 46 / 22%);
}

.contact-map-shell .amap-info-close {
  top: 8px;
  right: 9px;
  color: var(--purple-dark);
}

.endosuper-map-popup {
  min-width: min(250px, 64vw);
}

.endosuper-map-popup__eyebrow {
  margin: 0 0 4px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.endosuper-map-popup h3 {
  margin: 0 0 7px;
  color: #211b23;
  font-size: 16px;
  line-height: 1.45;
}

.endosuper-map-popup__address {
  margin: 0;
  color: #625a66;
  font-size: 13px;
  line-height: 1.6;
}

/* Standalone APP download page */
.page-standalone-download {
  background: #f4f5f7;
}

.download-page {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  background: #f4f5f7;
}

.download-panel {
  display: flex;
  width: min(100%, 640px);
  min-height: min(930px, calc(100svh - 34px));
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.download-brand {
  width: 118px;
  margin-top: clamp(105px, 18vh, 190px);
}

.download-brand img {
  width: 100%;
  height: auto;
  transition: transform 800ms var(--motion-ease);
}

.download-content {
  width: calc(100% - 92px);
  margin-top: auto;
  padding-bottom: 22px;
  text-align: center;
}

.download-content h1 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.3;
}

.download-description {
  margin-bottom: 18px;
  font-size: 14px;
}

.download-button {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgb(67 135 246 / 18%);
  transition:
    background-color var(--motion-fast) var(--motion-ease-standard),
    box-shadow var(--motion-base) var(--motion-ease-standard),
    transform var(--motion-base) var(--motion-ease);
}

.download-button:disabled {
  opacity: 1;
  cursor: not-allowed;
  box-shadow: none;
}

.download-developer {
  margin: 6px 0 20px;
  font-size: 16px;
}

.download-developer span,
.download-manual {
  color: var(--blue);
}

.download-manual {
  font-size: 15px;
  transition: color var(--motion-fast) var(--motion-ease-standard);
}

.download-icp {
  margin: 14px 0 0;
  color: #666;
  font-size: 13px;
}

/* Shared footer */
.site-footer {
  background: #000;
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 150px 80px 140px 170px 220px 165px;
  gap: 35px;
  min-height: 432px;
  padding-block: 14px 30px;
}

.footer-brand {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-block: 89px;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer-brand__name {
  margin-top: 12px;
  color: #fff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.footer-column,
.footer-qr {
  min-width: 0;
  padding: 0;
}

.footer-column h2 {
  margin-bottom: 14px;
  color: #963ec5;
  font-family: Roboto, Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li,
.footer-column p {
  margin-bottom: 14px;
  color: #f8f8f8;
  font-size: 14px;
  line-height: 1.7;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-qr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-qr img {
  width: 165px;
  height: 165px;
}

.site-footer__legal {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #404040;
  text-align: center;
}

.site-footer__legal p {
  margin: 0;
  font-size: 13px;
}

.catalog-footer {
  background: #fff;
}

.catalog-footer .site-footer__legal {
  min-height: 62px;
}

.not-found {
  min-height: 55vh;
  padding: 100px 20px;
  text-align: center;
}

.not-found__code {
  margin-bottom: 20px;
  color: var(--purple);
  font-size: 100px;
  font-weight: 700;
}

/* Motion system: page content reveals progressively, while the persistent
 * header stays visually stable across full-page navigation. */
:where(.motion-ready) .motion-item {
  opacity: 0;
  transform: translate3d(0, var(--motion-distance), 0);
  transition:
    opacity var(--motion-slow) var(--motion-ease-standard),
    transform var(--motion-slow) var(--motion-ease);
  transition-delay: calc(var(--motion-order, 0) * 72ms);
}

:where(.motion-ready) .motion-item[data-motion-type="left"] {
  transform: translate3d(-16px, 0, 0);
}

:where(.motion-ready) .motion-item[data-motion-type="right"] {
  transform: translate3d(16px, 0, 0);
}

:where(.motion-ready) .motion-item[data-motion-type="fade"] {
  transform: none;
}

:where(.motion-ready) .motion-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

:where(.motion-ready) .motion-item.motion-complete {
  transition-delay: 0s;
}

:where(.motion-ready) .product-detail .motion-item {
  transition-duration: 240ms;
  transition-delay: calc(var(--motion-order, 0) * 36ms);
}

:where(.motion-ready) .product-card.motion-complete {
  transition:
    border-color var(--motion-base) var(--motion-ease-standard),
    box-shadow var(--motion-base) var(--motion-ease-standard),
    transform var(--motion-base) var(--motion-ease);
}

@keyframes carousel-focus {
  from {
    transform: scale(1.008);
  }

  to {
    transform: scale(1.035);
  }
}

@keyframes hero-settle {
  from {
    transform: scale(1.025);
  }

  to {
    transform: scale(1);
  }
}

/* Restore the source site's one-shot Elementor zoomInUp entrance for the
 * company-history artwork. Keep the image visible unless the motion system
 * has initialized successfully, so no-JS and reduced-motion remain fail-open. */
@keyframes history-zoom-in-up {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

html.js[data-motion="full"].motion-ready .history-visual.motion-item {
  opacity: 1;
  transform: none;
  transition: none;
}

html.js[data-motion="full"].motion-ready .history-visual.motion-item:not(.is-visible) img {
  opacity: 0;
}

html.js[data-motion="full"].motion-ready .history-visual.motion-item.is-visible img {
  animation: history-zoom-in-up 1250ms both;
}

html.js[data-motion="full"] .products-hero.is-visible img,
html.js[data-motion="full"] .inner-hero.is-visible img {
  animation: hero-settle 1200ms var(--motion-ease) both;
}

@media (hover: hover) and (pointer: fine) {
  .carousel-dot {
    width: 25px;
  }

  .site-nav__link:hover {
    transform: translateY(-1px);
  }

  .home-product-image:hover img {
    transform: translateY(-7px) scale(1.025);
  }

  .source-button:hover {
    background: var(--purple);
    box-shadow: 0 10px 24px rgb(101 0 108 / 18%);
    transform: translateY(-2px);
  }

  .category-nav__toggle:hover {
    background: #efe0f8;
  }

  .product-card:hover,
  .product-card--linked:focus-within {
    border-color: #d8c7e1;
    box-shadow: 0 18px 35px rgb(102 46 139 / 16%);
    transform: translateY(-5px);
  }

  .product-card:hover .product-card__visual img,
  .product-card--linked:focus-within .product-card__visual img {
    transform: scale(1.035);
  }

  .product-card--linked:hover h2,
  .product-card--linked:focus-within h2 {
    color: var(--purple-dark);
  }

  .product-card--linked:hover .product-card__action,
  .product-card--linked:focus-within .product-card__action {
    text-decoration: underline;
  }

  .product-detail__button--primary:hover,
  .product-detail__button--primary:focus-visible {
    background: #4e0054;
  }

  .product-detail__button--secondary:hover,
  .product-detail__button--secondary:focus-visible {
    background: transparent;
    color: var(--detail-accent);
    text-decoration-color: var(--detail-accent);
  }

  .product-detail__feature:hover {
    background: #fafbfb;
  }

  .product-detail__contact .product-detail__button--primary:hover,
  .product-detail__contact .product-detail__button--primary:focus-visible {
    background: #4e0054;
  }

  .about-building:hover img {
    transform: scale(1.018);
  }

  .company-stat:hover .company-stat__icon,
  .contact-list li:hover img {
    transform: translateY(-3px) scale(1.04);
  }

  .culture-grid img:hover {
    filter: saturate(1.08);
    transform: translateY(-4px);
  }

  .advantage-item:hover {
    background: #fcf7ff;
    transform: translateX(3px);
  }

  .advantage-item:hover strong {
    color: var(--purple);
    transform: translateY(-2px);
  }

  .download-brand:hover img,
  .footer-qr:hover img {
    transform: scale(1.025);
  }

  .download-button:not(:disabled):hover {
    background: #2d74ea;
    box-shadow: 0 14px 30px rgb(67 135 246 / 28%);
    transform: translateY(-2px);
  }

  .download-manual:hover,
  .footer-column a:hover {
    color: #c67be2;
  }
}

.source-button:active,
.category-nav__toggle:active,
.download-button:not(:disabled):active {
  transform: translateY(0) scale(0.98);
  transition-duration: 80ms;
  transition-delay: 0s;
}

@media (any-pointer: coarse) {
  .carousel-dot {
    width: 44px;
  }
}

.footer-column a,
.footer-qr img {
  transition:
    color var(--motion-fast) var(--motion-ease-standard),
    transform var(--motion-base) var(--motion-ease);
}

@media (max-width: 1180px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    min-height: 0;
    padding-block: 42px;
  }

  .footer-brand {
    justify-content: center;
    padding: 0;
  }

  .footer-brand img {
    width: 130px;
  }

  .footer-column,
  .footer-qr {
    padding: 0;
  }

  .footer-contact,
  .footer-qr {
    grid-column: auto;
  }
}

@media (max-width: 1080px) {
  :root {
    --mobile-header-height: clamp(88px, 10vw, 108px);
    --site-header-height: var(--mobile-header-height);
  }

  .site-header {
    height: auto;
    min-height: var(--mobile-header-height);
  }

  .site-header__inner {
    display: grid;
    height: auto;
    min-height: var(--mobile-header-height);
    grid-template-columns: minmax(140px, 150px) minmax(0, 1fr) 44px;
    grid-template-rows: var(--mobile-header-height);
  }

  .site-brand,
  .site-brand img {
    width: clamp(140px, 38vw, 150px);
  }

  .site-brand {
    flex-basis: auto;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    position: static;
    z-index: 85;
    display: block;
    width: 100%;
    height: auto;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    overscroll-behavior: contain;
    padding: 0;
    background: var(--purple);
    box-shadow: inset 0 1px rgb(255 255 255 / 18%);
    grid-column: 1 / -1;
    grid-row: 2;
    opacity: 0;
    transform: translate3d(0, -10px, 0);
    visibility: hidden;
    transition:
      max-height var(--motion-base) var(--motion-ease),
      padding var(--motion-base) var(--motion-ease),
      opacity var(--motion-fast) var(--motion-ease-standard),
      transform var(--motion-base) var(--motion-ease),
      visibility 0s linear var(--motion-base);
  }

  .site-nav[data-open="true"] {
    max-height: calc(100vh - var(--mobile-header-height));
    max-height: calc(100dvh - var(--mobile-header-height));
    max-height: min(var(--nav-open-height, 520px), calc(100dvh - var(--mobile-header-height)));
    padding: 6px 0 14px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav__list {
    display: block;
    height: auto;
    max-height: calc(100vh - var(--mobile-header-height) - 20px);
    max-height: calc(100dvh - var(--mobile-header-height) - 20px);
    overflow-y: auto;
  }

  .site-nav__item {
    display: block;
    height: auto;
    margin: 0;
    opacity: 0;
    transform: translate3d(0, -8px, 0);
    transition:
      opacity var(--motion-fast) var(--motion-ease-standard),
      transform var(--motion-base) var(--motion-ease);
    transition-delay: 0s;
  }

  .site-nav[data-open="true"] .site-nav__item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: calc(var(--nav-order, 0) * 36ms + 60ms);
  }

  .site-nav__link {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    justify-content: flex-start;
    padding: 12px 18px;
    font-size: 17px;
  }

  .site-nav__link::after {
    top: 12px;
    right: auto;
    bottom: 12px;
    left: 0;
    width: 3px;
    height: auto;
    transform: scaleY(0.42);
  }

  .site-nav__link[aria-current="page"]::after,
  .site-nav__link[data-section-current="true"]::after {
    transform: scaleY(1);
  }

  .nav-chevron {
    display: none !important;
  }

  .site-nav__item--has-children > .site-nav__link {
    padding-right: 66px;
  }

  .submenu-toggle {
    position: absolute;
    z-index: 2;
    top: 6px;
    right: 11px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: var(--nav-surface-hover);
    cursor: pointer;
    transition: background-color var(--motion-fast) var(--motion-ease-standard);
  }

  .submenu-toggle img {
    width: 10px;
    height: 14px;
    filter: brightness(0) invert(1);
    transition: transform var(--motion-base) var(--motion-ease);
  }

  .submenu-toggle[aria-expanded="true"] img {
    transform: rotate(180deg);
  }

  .submenu-toggle:hover,
  .submenu-toggle:focus-visible,
  .submenu-toggle[aria-expanded="true"] {
    background: rgb(255 255 255 / 14%);
  }

  .submenu-toggle:active {
    background: var(--nav-surface-pressed);
  }

  .product-mega {
    position: static;
    width: calc(100% - 24px);
    margin: 0 12px;
    border-top: 0;
    background: #fff;
    box-shadow: none;
    transform: translate3d(0, -6px, 0);
  }

  .site-nav__item--has-children[data-open="true"] > .product-mega {
    max-height: var(--submenu-open-height, 220px);
    margin-bottom: 8px;
  }

  .product-mega a {
    min-height: 50px;
    justify-content: flex-start;
    padding-inline: 22px;
    font-size: 15px;
    text-align: left;
  }

  .product-mega a:hover,
  .product-mega a:focus-visible,
  .product-mega a[aria-current="page"] {
    padding-left: 28px;
  }
}

@media (max-width: 1080px) {
  .contact-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-card {
    width: 100%;
    order: 0;
  }

  .contact-map-shell {
    height: 360px;
  }
}

@media (max-width: 1000px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 28px 56px;
  }

  .category-nav {
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
  }

}

@media (max-width: 900px) {
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-grid {
    gap: 16px 22px;
  }

  .home-product-image {
    min-height: clamp(250px, 42vw, 330px);
  }

  .home-product-image img {
    max-height: 310px;
  }

  .culture-grid {
    gap: 24px;
    padding-inline: 0;
  }
}

@media (max-width: 768px) {
  .carousel-viewport {
    height: clamp(175px, 47vw, 360px);
  }

  .carousel-slide__backdrop {
    display: none;
  }

  .carousel-slide__image {
    object-fit: cover;
    object-position: center top;
  }

  html.js[data-motion="full"] .carousel-slide.is-active .carousel-slide__image {
    animation: carousel-focus var(--carousel-duration, 6000ms) linear both;
  }

  [data-responsive-catalog-state="loading"] .product-card:nth-child(n + 7) {
    display: none;
  }

  [data-responsive-catalog-state="loading"] .catalog-pagination-slot {
    visibility: hidden;
    pointer-events: none;
  }

  :where(.motion-ready) .product-list .product-card.motion-item {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  .home-products__inner {
    padding-top: clamp(30px, 8vw, 40px);
  }

  .home-products h1 {
    margin-bottom: 22px;
    font-size: 35px;
  }

  .source-button {
    margin-bottom: 20px;
  }

  .products-hero img {
    height: auto;
    object-fit: contain;
  }

  .category-nav__toggle {
    min-height: 52px;
    font-size: 19px;
  }

  .category-node__link {
    min-height: 48px;
    font-size: 15px;
  }

  .category-node__children .category-node__link {
    min-height: 44px;
    font-size: 14px;
  }

  .catalog-results {
    margin-bottom: 18px;
  }

  .catalog-results h1,
  .catalog-results h2 {
    font-size: 20px;
  }

  .product-card__body {
    min-height: 108px;
    padding: 16px 18px 20px;
  }

  .product-card__category {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .product-card h2 {
    font-size: 17px;
  }

  .product-detail__intro {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-detail__visual {
    min-height: 0;
    padding: 24px 12px;
    border-bottom: 1px solid var(--detail-line);
  }

  .product-detail__visual img {
    max-height: 420px;
  }

  .product-detail__summary {
    padding: 28px 12px 30px;
  }

  .product-detail__summary h1 {
    font-size: 27px;
  }

  .product-detail__section {
    padding: 0;
  }

  .product-detail__feature-grid {
    grid-template-columns: 1fr;
  }

  .product-detail__feature {
    min-height: 0;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
  }

  .product-detail__contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-building {
    order: -1;
  }

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

  .company-stat:nth-child(2) {
    border-right: 0;
  }

  .company-stat:nth-child(-n + 2) {
    border-bottom: 1px solid #ccc;
  }

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

  .advantage-tabs {
    gap: 55px;
  }

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

  .advantage-item,
  .advantage-item:nth-child(even),
  .advantage-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #8a257e;
  }

  .advantage-item:last-child {
    border-bottom: 0;
  }

  .download-panel {
    min-height: calc(100svh - 34px);
  }

  .download-brand {
    width: 122px;
    margin-top: clamp(72px, 14vh, 120px);
  }

  .download-content {
    width: calc(100% - 56px);
    padding-bottom: 25px;
  }

  .download-description {
    font-size: 14px;
    white-space: normal;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-block: 36px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand,
  .footer-qr {
    justify-content: flex-start;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .footer-home {
    padding-block-start: 14px;
  }
}

@media (max-width: 560px) {
  .home-product-grid,
  .product-list {
    grid-template-columns: 1fr;
  }

  .product-detail-layout {
    width: calc(100% - 28px);
  }

  .product-detail__breadcrumb {
    align-items: flex-start;
  }

  .product-detail__summary {
    padding: 24px 4px 28px;
  }

  .product-detail__summary h1 {
    font-size: 24px;
  }

  .product-detail__lead {
    font-size: 14px;
  }

  .product-detail__quick-facts {
    grid-template-columns: 1fr;
  }

  .product-detail__actions,
  .product-detail__button {
    width: 100%;
  }

  .product-detail__section-nav {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .product-detail__section-nav a {
    min-width: 104px;
    margin-right: 22px;
  }

  .product-detail__section {
    padding: 0;
  }

  .product-detail__section-heading h2 {
    font-size: 21px;
  }

  .product-detail__feature {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 17px;
  }

  .product-detail__feature h3 {
    padding-left: 10px;
  }

  .product-detail__table-wrap {
    border: 0;
    overflow: visible;
  }

  .product-detail__table-wrap table,
  .product-detail__table-wrap tbody,
  .product-detail__table-wrap tr,
  .product-detail__table-wrap th,
  .product-detail__table-wrap td {
    display: block;
    width: 100%;
  }

  .product-detail__table-wrap tr {
    margin-bottom: 0;
    border: 1px solid var(--detail-line);
    border-bottom: 0;
  }

  .product-detail__table-wrap tr:last-child {
    border-bottom: 1px solid var(--detail-line);
  }

  .product-detail__table-wrap th,
  .product-detail__table-wrap td {
    border-bottom: 0;
  }

  .product-detail__table-wrap th {
    padding-bottom: 7px;
  }

  .product-detail__table-wrap td {
    padding-top: 7px;
  }

  .product-detail__contact {
    padding: 22px 18px;
  }

  .home-product-grid {
    gap: 0;
  }

  .home-product-image {
    min-height: clamp(270px, 90vw, 360px);
  }

  .home-product-image img {
    max-height: 350px;
  }

  .product-list {
    gap: 26px;
  }

  .history-visual,
  .certificates-visual {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .history-visual img {
    width: 700px;
    max-width: none;
  }

  .certificates-visual img {
    width: 560px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .inner-hero img {
    min-height: 150px;
    object-fit: cover;
  }

  .about-copy h1,
  .contact-details h1 {
    font-size: 28px;
  }

  .about-copy p {
    font-size: 14px;
  }

  .company-stat {
    padding: 10px;
  }

  .company-stat strong {
    font-size: 18px;
  }

  .about-section h2 {
    font-size: 25px;
  }

  .culture-grid {
    gap: 18px;
  }

  .contact-body {
    width: 95%;
    gap: 20px;
    padding-block: 40px;
  }

  .contact-details {
    padding: 25px 19px 15px;
  }

  .contact-details h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .contact-list {
    gap: 7px;
    padding-block: 8px;
  }

  .contact-list li {
    min-height: 69px;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: flex-start;
    gap: 5px;
  }

  .contact-list img {
    width: 22px;
  }

  .contact-list__copy {
    font-size: 14px;
  }

  .contact-list__copy strong {
    line-height: 21px;
  }

  .contact-list__copy > span {
    padding-top: 4px;
    font-size: 14px;
    line-height: 30px;
  }

  .contact-map-shell {
    height: 300px;
  }

  .contact-map-attribution {
    padding-inline: 6px;
    font-size: 10px;
  }

  .contact-map__state {
    padding: 18px;
  }

  .contact-map__state-panel {
    padding: 20px 18px;
  }

  .download-brand {
    margin-top: 102px;
  }

  .download-content h1 {
    font-size: 20px;
  }

  .download-developer {
    font-size: 15px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-qr {
    align-items: center;
    justify-content: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-qr img {
    width: 145px;
    height: 145px;
  }
}

@media (max-width: 360px) {
  .shell {
    width: calc(100% - 32px);
  }

  .site-header__inner {
    grid-template-columns: minmax(130px, 140px) minmax(0, 1fr) 44px;
  }

  .site-brand,
  .site-brand img {
    width: 130px;
  }

  .download-content {
    width: calc(100% - 32px);
  }

}

@media (max-height: 520px) and (orientation: landscape) {
  .contact-map-shell {
    height: 300px;
  }

  .download-panel {
    min-height: 100svh;
  }

  .download-brand {
    width: 88px;
    margin-top: 24px;
  }

  .download-content {
    width: min(calc(100% - 40px), 560px);
    padding-bottom: 12px;
  }

  .download-content h1 {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .download-description {
    margin-bottom: 10px;
  }

  .download-developer {
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  :where(.motion-ready) .motion-item {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto !important;
  }
}

html[data-motion="reduced"] .carousel-slide__image {
  animation: none !important;
}

html[data-motion="reduced"] .history-visual img {
  animation: none !important;
  opacity: 1;
  transform: none;
}
