:root {
  color: #101114;
  background: #fff;
  font-family:
    "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --red: #d71920;
  --accent: #d71920;
  --header-bg: rgba(0, 0, 0, 0.06);
  --shade-left: rgba(0, 0, 0, 0.62);
  --shade-mid: rgba(0, 0, 0, 0.18);
  --shade-right: rgba(0, 0, 0, 0.44);
  --ink: #0b0d10;
  --muted: #6f747c;
  --line: rgba(15, 17, 20, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

.theme-red {
  --accent: #d71920;
  --header-bg: rgba(0, 0, 0, 0.06);
  --shade-left: rgba(0, 0, 0, 0.62);
  --shade-mid: rgba(0, 0, 0, 0.18);
  --shade-right: rgba(0, 0, 0, 0.44);
}

.theme-light {
  --accent: #ff8a00;
  --header-bg: rgba(255, 255, 255, 0.14);
  --shade-left: rgba(255, 255, 255, 0);
  --shade-mid: rgba(255, 255, 255, 0);
  --shade-right: rgba(255, 255, 255, 0);
}

.theme-poster-dark {
  --accent: #f28a1d;
  --header-bg: rgba(0, 0, 0, 0.1);
  --shade-left: rgba(0, 0, 0, 0);
  --shade-mid: rgba(0, 0, 0, 0);
  --shade-right: rgba(0, 0, 0, 0);
}

.theme-gold {
  --accent: #d99a2b;
  --header-bg: rgba(68, 38, 6, 0.16);
  --shade-left: rgba(42, 25, 8, 0.58);
  --shade-mid: rgba(42, 25, 8, 0.12);
  --shade-right: rgba(20, 14, 8, 0.32);
}

.theme-teal {
  --accent: #13a39a;
  --header-bg: rgba(0, 48, 52, 0.14);
  --shade-left: rgba(0, 40, 44, 0.56);
  --shade-mid: rgba(0, 60, 64, 0.1);
  --shade-right: rgba(0, 28, 32, 0.3);
}

.theme-orange {
  --accent: #f26b2f;
  --header-bg: rgba(76, 30, 6, 0.14);
  --shade-left: rgba(44, 24, 10, 0.58);
  --shade-mid: rgba(44, 24, 10, 0.12);
  --shade-right: rgba(24, 14, 10, 0.34);
}

.theme-blue {
  --accent: #2a88d8;
  --header-bg: rgba(0, 34, 72, 0.16);
  --shade-left: rgba(0, 26, 56, 0.56);
  --shade-mid: rgba(0, 40, 90, 0.08);
  --shade-right: rgba(0, 22, 50, 0.3);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 80px;
  padding: 0 44px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.08) 58%, transparent);
  transition: color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.home-page .site-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06) 62%, transparent);
  backdrop-filter: none;
}

.site-header.logo-on-light {
  color: #171a20;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14) 62%, transparent);
}

.site-header.theme-poster-dark,
.site-header.theme-red,
.site-header.theme-gold,
.site-header.theme-blue,
.site-header.theme-teal,
.site-header.theme-orange {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.08) 58%, transparent);
}

.site-header.logo-on-light.theme-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14) 62%, transparent);
}

.home-page .site-header.logo-on-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14) 62%, transparent);
}

.site-header.is-solid,
.site-header:hover,
.site-header:focus-within,
.site-header.mobile-menu-open {
  color: #fff;
  background: rgba(73, 75, 80, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.site-header.is-solid.logo-on-light,
.site-header.logo-on-light:hover,
.site-header.logo-on-light:focus-within,
.site-header.logo-on-light.mobile-menu-open {
  color: #fff;
  background: rgba(73, 75, 80, 0.96);
}

.site-header.is-solid .brand-logo-light,
.site-header.logo-on-light:hover .brand-logo-light,
.site-header.logo-on-light:focus-within .brand-logo-light,
.site-header.logo-on-light.mobile-menu-open .brand-logo-light {
  opacity: 1;
}

.site-header.is-solid .brand-logo-dark,
.site-header.logo-on-light:hover .brand-logo-dark,
.site-header.logo-on-light:focus-within .brand-logo-dark,
.site-header.logo-on-light.mobile-menu-open .brand-logo-dark {
  opacity: 0;
}

.site-header.is-solid .header-utility-divider,
.site-header:hover .header-utility-divider,
.site-header:focus-within .header-utility-divider {
  background: rgba(255, 255, 255, 0.56);
}

.site-header.is-solid .header-actions > .header-cta-pill,
.site-header:hover .header-actions > .header-cta-pill,
.site-header:focus-within .header-actions > .header-cta-pill {
  color: #181b20;
  background: rgba(255, 255, 255, 0.9);
}

.site-header.logo-on-light .quick-links {
  color: rgba(18, 21, 26, 0.72);
}

.site-header.logo-on-light .header-actions > a,
.site-header.logo-on-light .menu-button {
  border-color: rgba(18, 21, 26, 0.38);
}

.site-header.logo-on-light .menu-button span {
  background: #171a20;
}

.brand,
.header-actions,
.nav-links {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.brand {
  position: relative;
  width: 220px;
  height: 58px;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.brand-logo-light {
  opacity: 1;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.logo-on-light .brand-logo-light {
  opacity: 0;
}

.site-header.logo-on-light .brand-logo-dark {
  opacity: 1;
}

.quick-links {
  position: absolute;
  top: 9px;
  right: 46px;
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent) 0 48%, #fff 48% 58%, #1b1f25 58%);
}

.nav-links {
  justify-self: start;
  justify-content: flex-start;
  gap: 8px;
  margin-left: 26px;
  font-size: 15px;
}

.nav-item {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.nav-item > a {
  height: 80px;
  display: inline-flex;
  align-items: center;
}

.mega-menu {
  position: fixed;
  z-index: 1200;
  top: 80px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 54px;
  padding: 42px 72px 48px;
  color: #16191f;
  background: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-item:hover > a,
.nav-item:focus-within > a {
  color: var(--accent);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.mega-side {
  padding-right: 36px;
  border-right: 1px solid var(--line);
}

.mega-side strong {
  display: block;
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.1;
}

.mega-side span {
  color: var(--muted);
  line-height: 1.7;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 34px;
}

.compact-menu .mega-columns {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.about-mega-menu {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  padding: 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 20, 0.98);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

.about-menu-showcase {
  min-height: 230px;
  padding: 34px 34px 30px 72px;
  background:
    linear-gradient(135deg, rgba(175, 14, 20, 0.9), rgba(7, 10, 15, 0.9)),
    url("./assets/about-photos/company-factory-exterior-rich.jpg") center/cover;
}

.about-mega-menu .about-menu-showcase + .mega-columns {
  background: rgba(14, 19, 27, 0.98);
}

.about-mega-menu .mega-columns h3,
.about-mega-menu .mega-columns a {
  color: #fff;
}

.about-mega-menu .mega-columns p,
.about-mega-menu .mega-columns span {
  color: rgba(255, 255, 255, 0.72);
}

.about-menu-showcase span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.about-menu-showcase strong {
  display: block;
  max-width: 240px;
  margin-top: 24px;
  font-size: 32px;
  line-height: 1.14;
}

.about-menu-showcase p {
  max-width: 250px;
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.about-menu-showcase a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.about-menu-cards {
  min-height: 230px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-menu-cards a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 230px;
  padding: 30px 24px;
  color: #fff;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    #0b1018;
  overflow: hidden;
  transition: background 0.22s ease, transform 0.22s ease;
}

.about-menu-cards a::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.about-menu-cards a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.about-menu-cards strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.about-menu-cards span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.about-menu-cards a:hover {
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.18), rgba(255, 255, 255, 0)),
    #181c24;
}

.about-menu-cards a:hover::after {
  transform: scaleX(1);
}

.about-menu-cards i {
  position: absolute;
  top: 28px;
  right: 24px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-style: normal;
  font-size: 10px;
  line-height: 1.2;
}

.mega-columns h3 {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: #0b0d10;
  font-size: 18px;
}

.mega-columns a {
  display: block;
  padding: 9px 0;
  color: #505761;
  line-height: 1.35;
}

.mega-columns a:hover {
  color: var(--accent);
}

.product-nav-item {
  position: static;
}

.product-mega-menu {
  grid-template-columns: 230px minmax(0, 780px);
  justify-content: center;
  gap: 30px;
  height: min(430px, calc(100vh - 80px));
  max-height: min(430px, calc(100vh - 80px));
  padding: 26px 70px;
  background: rgba(255, 255, 255, 0.99);
  overflow: hidden;
}

.product-mega-rail {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  min-height: 0;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.product-mega-rail > div:first-child {
  display: none;
}

.product-mega-rail strong {
  display: block;
  margin-bottom: 10px;
  color: #101216;
  font-size: 30px;
  line-height: 1.1;
}

.product-mega-rail > div:first-child span {
  color: var(--muted);
  line-height: 1.7;
}

.product-mega-tabs {
  display: grid;
  grid-template-rows: auto;
  align-content: start;
  gap: 12px;
  overflow-y: visible;
  padding-right: 6px;
}

.product-group-tabs {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.product-group-tabs button,
.product-tree-node {
  min-height: 38px;
  border: 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #28303b;
  background: transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.product-group-tabs button.active,
.product-tree-node.active {
  color: var(--accent);
  background: #f5f6f8;
}

.product-group-tabs button:hover,
.product-tree-node:hover {
  color: var(--accent);
}

.product-group-tabs button span,
.product-mega-more span {
  font-size: 18px;
  line-height: 1;
}

.product-tree {
  display: none;
  align-content: start;
  gap: 4px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
}

.product-tree-entry {
  display: grid;
  gap: 4px;
}

.product-tree-children {
  display: grid;
  gap: 4px;
}

.product-tree-node {
  width: 100%;
  min-height: 34px;
  padding-left: calc(12px + var(--tree-level, 0) * 16px);
  padding-right: 10px;
  border-radius: 8px;
  color: #374151;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.product-tree-node.is-product {
  min-height: 30px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 650;
}

.product-tree-node span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-tree-node em {
  min-width: 22px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #7b8492;
  background: #eef0f3;
  font-style: normal;
  font-size: 11px;
}

.product-tree-node.active em,
.product-tree-node:hover em {
  color: #fff;
  background: var(--accent);
}

.product-mega-more {
  min-height: 40px;
  border: 1px solid rgba(28, 34, 44, 0.42);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #202631;
  font-size: 14px;
  font-weight: 800;
}

.product-mega-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 18px 24px;
  align-content: start;
  overflow-y: auto;
  min-height: 0;
  padding: 0 12px 22px 0;
}

.product-mega-empty {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  place-items: center;
  color: #6f7682;
  font-size: 18px;
  font-weight: 800;
  background: #f5f6f8;
}

.product-mega-empty.is-tree-empty {
  min-height: 120px;
  font-size: 13px;
}

.product-mega-card {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.product-mega-card img {
  width: 100%;
  aspect-ratio: 1.68;
  object-fit: contain;
  padding: 10px;
  background: #f5f6f8;
}

.product-mega-card strong {
  color: #151922;
  font-size: 15px;
  line-height: 1.2;
}

.product-mega-card span {
  color: #6f7784;
  font-size: 12px;
  line-height: 1.5;
}

.product-mega-card:hover strong {
  color: var(--accent);
}

.header-actions {
  justify-self: end;
  justify-content: flex-end;
  gap: 20px;
  font-size: 14px;
  white-space: nowrap;
}

.header-utility {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  margin-left: auto;
}

.header-icon-button,
.header-language {
  min-width: 34px;
  min-height: 34px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.header-icon-button svg,
.header-language svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-language span {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  border: 0;
  font-size: 13px;
}

.header-utility-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.54);
}

.site-header.logo-on-light .header-utility-divider {
  background: rgba(18, 21, 26, 0.35);
}

.header-icon-button:hover,
.header-icon-button:focus-visible,
.header-language:hover,
.header-language:focus-visible {
  color: var(--accent);
  outline: none;
}

.plain-action {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.icon-action {
  width: 38px;
  height: 38px;
  border: 0;
  display: inline-grid;
  place-items: center;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.language-action {
  position: relative;
}

.language-action svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-action span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.header-language span {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  border: 0;
  font-size: 13px;
}

.language-action:hover,
.language-action:focus-visible {
  color: var(--accent);
  outline: none;
}

.header-actions > a:not(.header-icon-button) {
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: 10px 18px;
  white-space: nowrap;
}

.header-actions > .header-cta-pill {
  min-width: 130px;
  border: 0;
  border-radius: 999px;
  height: 34px;
  padding: 0 24px;
  color: #3f1515;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  text-align: center;
  font-weight: 900;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header.logo-on-light .header-actions > .header-cta-pill {
  color: #fff;
  background: #151922;
}

.site-header:not(.logo-on-light) .header-actions > .header-cta-pill,
.site-header:not(.logo-on-light) .header-actions > .header-cta-pill span {
  color: #151922;
}

.header-cta-ticker {
  display: grid;
  animation: ctaTicker 4.8s ease-in-out infinite;
}

.header-cta-ticker span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  line-height: 34px;
  white-space: nowrap;
}

@keyframes ctaTicker {
  0%,
  36% {
    transform: translateY(0);
  }

  46%,
  82% {
    transform: translateY(-34px);
  }

  92%,
  100% {
    transform: translateY(-68px);
  }
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  color: #fff;
  overflow: hidden;
  background: #090b0e;
  touch-action: pan-y;
}

.hero.theme-light {
  background: #f7f8fa;
}

.hero.theme-poster-dark {
  background: #090b0e;
}

.hero.hero-poster-mode {
  --hero-news-height: clamp(170px, 8.2vw, 188px);
  --hero-news-overlap: calc(var(--hero-news-height) * 0.5);
  --hero-news-bottom: calc(var(--hero-news-overlap) * -1);
  margin-top: 0;
  width: 100vw;
  height: clamp(720px, 82svh, 930px);
  min-height: 720px;
  margin-bottom: calc(var(--hero-news-height) - var(--hero-news-overlap));
  overflow: visible;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.75s ease, transform 4.8s ease;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide picture,
.hero-slide img,
.feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide picture {
  display: block;
}

.hero-poster-mode .hero-slide picture {
  top: 0;
  height: 100%;
}

.hero-slide img,
.feature-bg {
  object-fit: cover;
}

.hero-slide-poster::before {
  content: "";
  position: absolute;
  inset: -22px;
  background-image: var(--poster-bg);
  background-position: center center;
  background-size: cover;
  filter: blur(10px) saturate(1.04);
  opacity: 0.34;
  transform: scale(1.04);
}

.hero-slide-poster img {
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

.hero-copy-hidden .hero-poster-copy {
  display: none;
}

.hero-poster-light img {
  background: transparent;
}

.hero-poster-dark img {
  background: transparent;
}

.hero-poster-light .hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.56) 35%, rgba(255, 255, 255, 0.12) 62%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 24%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18), transparent 30%);
}

.hero-poster-dark .hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 5, 8, 0.78), rgba(4, 5, 8, 0.42) 36%, rgba(4, 5, 8, 0.12) 62%, transparent),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 24%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 30%);
}

.hero-poster-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.hero-poster-copy {
  position: absolute;
  z-index: 6;
  top: clamp(150px, 20svh, 260px);
  left: clamp(72px, 10vw, 184px);
  width: min(590px, 42vw);
  pointer-events: none;
}

.hero-poster-copy.centered-copy {
  left: 50%;
  width: min(1120px, 76vw);
  text-align: center;
  transform: translateX(-50%);
}

.hero-poster-copy p {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-poster-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(46px, 4.2vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-poster-copy span {
  display: block;
  max-width: 540px;
  margin-bottom: 28px;
  font-size: 19px;
  line-height: 1.72;
}

.hero-poster-copy.centered-copy span {
  margin-left: auto;
  margin-right: auto;
}

.hero-poster-copy a {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 25px;
  border-radius: 999px;
  color: #fff;
  background: #11141a;
  font-weight: 900;
}

.hero-poster-copy.copy-light {
  color: #fff;
}

.hero-poster-copy.copy-light span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-poster-copy.copy-light a {
  color: #161616;
  background: #fff;
}

.hero-poster-copy.copy-dark {
  color: #14181f;
}

.hero-poster-copy.copy-dark span {
  color: rgba(20, 24, 31, 0.72);
}

.hero.hero-poster-mode .hero-news {
  position: absolute;
  z-index: 10;
  left: 50%;
  right: auto;
  bottom: var(--hero-news-bottom);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(1600px, calc(100% - 420px));
  min-height: var(--hero-news-height);
  padding: 0 22px;
  color: #1c222b;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 24, 32, 0.08);
  border-radius: 10px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
}

.hero-news-column {
  min-width: 0;
  height: var(--hero-news-height);
  overflow: hidden;
  border-left: 1px solid rgba(18, 24, 32, 0.1);
}

.hero-news-column:first-child {
  border-left: 0;
}

.hero-news-track {
  display: grid;
  transition: transform 0.46s ease;
  will-change: transform;
}

.hero.hero-poster-mode .hero-news a {
  display: grid;
  align-content: center;
  height: var(--hero-news-height);
  padding: 0 40px;
  color: #1c222b;
  text-align: center;
  line-height: 1.45;
}

.hero.hero-poster-mode .hero-news strong {
  display: block;
  font-size: 27px;
  line-height: 1.35;
}

.hero.hero-poster-mode .hero-news span {
  display: block;
  margin-top: 12px;
  color: #747b86;
  font-size: 18px;
  line-height: 1.35;
}

.hero-immersion-bar {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: calc(var(--hero-news-bottom) + var(--hero-news-height) + 88px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, calc(100% - 144px));
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 11, 16, 0.72);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hero-immersion-bar a {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 22px 28px 22px 74px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.hero-immersion-bar a:first-child {
  border-left: 0;
}

.hero-immersion-bar a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.hero-immersion-bar a:hover::after,
.hero-immersion-bar a:focus-visible::after {
  transform: scaleX(1);
}

.hero-immersion-bar span {
  position: absolute;
  left: 24px;
  top: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.hero-immersion-bar strong {
  display: block;
  font-size: 23px;
  line-height: 1.25;
}

.hero-immersion-bar em {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  font-size: 14px;
  line-height: 1.45;
}

.hero.hero-poster-mode .hero-dots {
  bottom: calc(var(--hero-news-bottom) + var(--hero-news-height) + 32px);
}

.hero.theme-light .hero-dots button {
  background: rgba(20, 24, 30, 0.24);
}

.hero.theme-light .hero-dots .active {
  background: var(--accent);
}

.hero.theme-light .hero-arrow {
  color: rgba(20, 24, 30, 0.62);
  background: rgba(255, 255, 255, 0.42);
}

.hero.theme-light .hero-arrow:hover {
  color: #12151a;
  background: rgba(255, 255, 255, 0.72);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--shade-left), var(--shade-mid) 54%, var(--shade-right)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent 44%);
  transition: background 0.5s ease;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 32vh 0 0 10vw;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 6.7vw, 96px);
  line-height: 1.02;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.75;
}

.primary-link,
.secondary-link,
.text-link,
.quote button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  font-weight: 700;
}

.hero-more {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.primary-link,
.quote button {
  color: #fff;
  background: var(--accent);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 54px;
  height: 74px;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.22);
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

.hero-arrow.prev {
  left: 34px;
}

.hero-arrow.next {
  right: 34px;
}

.hero-dots {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 38px;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 38px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--accent);
}

.hero-news {
  position: absolute;
  z-index: 4;
  left: 8vw;
  right: 8vw;
  bottom: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.hero-news a {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.showroom {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: end;
  background: #eef0f2;
}

.showroom h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.showroom p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.showroom-grid a {
  min-height: 138px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.9), rgba(18, 21, 26, 0.88)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 24px 24px;
  font-size: 20px;
  font-weight: 800;
}

.product-strip button {
  min-height: 82px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #22262c;
  font-size: 16px;
  cursor: pointer;
}

.product-strip .active {
  color: #fff;
  background: var(--accent);
}

.hot-products {
  padding-top: 0;
  padding-bottom: 74px;
  background: #fff;
}

.hot-product-tabs {
  width: min(980px, 100%);
  display: flex;
  justify-content: center;
  gap: 42px;
  margin: 0 auto 34px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.hot-product-tabs button {
  position: relative;
  min-height: 50px;
  border: 0;
  padding: 0 0 12px;
  color: #7a8089;
  background: transparent;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.hot-product-tabs button.active {
  color: #101216;
}

.hot-product-tabs button:hover,
.hot-product-tabs button:focus-visible {
  color: #101216;
}

.hot-product-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--accent);
}

.hot-product-stage {
  width: min(1280px, calc(100% - 176px));
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  margin: 0 auto;
}

.hot-product-feature {
  --hot-feature-bg: url("./assets/hot/hot-bg-carbon.png");
  position: relative;
  isolation: isolate;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.1), rgba(5, 8, 13, 0.76)),
    var(--hot-feature-bg),
    #070a0f;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hot-product-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(315deg, rgba(215, 25, 32, 0.16), transparent 48%);
  pointer-events: none;
}

.hot-product-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.04), rgba(8, 12, 18, 0.66)),
    linear-gradient(135deg, rgba(215, 25, 32, 0.2), transparent 58%);
  pointer-events: none;
}

.hot-product-feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.04);
  display: none;
}

.hot-product-feature-copy,
.hot-product-feature .hot-product-controls,
.hot-product-feature > a {
  position: relative;
  z-index: 1;
}

.hot-product-feature-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hot-product-feature strong {
  display: block;
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.15;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hot-product-feature p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.hot-product-feature a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hot-product-controls {
  display: flex;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 24px;
}

.hot-product-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.hot-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 22px;
}

.hot-product-grid a {
  min-height: 380px;
  display: grid;
  grid-template-rows: minmax(215px, 1fr) auto auto;
  gap: 13px;
  padding: 24px 30px 28px;
  background: linear-gradient(180deg, #f7f8fa 0%, #f1f3f6 100%);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.hot-product-grid a:hover,
.hot-product-grid a:focus-visible {
  background: #f0f2f5;
  box-shadow: 0 12px 28px rgba(16, 18, 22, 0.08);
  transform: translateY(-2px);
}

.hot-product-grid img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(1.02);
}

.hot-product-grid strong {
  color: #151922;
  font-size: 25px;
  line-height: 1.2;
}

.hot-product-grid span {
  color: #6f7784;
  font-size: 16px;
  line-height: 1.5;
}

.hot-product-grid a:hover strong {
  color: var(--accent);
}

.hot-product-grid.is-entering a {
  animation: hotProductEnter 0.42s ease both;
}

.hot-product-grid.is-entering a:nth-child(2) {
  animation-delay: 0.04s;
}

.hot-product-grid.is-entering a:nth-child(3) {
  animation-delay: 0.08s;
}

.hot-product-grid.is-entering a:nth-child(4) {
  animation-delay: 0.12s;
}

@keyframes hotProductEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.real-products {
  background: #fff;
}

.real-products .section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.real-product-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(210px, 1fr));
  gap: 16px;
}

.real-product-rail article {
  min-height: 360px;
  display: grid;
  grid-template-rows: 230px auto auto;
  gap: 10px;
  padding: 20px;
  background:
    linear-gradient(180deg, #f7f8fa, #fff 58%),
    linear-gradient(90deg, rgba(215, 25, 32, 0.08), transparent);
  border: 1px solid var(--line);
}

.real-product-rail img {
  width: 100%;
  height: 230px;
  object-fit: contain;
}

.real-product-rail strong {
  color: #101114;
  font-size: 20px;
  line-height: 1.25;
}

.real-product-rail span {
  color: var(--muted);
  line-height: 1.55;
}

section {
  padding: 92px 72px;
}

.section-dark {
  color: #fff;
  background: #101216;
}

.feature-product {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 0;
}

.feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-bg.product-cutout {
  inset: auto 6vw 0 auto;
  width: min(50vw, 620px);
  height: 86%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.45));
}

.feature-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 48%, rgba(215, 25, 32, 0.28), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 56%, rgba(0, 0, 0, 0.52)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 48%);
}

.feature-product .section-text {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 0 0 120px 10vw;
}

.feature-product .section-text h2 {
  color: #fff;
}

.series-list {
  position: absolute;
  z-index: 3;
  right: 7vw;
  bottom: 80px;
  display: flex;
  gap: 18px;
}

.series-list a {
  min-width: 170px;
  padding: 22px 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 800;
}

.section-text h2,
.section-heading h2,
.case-copy h2,
.service h2,
.quote h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.section-text p,
.section-heading p,
.case-copy p,
.service p,
.quote p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  margin-top: 18px;
  padding-left: 0;
  color: var(--accent);
}

.machine-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(180deg, #1a1e25, #0b0c0f);
}

.machine-line {
  position: absolute;
  inset: 54px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.machine-body {
  position: absolute;
  left: 12%;
  top: 30%;
  width: 58%;
  height: 34%;
  border: 2px solid rgba(255, 255, 255, 0.36);
  background: linear-gradient(135deg, #d8dde2, #767e89 52%, #171a20 52%);
}

.machine-belt {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 22%;
  height: 42px;
  background: linear-gradient(180deg, #252b33, #07080a);
  border-top: 3px solid #b9c0c8;
}

.machine-pack {
  position: absolute;
  bottom: 27%;
  width: 62px;
  height: 36px;
  background: #f0f2f3;
  box-shadow: inset 0 -7px 0 #c7cdd3;
}

.pack-one {
  left: 34%;
}

.pack-two {
  left: 72%;
}

.solutions {
  background: #fff;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 46px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.centered p {
  margin-right: auto;
  margin-left: auto;
}

.section-heading p {
  max-width: 620px;
}

.solution-grid,
.tech-grid,
.case-list,
.service-stats {
  display: grid;
  gap: 18px;
}

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

.solution-grid article,
.case-list article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #f7f8f9;
}

.solution-grid article a,
.case-list article a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 800;
}

.solution-grid span {
  color: var(--accent);
  font-weight: 800;
}

.solution-grid h3 {
  margin: 58px 0 16px;
  font-size: 24px;
}

.solution-grid p,
.case-list span {
  color: var(--muted);
  line-height: 1.7;
}

.technology {
  min-height: 520px;
  padding: 92px 0 110px;
  overflow: hidden;
}

.tech-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tech-grid div {
  min-height: 112px;
  display: flex;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  font-size: 22px;
  font-weight: 700;
}

.tech-ribbon {
  display: flex;
  gap: 18px;
  width: max-content;
  margin-top: 80px;
  padding-left: 72px;
  animation: techMove 28s linear infinite;
}

.tech-ribbon a {
  min-width: 210px;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 20px;
  font-weight: 800;
}

@keyframes techMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-40%);
  }
}

.cases {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  background: #f4f5f6;
}

.clients {
  background: #fff;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(250, 251, 252, 0.9), rgba(255, 255, 255, 0)),
    #fff;
}

.client-grid span {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #7a8088;
  font-weight: 900;
  letter-spacing: 0;
}

.client-grid .client-logo {
  position: relative;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  padding: 22px 14px;
  color: #111827;
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.client-grid .client-logo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(15, 17, 20, 0.06);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.client-grid .client-logo i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--client-accent), #fff 20%), var(--client-accent));
  box-shadow: 0 10px 24px color-mix(in srgb, var(--client-accent), transparent 78%);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.client-grid .client-logo strong {
  display: block;
  color: #1d2430;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.client-grid .client-logo em {
  color: #7a8088;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}

.client-grid .client-logo:hover {
  z-index: 1;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 17, 20, 0.1);
  transform: translateY(-2px);
}

.client-grid .client-logo:hover::before {
  opacity: 1;
}

.solution-showcase {
  padding-top: 98px;
  padding-bottom: 96px;
  background: #f3f4f6;
}

.solution-showcase .solution-grid {
  width: min(1120px, 100%);
  grid-template-columns: repeat(6, minmax(132px, 1fr));
  gap: 16px;
  margin: 0 auto 28px;
}

.solution-showcase .solution-grid a {
  position: relative;
  overflow: hidden;
  min-height: 158px;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 20px 12px;
  color: #141820;
  background: #fff;
  border: 1px solid rgba(18, 24, 32, 0.06);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(20, 28, 38, 0.04);
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.solution-showcase .solution-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(20, 28, 38, 0.1);
}

.solution-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.24s ease, transform 0.36s ease;
}

.solution-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.58));
}

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

.solution-showcase .solution-grid a:hover .solution-photo,
.solution-showcase .solution-grid a:focus-visible .solution-photo {
  opacity: 1;
  transform: scale(1);
}

.solution-showcase .solution-grid a:hover .solution-icon,
.solution-showcase .solution-grid a:hover strong,
.solution-showcase .solution-grid a:focus-visible .solution-icon,
.solution-showcase .solution-grid a:focus-visible strong {
  position: relative;
  z-index: 1;
  color: #fff;
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #0d1118;
  font-size: 58px;
  line-height: 1;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.08));
  transition: color 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

.solution-showcase .solution-grid a:hover .solution-icon,
.solution-showcase .solution-grid a:focus-visible .solution-icon {
  transform: scale(1.12);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.solution-showcase .solution-grid strong {
  font-size: 17px;
  line-height: 1.35;
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  color: #242932;
  font-weight: 800;
}

.case-showcase {
  display: block;
  padding-top: 96px;
  padding-bottom: 92px;
  background: #fff;
}

.case-showcase .case-list {
  width: min(1260px, 100%);
  grid-template-columns: 0.75fr 1.75fr 0.75fr;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  overflow: hidden;
}

.case-card {
  min-height: 280px;
  padding: 34px;
  background: #f5f6f8;
}

.case-card.muted {
  opacity: 0.46;
}

.case-card.featured {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  padding: 0;
  opacity: 1;
}

.case-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  padding: 34px;
  background: #eef0f2;
}

.case-card.featured div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.case-card strong {
  display: block;
  margin-bottom: 16px;
  color: #151922;
  font-size: 24px;
  line-height: 1.25;
}

.case-card p {
  color: #555f6e;
  line-height: 1.75;
}

.case-card span {
  margin-top: 26px;
  color: #7b8491;
}

.case-card a {
  margin-top: 22px;
  color: #1c222b;
  font-weight: 900;
}

.case-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.case-controls button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #9aa1aa;
  background: #f3f4f6;
  font-size: 18px;
}

.clients {
  padding-top: 56px;
  padding-bottom: 82px;
}

.logo-wall {
  width: min(760px, 100%);
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 42px;
  margin: 0 auto;
  border: 0;
}

.logo-wall span {
  min-height: 44px;
  border: 0;
  color: #6e7682;
  font-size: 20px;
  filter: grayscale(1);
}

.client-partner-wall {
  width: min(1500px, calc(100% - 96px));
  margin: 0 auto;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f6f7f8;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.client-partner-wall img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
}

.black-tech {
  min-height: auto;
  padding-top: 64px;
  padding-bottom: 96px;
  color: #101216;
  background: #fff;
}

.black-tech-grid {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 34px auto 0;
}

.black-tech-grid a {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 5px;
  background: #101216;
  box-shadow: 0 16px 34px rgba(15, 17, 20, 0.08);
}

.black-tech-grid img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  padding: 0;
  opacity: 0.96;
  filter: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.black-tech-grid a:hover img,
.black-tech-grid a:focus-visible img {
  opacity: 1;
  transform: scale(1.04);
}

.black-tech-grid strong {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 3px;
  color: #fff;
  background: rgba(8, 10, 14, 0.58);
  backdrop-filter: blur(6px);
  font-size: 16px;
}

.global-xuanteng {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0.18), rgba(3, 8, 18, 0.9)),
    linear-gradient(90deg, #070b15, #0d1730 48%, #070b15);
}

.global-xuanteng::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 11, 21, 0.28), rgba(7, 11, 21, 0.08)),
    url("./assets/packaging-line-hero.png") center bottom / cover no-repeat;
  opacity: 0.28;
  filter: grayscale(1);
}

.global-xuanteng::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -46%;
  width: 125%;
  height: 78%;
  border-radius: 50% 50% 0 0;
  border-top: 1px solid rgba(126, 183, 255, 0.45);
  background:
    linear-gradient(180deg, rgba(91, 141, 220, 0.26), rgba(11, 19, 34, 0.12) 42%, transparent 78%),
    linear-gradient(90deg, transparent 0 24%, rgba(255, 255, 255, 0.16) 24% 24.2%, transparent 24.2% 28%, rgba(255, 255, 255, 0.14) 28% 28.2%, transparent 28.2% 100%);
  transform: translateX(-50%);
}

.global-xuanteng-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}

.global-xuanteng-content h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4.2vw, 58px);
}

.global-xuanteng-content p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.8;
}

.global-xuanteng-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 38px;
}

.global-xuanteng-stats strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 34px;
}

.global-xuanteng-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.global-xuanteng-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.global-xuanteng-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f4a327;
  box-shadow: 0 0 20px rgba(244, 163, 39, 0.9);
}

.about-strip {
  width: min(1060px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: -54px auto 0;
  padding: 0 0 76px;
  background: transparent;
}

.about-tile {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border-radius: 5px;
  color: #fff;
  background: #101216;
  box-shadow: 0 20px 46px rgba(12, 18, 28, 0.14);
}

.about-tile img {
  width: 100%;
  height: 100%;
  min-height: 164px;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 0.25s ease;
}

.about-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 62%);
}

.about-tile strong {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  font-size: 20px;
}

.about-tile:hover img {
  transform: scale(1.04);
}

.product-cta {
  display: block;
  padding-top: 86px;
  padding-bottom: 86px;
  color: #101216;
  background: #f4f5f6;
  text-align: center;
}

.product-cta h2 {
  margin-bottom: 34px;
  font-size: clamp(30px, 3vw, 44px);
}

.product-cta .cta-grid {
  width: min(540px, 100%);
  margin: 0 auto;
}

.product-cta .cta-grid a {
  min-height: 132px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
  color: #161a22;
  background: transparent;
  border: 1px solid rgba(15, 17, 20, 0.72);
}

.product-cta .cta-grid span {
  font-size: 34px;
  line-height: 1;
}

.product-cta .cta-grid strong {
  font-size: 17px;
}

.product-cta .cta-grid em {
  color: #69717e;
  font-size: 13px;
  font-style: normal;
}

.global {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: #090b0d;
}

.global > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: grayscale(1);
}

.global::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 42%, rgba(215, 25, 32, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.2));
}

.global-panel {
  position: relative;
  z-index: 2;
  width: min(520px, 90vw);
  padding: 82px 0 0 72px;
}

.global-panel h2,
.learn-more h2,
.deep-cta h2 {
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.05;
}

.global-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.global-panel hr {
  margin: 36px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.global-stats strong {
  display: block;
  font-size: 38px;
}

.global-stats span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.location-list {
  position: absolute;
  z-index: 2;
  right: 72px;
  bottom: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.location-list span {
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.support-hub {
  background: #fff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-grid a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 245, 246, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px) 0 0 / 28px 28px;
}

.support-grid span {
  color: var(--accent);
  font-weight: 900;
}

.support-grid strong {
  margin-top: 54px;
  font-size: 24px;
}

.support-grid em {
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
}

.learn-more {
  background: #f4f5f6;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.learn-grid a {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08)),
    url("./assets/packaging-line-hero.png") center / cover;
}

.learn-grid strong {
  margin-bottom: 12px;
  font-size: 24px;
}

.learn-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.deep-cta {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
  color: #fff;
  background: #0a0c0f;
}

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

.cta-grid a {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-size: 22px;
  font-weight: 800;
}

.deep-cta.product-cta {
  display: block;
  color: #101216;
  background: #f4f5f6;
  text-align: center;
}

.deep-cta.product-cta .cta-grid a {
  display: grid;
  color: #161a22;
  background: transparent;
  border-color: rgba(15, 17, 20, 0.72);
  font-size: 17px;
}

.case-list {
  grid-template-columns: 1fr;
}

.case-list article {
  min-height: 118px;
  background: #fff;
}

.case-list strong,
.case-list span {
  display: block;
}

.case-list strong {
  margin-bottom: 10px;
  font-size: 20px;
}

.case-showcase .case-card {
  min-height: 280px;
  padding: 34px;
  background: #f5f6f8;
}

.case-showcase .case-card.featured {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  padding: 0;
}

.case-showcase .case-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  padding: 34px;
  background: #eef0f2;
}

.case-showcase .case-card.featured div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.case-showcase .case-card strong {
  margin-bottom: 16px;
  color: #151922;
  font-size: 24px;
  line-height: 1.25;
}

.service {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: end;
  color: #fff;
  background: #11151a;
}

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

.service-stats div {
  padding: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.service-stats strong {
  display: block;
  margin-bottom: 10px;
  font-size: 44px;
}

.service-stats span {
  color: rgba(255, 255, 255, 0.68);
}

.quote {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  background: #fff;
}

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

.quote input {
  width: 100%;
  height: 56px;
  border: 1px solid var(--line);
  padding: 0 16px;
  font-size: 16px;
  background: #f8f9fa;
}

.quote input:nth-child(3) {
  grid-column: 1 / -1;
}

.quote button {
  grid-column: 1 / -1;
  min-height: 58px;
  border: 0;
  font-size: 17px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.5fr auto;
  gap: 24px;
  padding: 36px 72px;
  color: rgba(255, 255, 255, 0.72);
  background: #08090b;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.site-footer p {
  margin: 0;
}

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

.footer-links nav {
  display: grid;
  gap: 9px;
}

.footer-links nav strong {
  margin-bottom: 4px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.floating-tools {
  position: fixed;
  z-index: 35;
  right: 26px;
  bottom: 30px;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.floating-tools button {
  position: relative;
  width: 92px;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(10, 12, 16, 0.86);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.floating-tools button:hover {
  background: var(--accent);
}

.floating-tools [hidden] {
  display: none !important;
}

.brand-story-button {
  width: 74px !important;
  min-height: 74px !important;
  border-radius: 50%;
  color: #fff;
  background: #050506 !important;
  transform-origin: center;
  animation: brandPulse 2.6s ease-in-out infinite;
}

.brand-story-button strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 20px;
  font-style: italic;
  letter-spacing: 0;
}

.brand-story-button strong::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 22px;
  margin-left: -3px;
  background: linear-gradient(135deg, #ff4a18, #ff8a00);
  transform: skew(-16deg);
  vertical-align: -5px;
}

.brand-story-ring {
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(255, 95, 32, 0.68);
  animation: ringPulse 2.6s ease-in-out infinite;
}

.service-avatar-button {
  width: 78px !important;
  min-height: 88px !important;
  border-radius: 999px 999px 18px 18px;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #151922 !important;
}

.service-avatar-face {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 38%, #151922 0 4px, transparent 4px),
    radial-gradient(circle at 65% 38%, #151922 0 4px, transparent 4px),
    radial-gradient(circle at 50% 64%, #ff6b2b 0 7px, transparent 7px),
    linear-gradient(135deg, #f6d1b3, #fff0df);
  box-shadow: inset 0 0 0 3px #fff, 0 8px 22px rgba(0, 0, 0, 0.18);
  animation: avatarFloat 2.2s ease-in-out infinite;
}

.service-avatar-button::after {
  content: "Hi";
  position: absolute;
  top: -7px;
  right: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  color: #fff;
  background: #ff4a18;
  font-size: 11px;
  line-height: 1.3;
}

.scroll-top-tool {
  width: 72px !important;
  min-height: 66px !important;
}

@keyframes brandPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.12); }
}

@keyframes avatarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.tool-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #101216;
  background: #fff;
  font-size: 20px;
  line-height: 1;
}

.floating-tools em {
  position: absolute;
  top: 8px;
  right: 10px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-style: normal;
  line-height: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 38;
  top: 96px;
  right: 122px;
  width: min(390px, calc(100vw - 34px));
  max-height: calc(100vh - 132px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.cart-drawer-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  color: #fff;
  background: #101216;
}

.cart-drawer-head strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.cart-drawer-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.cart-drawer-head button {
  width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 24px;
  cursor: pointer;
}

.cart-list {
  display: grid;
  gap: 12px;
  min-height: 120px;
  overflow-y: auto;
  padding: 16px;
}

.cart-list > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #f8f9fa;
}

.cart-item img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  background: #fff;
}

.cart-item strong,
.cart-item span,
.cart-item small {
  display: block;
}

.cart-item strong {
  color: #151922;
}

.cart-item span,
.cart-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.cart-item div div {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cart-item a,
.cart-item button {
  border: 0;
  padding: 0;
  color: var(--accent);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.cart-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.cart-drawer-actions button,
.cart-drawer-actions a {
  min-height: 46px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cart-drawer-actions button {
  color: #20252c;
  background: #e9ebee;
}

.modal-layer {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.56);
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: 38px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.modal-card h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  background: #eef0f2;
  font-size: 24px;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.modal-form input,
.modal-form textarea,
.site-search {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0 14px;
  font-size: 16px;
  background: #f8f9fa;
}

.modal-form input,
.site-search {
  height: 52px;
}

.modal-form textarea {
  min-height: 118px;
  padding-top: 14px;
  line-height: 1.6;
  resize: vertical;
}

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

.modal-form button {
  min-height: 54px;
  border: 0;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
}

.brand-story-card {
  width: min(760px, calc(100vw - 38px));
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #090b10;
}

.brand-story-card .modal-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.brand-story-slider {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 97, 32, 0.38), transparent 28%),
    linear-gradient(135deg, #12151c, #050506 52%, #39110d);
}

.brand-story-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 78px 76px 92px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.28s ease, transform 0.32s ease;
}

.brand-story-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.brand-story-slide span {
  color: #ff9b42;
  font-weight: 900;
}

.brand-story-slide h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.brand-story-slide p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.brand-story-controls {
  position: absolute;
  left: 76px;
  right: 76px;
  bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-story-controls > button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 26px;
  cursor: pointer;
}

.brand-story-controls div {
  display: flex;
  gap: 9px;
}

.brand-story-controls div button {
  width: 36px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
}

.brand-story-controls div button.active {
  background: #ff5a1f;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.search-results a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: #f4f5f6;
  font-weight: 800;
}

.search-results span {
  color: var(--accent);
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.language-grid a,
.language-grid button {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #f8f9fa;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.language-grid button.active {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff5f3;
}

.chat-window {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  background: #f4f5f6;
}

.chat-window p {
  margin: 0;
}

.solid-header {
  grid-template-columns: auto 1fr auto;
  background: rgba(22, 24, 29, 0.94);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.solid-header .nav-links {
  justify-content: flex-start;
  gap: 24px;
  margin-left: 34px;
}

.solid-header .quick-links {
  display: none;
}

.detail-page {
  background: #fff;
}

.product-catalog-page,
.product-commerce-page {
  background: #f5f6f8;
}

.product-catalog-page .deep-cta,
.product-commerce-page .detail-hero,
.product-commerce-page .deep-cta {
  display: none;
}

.product-commerce-page .detail-body {
  padding-top: 112px;
}

.product-catalog-page .detail-hero {
  display: block;
  min-height: 430px;
}

.product-catalog-page .detail-hero-content {
  padding-top: 158px;
  padding-bottom: 70px;
}

.product-catalog-page .detail-body {
  padding-top: 48px;
}

.product-commerce-page .site-header {
  color: #171a20;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.16) 62%, transparent);
}

.product-commerce-page .site-header .brand-logo-light {
  opacity: 0;
}

.product-commerce-page .site-header .brand-logo-dark {
  opacity: 1;
}

.customer-page .solid-header {
  color: #fff;
  background: rgba(8, 10, 13, 0.92);
}

.detail-hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  overflow: hidden;
}

.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.18));
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 190px 0 90px 72px;
}

.detail-hero-content p:first-child {
  color: rgba(255, 255, 255, 0.66);
}

.detail-hero-content h1 {
  max-width: 760px;
}

.detail-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.detail-actions a,
.detail-actions button {
  min-width: 128px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.detail-actions button {
  border-color: var(--accent);
  background: var(--accent);
}

.detail-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 54px;
  background: #fff;
}

.product-catalog-page .detail-body,
.product-commerce-page .detail-body {
  display: block;
  padding-left: 0;
  padding-right: 0;
  background: #f5f6f8;
}

.product-catalog-page .detail-side,
.product-commerce-page .detail-side,
.product-catalog-page .detail-intro,
.product-commerce-page .detail-intro,
.product-catalog-page .detail-specs,
.product-commerce-page .detail-specs {
  display: none;
}

.detail-side {
  position: sticky;
  top: 108px;
  align-self: start;
}

.detail-side strong {
  display: block;
  margin-bottom: 18px;
  font-size: 28px;
}

.detail-side a,
.detail-side button {
  display: block;
  width: 100%;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #5d636b;
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.detail-side a.active,
.detail-side button:hover {
  color: var(--accent);
  font-weight: 900;
}

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

.detail-intro h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.detail-intro p {
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.detail-content-stack {
  display: grid;
  gap: 28px;
  margin-top: 42px;
}

.detail-rich-copy {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  background: #fff;
}

.detail-rich-copy h3 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3vw, 42px);
}

.detail-rich-copy p {
  max-width: 980px;
  margin: 0;
  color: #3b4250;
  font-size: 17px;
  line-height: 2;
}

.detail-rich-copy p + p {
  margin-top: 18px;
}

.detail-culture-list {
  display: grid;
  gap: 16px;
}

.detail-culture-list article {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  background: #fff;
}

.detail-culture-list span {
  color: var(--accent);
  font-weight: 900;
}

.detail-culture-list h3 {
  margin: 12px 0;
  font-size: clamp(24px, 2.5vw, 34px);
}

.detail-culture-list p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.9;
}

.detail-section-title {
  max-width: 760px;
  margin-bottom: 24px;
}

.detail-section-title span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.detail-section-title h3 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

.detail-section-title p {
  margin: 12px 0 0;
  color: #5b6472;
  font-size: 16px;
  line-height: 1.8;
}

.detail-factory-gallery,
.detail-contact-panel,
.detail-map-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: #fff;
}

.detail-vr-panel {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 122, 45, 0.22), transparent 30%),
    linear-gradient(135deg, #101318, #24272e 52%, #111318);
  box-shadow: 0 24px 56px rgba(15, 18, 24, 0.18);
}

.detail-vr-panel .detail-section-title span,
.detail-vr-panel .detail-section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.detail-vr-panel .detail-section-title h3 {
  color: #fff;
}

.vr-embed-shell {
  position: relative;
  min-height: clamp(360px, 48vw, 640px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050608;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.vr-embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050608;
}

.vr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vr-actions a {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  font-weight: 900;
}

.vr-actions a:first-child {
  color: #141820;
  background: #fff;
}

.immersive-detail-page {
  background: #0e1116;
}

.immersive-detail-page .detail-hero {
  min-height: clamp(620px, 76vh, 820px);
  background: #06080c;
}

.immersive-detail-page .detail-hero img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.04);
}

.detail-section-about .detail-mask {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.86), rgba(5, 7, 10, 0.34) 56%, rgba(5, 7, 10, 0.72)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.78));
}

.detail-section-showroom .detail-mask {
  background:
    linear-gradient(90deg, rgba(4, 11, 24, 0.9), rgba(4, 11, 24, 0.25) 58%, rgba(4, 11, 24, 0.8)),
    linear-gradient(180deg, rgba(8, 27, 52, 0.18), rgba(0, 0, 0, 0.84));
}

.immersive-detail-page .detail-hero-content {
  max-width: 940px;
  padding-top: clamp(180px, 22vh, 240px);
}

.immersive-detail-page .detail-hero-content h1 {
  max-width: 900px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
}

.immersive-detail-page .detail-hero-content p {
  max-width: 680px;
}

.immersive-detail-page .detail-body {
  align-items: start;
  background: linear-gradient(180deg, #f7f8fa, #eef1f5);
}

.about-immersive {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(22px, 4vw, 54px);
  color: #fff;
  background: #11151c;
}

.about-immersive-visual {
  position: relative;
  min-height: clamp(360px, 40vw, 540px);
  overflow: hidden;
  background: #080a0e;
}

.about-immersive-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.about-visual-glass {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  background: rgba(14, 17, 22, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.about-visual-glass span {
  display: block;
  color: var(--accent);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.about-visual-glass strong {
  display: block;
  margin-top: 12px;
  font-size: 26px;
}

.about-visual-glass p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.about-immersive-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.about-immersive-copy > span,
.showroom-experience-head > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.about-immersive-copy h3,
.showroom-experience-head h3 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.04;
}

.about-immersive-copy p,
.showroom-experience-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.9;
}

.about-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.about-metric-grid div {
  min-height: 118px;
  padding: 18px 14px;
  border-top: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.about-metric-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.about-metric-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.about-switch-track {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-switch-track a {
  min-height: 96px;
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

.about-switch-track a:last-child {
  border-right: 0;
}

.about-switch-track span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
  font-weight: 900;
}

.about-switch-track strong {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.about-switch-track a.active {
  background: var(--accent);
  color: #fff;
}

.about-switch-track a.active span,
.about-switch-track a.active strong {
  color: #fff;
}

.showroom-experience {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 54px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 24, 48, 0.96), rgba(11, 13, 18, 0.98)),
    #0b0f16;
}

.showroom-display {
  position: relative;
  min-height: clamp(420px, 54vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #05070a;
}

.showroom-display iframe,
.showroom-display img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.showroom-display img {
  object-fit: cover;
}

.showroom-display-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 20px;
  background: rgba(8, 11, 16, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.showroom-display-overlay strong,
.showroom-display-overlay span {
  display: block;
}

.showroom-display-overlay strong {
  font-size: 26px;
}

.showroom-display-overlay span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

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

.showroom-route-grid a {
  min-height: 146px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.showroom-route-grid a.active {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.13);
}

.showroom-route-grid span,
.showroom-route-grid strong,
.showroom-route-grid em {
  display: block;
}

.showroom-route-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.showroom-route-grid strong {
  margin-top: 10px;
  font-size: 20px;
}

.showroom-route-grid em {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
}

.showroom-point-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.showroom-point-grid div {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.showroom-point-grid strong {
  display: block;
  font-size: 18px;
}

.showroom-point-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.showroom-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 900;
}

.showroom-actions a:first-child {
  background: #fff;
  color: #11151d;
}

.brand-detail-special,
.vr-detail-special {
  background: #fff;
}

.brand-detail-special .site-header.solid-header {
  color: #16191f;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.brand-detail-special .site-header.solid-header .brand-logo-light {
  opacity: 0;
}

.brand-detail-special .site-header.solid-header .brand-logo-dark {
  opacity: 1;
}

.brand-detail-special .solid-header .nav-links a.active {
  color: #111318;
}

.brand-detail-special .site-header.solid-header .header-cta-pill {
  color: #fff;
  background: #22252a;
}

.brand-detail-special .site-header.solid-header .header-icon-button,
.brand-detail-special .site-header.solid-header .header-language {
  color: #16191f;
}

.vr-detail-special .site-header.solid-header {
  background: rgba(6, 9, 14, 0.42);
  box-shadow: none;
}

.special-subnav {
  position: sticky;
  z-index: 920;
  top: 80px;
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(28px, 8vw, 120px);
  color: #fff;
  background: #050505;
}

.special-subnav div,
.special-subnav nav {
  display: flex;
  align-items: center;
}

.special-subnav div {
  gap: 18px;
}

.special-subnav strong {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 900;
}

.special-subnav-back {
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.special-subnav nav {
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 46px);
}

.special-subnav nav a {
  position: relative;
  min-height: 78px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.special-subnav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.special-subnav nav a.active,
.special-subnav nav a:hover {
  color: #fff;
}

.special-subnav nav a.active::after,
.special-subnav nav a:hover::after {
  transform: scaleX(1);
}

.special-page-shell {
  animation: specialPageReveal 0.65s cubic-bezier(0.2, 0.75, 0.24, 1) both;
}

@keyframes specialPageReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.special-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 80px));
  overflow: hidden;
  color: #fff;
  background: #0b111a;
}

.special-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--special-hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.05);
}

.special-hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.72), rgba(5, 8, 13, 0.2) 54%, rgba(5, 8, 13, 0.64)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.special-hero-company .special-hero-mask {
  background:
    linear-gradient(90deg, rgba(10, 22, 38, 0.78), rgba(10, 22, 38, 0.2) 52%, rgba(10, 22, 38, 0.62)),
    linear-gradient(180deg, rgba(18, 30, 48, 0.18), rgba(6, 8, 12, 0.72));
}

.special-hero-culture .special-hero-mask {
  background:
    radial-gradient(circle at 58% 24%, rgba(64, 133, 196, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(8, 18, 30, 0.28), rgba(5, 8, 14, 0.78));
}

.special-hero-factory .special-hero-mask,
.special-hero-recruit .special-hero-mask {
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.66), rgba(5, 7, 12, 0.18) 48%, rgba(5, 7, 12, 0.58)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
}

.special-hero-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(130px, 18vh, 190px) 24px 110px;
}

.special-hero-content span {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 900;
}

.special-hero-content h1 {
  margin: 20px 0 22px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
}

.special-hero-content p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.8;
}

.brand-play-button,
.recruit-hero-actions a,
.vr-landing-copy a,
.special-action-band a {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.brand-metric-band {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 56px));
  min-height: 136px;
  margin: -68px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(12, 18, 28, 0.16);
  backdrop-filter: blur(16px);
}

.brand-metric-band div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.brand-metric-band div:last-child {
  border-right: 0;
}

.brand-metric-band strong {
  color: #11151d;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}

.brand-metric-band span {
  color: #667085;
  font-weight: 800;
  text-align: center;
}

.brand-story-section,
.brand-spec-wall,
.culture-cinema,
.culture-block-grid,
.factory-process,
.recruit-grid,
.detail-contact-panel,
.detail-map-card {
  width: min(1280px, calc(100% - 56px));
  margin: clamp(70px, 8vw, 120px) auto 0;
}

.brand-story-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
}

.brand-story-heading span,
.culture-cinema span,
.special-section-heading span,
.brand-news-feature span,
.brand-news-grid span,
.recruit-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.brand-story-heading h2,
.brand-spec-wall h2,
.culture-cinema h2,
.special-section-heading h2 {
  margin: 12px 0 0;
  color: #11151d;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
}

.brand-story-copy {
  display: grid;
  gap: 20px;
}

.brand-story-copy p {
  margin: 0;
  color: #3f4652;
  font-size: 18px;
  line-height: 2;
}

.brand-capability-strip,
.culture-block-grid,
.factory-process,
.recruit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.brand-capability-strip {
  width: min(1280px, calc(100% - 56px));
  margin: clamp(54px, 7vw, 90px) auto 0;
}

.brand-capability-strip article,
.culture-block-grid article,
.factory-process article,
.recruit-grid article {
  min-height: 260px;
  padding: 28px;
  background: #f5f7fa;
  border: 1px solid #e6e9ee;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.brand-capability-strip article:hover,
.culture-block-grid article:hover,
.factory-process article:hover,
.recruit-grid article:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 22px 56px rgba(20, 28, 40, 0.12);
}

.brand-capability-strip span,
.factory-process span {
  color: #aeb5c0;
  font-size: 14px;
  font-weight: 900;
}

.brand-capability-strip h3,
.culture-block-grid h3,
.factory-process h3,
.recruit-grid h3 {
  margin: 18px 0 12px;
  color: #11151d;
  font-size: 24px;
  line-height: 1.25;
}

.brand-capability-strip p,
.culture-block-grid p,
.factory-process p,
.recruit-grid p {
  margin: 0;
  color: #667085;
  line-height: 1.8;
}

.brand-spec-wall {
  padding: clamp(32px, 5vw, 62px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 122, 45, 0.28), transparent 30%),
    linear-gradient(135deg, #11151d, #242934);
}

.brand-spec-wall h2 {
  color: #fff;
}

.brand-spec-wall dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
}

.brand-spec-wall div {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-spec-wall dt {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 900;
}

.brand-spec-wall dd {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.culture-cinema {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.48fr);
  align-items: center;
  gap: 42px;
  padding: clamp(34px, 6vw, 82px);
  color: #fff;
  background:
    radial-gradient(circle at 74% 50%, rgba(28, 103, 184, 0.42), transparent 28%),
    linear-gradient(135deg, #08101e, #13243a 58%, #070b12);
}

.culture-cinema h2,
.culture-cinema p {
  color: #fff;
}

.culture-cinema p {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.9;
}

.culture-orbit {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 58%);
}

.culture-orbit i {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite;
}

.culture-orbit i:nth-child(2) {
  inset: 28%;
  animation-duration: 8s;
  transform: rotate(54deg);
}

.culture-orbit i:nth-child(3) {
  inset: 42%;
  background: var(--accent);
  box-shadow: 0 0 60px rgba(255, 122, 45, 0.6);
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.culture-block-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.culture-special-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.culture-special-values div {
  padding: 16px;
  background: #fff;
}

.culture-special-values strong,
.culture-special-values em {
  display: block;
}

.culture-special-values em {
  margin-top: 8px;
  color: #667085;
  font-style: normal;
  line-height: 1.7;
}

.factory-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-news-page {
  padding: clamp(110px, 10vw, 150px) clamp(24px, 8vw, 120px) clamp(80px, 8vw, 120px);
  background: #f3f4f6;
}

.brand-news-heading {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 0.45fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 26px;
  width: min(1280px, 100%);
  margin: 0 auto 52px;
}

.brand-news-heading h1 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 68px);
}

.brand-news-heading label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  color: #11151d;
  font-weight: 900;
}

.brand-news-heading select {
  min-height: 54px;
  border: 1px solid #e2e6ec;
  padding: 0 18px;
  background: #fff;
  color: #7a828f;
  font-weight: 800;
}

.brand-news-heading nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.brand-news-heading nav a {
  color: #8a92a0;
  font-size: 20px;
  font-weight: 900;
}

.brand-news-heading nav a.active {
  color: #11151d;
}

.brand-news-feature {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.75fr);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.brand-news-feature img,
.brand-news-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-news-feature > div {
  min-height: 520px;
  padding: clamp(34px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-news-feature h2 {
  margin: 18px 0;
  color: #11151d;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.16;
}

.brand-news-feature p,
.brand-news-feature em,
.brand-news-grid p,
.brand-news-grid em {
  color: #667085;
  line-height: 1.8;
  font-style: normal;
}

.brand-news-grid {
  width: min(1280px, 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-news-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.brand-news-grid img {
  aspect-ratio: 16 / 10;
}

.brand-news-grid div {
  padding: 24px;
}

.brand-news-grid h3 {
  margin: 12px 0;
  color: #11151d;
  font-size: 22px;
}

.recruit-hero-actions {
  display: flex;
  gap: 14px;
}

.recruit-hero-actions a:first-child,
.vr-landing-copy a:first-child {
  color: #11151d;
  background: #fff;
}

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

.recruit-grid a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 900;
}

.contact-planet-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 64%, rgba(34, 150, 194, 0.5), transparent 28%),
    radial-gradient(circle at 50% 82%, #113b61, transparent 36%),
    linear-gradient(180deg, #05080f, #10141d);
}

.contact-planet-hero > div:last-child {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 0 24px;
  text-align: center;
}

.contact-planet-hero span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.contact-planet-hero h1 {
  margin: 20px 0;
  font-size: clamp(56px, 7vw, 108px);
}

.contact-planet-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.9;
}

.contact-planet {
  position: absolute;
  left: 50%;
  bottom: -32%;
  width: min(960px, 88vw);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 42% 32%, rgba(120, 210, 255, 0.8), transparent 10%),
    radial-gradient(circle at 50% 46%, #245c85, #0b1f34 54%, #03070d 70%);
  box-shadow: 0 -22px 80px rgba(69, 169, 255, 0.38);
  opacity: 0.9;
}

.special-action-band {
  margin-top: clamp(80px, 8vw, 120px);
  padding: clamp(54px, 6vw, 84px) 24px;
  text-align: center;
  background: #f1f3f6;
}

.special-action-band h2 {
  margin: 0 0 28px;
  color: #11151d;
  font-size: clamp(28px, 3vw, 42px);
}

.special-action-band div {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.special-action-band a {
  min-width: 160px;
  margin-top: 0;
  color: #11151d;
  background: #fff;
  border-color: #cfd5dd;
}

.vr-landing-hero {
  position: relative;
  min-height: min(820px, calc(100svh - 80px));
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 48% 45%, rgba(83, 142, 191, 0.42), transparent 28%),
    linear-gradient(135deg, #060a11, #172231 55%, #05070b);
}

.vr-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000, transparent 70%);
}

.vr-stage-frame {
  position: absolute;
  width: min(1060px, 78vw);
  aspect-ratio: 2.45;
  border: 10px solid rgba(216, 234, 255, 0.8);
  border-radius: 180px / 86px;
  box-shadow: 0 0 60px rgba(90, 170, 255, 0.32), inset 0 0 48px rgba(90, 170, 255, 0.28);
  transform: perspective(900px) rotateX(2deg);
}

.vr-stage-frame span {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
}

.vr-stage-frame span:nth-child(2) {
  inset: 20%;
}

.vr-stage-frame span:nth-child(3) {
  inset: 31%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.vr-host-card {
  position: absolute;
  left: clamp(90px, 15vw, 260px);
  bottom: 12%;
  width: 138px;
  height: 190px;
  border-radius: 999px 999px 28px 28px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #11151d;
  background: linear-gradient(180deg, #fff, #dce9f7);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.vr-host-card i {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #11151d;
  font-style: normal;
  font-weight: 900;
}

.vr-host-card span {
  font-weight: 900;
}

.vr-landing-copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 160px 24px 90px;
  text-align: center;
}

.vr-landing-copy > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
}

.vr-landing-copy h1 {
  margin: 22px 0;
  color: #fff;
  font-size: clamp(64px, 8vw, 118px);
  line-height: 1;
}

.vr-landing-copy p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.9;
}

.vr-landing-copy div {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.vr-product-routes,
.vr-live-section {
  width: min(1360px, calc(100% - 56px));
  margin: clamp(76px, 8vw, 120px) auto 0;
}

.special-section-heading {
  text-align: center;
}

.vr-product-routes > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.vr-product-routes a {
  min-height: 190px;
  padding: 28px;
  color: #11151d;
  background: #f5f7fa;
  border: 1px solid #e6e9ee;
}

.vr-product-routes a.active,
.vr-product-routes a:hover {
  color: #fff;
  background: #11151d;
}

.vr-product-routes span,
.vr-product-routes strong,
.vr-product-routes em {
  display: block;
}

.vr-product-routes span {
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
}

.vr-product-routes strong {
  margin-top: 14px;
  font-size: 24px;
}

.vr-product-routes em {
  margin-top: 12px;
  color: #667085;
  font-style: normal;
  line-height: 1.7;
}

.vr-product-routes a.active em,
.vr-product-routes a:hover em {
  color: rgba(255, 255, 255, 0.66);
}

.vr-live-shell {
  position: relative;
  min-height: clamp(420px, 56vw, 760px);
  margin-top: 36px;
  overflow: hidden;
  border-radius: 12px;
  background: #05070a;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.2);
}

.vr-live-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.brand-detail-special .mega-menu,
.vr-detail-special .mega-menu {
  color: #151922;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
}

.brand-detail-special .about-mega-menu,
.vr-detail-special .about-mega-menu {
  color: #fff;
  background: rgba(10, 11, 14, 0.98);
}

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

.factory-gallery-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f6f7f9;
}

.factory-gallery-grid img {
  display: block;
  width: 100%;
  height: clamp(220px, 22vw, 330px);
  object-fit: cover;
}

.factory-gallery-grid div {
  padding: 22px;
}

.factory-gallery-grid strong {
  display: block;
  color: #111827;
  font-size: 22px;
}

.factory-gallery-grid p {
  margin: 10px 0 0;
  color: #667085;
  line-height: 1.7;
}

.detail-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.detail-contact-card {
  min-height: 240px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  background:
    linear-gradient(180deg, #fff, #f8fafc),
    radial-gradient(circle at 100% 0, rgba(198, 26, 38, 0.08), transparent 32%);
}

.detail-contact-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.detail-contact-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: #111827;
}

.detail-contact-head svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-contact-head strong {
  display: block;
  color: #111827;
  font-size: 19px;
}

.detail-contact-head em,
.detail-contact-head a {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-style: normal;
  text-decoration: none;
  word-break: break-all;
}

.detail-contact-card p {
  margin: 18px 0 0;
  color: #4b5563;
  line-height: 1.75;
}

.detail-contact-qr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px;
  background: #fff;
  border: 1px dashed #c9ced6;
}

.detail-contact-qr i {
  width: 56px;
  height: 56px;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 14px, #111 14px 24px, transparent 24px 30px, #111 30px 38px, transparent 38px),
    linear-gradient(#111 8px, transparent 8px 16px, #111 16px 22px, transparent 22px 30px, #111 30px 40px, transparent 40px),
    #fff;
  border: 6px solid #fff;
  box-shadow: 0 0 0 1px #111 inset;
}

.detail-contact-qr b {
  color: #111827;
  font-size: 13px;
}

.contact-wechat .detail-contact-head > span,
.contact-whatsapp .detail-contact-head > span {
  background: #18a058;
}

.contact-telegram .detail-contact-head > span {
  background: #2388c9;
}

.contact-email .detail-contact-head > span {
  background: #c61a26;
}

.detail-map-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1fr;
  gap: 28px;
  align-items: stretch;
  background:
    linear-gradient(135deg, #f8fafc, #fff 52%, #f5f0ed);
}

.map-preview {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 29, 38, 0.94), rgba(39, 46, 57, 0.86)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.map-preview::before,
.map-preview::after,
.map-grid-line,
.map-road {
  content: "";
  position: absolute;
}

.map-preview::before {
  inset: auto -10% 22% -8%;
  height: 24px;
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(-18deg);
}

.map-preview::after {
  inset: 18% -15% auto -20%;
  height: 18px;
  background: rgba(198, 26, 38, 0.68);
  transform: rotate(26deg);
}

.map-grid-line-a {
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(12deg);
}

.map-grid-line-b {
  top: 0;
  bottom: 0;
  left: 28%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(-12deg);
}

.map-road-main {
  left: -10%;
  right: -10%;
  top: 54%;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  transform: rotate(-8deg);
}

.map-road-side {
  left: 32%;
  right: 4%;
  top: 26%;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotate(38deg);
}

.map-pin {
  position: absolute;
  left: 52%;
  top: 42%;
  width: 34px;
  height: 34px;
  background: var(--accent);
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-copy > span {
  color: var(--accent);
  font-weight: 900;
}

.map-copy h3 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
}

.map-copy p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: #111827;
  text-decoration: none;
  font-weight: 900;
}

.culture-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.culture-value-grid div {
  padding: 18px;
  background: #f7f8f9;
}

.culture-value-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.detail-card-grid div {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #f7f8f9;
}

.detail-card-grid span {
  color: var(--accent);
  font-weight: 900;
}

.detail-card-grid strong {
  display: block;
  margin: 48px 0 12px;
  font-size: 22px;
}

.detail-card-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.product-commerce-wrap {
  display: block;
}

.product-commerce-detail {
  display: grid;
  grid-template-columns: minmax(0, 760px) 420px;
  align-items: start;
  gap: 14px;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.commerce-gallery {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  background: #fff;
}

.commerce-main-image {
  order: 2;
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #f7f8fa;
  overflow: hidden;
}

.commerce-main-image img,
.commerce-main-image video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 34px;
}

.commerce-thumbs {
  order: 1;
  display: grid;
  align-content: start;
  gap: 8px;
}

.commerce-thumb {
  position: relative;
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: #f7f8f9;
  cursor: pointer;
  overflow: hidden;
}

.commerce-thumb.active,
.commerce-thumb:hover,
.commerce-thumb:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(215, 25, 32, 0.12);
}

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

.commerce-video-badge {
  position: absolute;
  z-index: 2;
  inset: auto 6px 6px auto;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 24, 39, 0.86);
  font-size: 10px;
}

.commerce-sku-section {
  display: grid;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.commerce-sku-section > strong {
  color: #111827;
  font-size: 14px;
}

.commerce-sku-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.commerce-sku-options button {
  min-width: 112px;
  border: 1px solid #d8dde5;
  padding: 9px 12px;
  color: #1f2937;
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.commerce-sku-options img {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #f8fafc;
  object-fit: contain;
}

.commerce-sku-options button.active,
.commerce-sku-options button:hover,
.commerce-sku-options button:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(215, 25, 32, 0.1);
  outline: none;
}

.commerce-sku-options span,
.commerce-sku-options em {
  display: block;
}

.commerce-sku-options span {
  font-weight: 900;
}

.commerce-sku-options em {
  margin-top: 4px;
  color: #d71920;
  font-size: 12px;
  font-style: normal;
}

.commerce-sku-section p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

.commerce-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.commerce-left-scroll {
  min-width: 0;
  overflow: visible;
}

.commerce-buy-panel {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 112px);
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}

.commerce-panel-head {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.commerce-buy-panel .commerce-info {
  padding: 18px;
  overflow-y: auto;
}

.commerce-buy-panel .commerce-actions {
  position: sticky;
  bottom: -18px;
  z-index: 2;
  margin: 14px -18px -18px;
  padding: 12px 18px 18px;
  background: #fff;
  box-shadow: 0 -12px 24px rgba(14, 18, 26, 0.08);
}

.commerce-eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 900;
}

.commerce-info h2 {
  margin: 0;
  color: #12151b;
  font-size: 18px;
  line-height: 1.45;
}

.commerce-subtitle {
  margin: 10px 0 0;
  color: #3f4650;
  font-size: 14px;
  font-weight: 800;
}

.commerce-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.commerce-price,
.commerce-inquiry-notice {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  background: #fff5f5;
}

.commerce-price span,
.commerce-inquiry-notice span {
  color: #828892;
  font-weight: 800;
}

.commerce-price strong,
.commerce-inquiry-notice strong {
  color: var(--accent);
  font-size: 30px;
}

.commerce-inquiry-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.commerce-inquiry-notice em {
  grid-column: 1 / -1;
  color: #6f7783;
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}

.commerce-spec-summary {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
}

.commerce-spec-summary div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.commerce-spec-summary dt {
  color: #7d8490;
  font-weight: 800;
}

.commerce-spec-summary dd {
  margin: 0;
  color: #252a31;
  font-size: 13px;
  line-height: 1.55;
}

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

.commerce-actions a,
.commerce-actions button {
  min-width: 142px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #15171b;
  padding: 0 16px;
  color: #15171b;
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.commerce-actions button,
.commerce-actions a:first-of-type {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.commerce-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.commerce-option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: #5f6670;
  font-size: 12px;
}

.commerce-option-row strong {
  width: 48px;
  color: #7d8490;
}

.commerce-option-row span {
  padding: 5px 8px;
  background: #f6f7f8;
}

.commerce-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  border: 1px solid var(--line);
}

.commerce-qty button,
.commerce-qty span {
  width: 38px;
  height: 34px;
  border: 0;
  display: grid;
  place-items: center;
  background: #fff;
  font: inherit;
}

.commerce-qty span {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.commerce-detail-tabs {
  position: sticky;
  top: 80px;
  z-index: 3;
  display: flex;
  gap: 24px;
  height: 48px;
  align-items: center;
  padding: 0 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.commerce-detail-tabs a.active {
  color: var(--accent);
}

.commerce-long-detail {
  margin-top: 10px;
  background: #fff;
  overflow: visible;
}

.commerce-detail-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 22px;
  background: #f6f7fa;
}

.commerce-detail-summary div {
  text-align: center;
}

.commerce-detail-summary strong {
  display: block;
  color: #101216;
  font-size: 18px;
}

.commerce-detail-summary span {
  display: block;
  margin-top: 6px;
  color: #737b86;
  font-size: 13px;
}

.commerce-detail-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 18px 22px 26px;
}

.commerce-detail-table div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.commerce-detail-table dt {
  color: #6e7580;
  font-weight: 800;
}

.commerce-detail-table dd {
  margin: 0;
  color: #222831;
}

.commerce-detail-images {
  display: grid;
  gap: 0;
  overflow: visible;
}

.commerce-detail-images img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  background: #f7f8fa;
}

@media (min-width: 981px) {
  .product-commerce-page .commerce-buy-panel {
    position: fixed;
    top: 96px;
    right: max(48px, calc((100vw - 1220px) / 2));
    width: 420px;
    max-height: calc(100vh - 112px);
  }

  .product-commerce-page .product-commerce-detail {
    min-height: calc(100vh - 112px);
  }
}

.product-catalog {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.catalog-topbar {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.catalog-topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 900;
}

.catalog-search {
  display: grid;
  grid-template-columns: 1fr 72px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
}

.catalog-search input {
  min-width: 0;
  border: 0;
  padding: 0 12px;
  font: inherit;
}

.catalog-search button {
  border: 0;
  color: #fff;
  background: #202329;
  font: inherit;
  cursor: pointer;
}

.catalog-filter-card {
  border: 1px solid var(--line);
  background: #fff;
}

.catalog-filter-row {
  display: grid;
  grid-template-columns: 110px repeat(8, minmax(74px, 1fr));
  min-height: 42px;
  border-bottom: 1px solid var(--line);
}

.catalog-filter-row:last-child {
  border-bottom: 0;
}

.catalog-filter-row strong {
  display: flex;
  align-items: center;
  padding-left: 18px;
  color: #5e6670;
  background: #f2f3f5;
}

.catalog-filter-row button {
  border: 0;
  padding: 0 10px;
  color: #27708a;
  background: transparent;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.catalog-filter-row button.active {
  color: var(--accent);
  font-weight: 900;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 12px;
  background: #fff;
}

.catalog-toolbar div {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.catalog-toolbar button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-left: 0;
  padding: 0 14px;
  background: #fff;
  color: #5f6670;
  font: inherit;
  cursor: pointer;
}

.catalog-toolbar button:first-child {
  border-left: 1px solid var(--line);
}

.catalog-toolbar button.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.catalog-toolbar p {
  margin: 0;
  color: #737b86;
}

.catalog-toolbar strong {
  color: var(--accent);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 22px;
  margin-top: 18px;
}

.catalog-product-card {
  min-width: 0;
}

.catalog-product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
}

.catalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.18s ease;
}

.catalog-product-card:hover .catalog-product-image img {
  transform: scale(1.04);
}

.catalog-thumbs {
  display: flex;
  gap: 5px;
  margin-top: 8px;
  min-height: 34px;
}

.catalog-thumbs button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.catalog-thumbs button.active {
  border-color: var(--accent);
}

.catalog-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.catalog-price {
  margin: 10px 0 4px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}

.catalog-title {
  display: block;
  color: #20252d;
  font-weight: 900;
  line-height: 1.45;
}

.catalog-desc {
  margin: 6px 0 0;
  color: #6f7784;
  font-size: 13px;
  line-height: 1.55;
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.catalog-tags span {
  padding: 4px 6px;
  color: #7a4a00;
  background: #fff5de;
  font-size: 12px;
}

.catalog-empty {
  padding: 32px;
  text-align: center;
  background: #fff;
  color: #727984;
}

.commerce-service-tags span {
  padding: 8px 12px;
  color: #4c535d;
  background: #f4f5f6;
  font-size: 13px;
  font-weight: 800;
}

.detail-specs {
  margin-top: 40px;
  padding: 34px;
  background: #101216;
  color: #fff;
}

.detail-specs dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-specs dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-specs dt {
  color: rgba(255, 255, 255, 0.62);
}

.detail-specs dd {
  margin: 0;
}

.buy-page {
  background: #f4f5f6;
}

.buy-main {
  padding-top: 0;
}

.buy-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: #0b0d10;
}

.buy-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.62)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 45%);
}

.buy-hero-products {
  position: absolute;
  z-index: 1;
  right: 5vw;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 210px));
  align-items: end;
  gap: 12px;
  width: min(48vw, 720px);
  pointer-events: none;
}

.buy-hero-products img {
  width: 100%;
  height: clamp(230px, 27vw, 390px);
  object-fit: contain;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.44));
}

.buy-hero-products img:nth-child(2) {
  height: clamp(280px, 32vw, 460px);
}

.buy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 122px 72px 90px;
}

.buy-hero h1 {
  max-width: 820px;
  font-size: clamp(46px, 5.8vw, 82px);
}

.buy-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.buy-search {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  gap: 12px;
  margin-top: 34px;
}

.buy-search input {
  min-height: 56px;
  border: 0;
  padding: 0 18px;
  font-size: 16px;
}

.buy-search a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--accent);
  font-weight: 900;
}

.buy-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.buy-hero-stats span {
  min-width: 136px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.buy-hero-stats strong {
  display: block;
  color: #fff;
  font-size: 26px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: start;
  padding: 32px 42px 72px;
}

.shop-sidebar,
.inquiry-cart {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.shop-sidebar strong,
.inquiry-cart strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.shop-sidebar button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #f8f9fa;
  color: #252a31;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.shop-sidebar button.active {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.shop-products {
  min-width: 0;
  padding: 0;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.shop-toolbar h2 {
  margin-bottom: 6px;
  font-size: 32px;
}

.shop-toolbar p {
  margin: 0;
  color: var(--muted);
}

.shop-toolbar select {
  min-width: 170px;
  height: 44px;
  border: 1px solid var(--line);
  padding: 0 12px;
  background: #f8f9fa;
}

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

.shop-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 270px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.shop-card[hidden] {
  display: none !important;
}

.shop-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  background:
    linear-gradient(180deg, #f5f6f8, #fff),
    linear-gradient(90deg, rgba(215, 25, 32, 0.06), transparent);
}

.shop-card div {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.shop-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.shop-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.shop-card p {
  color: var(--muted);
  line-height: 1.6;
}

.shop-card strong {
  margin-top: auto;
  color: #e43324;
  font-size: 24px;
}

.shop-card em {
  margin-top: 8px;
  color: #7a8088;
  font-style: normal;
  font-size: 13px;
}

.shop-card button,
.shop-card-actions a,
.inquiry-cart a,
.quote-form button {
  min-height: 46px;
  border: 0;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.shop-card-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.shop-card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #101216;
}

.shop-card-actions a:first-child {
  color: #101216;
  background: #f2f4f6;
}

.inquiry-cart {
  align-content: start;
}

.inquiry-cart p {
  color: var(--muted);
  line-height: 1.7;
}

.inquiry-list {
  display: grid;
  gap: 8px;
}

.inquiry-list > span {
  color: var(--muted);
  padding: 12px;
  background: #f8f9fa;
}

.inquiry-list button {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 12px;
  color: #20242a;
  background: #f8f9fa;
  font: inherit;
  cursor: pointer;
}

.inquiry-cart a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.quote-builder {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: start;
  scroll-margin-top: 112px;
  background:
    linear-gradient(135deg, rgba(238, 244, 248, 0.95), rgba(255, 255, 255, 0.98) 48%, rgba(244, 236, 229, 0.72)),
    #f6f8fa;
}

.quote-copy {
  position: sticky;
  top: 110px;
  align-self: start;
  min-height: 430px;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 18, 26, 0.96), rgba(24, 28, 35, 0.92)),
    radial-gradient(circle at 80% 80%, rgba(191, 19, 31, 0.36), transparent 40%);
  overflow: hidden;
}

.quote-copy::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(35deg);
}

.quote-copy h2 {
  margin: 12px 0 18px;
  color: inherit;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.quote-copy p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.8;
}

.quote-copy .eyebrow {
  color: #ff4350;
}

.quote-support-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.quote-support-list span {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.quote-support-list strong {
  color: #fff;
  font-size: 26px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(32, 36, 42, 0.09);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(15, 21, 31, 0.09);
}

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

.quote-form-head span {
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.quote-form-head strong {
  color: #1f2630;
  font-size: 22px;
}

.quote-step {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(32, 36, 42, 0.08);
  background: #fff;
}

.quote-step h3 {
  margin: 0;
  color: #1f2630;
  font-size: 17px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #22262c;
  font-weight: 800;
}

.quote-form label span,
.contact-methods legend {
  color: #22262c;
  font-weight: 900;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px;
  background: #fbfcfd;
  font: inherit;
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: rgba(191, 19, 31, 0.45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(191, 19, 31, 0.08);
}

.quote-form textarea {
  resize: vertical;
  line-height: 1.65;
}

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

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
}

.contact-methods legend {
  padding: 0 0 8px;
  grid-column: 1 / -1;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 10px 11px;
  border: 1px solid rgba(32, 36, 42, 0.08);
  background: #f7f8fa;
  font-weight: 800;
  cursor: pointer;
}

.contact-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.contact-card strong {
  min-width: 0;
  color: #22262c;
  font-size: 14px;
  line-height: 1.25;
  word-break: keep-all;
}

.contact-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: #1f2630;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.contact-logo svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card:has(input:checked) {
  border-color: rgba(191, 19, 31, 0.45);
  background: #fff6f7;
  box-shadow: 0 0 0 3px rgba(191, 19, 31, 0.07);
}

.contact-phone .contact-logo {
  background: #1f2630;
}

.contact-wechat .contact-logo,
.contact-work-wechat .contact-logo {
  background: #10b45a;
}

.contact-qq .contact-logo {
  background: #14171d;
}

.contact-ding .contact-logo {
  background: #1677ff;
}

.contact-whatsapp .contact-logo {
  background: #25d366;
}

.contact-telegram .contact-logo {
  background: #229ed9;
}

.contact-line .contact-logo {
  background: #06c755;
  font-size: 9px;
}

.contact-messenger .contact-logo {
  background: #0866ff;
}

.contact-email .contact-logo {
  background: #ea4335;
}

.modal-contact-methods {
  grid-template-columns: repeat(2, 1fr);
  font-size: 14px;
}

.quote-form button {
  min-height: 56px;
  font-size: 17px;
}

.quote-success {
  margin: 0;
  padding: 14px 16px;
  color: #12633d;
  background: #e9f8f0;
  border: 1px solid #b9e7cc;
}

.quote-success[data-tone="warning"] {
  color: #8a4b00;
  background: #fff7df;
  border-color: #f1d08a;
}

.quote-success[data-tone="error"] {
  color: #9f1d24;
  background: #fff0f1;
  border-color: #efb8bd;
}

.buy-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: #f4f5f6;
}

.buy-service article {
  min-height: 150px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.buy-service strong {
  font-size: 24px;
}

.buy-service p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.customer-page {
  background: #f4f5f6;
}

.customer-main {
  padding-top: 0;
}

.customer-panel {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 36px;
  align-items: end;
  background: #fff;
}

.customer-panel h1 {
  color: #11151a;
}

.customer-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.customer-login {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #f7f8f9;
}

.customer-login input {
  height: 52px;
  border: 1px solid var(--line);
  padding: 0 14px;
  font-size: 16px;
}

.customer-login button,
.customer-results-head button {
  min-height: 48px;
  border: 0;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.customer-login p {
  margin: 0;
  padding: 10px 12px;
  color: #12633d;
  background: #e9f8f0;
  border: 1px solid #b9e7cc;
  line-height: 1.5;
}

.customer-results {
  background: #fff;
}

.admin-workspace {
  background: #f4f5f6;
  padding: 34px 72px 92px;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-tabs button {
  min-height: 48px;
  border: 1px solid var(--line);
  padding: 0 24px;
  background: #fff;
  color: #252a31;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-tabs button.active {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.admin-pane {
  display: none;
  background: #fff;
  padding: 28px;
  border: 1px solid var(--line);
}

.admin-pane.active {
  display: block;
}

.product-admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.product-admin-form {
  display: grid;
  gap: 18px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.product-admin-form[hidden] {
  display: none;
}

body.product-editor-open {
  overflow: hidden;
}

body.product-editor-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(2px);
}

body.product-editor-open .product-admin-form {
  position: fixed;
  z-index: 510;
  top: 42px;
  left: 50%;
  width: min(1320px, calc(100vw - 48px));
  max-height: calc(100vh - 84px);
  overflow: auto;
  transform: translateX(-50%);
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
}

.admin-editor-dialog[hidden] {
  display: none;
}

.admin-editor-dialog {
  position: fixed;
  inset: 0;
  z-index: 620;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.44);
  backdrop-filter: blur(2px);
}

.admin-editor-modal {
  width: min(680px, calc(100vw - 36px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.3);
}

.admin-editor-modal label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.admin-editor-modal input,
.admin-editor-modal textarea {
  width: 100%;
  border: 1px solid #d7dde5;
  border-radius: 4px;
  padding: 12px 14px;
  background: #fff;
  font: inherit;
  font-weight: 400;
}

.menu-dialog-mode {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  font-size: 13px;
  font-weight: 900;
}

body.menu-dialog-open {
  overflow: hidden;
}

.listing-form-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-bottom: 1px solid #e3e7ed;
  background: #fff;
}

.listing-form-head p {
  margin: 6px 0 0;
  color: #6f7783;
  line-height: 1.6;
}

.listing-head-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.listing-head-actions > span {
  padding: 8px 12px;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.listing-head-actions button {
  min-height: 38px;
  border: 1px solid #d7dde5;
  padding: 0 16px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.listing-section {
  display: grid;
  gap: 16px;
  padding: 22px 24px;
  background: #fff;
  border-bottom: 12px solid #f1f3f6;
}

.listing-section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #111827;
  font-size: 20px;
}

.listing-section h3 span {
  color: #1d4ed8;
  font-size: 22px;
  font-weight: 900;
}

.listing-upload-row {
  display: grid;
  grid-template-columns: 220px minmax(220px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.listing-upload-tile {
  min-height: 120px;
  justify-items: center;
  align-content: center;
  padding: 18px;
  border: 1px dashed #c8d0db;
  background: #f8fafc;
  text-align: center;
  cursor: pointer;
}

.listing-upload-tile strong {
  color: #111827;
}

.listing-upload-tile small {
  color: #6f7783;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.listing-upload-tile input {
  padding: 8px;
  background: #fff;
}

.gallery-manager {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 18px;
  align-items: start;
  padding: 16px;
  border: 1px solid #dfe4ea;
  background: #f8fafc;
}

.gallery-manager > div:first-child {
  display: grid;
  gap: 10px;
}

.gallery-manager > div:first-child > strong {
  color: #111827;
  font-size: 18px;
}

.gallery-manager > div:first-child > span {
  color: #6b7280;
  line-height: 1.7;
}

.batch-upload-panel {
  min-height: 128px;
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: center;
  padding: 18px;
  border: 1px dashed #b7c0cc;
  background: #fff;
  text-align: center;
  cursor: pointer;
}

.batch-upload-panel strong {
  color: #111827;
}

.batch-upload-panel small {
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.batch-upload-panel input {
  width: 100%;
  padding: 8px;
  background: #f8fafc;
}

.upload-preview-list {
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px dashed #cfd4dc;
  background: #fff;
  color: #6b7280;
  font-weight: 700;
}

.upload-preview-list figure {
  position: relative;
  display: grid;
  gap: 6px;
  margin: 0;
  min-width: 0;
}

.upload-preview-list img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f3f5f7;
  border: 1px solid #e4e8ee;
}

.upload-preview-list figcaption {
  color: #111827;
  font-size: 13px;
  font-weight: 900;
}

.upload-preview-list small {
  color: #6b7280;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  word-break: break-all;
}

.preview-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 5;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  color: #fff;
  background: #dc2626;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.34);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 0.96;
}

.preview-remove:hover,
.preview-remove:focus-visible {
  background: #991b1b;
  transform: scale(1.06);
}

.detail-preview-list img {
  aspect-ratio: 3 / 4;
}

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

.listing-field-wide {
  grid-column: 1 / -1;
}

.listing-service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-content: center;
}

.listing-service-tags span {
  padding: 8px 12px;
  color: #1f2937;
  background: #f4f6f8;
  border: 1px solid #dfe4ea;
  font-weight: 900;
}

.product-admin-form h2,
.product-admin-list h2 {
  margin: 0;
  font-size: 28px;
}

.product-admin-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.product-admin-form input,
.product-admin-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: #fff;
  font: inherit;
  font-weight: 400;
}

.product-admin-two {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
}

.admin-head-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-admin-form,
.settings-admin-form {
  display: grid;
  gap: 18px;
}

.menu-admin-form label,
.settings-admin-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.menu-admin-form input,
.menu-admin-form textarea,
.settings-admin-form input,
.settings-admin-form textarea,
.settings-admin-form select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: #fff;
  font: inherit;
  font-weight: 400;
}

.menu-admin-list {
  display: grid;
  gap: 16px;
}

.menu-group-card,
.settings-slide-card,
.settings-qr-card {
  border: 1px solid var(--line);
  background: #f7f8f9;
  padding: 18px;
}

.menu-group-card {
  padding: 0;
  overflow: hidden;
}

.menu-group-details,
.menu-node-details {
  display: grid;
}

.menu-group-summary,
.menu-node-summary {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: #fff;
  cursor: pointer;
  list-style: none;
}

.menu-group-summary::-webkit-details-marker,
.menu-node-summary::-webkit-details-marker {
  display: none;
}

.menu-group-summary span,
.menu-node-summary span {
  display: grid;
  gap: 4px;
}

.menu-group-summary strong,
.menu-node-summary strong {
  color: #111827;
  font-size: 18px;
}

.menu-group-summary small,
.menu-node-summary small {
  color: #6b7280;
  font-weight: 700;
}

.menu-group-summary em,
.menu-node-summary em {
  color: #1d4ed8;
  font-style: normal;
  font-weight: 900;
}

.menu-group-head {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(3, auto);
  gap: 12px;
  align-items: end;
  padding: 0 18px 16px;
  margin-bottom: 0;
}

.menu-group-head button,
.menu-item-card button,
.menu-node-top button,
.admin-inline-button {
  min-height: 44px;
  border: 1px solid #cfd4dc;
  padding: 0 16px;
  background: #fff;
  color: #252a31;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menu-item-list {
  display: grid;
  gap: 12px;
}

.menu-item-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.menu-item-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
}

.menu-item-description {
  grid-column: 1 / -1;
}

.menu-tree-children {
  display: grid;
  gap: 12px;
}

.menu-node-card {
  margin-left: calc(var(--level, 0) * 22px);
  border: 1px solid #dfe4ea;
  background: #fff;
}

.menu-node-card + .menu-node-card {
  margin-top: 10px;
}

.menu-node-top {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
}

.menu-node-top.compact {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(240px, 2fr) auto;
}

.menu-node-top.compact span {
  color: #6b7280;
  font-weight: 700;
}

.menu-node-card .menu-item-grid,
.menu-node-card .menu-item-description {
  padding: 0 14px 14px;
}

.sku-builder {
  display: grid;
  gap: 10px;
}

.sku-builder-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.sku-builder-head button,
.sku-row button {
  min-height: 40px;
  border: 1px solid #cfd4dc;
  padding: 0 14px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

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

.sku-row {
  display: grid;
  grid-template-columns: 1fr 150px 1.2fr 210px auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid #dfe4ea;
  background: #fff;
}

.sku-image-cell {
  display: grid;
  gap: 7px;
}

.sku-image-cell > span {
  color: #374151;
  font-size: 13px;
  font-weight: 900;
}

.sku-image-preview {
  display: grid;
  place-items: center;
  height: 74px;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  overflow: hidden;
}

.sku-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sku-image-preview em,
.sku-image-preview small {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.sku-image-upload {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid #d7deea;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.sku-image-upload input {
  display: none;
}

.sku-image-upload b {
  color: #111827;
  font-size: 13px;
  font-weight: 900;
}

.sku-row .sku-image-remove {
  min-height: 32px;
  border-color: #f1c5c8;
  color: #b91c1c;
  background: #fff5f5;
  font-size: 13px;
}

.hot-product-settings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hot-product-settings-grid label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #dfe4ea;
  background: #fff;
}

.hot-product-settings-grid small {
  grid-column: 2;
  color: #6b7280;
  font-weight: 700;
}

.menu-node-card.category-node {
  background: #fbfcfe;
  box-shadow: inset 4px 0 0 #1f2937;
}

.menu-node-card.product-node {
  box-shadow: inset 4px 0 0 #d71920;
}

.menu-node-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-node-top strong {
  margin-right: auto;
  padding: 6px 10px;
  color: #111827;
  background: #eef2f7;
  font-size: 13px;
}

.menu-node-card.product-node .menu-node-top strong {
  color: #9f1239;
  background: #fff1f2;
}

.settings-admin-form h3 {
  margin: 16px 0 0;
  font-size: 24px;
}

.admin-help {
  margin: -8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.settings-slide-list {
  display: grid;
  gap: 16px;
}

.settings-preview-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.settings-preview-row img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  background: #e9edf2;
}

.settings-preview-row div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.settings-preview-row strong {
  color: #11151a;
  font-size: 20px;
}

.settings-preview-row span {
  color: #717986;
  font-size: 13px;
  word-break: break-all;
}

.settings-field-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}

.settings-qr-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 12px;
}

.settings-qr-card {
  display: grid;
  gap: 10px;
}

.settings-qr-card img,
.settings-qr-empty {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: cover;
  color: #8a929e;
  font-weight: 900;
}

.admin-category-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border: 1px solid var(--line);
  margin: 0;
  padding: 14px;
  background: #fff;
}

.admin-category-checks[hidden] {
  display: none;
}

.admin-category-checks legend {
  padding: 0 8px;
  font-weight: 900;
}

.admin-category-checks label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 0 8px;
  background: #f4f5f6;
}

.product-image-preview,
.product-video-preview {
  min-height: 74px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px dashed var(--line);
  color: var(--muted);
  background: #fff;
}

.product-image-preview img,
.product-video-preview video {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.product-video-preview small {
  padding: 0 12px 12px;
  color: #747c88;
  word-break: break-all;
}

.product-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-form-actions button,
.admin-product-card button {
  min-height: 44px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.product-form-actions button:last-child,
.admin-product-card button:last-child {
  color: #22262c;
  background: #e9ebee;
}

.admin-product-list {
  display: grid;
  gap: 12px;
}

.admin-product-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-product-card img {
  width: 180px;
  height: 140px;
  object-fit: cover;
}

.admin-product-card span {
  color: var(--accent);
  font-weight: 900;
}

.admin-product-card h3 {
  margin: 8px 0;
  font-size: 22px;
}

.admin-product-card p {
  color: var(--muted);
  line-height: 1.6;
}

.admin-product-card strong {
  color: #e43324;
  margin-right: 12px;
}

.admin-product-card em {
  color: #7a8088;
  font-style: normal;
}

.admin-product-card div div {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-status-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 10px;
  padding: 0 10px;
  border-radius: 999px;
  color: #6b7280;
  background: #eef0f3;
  font-size: 13px;
  font-weight: 900;
}

.product-status-badge.active {
  color: #0f7a3d;
  background: #e8f7ef;
}

.admin-product-card button[data-toggle-product-status] {
  background: #334155;
}

.admin-product-card button[data-delete-product] {
  color: #fff;
  background: #9f1239;
}

.online-service-widget {
  position: fixed;
  z-index: 36;
  right: 22px;
  bottom: 24px;
  font-family: inherit;
}

.service-float-button {
  display: none !important;
  min-width: 126px;
  min-height: 48px;
  display: none;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: #101216;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.service-float-button span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.service-float-button .online {
  background: #21c56b;
  box-shadow: 0 0 0 5px rgba(33, 197, 107, 0.18);
}

.service-float-button .offline {
  background: #f0a32f;
  box-shadow: 0 0 0 5px rgba(240, 163, 47, 0.18);
}

.service-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(360px, calc(100vw - 34px));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.service-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  color: #fff;
  background: #101216;
}

.service-panel-head strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.service-panel-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.service-panel-head button {
  width: 32px;
  height: 32px;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 22px;
  cursor: pointer;
}

.service-chat-body {
  padding: 16px 18px;
  background: #f4f5f6;
}

.service-chat-body p {
  margin: 0;
  color: #333942;
  line-height: 1.6;
}

.service-form {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.service-form textarea,
.service-form input,
.service-form select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  background: #fff;
  font: inherit;
}

.service-form div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-form button {
  min-height: 46px;
  border: 0;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.service-form p {
  margin: 0;
  padding: 10px 12px;
  color: #12633d;
  background: #e9f8f0;
  border: 1px solid #b9e7cc;
  line-height: 1.5;
}

.live-service-panel {
  width: min(430px, calc(100vw - 34px));
}

.service-message-list {
  height: 260px;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
}

.service-message {
  max-width: 88%;
  display: grid;
  gap: 4px;
}

.service-message span {
  color: #8a929d;
  font-size: 12px;
  font-weight: 900;
}

.service-message p {
  margin: 0;
  padding: 10px 12px;
  color: #232933;
  background: #fff;
  border: 1px solid var(--line);
  line-height: 1.55;
}

.service-message-visitor {
  justify-self: end;
}

.service-message-visitor span {
  text-align: right;
}

.service-message-visitor p {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.service-contact-mini {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.service-contact-mini input,
.service-chat-form input,
.service-offline-form input,
.service-offline-form textarea,
.service-offline-form select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 10px 11px;
  background: #fff;
  font: inherit;
}

.service-chat-form {
  display: grid;
  grid-template-columns: 1fr 76px;
  gap: 8px;
  margin-top: 8px;
}

.service-chat-form button,
.service-offline-form button {
  border: 0;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.service-offline-form {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

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

.service-offline-form button {
  min-height: 42px;
}

.service-qr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.service-qr-card {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 8px 5px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-qr {
  width: 54px;
  height: 54px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  padding: 5px;
  background: #f8f9fb;
  border: 1px solid #d8dce2;
}

.service-qr-image {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: #fff;
  border: 1px solid #d8dce2;
}

.service-qr span {
  background: #101216;
}

.service-qr-card strong {
  color: #20252d;
  font-size: 12px;
}

.service-qr-card em {
  color: #8a929d;
  font-size: 10px;
  font-style: normal;
  text-align: center;
}

.service-status-message {
  margin: 10px 0 0;
  padding: 10px 12px;
  color: #12633d;
  background: #e9f8f0;
  border: 1px solid #b9e7cc;
  line-height: 1.5;
}

.customer-results-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.customer-results-head h2 {
  margin: 0;
  font-size: 32px;
}

.customer-results-head button {
  padding: 0 22px;
}

.lead-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

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

.lead-table th,
.lead-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  vertical-align: top;
  text-align: left;
  line-height: 1.6;
}

.lead-table th {
  background: #f4f5f6;
  color: #22262c;
}

.lead-table td {
  color: #535a64;
}

.admin-chat-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 18px;
  min-height: 560px;
}

.admin-chat-list,
.admin-chat-room {
  border: 1px solid var(--line);
  background: #fff;
}

.admin-chat-list {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
  overflow-y: auto;
}

.admin-chat-session {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  padding: 12px;
  background: #f7f8f9;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.admin-chat-session.active {
  border-color: var(--accent);
  background: #fff5f5;
}

.admin-chat-session strong {
  color: #151922;
}

.admin-chat-session span,
.admin-chat-session em {
  color: #717986;
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.chat-status-badge {
  width: fit-content;
  border-radius: 999px;
  padding: 3px 8px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 12px;
  font-weight: 900;
}

.chat-status-badge.offline {
  color: #a16207;
  background: #fef3c7;
}

.chat-status-badge.closed {
  color: #64748b;
  background: #e2e8f0;
}

.admin-chat-room {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 560px;
}

.admin-chat-room-head {
  padding: 16px 18px;
  color: #fff;
  background: #101216;
  font-weight: 900;
}

.admin-chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 18px;
  background: #f4f5f6;
}

.admin-chat-message {
  max-width: 74%;
  display: grid;
  gap: 4px;
}

.admin-chat-message.agent {
  justify-self: end;
}

.admin-chat-message span {
  color: #7b838f;
  font-size: 12px;
  font-weight: 900;
}

.admin-chat-message.agent span {
  text-align: right;
}

.admin-chat-message p {
  margin: 0;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid var(--line);
  line-height: 1.6;
}

.admin-chat-message.agent p {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.admin-chat-reply {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.admin-chat-reply input {
  border: 1px solid var(--line);
  padding: 0 14px;
  font: inherit;
}

.admin-chat-reply button {
  min-height: 46px;
  border: 0;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-workspace {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  padding: 0;
  background: #eef1f5;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 18px 12px;
  color: #222833;
  background: #fff;
  border-right: 1px solid #dfe4ea;
}

.admin-sidebar-brand {
  display: grid;
  gap: 6px;
  padding: 0 8px 14px;
  border-bottom: 1px solid #e7ebf0;
}

.admin-sidebar-brand img {
  width: 154px;
  max-height: 48px;
  object-fit: contain;
}

.admin-sidebar-brand span {
  color: #8a93a0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-content {
  min-width: 0;
  padding: 28px 34px 72px;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(520px, 0.95fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.78), rgba(22, 28, 40, 0.94)),
    #151b27;
}

.admin-dashboard h2 {
  margin: 6px 0 8px;
  font-size: 34px;
}

.admin-dashboard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.admin-stat-grid article {
  min-height: 116px;
  display: grid;
  align-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-stat-grid span {
  font-size: 34px;
  font-weight: 900;
}

.admin-stat-grid strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.admin-tabs {
  display: grid;
  gap: 6px;
  margin: 0;
}

.admin-tabs button {
  position: relative;
  min-height: 42px;
  justify-content: start;
  border: 0;
  border-radius: 4px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  color: #4b5563;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 800;
}

.admin-tabs button span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #6b7280;
  background: #f3f4f6;
  font-size: 11px;
}

.admin-tabs button.active,
.admin-tabs button:hover {
  color: #111827;
  background: #f2f5f9;
}

.admin-tabs button.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 3px;
  border-radius: 999px;
  background: #2563eb;
}

.admin-tabs button.active span,
.admin-tabs button:hover span {
  color: #1f4fd7;
  background: #e8eefc;
}

.admin-logout {
  min-height: 40px;
  border: 1px solid #d7dde5;
  border-radius: 4px;
  color: #4b5563;
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-pane {
  border: 0;
  padding: 26px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
}

.customer-results-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.customer-results-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.product-admin-form,
.menu-group-card,
.settings-slide-card,
.settings-qr-card,
.media-upload-form {
  border: 1px solid #dfe4ea;
  background: #f8fafc;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.04);
}

.product-admin-form input,
.product-admin-form textarea,
.product-admin-form select,
.menu-admin-form input,
.menu-admin-form textarea,
.settings-admin-form input,
.settings-admin-form textarea,
.settings-admin-form select,
.media-upload-form input {
  border-color: #d7dde5;
  border-radius: 4px;
}

.admin-upload-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid #d7dde5;
  background: #fff;
}

.admin-upload-group legend {
  padding: 0 8px;
  color: #111827;
  font-weight: 900;
}

.admin-upload-group label:last-child:nth-child(odd) {
  grid-column: auto;
}

.settings-brand-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid #dfe4ea;
  background: #f8fafc;
}

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

.settings-logo-preview div {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.settings-logo-preview img {
  width: 220px;
  height: 72px;
  object-fit: contain;
}

.settings-logo-preview small {
  color: #747c88;
  word-break: break-all;
}

.settings-preview-row-wide {
  grid-template-columns: minmax(260px, 1.25fr) minmax(160px, 0.55fr) minmax(220px, 1fr);
  align-items: stretch;
}

.settings-preview-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #dfe4ea;
  background: #fff;
}

.settings-preview-box > span {
  color: #111827;
  font-size: 13px;
  font-weight: 900;
}

.settings-preview-box img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  background: #eef2f6;
}

.settings-preview-box-mobile img {
  aspect-ratio: 9 / 14;
  object-fit: cover;
  max-height: 220px;
}

.settings-preview-box-wide img {
  aspect-ratio: 5795 / 1280;
  object-fit: cover;
}

.settings-preview-box small,
.settings-upload-status {
  color: #6f7783;
  font-size: 12px;
  line-height: 1.5;
  word-break: break-all;
}

.settings-upload-control {
  position: relative;
  padding: 12px;
  border: 1px dashed #cbd3df;
  background: #fff;
}

.settings-upload-control input[type="file"] {
  padding: 10px;
  border-style: dashed;
  background: #f8fafc;
}

.settings-upload-status[data-tone="success"] {
  color: #0d7a46;
}

.settings-upload-status[data-tone="error"] {
  color: #bd1b2a;
}

.settings-slide-summary {
  align-content: center;
  padding: 18px;
  background: #111827;
  color: #fff;
}

.settings-slide-summary strong {
  color: #fff;
}

.settings-slide-summary span {
  color: rgba(255, 255, 255, 0.72);
}

.settings-save-bar {
  position: sticky;
  bottom: 18px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #dfe4ea;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.14);
  backdrop-filter: blur(12px);
}

.settings-save-bar div {
  display: grid;
  gap: 4px;
}

.settings-save-bar strong {
  color: #111827;
  font-size: 16px;
}

.settings-save-bar span {
  color: #6b7280;
  font-size: 13px;
}

.settings-save-bar button {
  min-width: 150px;
  min-height: 46px;
  border: 0;
  color: #fff;
  background: #d71920;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.settings-save-bar button:disabled,
.customer-results-head button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.settings-save-bar.is-dirty {
  border-color: #d71920;
  box-shadow: 0 18px 46px rgba(215, 25, 32, 0.2);
}

.settings-save-bar.is-dirty strong {
  color: #d71920;
}

.media-upload-form {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
  align-items: end;
  margin-bottom: 20px;
  padding: 18px;
}

.media-upload-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.media-upload-form button {
  min-height: 46px;
  border: 0;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.media-upload-form p {
  grid-column: 1 / -1;
}

.media-library {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.media-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dfe4ea;
  background: #fff;
}

.media-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  background: #eef1f5;
}

.media-card div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.media-card strong,
.media-card span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-card span {
  color: #747c88;
  font-size: 12px;
}

.media-card input {
  width: 100%;
  min-height: 36px;
  border: 1px solid var(--line);
  padding: 0 8px;
  color: #4b5563;
  background: #f8fafc;
}

.media-card button,
.admin-product-card a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 12px;
  color: #fff;
  background: #111827;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-product-card div div {
  flex-wrap: wrap;
}

.solid-header .nav-links a.active {
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--accent);
}

.admin-topbar {
  min-height: 70px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 0 22px;
  background: #fff;
  border: 1px solid #dfe4ea;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.05);
}

.admin-topbar strong {
  display: block;
  color: #111827;
  font-size: 20px;
}

.admin-topbar span {
  color: #747c88;
  font-size: 13px;
}

.admin-user-chip {
  min-width: 180px;
  display: grid;
  gap: 4px;
  justify-items: end;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.admin-user-chip strong {
  font-size: 16px;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-overview-grid button {
  min-height: 160px;
  display: grid;
  align-content: end;
  gap: 12px;
  border: 1px solid #dfe4ea;
  padding: 22px;
  color: #111827;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), transparent 58%),
    #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.admin-overview-grid strong {
  font-size: 24px;
}

.admin-overview-grid span {
  color: #6b7280;
  line-height: 1.6;
}

.admin-stat-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-chat-room-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.admin-chat-room-head div {
  display: grid;
  gap: 3px;
}

.admin-chat-room-head strong {
  color: #fff;
}

.admin-chat-room-head span,
.admin-chat-room-head em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-style: normal;
}

.admin-chat-room-head label {
  min-width: 210px;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.admin-chat-room-head select {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 10px;
  color: #fff;
  background: #1f2937;
  font: inherit;
}

.admin-chat-actions {
  display: flex;
  align-items: end;
  gap: 10px;
}

.admin-chat-actions button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  padding: 0 14px;
  color: #111827;
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-chat-actions button:disabled,
.admin-chat-reply button:disabled,
.admin-chat-reply input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.admin-chat-session i {
  color: #d71920;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.admin-users-layout {
  display: grid;
  grid-template-columns: minmax(340px, 440px) 1fr;
  gap: 22px;
  align-items: start;
}

.admin-user-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid #dfe4ea;
  background: #f8fafc;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.04);
}

.admin-user-form h3 {
  margin: 0;
  font-size: 26px;
}

.admin-user-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.admin-user-form input,
.admin-user-form select {
  width: 100%;
  border: 1px solid #d7dde5;
  border-radius: 4px;
  padding: 12px 14px;
  background: #fff;
  font: inherit;
  font-weight: 400;
}

.admin-permission-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 14px;
  border: 1px solid #d7dde5;
  background: #fff;
}

.admin-permission-checks legend {
  padding: 0 8px;
  font-weight: 900;
}

.admin-permission-checks label {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  color: #4b5563;
  background: #f4f6f8;
}

.admin-user-list {
  display: grid;
  gap: 12px;
}

.admin-user-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  padding: 18px;
  border: 1px solid #dfe4ea;
  background: #fff;
}

.admin-user-card strong {
  display: block;
  color: #111827;
  font-size: 20px;
}

.admin-user-card span,
.admin-user-card small,
.admin-user-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.admin-user-card em {
  align-self: start;
  padding: 5px 10px;
  color: #8a2a2d;
  background: #fff1f2;
  font-style: normal;
  font-weight: 900;
}

.admin-user-card em.active {
  color: #12633d;
  background: #e9f8f0;
}

.admin-user-card div:last-child {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
}

.admin-user-card button {
  min-height: 38px;
  border: 0;
  padding: 0 14px;
  color: #fff;
  background: #111827;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-user-card button:last-child {
  color: #22262c;
  background: #e9ebee;
}

@media (min-width: 981px) and (max-width: 1280px) {
  .site-header {
    height: 76px;
    padding: 0 28px;
  }

  .brand {
    width: 184px;
    height: 52px;
  }

  .quick-links {
    display: none;
  }

  .nav-links {
    gap: 0;
    font-size: 14px;
  }

  .nav-item {
    height: 76px;
    padding: 0 8px;
  }

  .nav-item > a {
    height: 76px;
  }

  .header-actions {
    gap: 12px;
    font-size: 13px;
  }

  .header-actions > a {
    padding: 8px 12px;
  }

  .mega-menu {
    top: 76px;
  }

  .product-mega-menu {
    height: min(420px, calc(100vh - 76px));
    max-height: min(420px, calc(100vh - 76px));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    height: 68px;
    padding: 0 14px;
  }

  .header-actions {
    grid-column: 3;
    min-width: 0;
    gap: 8px;
  }

  .header-utility {
    gap: 7px;
    margin-left: 0;
  }

  .header-icon-button,
  .header-language {
    width: 32px;
    min-width: 32px;
    min-height: 32px;
    gap: 0;
  }

  .header-icon-button svg,
  .header-language svg {
    width: 21px;
    height: 21px;
  }

  .header-language span {
    display: none;
  }

  .header-utility-divider {
    height: 20px;
  }

  .header-actions > .header-cta-pill {
    display: inline-flex;
    width: 70px;
    min-width: 70px;
    height: 34px;
    padding: 0 10px;
    font-size: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  }

  .brand {
    width: 150px;
    height: 44px;
    font-size: 18px;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .quick-links {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: block;
    width: 38px;
    height: 38px;
  }

  .site-header.mobile-menu-open .mobile-menu {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    gap: 0;
    padding: 12px 22px 22px;
    color: #15181d;
    background: #fff;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
  }

  .mobile-menu-actions button,
  .mobile-menu-actions a {
    min-height: 42px;
    border: 1px solid var(--line);
    color: #11151a;
    background: #f7f8f9;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  .site-header.mobile-menu-open .menu-button span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.mobile-menu-open .menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .menu-button span {
    transition: transform 0.18s ease;
  }

  .mobile-menu details {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }

  .mobile-menu summary {
    font-weight: 800;
  }

  .mobile-menu a {
    display: block;
    padding: 10px 0 0 14px;
    color: var(--muted);
  }

  .mobile-menu .mobile-sub-menu {
    margin-left: 12px;
    padding: 8px 0 0;
    border-bottom: 0;
  }

  .mobile-menu .mobile-sub-menu summary {
    color: #202631;
    font-size: 14px;
  }

  .mobile-menu .mobile-sub-menu .mobile-sub-menu {
    margin-left: 16px;
    border-left: 1px solid var(--line);
    padding-left: 12px;
  }

  .mobile-menu .mobile-product-link {
    padding-left: 26px;
  }

  .hero-content {
    padding: 132px 24px 0;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.65;
  }

  section {
    padding: 62px 22px;
  }

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

  .hot-products {
    padding-top: 70px;
    padding-bottom: 46px;
  }

  .hot-product-tabs {
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 26px;
  }

  .hot-product-stage {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hot-product-feature {
    min-height: 260px;
    padding: 26px;
  }

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

  .hot-product-grid a {
    min-height: 330px;
    grid-template-rows: minmax(190px, 1fr) auto auto;
    padding: 20px;
  }

  .hot-product-grid img {
    height: 190px;
  }

  .hot-product-grid strong {
    font-size: 21px;
  }

  .hot-product-grid span {
    font-size: 14px;
  }

  .feature-product,
  .section-heading,
  .real-products .section-heading,
  .showroom,
  .cases,
  .deep-cta,
  .service,
  .quote,
  .detail-body,
  .customer-panel {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .tech-grid,
  .showroom-grid,
  .client-grid,
  .solution-showcase .solution-grid,
  .case-showcase .case-list,
  .logo-wall,
  .black-tech-grid,
  .about-strip,
  .learn-grid,
  .support-grid,
  .cta-grid,
  .service-stats {
    grid-template-columns: 1fr;
  }

  .client-grid.logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-grid .client-logo {
    min-height: 118px;
    padding: 18px 10px;
  }

  .solution-showcase .solution-grid {
    width: min(520px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card.featured {
    grid-template-columns: 1fr;
  }

  .case-showcase .case-card.featured {
    grid-template-columns: 1fr;
  }

  .case-card.muted {
    opacity: 1;
  }

  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .client-partner-wall {
    width: calc(100% - 28px);
    border-radius: 4px;
  }

  .black-tech-grid {
    grid-template-columns: 1fr;
  }

  .global-xuanteng {
    min-height: 520px;
  }

  .global-xuanteng-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-strip {
    width: min(520px, calc(100% - 36px));
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-layout,
  .quote-builder,
  .product-admin-grid,
  .admin-chat-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar,
  .inquiry-cart,
  .quote-copy {
    position: static;
  }

  .shop-layout {
    padding: 22px;
  }

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

  .shop-sidebar strong {
    grid-column: 1 / -1;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .product-mall-grid,
  .real-product-rail,
  .buy-service,
  .quote-form-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .shop-card {
    grid-template-columns: 1fr;
  }

  .shop-card img {
    height: 210px;
  }

  .real-product-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .real-product-rail article {
    min-width: 250px;
    scroll-snap-align: start;
  }

  .buy-main {
    padding-top: 72px;
  }

  .buy-hero {
    min-height: 620px;
  }

  .buy-hero-content {
    padding: 96px 22px 58px;
  }

  .buy-hero-products {
    right: 18px;
    left: 18px;
    bottom: 18px;
    width: auto;
    opacity: 0.34;
  }

  .buy-search {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .hero-news {
    left: 22px;
    right: 22px;
    bottom: 70px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-arrow {
    display: none;
  }

  .series-list {
    left: 22px;
    right: 22px;
    bottom: 36px;
    flex-direction: column;
  }

  .feature-product .section-text,
  .global-panel {
    padding-left: 22px;
    padding-right: 22px;
  }

  .feature-bg.product-cutout {
    right: -8vw;
    width: min(76vw, 520px);
    opacity: 0.78;
  }

  .location-list {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin: 42px 22px 0;
  }

  .quote form {
    grid-template-columns: 1fr;
  }

  .quote input:nth-child(3) {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 32px 22px;
  }

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

  .floating-tools {
    left: auto;
    right: 12px;
    top: auto;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 64px;
    grid-template-columns: 1fr;
    gap: 8px;
    background: transparent;
  }

  .floating-tools button {
    width: 64px;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    font-size: 11px;
    padding: 7px 4px;
  }

  .brand-story-button {
    width: 58px !important;
    min-height: 58px !important;
  }

  .brand-story-button strong {
    font-size: 15px;
  }

  .service-avatar-button {
    width: 58px !important;
    min-height: 70px !important;
  }

  .service-avatar-face {
    width: 42px;
    height: 42px;
  }

  .scroll-top-tool {
    width: 58px !important;
    min-height: 54px !important;
  }

  .brand-story-slide {
    padding: 66px 26px 84px;
  }

  .brand-story-slide h2 {
    font-size: 32px;
  }

  .brand-story-slide p {
    font-size: 15px;
  }

  .brand-story-controls {
    left: 26px;
    right: 26px;
    bottom: 24px;
  }

  .detail-hero {
    min-height: 430px;
  }

  .detail-hero-content {
    padding: 136px 22px 58px;
  }

  .detail-actions {
    flex-wrap: wrap;
  }

  .detail-body {
    gap: 28px;
  }

  .detail-side {
    position: static;
    display: grid;
    gap: 8px;
  }

  .detail-side #detailNav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .detail-side a {
    border: 1px solid var(--line);
    padding: 10px 12px;
    background: #f8f9fa;
  }

  .detail-card-grid {
    grid-template-columns: 1fr;
  }

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

  .about-menu-showcase {
    display: none;
  }

  .about-menu-cards {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-menu-cards a {
    min-height: 86px;
    padding: 18px 22px;
  }

  .immersive-detail-page .detail-hero {
    min-height: 520px;
  }

  .immersive-detail-page .detail-hero-content h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1.04;
  }

  .about-immersive,
  .showroom-experience {
    padding: 22px;
  }

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

  .about-immersive-visual {
    min-height: 320px;
  }

  .about-metric-grid,
  .showroom-point-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-switch-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-switch-track a {
    min-height: 78px;
  }

  .showroom-display {
    min-height: 420px;
  }

  .showroom-route-grid {
    grid-template-columns: 1fr;
  }

  .factory-gallery-grid,
  .detail-map-card {
    grid-template-columns: 1fr;
  }

  .factory-gallery-grid img {
    height: 240px;
  }

  .detail-contact-card {
    min-height: auto;
  }

  .map-preview {
    min-height: 220px;
  }

  .culture-value-grid {
    grid-template-columns: 1fr;
  }

  .product-commerce-detail {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    padding: 0 18px;
  }

  .product-catalog {
    width: 100%;
  }

  .catalog-topbar {
    grid-template-columns: 1fr;
  }

  .catalog-filter-row {
    grid-template-columns: 92px repeat(2, minmax(96px, 1fr));
    overflow-x: auto;
  }

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

  .catalog-product-image img {
    padding: 18px;
  }

  .commerce-buy-panel {
    position: static;
    max-height: none;
  }

  .commerce-detail-tabs {
    top: 72px;
    overflow-x: auto;
  }

  .commerce-gallery {
    grid-template-columns: 1fr;
  }

  .commerce-main-image {
    order: 1;
    min-height: 320px;
  }

  .commerce-main-image img,
  .commerce-main-image video {
    padding: 22px;
  }

  .commerce-thumbs {
    order: 2;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .commerce-thumb {
    width: 100%;
  }

  .commerce-spec-summary div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .commerce-actions a,
  .commerce-actions button {
    flex: 1 1 150px;
  }

  .commerce-detail-summary,
  .commerce-detail-table {
    grid-template-columns: 1fr;
  }

  .detail-specs {
    padding: 24px;
  }

  .detail-specs dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .modal-layer {
    align-items: start;
    overflow-y: auto;
    padding: 88px 14px 24px;
  }

  .modal-card {
    padding: 26px 18px;
  }

  .modal-contact-grid,
  .modal-contact-methods {
    grid-template-columns: 1fr;
  }

  .customer-main {
    padding-top: 72px;
  }

  .customer-panel,
  .customer-results {
    padding: 56px 22px;
  }

  .admin-workspace {
    padding: 22px;
  }

  .admin-product-card {
    grid-template-columns: 140px 1fr;
  }

  .admin-product-card img {
    width: 140px;
    height: 116px;
  }

  .gallery-manager {
    grid-template-columns: 1fr;
  }

  .upload-preview-list {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
}

@media (max-width: 640px) {
  .header-actions {
    gap: 6px;
  }

  .site-header {
    height: 64px;
    padding: 0 12px;
  }

  .brand {
    width: 132px;
    height: 40px;
  }

  .header-utility {
    gap: 6px;
  }

  .header-icon-button,
  .header-language {
    width: 30px;
    min-width: 30px;
    min-height: 30px;
  }

  .header-icon-button svg,
  .header-language svg {
    width: 20px;
    height: 20px;
  }

  .header-actions > .header-cta-pill {
    display: none;
  }

  .header-cta-ticker span {
    height: 32px;
    line-height: 32px;
  }

  .menu-button {
    width: 34px;
    height: 34px;
  }

  .menu-button span {
    width: 17px;
  }

  .plain-action {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding-top: 118px;
  }

  h1,
  .buy-hero h1,
  .detail-hero-content h1,
  .customer-panel h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-news {
    display: none;
  }

  .hero-dots {
    bottom: 22px;
  }

  .hero-dots button {
    width: 24px;
  }

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

  .product-strip button {
    min-height: 58px;
  }

  section {
    padding: 52px 18px;
  }

  .series-list {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 18px 24px;
  }

  .feature-product {
    min-height: 620px;
  }

  .feature-product .section-text {
    padding: 0 18px 32px;
  }

  .shop-layout {
    padding: 18px;
  }

  .shop-sidebar {
    grid-template-columns: 1fr;
  }

  .shop-card h3 {
    font-size: 21px;
  }

  .quote-form,
  .customer-login {
    padding: 18px;
  }

  .quote-copy {
    min-height: auto;
    padding: 32px 24px;
  }

  .quote-support-list {
    grid-template-columns: 1fr;
  }

  .quote-support-list span {
    min-height: 72px;
  }

  .quote-form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .admin-pane,
  .product-admin-form {
    padding: 18px;
  }

  .admin-tabs,
  .product-form-actions,
  .product-admin-two,
  .admin-category-checks,
  .menu-group-head,
  .menu-item-grid,
  .listing-upload-row,
  .listing-grid,
  .sku-row,
  .hot-product-settings-grid,
  .settings-field-grid,
  .settings-qr-list,
  .settings-preview-row {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    display: grid;
  }

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

  .admin-product-card img {
    width: 100%;
    height: 180px;
  }

  .online-service-widget {
    right: 14px;
    bottom: 110px;
  }

  .settings-save-bar {
    bottom: 10px;
    align-items: stretch;
    flex-direction: column;
  }

  .settings-save-bar button {
    width: 100%;
  }

  .service-panel {
    right: -2px;
    width: min(340px, calc(100vw - 24px));
  }

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

  .service-contact-mini,
  .service-offline-form div {
    grid-template-columns: 1fr;
  }

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

  .buy-hero-content {
    padding: 88px 18px 46px;
  }

  .buy-hero p,
  .quote-copy p,
  .customer-panel p {
    font-size: 16px;
  }

  .buy-hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-methods label {
    min-height: 42px;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 980px) {
  .admin-workspace {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .admin-sidebar {
    position: relative;
    top: auto;
    height: auto;
  }

  .admin-content {
    padding: 18px;
  }

  .admin-topbar,
  .admin-chat-room-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-dashboard,
  .admin-users-layout,
  .admin-overview-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .brand-detail-special .site-header.solid-header,
  .vr-detail-special .site-header.solid-header {
    background: rgba(255, 255, 255, 0.96);
    color: #151922;
  }

  .vr-detail-special .site-header.solid-header {
    background: rgba(8, 10, 15, 0.78);
    color: #fff;
  }

  .special-subnav {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    padding: 18px 20px;
  }

  .special-subnav div {
    justify-content: space-between;
  }

  .special-subnav nav {
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .special-subnav nav a {
    flex: 0 0 auto;
    min-height: 42px;
    margin-right: 24px;
    font-size: 14px;
  }

  .special-hero,
  .vr-landing-hero {
    min-height: 620px;
  }

  .special-hero-content {
    padding: 112px 20px 72px;
    align-items: flex-start;
    text-align: left;
  }

  .special-hero-content h1,
  .contact-planet-hero h1,
  .vr-landing-copy h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .special-hero-content p,
  .contact-planet-hero p,
  .vr-landing-copy p {
    font-size: 16px;
  }

  .brand-metric-band {
    width: calc(100% - 28px);
    min-height: auto;
    margin-top: -48px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-metric-band div:nth-child(2) {
    border-right: 0;
  }

  .brand-story-section,
  .brand-spec-wall,
  .culture-cinema,
  .culture-block-grid,
  .factory-process,
  .recruit-grid,
  .detail-contact-panel,
  .detail-map-card,
  .vr-product-routes,
  .vr-live-section {
    width: calc(100% - 28px);
    margin-top: 58px;
  }

  .brand-story-section,
  .culture-cinema,
  .detail-map-card,
  .brand-news-heading,
  .brand-news-feature {
    grid-template-columns: 1fr;
  }

  .brand-capability-strip,
  .culture-block-grid,
  .factory-process,
  .recruit-grid,
  .brand-news-grid,
  .vr-product-routes > div:last-child {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .brand-capability-strip {
    margin-top: 42px;
  }

  .brand-spec-wall dl,
  .culture-special-values,
  .factory-gallery-grid,
  .detail-contact-grid {
    grid-template-columns: 1fr;
  }

  .culture-cinema {
    min-height: auto;
  }

  .culture-orbit {
    min-height: 260px;
  }

  .brand-news-page {
    padding: 72px 14px;
  }

  .brand-news-heading nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .brand-news-feature > div {
    min-height: auto;
  }

  .contact-planet-hero {
    min-height: 560px;
  }

  .special-action-band div {
    flex-direction: column;
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .vr-stage-frame {
    width: 92vw;
    border-width: 6px;
    opacity: 0.72;
  }

  .vr-host-card {
    left: 20px;
    bottom: 44px;
    width: 96px;
    height: 138px;
  }

  .vr-host-card i {
    width: 54px;
    height: 54px;
  }

  .vr-landing-copy {
    padding: 116px 20px 74px;
  }

  .vr-landing-copy div,
  .recruit-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero.hero-poster-mode {
    --hero-news-bottom: 18px;
    --hero-news-height: 86px;
    --hero-news-overlap: 0px;
    margin-top: 0;
    height: min(760px, 100svh);
    min-height: 620px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .hero-poster-mode .hero-slide picture {
    top: 0;
    height: 100%;
  }

  .hero-slide-poster::before {
    inset: -12px;
    filter: blur(10px) saturate(1.04);
    opacity: 0.38;
  }

  .hero-slide-poster img {
    object-fit: cover;
    object-position: center top;
  }

  .hero-poster-light .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 18%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.22), transparent 24%);
  }

  .hero-poster-dark .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 5, 8, 0.68), rgba(4, 5, 8, 0.24) 64%, transparent),
      linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 18%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 24%);
  }

  .hero-poster-copy,
  .hero-poster-copy.centered-copy {
    top: clamp(102px, 16svh, 124px);
    left: 24px;
    right: 24px;
    width: auto;
    max-width: none;
    text-align: left;
    transform: none;
  }

  .hero-poster-copy p {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .hero-poster-copy h1 {
    max-width: 8.4em;
    margin-bottom: 16px;
    font-size: clamp(34px, 9.4vw, 48px);
  }

  .hero-poster-copy span {
    max-width: 92%;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero.hero-poster-mode .hero-news {
    bottom: var(--hero-news-bottom);
    width: min(540px, calc(100% - 32px));
    min-height: var(--hero-news-height);
    padding: 0 12px;
    grid-template-columns: 1fr;
  }

  .hero-immersion-bar {
    bottom: calc(var(--hero-news-bottom) + var(--hero-news-height) + 52px);
    grid-template-columns: 1fr;
    width: min(540px, calc(100% - 32px));
  }

  .hero-immersion-bar a {
    min-height: 72px;
    padding: 15px 18px 15px 58px;
  }

  .hero-immersion-bar a:nth-child(n + 2) {
    display: none;
  }

  .hero-immersion-bar span {
    left: 18px;
    top: 18px;
  }

  .hero-immersion-bar strong {
    font-size: 18px;
  }

  .hero-immersion-bar em {
    margin-top: 5px;
    font-size: 12px;
  }

  .hero.hero-poster-mode .hero-dots {
    bottom: calc(var(--hero-news-bottom) + var(--hero-news-height) + 18px);
  }

  .hero-news-column {
    height: var(--hero-news-height);
    border-left: 0;
  }

  .hero-news-column:not(:first-child) {
    display: none;
  }

  .hero.hero-poster-mode .hero-news a {
    height: var(--hero-news-height);
    min-height: var(--hero-news-height);
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .hero.hero-poster-mode {
    --hero-news-bottom: 14px;
    --hero-news-height: 78px;
    --hero-news-overlap: 0px;
    height: min(720px, 100svh);
    min-height: 600px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .hero-poster-copy,
  .hero-poster-copy.centered-copy {
    top: 108px;
    left: 18px;
    right: 18px;
  }

  .hero-poster-copy p {
    font-size: 13px;
  }

  .hero-poster-copy h1 {
    max-width: 8.2em;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.12;
  }

  .hero-poster-copy span {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.62;
  }

  .hero-poster-copy a {
    min-height: 40px;
    padding: 0 20px;
    font-size: 14px;
  }

  .hero.hero-poster-mode .hero-news {
    bottom: var(--hero-news-bottom);
    width: calc(100% - 26px);
    min-height: var(--hero-news-height);
  }

  .hero-immersion-bar {
    width: calc(100% - 26px);
    bottom: calc(var(--hero-news-bottom) + var(--hero-news-height) + 46px);
  }

  .hero-news-column,
  .hero.hero-poster-mode .hero-news a {
    height: var(--hero-news-height);
    min-height: var(--hero-news-height);
  }

  .tool-icon {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }

  .floating-tools em {
    top: 5px;
    right: 5px;
  }
}

/* 2026-05-31 admin console and hero calibration */
.hero.hero-poster-mode {
  --hero-news-height: clamp(112px, 5.15vw, 126px);
  --hero-news-drop: calc(var(--hero-news-height) * 0.5);
  --hero-news-bottom: calc(var(--hero-news-drop) * -1);
  height: 100svh;
  min-height: 720px;
  margin-bottom: var(--hero-news-drop);
  background: #fff;
}

.hero.hero-poster-mode::after {
  content: none;
}

.hero.hero-poster-mode .hero-news {
  width: min(1620px, calc(100% - 420px));
  padding: 0 20px;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.home-page main,
.home-page .hot-products,
.home-page .sections-shell {
  background: #fff;
}

.hero.hero-poster-mode + .hot-products {
  background: #fff;
}

.hero.hero-poster-mode .hero-news a {
  padding: 0 24px;
}

.hero.hero-poster-mode .hero-news strong {
  font-size: clamp(20px, 1.1vw, 24px);
}

.hero.hero-poster-mode .hero-news span {
  margin-top: 5px;
  font-size: clamp(12px, 0.76vw, 15px);
}

.hero.hero-poster-mode .hero-dots {
  bottom: calc(var(--hero-news-bottom) + var(--hero-news-height) + 34px);
}

.about-mega-menu {
  background: rgba(8, 12, 18, 0.99);
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.54);
}

.about-menu-showcase {
  background:
    linear-gradient(135deg, rgba(180, 20, 28, 0.94), rgba(7, 10, 15, 0.9)),
    url("./assets/about-photos/company-factory-exterior-rich.jpg") center/cover;
}

.about-menu-cards a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    #0c1119;
}

.about-menu-showcase strong,
.about-menu-cards strong {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.about-menu-showcase p,
.about-menu-cards span {
  color: rgba(255, 255, 255, 0.86);
}

.preview-remove {
  z-index: 20;
  display: inline-grid !important;
  opacity: 1;
  background: #dc2626;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.28);
}

.customer-page {
  --admin-bg: #f3f6fb;
  --admin-panel: #ffffff;
  --admin-card: #ffffff;
  --admin-line: #e3e8f0;
  --admin-ink: #111827;
  --admin-muted: #667085;
  --admin-primary: #d71920;
  --admin-primary-dark: #b8121a;
  --admin-blue: #2457d6;
  --admin-soft-blue: #eef4ff;
  --admin-soft-red: #fff1f2;
  color: var(--admin-ink);
  background:
    radial-gradient(circle at 20% -10%, rgba(36, 87, 214, 0.12), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(215, 25, 32, 0.08), transparent 32%),
    var(--admin-bg);
}

.customer-main {
  min-height: 100vh;
  padding: 0 !important;
  background: transparent;
}

.customer-panel {
  width: min(1120px, calc(100% - 48px));
  min-height: calc(100vh - 96px);
  margin: 48px auto;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
    var(--admin-panel);
  box-shadow: 0 28px 90px rgba(17, 24, 39, 0.12);
}

.customer-panel .eyebrow {
  color: var(--admin-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.customer-panel h1 {
  margin: 10px 0 14px;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: 0;
}

.customer-panel p {
  max-width: 660px;
  color: var(--admin-muted);
}

.customer-login {
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--admin-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
}

.customer-login input {
  border-color: var(--admin-line);
  border-radius: 12px;
  background: #fff;
}

.customer-login button {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--admin-primary), var(--admin-primary-dark));
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.18);
}

.admin-workspace {
  min-height: 100vh;
  grid-template-columns: 236px minmax(0, 1fr) !important;
  padding: 0 !important;
  background:
    radial-gradient(circle at 22% 0%, rgba(36, 87, 214, 0.1), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
}

.admin-sidebar {
  padding: 18px 14px;
  color: #344054;
  background: rgba(255, 255, 255, 0.94);
  border-right: 1px solid var(--admin-line);
  box-shadow: 16px 0 44px rgba(17, 24, 39, 0.04);
  backdrop-filter: blur(18px);
}

.admin-sidebar-brand {
  gap: 8px;
  padding: 8px 8px 18px;
  border-bottom-color: var(--admin-line);
}

.admin-sidebar-brand img {
  width: 176px;
  max-height: 56px;
}

.admin-sidebar-brand span {
  color: #98a2b3;
  letter-spacing: 0.08em;
}

.admin-tabs {
  gap: 5px;
}

.admin-tabs button {
  min-height: 44px;
  grid-template-columns: 38px 1fr;
  border-radius: 12px;
  padding: 0 12px;
  color: #475467;
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.admin-tabs button span {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #4768b5;
  background: var(--admin-soft-blue);
}

.admin-tabs button:hover {
  background: #f2f5fa;
}

.admin-tabs button.active {
  color: var(--admin-ink);
  background: var(--admin-soft-red);
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.14);
}

.admin-tabs button.active::before {
  top: 11px;
  bottom: 11px;
  width: 4px;
  background: var(--admin-primary);
}

.admin-tabs button.active span {
  color: #fff;
  background: var(--admin-primary);
}

.admin-logout {
  min-height: 42px;
  border-color: var(--admin-line);
  border-radius: 12px;
  background: #f8fafc;
}

.admin-content {
  padding: 26px clamp(24px, 3vw, 44px) 72px;
}

.admin-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(38, 52, 78, 0.92) 55%, rgba(159, 18, 57, 0.88)),
    #151b27;
  box-shadow: 0 22px 64px rgba(17, 24, 39, 0.18);
}

.admin-dashboard::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-dashboard > * {
  position: relative;
  z-index: 1;
}

.admin-dashboard h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.admin-stat-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-stat-grid article {
  min-height: 112px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.admin-pane {
  border: 1px solid var(--admin-line);
  border-radius: 20px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 52px rgba(17, 24, 39, 0.08);
}

.customer-results-head {
  align-items: center;
  padding-bottom: 18px;
  border-bottom-color: var(--admin-line);
}

.customer-results-head h2 {
  margin: 0;
  font-size: clamp(26px, 2vw, 34px);
}

.customer-results-head p,
.admin-help {
  color: var(--admin-muted);
}

.customer-results-head button,
.admin-head-actions button,
.media-upload-form button,
.settings-save-bar button,
.product-form-actions button,
.sku-builder-head button,
.sku-row button,
.menu-group-head button,
.menu-item-card button,
.menu-node-top button,
.admin-inline-button,
.admin-user-card button,
.admin-chat-actions button,
.admin-chat-reply button {
  border-radius: 10px;
  font-weight: 900;
}

.customer-results-head button,
.admin-head-actions button,
.media-upload-form button,
.settings-save-bar button,
.product-form-actions button:first-child,
.admin-chat-reply button {
  background: linear-gradient(135deg, var(--admin-primary), var(--admin-primary-dark));
  box-shadow: 0 10px 22px rgba(215, 25, 32, 0.14);
}

.admin-overview-grid button,
.menu-group-card,
.settings-slide-card,
.settings-qr-card,
.settings-brand-card,
.media-upload-form,
.admin-user-form,
.admin-user-card,
.lead-table-wrap,
.admin-product-card,
.gallery-manager,
.admin-upload-group {
  border: 1px solid var(--admin-line);
  border-radius: 16px;
  background: var(--admin-card);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.admin-overview-grid button {
  min-height: 168px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.07), transparent 56%),
    #fff;
}

.lead-table-wrap {
  overflow: auto;
  margin-top: 20px;
}

.lead-table {
  border-collapse: separate;
  border-spacing: 0;
}

.lead-table th {
  color: #475467;
  background: #f8fafc;
}

.lead-table th,
.lead-table td {
  border-bottom: 1px solid var(--admin-line);
}

.admin-product-list {
  gap: 14px;
  margin-top: 18px;
}

.admin-product-card {
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.admin-product-card img {
  width: 148px;
  height: 112px;
  border-radius: 12px;
  object-fit: contain;
  background: #f3f6fa;
}

.admin-product-card h3 {
  margin: 6px 0;
  font-size: 20px;
}

.admin-product-card p {
  margin: 0;
}

.admin-product-card strong {
  color: #344054;
}

.admin-product-card div div {
  justify-content: flex-start;
  gap: 8px;
}

.admin-product-card button,
.admin-product-card a {
  min-height: 36px;
  border-radius: 9px;
  padding: 0 14px;
  font-size: 13px;
}

.admin-product-card button[data-toggle-product-status] {
  background: #344054;
}

.admin-product-card button[data-delete-product] {
  background: #b42318;
}

.product-status-badge {
  border-radius: 999px;
}

body.product-editor-open .product-admin-form {
  top: 26px;
  width: min(1240px, calc(100vw - 52px));
  max-height: calc(100vh - 52px);
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 34px 110px rgba(17, 24, 39, 0.34);
}

body.product-editor-open .product-admin-form .listing-form-head {
  position: sticky;
  top: 0;
  z-index: 2;
  border-radius: 22px 22px 0 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.listing-form-head {
  border-bottom-color: var(--admin-line);
}

.listing-form-head h2,
.listing-form-head h3 {
  margin: 0;
}

.listing-head-actions button {
  border-radius: 10px;
}

.listing-section {
  border-bottom: 10px solid #f4f7fb;
}

.listing-section h3 span {
  color: var(--admin-blue);
}

.listing-grid input,
.listing-grid textarea,
.listing-grid select,
.product-admin-form input,
.product-admin-form textarea,
.product-admin-form select,
.menu-admin-form input,
.menu-admin-form textarea,
.settings-admin-form input,
.settings-admin-form textarea,
.settings-admin-form select,
.admin-user-form input,
.admin-user-form select {
  min-height: 44px;
  border: 1px solid var(--admin-line);
  border-radius: 10px;
  background: #fff;
}

.gallery-manager {
  grid-template-columns: minmax(260px, 340px) minmax(180px, 0.45fr) 1fr;
  padding: 18px;
}

.detail-upload-manager {
  grid-template-columns: minmax(260px, 340px) 1fr;
}

.batch-upload-panel,
.upload-preview-list,
.product-image-preview,
.product-video-preview,
.settings-upload-control,
.settings-preview-box,
.media-card,
.settings-logo-preview div {
  border-radius: 14px;
}

.batch-upload-panel {
  border-color: #b8c5d8;
  background:
    linear-gradient(135deg, rgba(36, 87, 214, 0.06), transparent),
    #fff;
}

.upload-preview-list {
  min-height: 170px;
  border-color: #ccd6e4;
}

.upload-preview-list img {
  border-radius: 10px;
}

.sku-row {
  border-radius: 12px;
  background: #f8fafc;
}

.menu-group-card {
  overflow: hidden;
}

.menu-group-summary,
.menu-node-summary {
  border-radius: 16px 16px 0 0;
}

.menu-node-card {
  border-radius: 14px;
}

.settings-slide-card,
.settings-qr-card,
.settings-brand-card,
.media-upload-form,
.admin-user-form {
  padding: 20px;
  background: #fff;
}

.settings-preview-row img,
.settings-preview-box img,
.media-card img {
  border-radius: 12px;
}

.settings-save-bar {
  border-radius: 18px;
}

.media-library {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.admin-chat-layout {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 18px;
}

.admin-chat-list,
.admin-chat-room {
  border-radius: 18px;
}

.admin-chat-session {
  border-radius: 12px;
}

.admin-chat-session.active {
  background: var(--admin-soft-red);
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.18);
}

.admin-chat-room-head {
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(135deg, #182233, #303b4d),
    #182233;
}

.admin-chat-message p {
  border-radius: 14px;
}

.admin-chat-reply input {
  border-radius: 12px;
}

.admin-users-layout {
  gap: 18px;
}

.admin-permission-checks {
  border-radius: 14px;
}

.admin-permission-checks label {
  border-radius: 10px;
}

.admin-editor-dialog {
  backdrop-filter: blur(4px);
}

.admin-editor-modal {
  border-radius: 22px;
}

.admin-editor-modal .listing-section {
  border-bottom: 0;
  border-radius: 0 0 22px 22px;
}

@media (min-width: 981px) and (max-width: 1440px) {
  .hero.hero-poster-mode {
    min-height: 760px;
  }

  .hero.hero-poster-mode .hero-news {
    width: min(1320px, calc(100% - 260px));
  }
}

@media (max-width: 1200px) {
  .admin-dashboard {
    grid-template-columns: 1fr;
  }

  .admin-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-manager {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero.hero-poster-mode {
    --hero-news-height: 92px;
    --hero-news-overlap: 0px;
    --hero-news-bottom: 18px;
    height: min(760px, 100svh);
    min-height: 620px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .hero.hero-poster-mode .hero-news {
    width: min(540px, calc(100% - 32px));
    padding: 0 12px;
    grid-template-columns: 1fr;
  }

  .hero.hero-poster-mode .hero-news a {
    padding: 0 12px;
  }

  .hero.hero-poster-mode .hero-news strong {
    font-size: 18px;
  }

  .hero.hero-poster-mode .hero-news span {
    font-size: 13px;
  }

  .hero-news-column:not(:first-child) {
    display: none;
  }

  .admin-workspace {
    grid-template-columns: 1fr !important;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .admin-content {
    padding: 18px;
  }

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

  .admin-stat-grid,
  .admin-overview-grid,
  .admin-users-layout,
  .admin-chat-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero.hero-poster-mode {
    --hero-news-height: 78px;
    --hero-news-overlap: 0px;
    --hero-news-bottom: 14px;
    height: min(720px, 100svh);
    min-height: 600px;
  }

  .customer-panel {
    width: calc(100% - 28px);
    min-height: auto;
    margin: 14px auto;
    padding: 28px 18px;
    grid-template-columns: 1fr;
  }

  .customer-login {
    padding: 18px;
  }

  .admin-content {
    padding: 14px;
  }

  .admin-pane {
    padding: 18px;
    border-radius: 16px;
  }

  .admin-tabs {
    grid-template-columns: 1fr;
  }

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

  .admin-product-card img {
    width: 100%;
    height: 180px;
  }

  body.product-editor-open .product-admin-form {
    top: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }
}

/* 2026-06-02 final homepage calibration: first viewport is the hero, info strip half-overlaps into white content. */
.home-page {
  --home-info-height: clamp(96px, 4.55vw, 108px);
  --home-info-overlap: calc(var(--home-info-height) * 0.5);
  background: #fff;
}

.home-page main,
.home-page .sections-shell,
.home-page .hot-products,
.home-page .hot-product-tabs,
.home-page .hot-product-stage,
.home-page .home-section {
  background: #fff !important;
}

.home-page .hero.hero-poster-mode::after,
.home-page .hot-products::before,
.home-page .hot-products::after {
  content: none !important;
  display: none !important;
}

.home-page .hero.hero-poster-mode {
  --hero-news-height: var(--home-info-height);
  --hero-news-bottom: calc(var(--home-info-overlap) * -1);
  height: 100svh;
  min-height: 720px;
  margin-bottom: 0;
  overflow: visible;
  background: #fff;
}

.home-page .hero.hero-poster-mode + .hot-products {
  margin-top: 0;
  padding-top: calc(var(--home-info-overlap) + 20px);
  background: #fff !important;
}

.home-page .hero.hero-poster-mode .hero-news {
  bottom: var(--hero-news-bottom);
  min-height: var(--hero-news-height);
  width: min(1600px, calc(100% - 430px));
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.home-page .hero-news-column,
.home-page .hero.hero-poster-mode .hero-news a {
  height: var(--hero-news-height);
  min-height: var(--hero-news-height);
}

.home-page .hero.hero-poster-mode .hero-news a {
  padding: 0 22px;
}

.home-page .hero.hero-poster-mode .hero-news strong {
  font-size: clamp(18px, 1vw, 22px);
  line-height: 1.22;
}

.home-page .hero.hero-poster-mode .hero-news span {
  margin-top: 5px;
  font-size: clamp(12px, 0.72vw, 14px);
}

.home-page .hero.hero-poster-mode .hero-dots {
  bottom: calc(var(--hero-news-height) + 12px);
}

.about-mega-menu {
  background: rgba(6, 9, 14, 0.99) !important;
}

.about-menu-showcase {
  opacity: 1;
}

.about-menu-cards a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    #0b1018 !important;
  opacity: 1 !important;
}

.about-menu-showcase strong,
.about-menu-cards strong {
  color: #fff !important;
}

.about-menu-showcase p,
.about-menu-cards span {
  color: rgba(255, 255, 255, 0.92) !important;
}

.upload-preview-list figure {
  position: relative;
}

.upload-preview-list .preview-remove {
  top: 8px;
  right: 8px;
  z-index: 40;
  display: inline-grid !important;
  place-items: center;
  opacity: 1 !important;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #fff;
  background: #d71920;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.3);
}

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

.gallery-actions button {
  min-height: 36px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 0 14px;
  color: #243044;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.gallery-actions button:hover,
.gallery-actions button:focus-visible {
  border-color: #d71920;
  color: #d71920;
}

@media (min-width: 981px) and (max-width: 1440px) {
  .home-page {
    --home-info-height: 98px;
  }

  .home-page .hero.hero-poster-mode .hero-news {
    width: min(1320px, calc(100% - 260px));
  }
}

@media (max-width: 980px) {
  .home-page {
    --home-info-height: 86px;
    --home-info-overlap: 0px;
  }

  .home-page .hero.hero-poster-mode {
    --hero-news-height: var(--home-info-height);
    --hero-news-bottom: 14px;
    height: min(760px, 100svh);
    min-height: 620px;
    overflow: hidden;
  }

  .home-page .hero.hero-poster-mode + .hot-products {
    padding-top: 34px;
  }

  .home-page .hero.hero-poster-mode .hero-news {
    width: min(540px, calc(100% - 32px));
    grid-template-columns: 1fr;
  }

  .home-page .hero-news-column:not(:first-child) {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-page {
    --home-info-height: 78px;
  }

  .home-page .hero.hero-poster-mode {
    --hero-news-bottom: 12px;
    height: min(720px, 100svh);
    min-height: 600px;
  }
}

/* 2026-06-02 homepage final proportion pass: keep the hero as first viewport and make the strip half-overlap into a white section. */
@media (min-width: 981px) {
  body.home-page,
  .home-page,
  .home-page main,
  .home-page .sections-shell,
  .home-page .hot-products,
  .home-page .hot-products .section-inner,
  .home-page .hot-product-tabs,
  .home-page .hot-product-stage,
  .home-page .product-showcase-zone,
  .home-page .home-section {
    background: #fff !important;
  }

  .home-page {
    --home-info-height: clamp(82px, 3.8vw, 92px);
    --home-info-overlap: calc(var(--home-info-height) * 0.5);
  }

  .home-page .hero.hero-poster-mode {
    --hero-news-height: var(--home-info-height);
    --hero-news-bottom: calc(var(--home-info-overlap) * -1);
    height: 100svh;
    min-height: 720px;
    margin-bottom: 0 !important;
    overflow: visible;
  }

  .home-page .hero.hero-poster-mode::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    z-index: 6;
    left: 0;
    right: 0;
    bottom: calc(var(--home-info-overlap) * -1);
    height: calc(var(--home-info-height) + var(--home-info-overlap) + 22px);
    background: #fff;
    pointer-events: none;
  }

  .home-page .hero.hero-poster-mode + .hot-products {
    margin-top: 0 !important;
    padding-top: calc(var(--home-info-overlap) + 10px) !important;
    background: #fff !important;
  }

  .home-page .hero.hero-poster-mode .hero-news {
    bottom: var(--hero-news-bottom) !important;
    z-index: 10;
    height: var(--home-info-height);
    min-height: var(--home-info-height);
    width: min(1560px, calc(100% - 430px));
    background: rgba(255, 255, 255, 0.98);
  }

  .home-page .hero-news-column,
  .home-page .hero.hero-poster-mode .hero-news a {
    height: var(--home-info-height);
    min-height: var(--home-info-height);
  }

  .home-page .hero.hero-poster-mode .hero-news a {
    padding: 0 18px;
  }

  .home-page .hero.hero-poster-mode .hero-news strong {
    font-size: clamp(16px, 0.9vw, 20px);
  }

  .home-page .hero.hero-poster-mode .hero-news span {
    margin-top: 4px;
    font-size: clamp(11px, 0.64vw, 13px);
  }

  .home-page .hero.hero-poster-mode .hero-dots {
    bottom: calc(var(--home-info-height) + 14px);
  }
}

/* Make admin product image removal obvious on existing and pending uploads. */
.upload-preview-list .preview-remove {
  position: absolute !important;
  top: -10px !important;
  right: -10px !important;
  z-index: 80 !important;
  width: 34px !important;
  height: 34px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: #d71920 !important;
  border: 2px solid #fff !important;
  box-shadow: 0 12px 30px rgba(127, 29, 29, 0.34) !important;
  font-size: 21px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

/* 2026-06-03 homepage reference alignment.
   Match the reference structure: hero is one viewport tall, and the white
   information strip straddles the bottom edge instead of creating a gray band. */
@media (min-width: 981px) {
  body.home-page,
  .home-page,
  .home-page main,
  .home-page .hot-products,
  .home-page .hot-products .section-inner,
  .home-page .hot-product-tabs,
  .home-page .hot-product-stage,
  .home-page .product-showcase-zone,
  .home-page .home-section {
    background: #fff !important;
  }

  .home-page {
    --home-info-height: 132px;
    --home-info-drop: 42px;
  }

  .home-page .hero.hero-poster-mode {
    --hero-news-height: var(--home-info-height);
    --hero-news-bottom: calc(var(--home-info-drop) * -1);
    height: 100svh !important;
    min-height: 720px !important;
    max-height: none !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
    background: #fff !important;
  }

  .home-page .hero.hero-poster-mode::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 5 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: calc(var(--home-info-drop) * -1) !important;
    height: var(--home-info-drop) !important;
    background: #fff !important;
    pointer-events: none !important;
  }

  .home-page .hero.hero-poster-mode .hero-news {
    left: 50% !important;
    right: auto !important;
    bottom: var(--hero-news-bottom) !important;
    z-index: 14 !important;
    width: min(1560px, calc(100% - 128px)) !important;
    height: var(--home-info-height) !important;
    min-height: var(--home-info-height) !important;
    transform: translateX(-50%) !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .home-page .hero-news-column,
  .home-page .hero.hero-poster-mode .hero-news a {
    height: var(--home-info-height) !important;
    min-height: var(--home-info-height) !important;
  }

  .home-page .hero.hero-poster-mode .hero-news a {
    padding: 0 22px !important;
  }

  .home-page .hero.hero-poster-mode .hero-news strong {
    font-size: clamp(18px, 1.15vw, 24px) !important;
  }

  .home-page .hero.hero-poster-mode .hero-news span {
    margin-top: 8px !important;
    font-size: clamp(12px, 0.72vw, 14px) !important;
  }

  .home-page .hero.hero-poster-mode .hero-dots {
    bottom: calc(var(--home-info-height) + 18px) !important;
  }

  .home-page .hero.hero-poster-mode + .hot-products {
    margin-top: 0 !important;
    padding-top: calc(var(--home-info-drop) + 36px) !important;
    background: #fff !important;
  }

  .home-page .hero.hero-poster-mode + .hot-products::before,
  .home-page .hero.hero-poster-mode + .hot-products::after,
  .home-page .hot-products::before,
  .home-page .hot-products::after,
  .home-page .product-showcase-zone::before,
  .home-page .product-showcase-zone::after {
    content: none !important;
    display: none !important;
    background: #fff !important;
  }
}

/* 2026-06-04 Bodor-style mobile polish. */
@media (max-width: 980px) {
  .home-page .site-header {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    height: 48px !important;
    padding: 0 14px !important;
    color: #171a20 !important;
    background: rgba(241, 242, 244, 0.96) !important;
    box-shadow: 0 1px 0 rgba(15, 17, 20, 0.08);
    backdrop-filter: blur(14px);
  }

  .home-page .site-header:hover,
  .home-page .site-header:focus-within,
  .home-page .site-header.is-solid,
  .home-page .site-header.mobile-menu-open {
    color: #171a20 !important;
    background: rgba(241, 242, 244, 0.98) !important;
    box-shadow: 0 1px 0 rgba(15, 17, 20, 0.08);
  }

  .home-page .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    z-index: 2;
    width: 128px !important;
    height: 38px !important;
  }

  .home-page .brand-logo-dark {
    opacity: 1 !important;
  }

  .home-page .brand-logo-light {
    opacity: 0 !important;
  }

  .home-page .header-actions {
    grid-column: 1 / 4;
    grid-row: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    pointer-events: none;
  }

  .home-page .header-actions > * {
    pointer-events: auto;
  }

  .home-page .menu-button {
    grid-column: 1;
    order: -1;
    width: 32px !important;
    height: 32px !important;
    border: 0 !important;
    background: transparent !important;
  }

  .home-page .menu-button:focus-visible {
    outline: 2px solid rgba(21, 25, 34, 0.38);
    outline-offset: 2px;
  }

  .home-page .menu-button span {
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #151922 !important;
  }

  .home-page .header-utility {
    grid-column: 3;
    gap: 13px;
  }

  .home-page .header-icon-button,
  .home-page .header-language {
    width: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    color: #151922 !important;
  }

  .home-page .header-icon-button svg,
  .home-page .header-language svg {
    stroke: currentColor !important;
  }

  .home-page .header-utility-divider,
  .home-page .header-actions > .header-cta-pill {
    display: none !important;
  }

  .home-page .mobile-menu {
    top: 48px !important;
    max-height: calc(100vh - 48px) !important;
    padding: 10px 22px 18px !important;
  }

  .home-page .mobile-menu-actions {
    display: none !important;
  }

  .home-page .mobile-menu details {
    padding: 13px 0 !important;
  }

  .home-page .mobile-menu summary {
    color: #151922;
    font-size: 17px;
  }

  .home-page .mobile-menu a {
    color: #626a75;
    font-size: 15px;
  }

  .home-page .hero.hero-poster-mode {
    --hero-news-height: 78px;
    --hero-news-bottom: -39px;
    height: min(760px, calc(100svh - 48px)) !important;
    min-height: 650px !important;
    margin-top: 48px;
    overflow: visible !important;
  }

  .home-page .hero-poster-copy,
  .home-page .hero-poster-copy.centered-copy {
    left: 0 !important;
    right: 0 !important;
    top: 105px !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 26px !important;
    text-align: center !important;
    transform: none !important;
  }

  .home-page .hero-poster-copy p {
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
  }

  .home-page .hero-poster-copy h1 {
    margin-top: 9px !important;
    font-size: clamp(34px, 8.5vw, 52px) !important;
    line-height: 1.08 !important;
  }

  .home-page .hero-poster-copy span {
    max-width: 440px;
    margin: 14px auto 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .home-page .hero-poster-copy a {
    height: 56px !important;
    min-width: 168px;
    margin: 24px auto 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #171a20 !important;
    background: rgba(255, 255, 255, 0.96) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
  }

  .home-page .hero.hero-poster-mode .hero-dots {
    bottom: calc(var(--hero-news-height) + 8px) !important;
  }

  .home-page .hero.hero-poster-mode .hero-news {
    bottom: var(--hero-news-bottom) !important;
    width: min(540px, calc(100% - 52px)) !important;
    height: var(--hero-news-height) !important;
    min-height: var(--hero-news-height) !important;
    padding: 0 !important;
    border: 1px solid rgba(15, 17, 20, 0.08);
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16) !important;
  }

  .home-page .hero-news-column,
  .home-page .hero.hero-poster-mode .hero-news a {
    height: var(--hero-news-height) !important;
    min-height: var(--hero-news-height) !important;
  }

  .home-page .hero.hero-poster-mode .hero-news a {
    padding: 0 18px !important;
  }

  .home-page .hero.hero-poster-mode .hero-news strong {
    color: #151922 !important;
    font-size: 18px !important;
  }

  .home-page .hero.hero-poster-mode .hero-news span {
    color: #69707a !important;
    font-size: 12px !important;
  }

  .home-page .hero.hero-poster-mode + .hot-products {
    padding-top: 76px !important;
  }

  .home-page .hot-product-tabs {
    width: min(540px, calc(100% - 32px));
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    border-bottom: 0;
  }

  .home-page .hot-product-tabs button {
    display: none;
  }

  .home-page .hot-product-tabs button.active {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    color: #171a20;
    font-size: 26px;
    font-weight: 800;
  }

  .home-page .hot-product-tabs button.active::after {
    left: 50%;
    right: auto;
    bottom: 0;
    width: 82px;
    height: 2px;
    transform: translateX(-50%);
    background: #c96e2f;
  }

  .home-page .hot-product-stage {
    display: block !important;
    width: min(540px, calc(100% - 32px)) !important;
  }

  .home-page .hot-product-feature {
    display: none !important;
  }

  .home-page .hot-product-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .home-page .hot-product-grid a {
    min-height: 430px !important;
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    padding: 28px 28px 22px !important;
    border-radius: 8px;
    background: #f4f5f7 !important;
    box-shadow: none !important;
  }

  .home-page .hot-product-grid strong {
    order: 1;
    color: #343941;
    font-size: 24px !important;
    font-weight: 500;
  }

  .home-page .hot-product-grid strong::after {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin-top: 14px;
    background: #9aa0a8;
  }

  .home-page .hot-product-grid span {
    order: 2;
    color: #737b86;
    font-size: 14px !important;
  }

  .home-page .hot-product-grid img {
    order: 3;
    height: 280px !important;
    margin-top: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
  }
}

@media (max-width: 520px) {
  .home-page .brand {
    width: 122px !important;
  }

  .home-page .hero.hero-poster-mode {
    min-height: 640px !important;
  }

  .home-page .hero-poster-copy,
  .home-page .hero-poster-copy.centered-copy {
    top: 92px !important;
  }

  .home-page .hero-poster-copy h1 {
    font-size: clamp(32px, 9vw, 46px) !important;
  }
}

/* 2026-06-04 desktop pass: match the Bodor hero proportions. */
@media (min-width: 981px) {
  .home-page .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: min(1152px, calc(100% - 128px));
    height: 64px !important;
    left: 50%;
    right: auto;
    padding: 0 !important;
    color: #fff;
    background: transparent !important;
    box-shadow: none !important;
    transform: translateX(-50%);
    backdrop-filter: none !important;
  }

  .home-page .site-header.is-solid,
  .home-page .site-header:hover,
  .home-page .site-header:focus-within {
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-page .site-header.is-solid:not(:hover):not(:focus-within) {
    color: #151922 !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08) !important;
    backdrop-filter: blur(16px) !important;
  }

  .home-page .brand {
    width: 92px;
    height: 40px;
  }

  .home-page .site-header.logo-on-light .brand-logo-dark {
    opacity: 1 !important;
  }

  .home-page .site-header.logo-on-light .brand-logo-light {
    opacity: 0 !important;
  }

  .home-page .site-header:not(.logo-on-light) .brand-logo-dark {
    opacity: 0 !important;
  }

  .home-page .site-header:not(.logo-on-light) .brand-logo-light {
    opacity: 1 !important;
  }

  .home-page .nav-links {
    justify-self: start;
    gap: 0;
    height: 64px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 34px;
  }

  .home-page .nav-item {
    height: 64px;
    padding: 0 12px;
  }

  .home-page .nav-item > a {
    height: 64px;
    color: rgba(255, 255, 255, 0.92);
  }

  .home-page .site-header.logo-on-light .nav-item > a {
    color: rgba(20, 24, 31, 0.78);
  }

  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .nav-item > a {
    color: rgba(20, 24, 31, 0.82);
  }

  .home-page .nav-item:hover > a,
  .home-page .nav-item:focus-within > a {
    color: #fff;
  }

  .home-page .site-header.logo-on-light .nav-item:hover > a,
  .home-page .site-header.logo-on-light .nav-item:focus-within > a {
    color: #11141a;
  }

  .home-page .header-actions {
    height: 64px;
    min-width: 292px;
    gap: 14px;
    font-size: 12px;
  }

  .home-page .header-utility {
    gap: 10px;
    flex: 0 0 auto;
  }

  .home-page .header-icon-button {
    width: 24px;
    min-width: 24px;
    min-height: 24px;
    color: rgba(255, 255, 255, 0.9);
  }

  .home-page .header-language {
    width: auto;
    min-width: 126px;
    min-height: 24px;
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.9);
  }

  .home-page .site-header.logo-on-light .header-icon-button,
  .home-page .site-header.logo-on-light .header-language {
    color: #151922;
  }

  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-icon-button,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-language {
    color: #151922;
  }

  .home-page .header-icon-button svg,
  .home-page .header-language svg {
    width: 19px;
    height: 19px;
  }

  .home-page .header-language span {
    display: inline;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
  }

  .home-page .site-header.logo-on-light .header-language span {
    color: #151922;
  }

  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-language span {
    color: #151922;
  }

  .home-page .header-utility-divider {
    height: 20px;
    background: rgba(255, 255, 255, 0.55);
  }

  .home-page .site-header.logo-on-light .header-utility-divider {
    background: rgba(20, 24, 31, 0.34);
  }

  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-utility-divider {
    background: rgba(20, 24, 31, 0.28);
  }

  .home-page .header-actions > .header-cta-pill {
    width: 92px;
    min-width: 92px;
    height: 28px;
    padding: 0 16px;
    border: 0;
    color: #1a1d22 !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: none;
    font-size: 12px;
  }

  .home-page .header-actions > .header-cta-pill span {
    color: #1a1d22 !important;
  }

  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-actions > .header-cta-pill {
    color: #fff !important;
    background: #151922 !important;
  }

  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-actions > .header-cta-pill span {
    color: #fff !important;
  }

  .home-page .mega-menu {
    top: 64px;
  }

  .home-page .hero.hero-poster-mode {
    --home-info-height: 160px;
    --home-info-drop: 70px;
    --hero-news-height: var(--home-info-height);
    --hero-news-bottom: calc(var(--home-info-drop) * -1);
    height: 800px !important;
    min-height: 800px !important;
    max-height: 800px !important;
    overflow: visible !important;
    background: #fff !important;
  }

  .home-page .hero-slide-poster::before {
    inset: 0;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .home-page .hero-slide-poster img {
    object-fit: cover;
    object-position: center top;
  }

  .home-page .hero-poster-dark .hero-shade {
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 26%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02) 36%, rgba(0, 0, 0, 0.18));
  }

  .home-page .hero-poster-copy,
  .home-page .hero-poster-copy.centered-copy {
    top: 128px;
    left: 50%;
    width: min(960px, 70vw);
    text-align: center;
    transform: translateX(-50%);
  }

  .home-page .hero-poster-copy p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    font-weight: 500;
  }

  .home-page .hero-poster-copy h1 {
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(36px, 2.9vw, 56px);
    font-weight: 800;
    line-height: 1.08;
  }

  .home-page .hero-poster-copy span {
    display: none;
  }

  .home-page .hero-poster-copy a {
    min-height: 34px;
    padding: 0 23px;
    border: 0;
    border-radius: 999px;
    color: #15181d !important;
    background: rgba(255, 255, 255, 0.96) !important;
    font-size: 14px;
    font-weight: 700;
  }

  .home-page .hero-arrow {
    width: 44px;
    height: 66px;
    border: 0;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    font-size: 46px;
  }

  .home-page .hero-arrow.prev {
    left: 14px;
  }

  .home-page .hero-arrow.next {
    right: 14px;
  }

  .home-page .hero.hero-poster-mode .hero-dots {
    display: none;
  }

  .home-page .hero.hero-poster-mode::after {
    height: var(--home-info-drop) !important;
    bottom: calc(var(--home-info-drop) * -1) !important;
  }

  .home-page .hero.hero-poster-mode .hero-news {
    bottom: var(--hero-news-bottom) !important;
    width: min(1152px, calc(100% - 102px)) !important;
    height: var(--home-info-height) !important;
    min-height: var(--home-info-height) !important;
    padding: 0 !important;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255, 236, 236, 0.92), rgba(255, 255, 255, 0.98)) !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  }

  .home-page .hero-news-column,
  .home-page .hero.hero-poster-mode .hero-news a {
    height: var(--home-info-height) !important;
    min-height: var(--home-info-height) !important;
  }

  .home-page .hero.hero-poster-mode .hero-news a {
    padding: 0 28px !important;
  }

  .home-page .hero.hero-poster-mode .hero-news strong {
    color: #151922;
    font-size: 20px !important;
    font-weight: 800;
  }

  .home-page .hero.hero-poster-mode .hero-news span {
    margin-top: 9px !important;
    color: #4d5664;
    font-size: 13px !important;
  }

  .home-page .hero.hero-poster-mode + .hot-products {
    padding-top: 146px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 92px;
  }

  .home-page .hot-product-tabs {
    width: min(1152px, calc(100% - 128px));
    gap: 0;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.16);
  }

  .home-page .hot-product-tabs button {
    min-height: 54px;
    padding: 0 22px 14px;
    color: #8a919b;
    font-size: 17px;
    font-weight: 500;
  }

  .home-page .hot-product-tabs button.active {
    color: #151922;
    font-size: 22px;
    font-weight: 800;
  }

  .home-page .hot-product-tabs button.active::after {
    left: 22px;
    right: 22px;
    height: 3px;
    background: #f05a28;
  }

  .home-page .hot-product-stage {
    width: min(1152px, calc(100% - 128px));
    grid-template-columns: minmax(230px, 0.72fr) repeat(2, minmax(250px, 1fr));
    gap: 12px;
  }

  .home-page .hot-product-feature {
    min-height: 600px;
    border-radius: 6px;
    padding: 34px 28px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72)),
      var(--hot-feature-bg),
      #020305;
  }

  .home-page .hot-product-feature-kicker,
  .home-page .hot-product-controls {
    display: none;
  }

  .home-page .hot-product-feature strong {
    margin-bottom: 28px;
    font-size: 25px;
    font-weight: 800;
  }

  .home-page .hot-product-feature p {
    max-width: 190px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.75;
  }

  .home-page .hot-product-feature > a {
    display: none;
  }

  .home-page .hot-product-grid {
    grid-column: 2 / 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-page .hot-product-grid a {
    min-height: 600px;
    grid-template-rows: auto auto minmax(410px, 1fr);
    gap: 10px;
    padding: 28px 28px 0;
    border-radius: 6px;
    background: #f4f5f7 !important;
    box-shadow: none !important;
  }

  .home-page .hot-product-grid strong {
    order: 1;
    color: #4c5561;
    font-size: 15px;
    font-weight: 500;
  }

  .home-page .hot-product-grid strong::after {
    content: "";
    display: block;
    width: 34px;
    height: 1px;
    margin-top: 12px;
    background: #9aa1aa;
  }

  .home-page .hot-product-grid span {
    order: 2;
    color: #7b838e;
    font-size: 13px;
  }

  .home-page .hot-product-grid img {
    order: 3;
    align-self: end;
    height: 410px;
    margin-top: auto;
  }
}

@media (min-width: 981px) and (max-width: 1560px) {
  .home-page .site-header {
    width: min(1152px, calc(100% - 128px));
  }

  .home-page .nav-item {
    padding: 0 10px;
  }

  .home-page .hero.hero-poster-mode .hero-news,
  .home-page .hot-product-stage,
  .home-page .hot-product-tabs {
    width: min(1152px, calc(100% - 128px)) !important;
  }

  .home-page .hero.hero-poster-mode .hero-news {
    width: min(1152px, calc(100% - 102px)) !important;
  }
}

/* 2026-06-04 desktop pass: Bodor-style full-width product mega menu. */
@media (min-width: 981px) {
  .home-page .site-header {
    left: max(64px, calc((100% - 1152px) / 2)) !important;
    right: max(64px, calc((100% - 1152px) / 2)) !important;
    width: auto !important;
    transform: none !important;
  }

  body.home-page::before {
    content: "";
    position: fixed;
    inset: 64px 0 0;
    z-index: 1100;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.18s ease;
  }

  body.home-page.product-mega-open::before,
  body.home-page:has(.product-nav-item:hover .product-mega-menu)::before,
  body.home-page:has(.product-nav-item:focus-within .product-mega-menu)::before {
    opacity: 1;
  }

  .home-page .product-mega-menu {
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: min(612px, calc(100vh - 64px)) !important;
    max-height: calc(100vh - 64px) !important;
    grid-template-columns: 230px minmax(0, 780px);
    justify-content: center;
    align-items: stretch;
    gap: 28px;
    padding: 34px max(40px, calc((100vw - 1152px) / 2)) 48px !important;
    border-radius: 0 0 8px 8px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    z-index: 1201;
  }

  .home-page .product-nav-item.is-menu-open .product-mega-menu,
  .home-page .product-nav-item:hover .product-mega-menu,
  .home-page .product-nav-item:focus-within .product-mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .home-page .product-mega-menu::after {
    content: "x";
    position: absolute;
    top: 36px;
    right: max(22px, calc((100vw - 1152px) / 2 + 4px));
    width: 18px;
    height: 18px;
    border: 1px solid #8b95a3;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }

  .home-page .product-mega-rail {
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 24px;
    padding-right: 24px;
    border-right: 1px solid rgba(17, 24, 39, 0.13);
  }

  .home-page .product-mega-tabs {
    gap: 0;
    padding-right: 0;
    overflow-y: auto;
  }

  .home-page .product-group-tabs {
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  }

  .home-page .product-group-tabs button {
    min-height: 40px;
    padding: 0 20px;
    color: #4f5865;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
  }

  .home-page .product-group-tabs button.active {
    color: #ff5a00;
    background: #f5f6f8;
    font-weight: 700;
  }

  .home-page .product-group-tabs button span {
    color: inherit;
    font-size: 18px;
  }

  .home-page .product-mega-more {
    width: calc(100% - 24px);
    min-height: 36px;
    font-size: 13px;
    font-weight: 700;
  }

  .home-page .product-mega-products {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 24px 26px;
    padding: 0 30px 12px 0;
    border-right: 1px solid rgba(17, 24, 39, 0.16);
    overflow-y: auto;
  }

  .home-page .product-mega-card {
    gap: 8px;
    align-content: start;
  }

  .home-page .product-mega-card img {
    height: 138px;
    aspect-ratio: auto;
    padding: 0;
    border-radius: 6px;
    background: #f5f6f8;
    object-fit: contain;
  }

  .home-page .product-mega-card strong {
    color: #151922;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
  }

  .home-page .product-mega-card span {
    color: #7b838e;
    font-size: 12px;
    line-height: 1.45;
  }
}

/* 2026-06-04 desktop correction: full-width header bar with centered inner content. */
@media (min-width: 981px) {
  .home-page .site-header {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 64px !important;
    transform: none !important;
    grid-template-columns: 64px 92px minmax(0, 1fr) 292px 64px !important;
    padding: 0 !important;
  }

  .home-page .brand {
    grid-column: 2;
    justify-self: start;
  }

  .home-page .nav-links {
    grid-column: 3;
    min-width: 0;
    max-width: 100%;
    justify-self: start;
    overflow: visible;
  }

  .home-page .header-actions {
    grid-column: 4;
    width: 292px;
    min-width: 292px;
    justify-self: end;
  }

  .home-page .site-header.is-solid,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within),
  .home-page .site-header:hover,
  .home-page .site-header:focus-within {
    color: #fff !important;
    background: rgba(82, 82, 82, 0.96) !important;
    box-shadow: none !important;
    backdrop-filter: blur(12px) !important;
  }

  .home-page .site-header.is-solid .brand-logo-light,
  .home-page .site-header:hover .brand-logo-light,
  .home-page .site-header:focus-within .brand-logo-light,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .brand-logo-light {
    opacity: 1 !important;
  }

  .home-page .site-header.is-solid .brand-logo-dark,
  .home-page .site-header:hover .brand-logo-dark,
  .home-page .site-header:focus-within .brand-logo-dark,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .brand-logo-dark {
    opacity: 0 !important;
  }

  .home-page .site-header.is-solid .nav-item > a,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .nav-item > a,
  .home-page .site-header:hover .nav-item > a,
  .home-page .site-header:focus-within .nav-item > a {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .home-page .site-header.is-solid .header-icon-button,
  .home-page .site-header.is-solid .header-language,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-icon-button,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-language,
  .home-page .site-header:hover .header-icon-button,
  .home-page .site-header:hover .header-language,
  .home-page .site-header:focus-within .header-icon-button,
  .home-page .site-header:focus-within .header-language {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .home-page .site-header.is-solid .header-language span,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-language span,
  .home-page .site-header:hover .header-language span,
  .home-page .site-header:focus-within .header-language span {
    color: #fff !important;
  }

  .home-page .site-header.is-solid .header-utility-divider,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-utility-divider,
  .home-page .site-header:hover .header-utility-divider,
  .home-page .site-header:focus-within .header-utility-divider {
    background: rgba(255, 255, 255, 0.5) !important;
  }

  .home-page .site-header.is-solid .header-actions > .header-cta-pill,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-actions > .header-cta-pill,
  .home-page .site-header:hover .header-actions > .header-cta-pill,
  .home-page .site-header:focus-within .header-actions > .header-cta-pill {
    color: #151922 !important;
    background: rgba(255, 255, 255, 0.94) !important;
  }

  .home-page .site-header.is-solid .header-actions > .header-cta-pill span,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within) .header-actions > .header-cta-pill span,
  .home-page .site-header:hover .header-actions > .header-cta-pill span,
  .home-page .site-header:focus-within .header-actions > .header-cta-pill span {
    color: #151922 !important;
  }
}

@media (min-width: 1280px) {
  .home-page .site-header {
    grid-template-columns: minmax(64px, 1fr) 92px minmax(0, 768px) 292px minmax(64px, 1fr) !important;
  }
}

/* 2026-06-04 desktop correction: put every mega menu above the page blur. */
@media (min-width: 981px) {
  .home-page .site-header {
    z-index: 1400 !important;
    grid-template-columns: 44px 128px minmax(0, 496px) 292px 44px !important;
  }

  .home-page .brand {
    width: 128px !important;
    height: 46px !important;
  }

  body.home-page.nav-mega-open::before,
  body.home-page:has(.nav-item:hover .mega-menu)::before,
  body.home-page:has(.nav-item:focus-within .mega-menu)::before {
    opacity: 1;
  }

  .home-page .mega-menu {
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    z-index: 1500 !important;
    border-top: 0 !important;
    border-radius: 0 0 8px 8px;
    background: rgba(255, 255, 255, 0.99) !important;
    color: #16191f !important;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: none !important;
  }

  .home-page .nav-item.is-menu-open .mega-menu,
  .home-page .nav-item:hover .mega-menu,
  .home-page .nav-item:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .home-page .mega-menu:not(.product-mega-menu) {
    height: min(430px, calc(100vh - 64px)) !important;
    max-height: calc(100vh - 64px) !important;
    grid-template-columns: 260px minmax(0, 740px) !important;
    justify-content: center;
    align-items: stretch;
    gap: 34px;
    padding: 46px max(42px, calc((100vw - 1120px) / 2)) 50px !important;
    overflow: hidden;
  }

  .home-page .mega-side {
    padding-right: 28px;
    border-right: 1px solid rgba(17, 24, 39, 0.14);
  }

  .home-page .mega-side strong {
    color: #151922;
    font-size: 30px;
    font-weight: 800;
  }

  .home-page .mega-side span {
    color: #6f7784;
  }

  .home-page .mega-columns {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 28px;
  }

  .home-page .compact-menu .mega-columns {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .home-page .mega-columns h3 {
    color: #151922;
    font-size: 17px;
  }

  .home-page .mega-columns a {
    color: #4f5865;
    font-size: 14px;
  }

  .home-page .about-mega-menu {
    grid-template-columns: 320px minmax(0, 740px) !important;
    gap: 0 !important;
    padding: 0 max(42px, calc((100vw - 1120px) / 2)) !important;
    background: rgba(255, 255, 255, 0.99) !important;
  }

  .home-page .about-menu-showcase {
    min-height: 430px;
    padding: 48px 34px;
  }

  .home-page .about-menu-cards {
    min-height: 430px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #10141b;
  }

  .home-page .about-menu-cards a {
    min-height: 430px;
  }
}

@media (min-width: 1280px) {
  .home-page .site-header {
    grid-template-columns: minmax(44px, 1fr) 128px minmax(0, 720px) 292px minmax(44px, 1fr) !important;
  }
}

/* 2026-06-04 desktop correction: remove stray inner scrollbars and center four about tiles. */
@media (min-width: 981px) {
  .home-page .hot-product-tabs,
  .home-page .product-mega-tabs,
  .home-page .product-mega-products {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .home-page .hot-product-tabs::-webkit-scrollbar,
  .home-page .product-mega-tabs::-webkit-scrollbar,
  .home-page .product-mega-products::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .home-page .hot-product-tabs {
    overflow: visible !important;
  }

  .home-page .product-mega-tabs {
    overflow: visible !important;
  }

  .home-page .product-mega-products {
    overflow-y: auto;
  }

  .home-page .about-strip {
    width: min(680px, calc(100% - 44px)) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    justify-content: center;
  }
}

/* 2026-06-04 Bodor parity pass: one shared desktop header and second-level menu system. */
@media (min-width: 981px) {
  body.detail-page::before,
  body.buy-page::before {
    content: "";
    position: fixed;
    inset: 64px 0 0;
    z-index: 1100;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.18s ease;
  }

  body.detail-page.nav-mega-open::before,
  body.buy-page.nav-mega-open::before,
  body.detail-page:has(.nav-item:hover .mega-menu)::before,
  body.buy-page:has(.nav-item:hover .mega-menu)::before,
  body.detail-page:has(.nav-item:focus-within .mega-menu)::before,
  body.buy-page:has(.nav-item:focus-within .mega-menu)::before {
    opacity: 1;
  }

  .home-page .nav-links {
    gap: 0 !important;
    justify-content: space-between !important;
  }

  .home-page .nav-item {
    padding: 0 8px !important;
  }

  .detail-page .site-header,
  .buy-page .site-header {
    z-index: 1400;
    height: 64px;
    padding: 0;
    grid-template-columns: minmax(44px, 1fr) 128px minmax(0, 720px) 292px minmax(44px, 1fr);
    color: #fff;
    background: rgba(73, 75, 80, 0.96);
    box-shadow: none;
    backdrop-filter: blur(14px);
  }

  .detail-page .brand,
  .buy-page .brand {
    grid-column: 2;
    width: 128px;
    height: 46px;
  }

  .detail-page .brand-logo-light,
  .buy-page .brand-logo-light {
    opacity: 1;
  }

  .detail-page .brand-logo-dark,
  .buy-page .brand-logo-dark {
    opacity: 0;
  }

  .detail-page .nav-links,
  .buy-page .nav-links {
    grid-column: 3;
    justify-self: stretch;
    justify-content: space-between;
    gap: 0;
    margin-left: 0;
    font-size: 13px;
  }

  .detail-page .nav-item,
  .buy-page .nav-item {
    height: 64px;
    padding: 0 8px;
  }

  .detail-page .nav-item > a,
  .buy-page .nav-item > a {
    height: 64px;
  }

  .detail-page .header-actions,
  .buy-page .header-actions {
    grid-column: 4;
    height: 64px;
    min-width: 292px;
    gap: 14px;
    font-size: 12px;
  }

  .detail-page .header-actions > .header-cta-pill,
  .buy-page .header-actions > .header-cta-pill {
    width: 92px;
    min-width: 92px;
    height: 28px;
    padding: 0 16px;
    border: 0;
    color: #1a1d22 !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: none;
    font-size: 12px;
  }

  .detail-page .header-actions > .header-cta-pill span,
  .buy-page .header-actions > .header-cta-pill span {
    color: #1a1d22 !important;
  }

  .site-header .mega-menu {
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    z-index: 1500 !important;
    border-top: 0 !important;
    border-radius: 0 0 8px 8px;
    background: rgba(255, 255, 255, 0.99) !important;
    color: #16191f !important;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: none !important;
    white-space: normal !important;
  }

  .site-header .nav-item.is-menu-open .mega-menu,
  .site-header .nav-item:hover .mega-menu,
  .site-header .nav-item:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .product-mega-menu {
    height: min(780px, calc(100vh - 64px)) !important;
    max-height: calc(100vh - 64px) !important;
    grid-template-columns: 230px minmax(0, 780px) !important;
    justify-content: center;
    align-items: stretch;
    gap: 28px;
    padding: 34px max(40px, calc((100vw - 1152px) / 2)) 48px !important;
    overflow: hidden;
  }

  .site-header .product-mega-menu::after {
    content: "x";
    position: absolute;
    top: 36px;
    right: max(22px, calc((100vw - 1152px) / 2 + 4px));
    width: 18px;
    height: 18px;
    border: 1px solid #8b95a3;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }

  .site-header .product-mega-rail {
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 24px;
    padding-right: 24px;
    border-right: 1px solid rgba(17, 24, 39, 0.13);
  }

  .site-header .product-group-tabs {
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  }

  .site-header .product-group-tabs button {
    min-height: 40px;
    padding: 0 20px;
    color: #4f5865;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
  }

  .site-header .product-group-tabs button.active {
    color: #ff5a00;
    background: #f5f6f8;
    font-weight: 700;
  }

  .site-header .product-mega-products {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 24px 26px;
    padding: 0 30px 12px 0;
    border-right: 1px solid rgba(17, 24, 39, 0.16);
    overflow-y: auto;
  }

  .site-header .product-mega-tabs,
  .site-header .product-mega-products {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-header .product-mega-tabs::-webkit-scrollbar,
  .site-header .product-mega-products::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .site-header .product-mega-card img {
    height: 138px;
    aspect-ratio: auto;
    padding: 0;
    border-radius: 6px;
    background: #f5f6f8;
    object-fit: contain;
  }

  .site-header .product-mega-card strong {
    color: #151922;
    font-size: 16px;
    font-weight: 500;
  }

  .site-header .product-mega-card span {
    color: #7b838e;
    font-size: 12px;
  }

  .site-header .bodor-card-menu {
    height: 128px !important;
    min-height: 128px !important;
    max-height: 128px !important;
    grid-template-columns: minmax(0, 1120px) !important;
    justify-content: center;
    align-items: stretch;
    gap: 0 !important;
    padding: 0 max(44px, calc((100vw - 1120px) / 2)) !important;
    overflow: hidden;
  }

  .site-header .bodor-card-menu .mega-columns {
    width: min(1120px, 100%);
    display: grid;
    gap: 0 !important;
  }

  .site-header .four-card-menu .mega-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .site-header .three-card-menu .mega-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .site-header .five-card-menu .mega-columns {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .site-header .solution-card-menu {
    height: 308px !important;
    min-height: 308px !important;
    max-height: 308px !important;
  }

  .site-header .solution-card-menu .mega-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .site-header .mega-card-link {
    min-width: 0;
    min-height: 128px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border-left: 1px solid rgba(17, 24, 39, 0.08);
    color: #151922 !important;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .site-header .mega-card-link:first-child {
    border-left: 0;
  }

  .site-header .solution-card-menu .mega-card-link {
    min-height: 308px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    padding: 40px 38px 30px;
    text-align: left;
  }

  .site-header .mega-card-title {
    display: grid;
    gap: 10px;
    color: inherit;
    text-decoration: none;
  }

  .site-header .mega-card-list {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, 32px);
    grid-auto-columns: minmax(150px, 1fr);
    gap: 0 26px;
    margin-top: 2px;
  }

  .site-header .mega-card-list a {
    min-width: 0;
    color: rgba(21, 25, 34, 0.74) !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
  }

  .site-header .mega-card-list a:hover,
  .site-header .mega-card-list a:focus-visible {
    color: #ff4610 !important;
    outline: none;
  }

  .site-header .mega-card-link:hover,
  .site-header .mega-card-link:focus-visible {
    background: #f6f7f8;
    outline: none;
  }

  .site-header .mega-card-link strong {
    color: #151922 !important;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    white-space: normal;
  }

  .site-header .mega-card-link span {
    display: block;
    max-width: min(220px, 100%);
    color: rgba(21, 25, 34, 0.55) !important;
    font-size: 12px;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-header .mega-card-link:hover strong,
  .site-header .mega-card-link:focus-visible strong {
    color: #ff4610 !important;
  }

  .detail-page .special-subnav {
    position: sticky;
    top: 64px;
    z-index: 930;
    min-height: 64px;
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
    padding: 0 clamp(56px, 4.7vw, 96px);
    color: #fff;
    background: #050505;
  }

  .detail-page .special-subnav strong {
    font-size: clamp(22px, 1.35vw, 26px);
    line-height: 1;
  }

  .detail-page .special-subnav nav {
    justify-content: flex-end;
    gap: clamp(18px, 2vw, 36px);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .detail-page .special-subnav nav::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .detail-page .special-subnav nav a {
    min-height: 64px;
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }

  .detail-page .special-subnav nav a.active,
  .detail-page .special-subnav nav a:hover {
    color: #fff;
  }

  .detail-page.detail-has-top-subnav .detail-body {
    width: min(1180px, calc(100% - 96px));
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .detail-page.detail-has-top-subnav .detail-side {
    display: none;
  }

  .detail-page.detail-has-top-subnav .detail-main {
    width: 100%;
  }
}

@media (min-width: 981px) {
  .home-page .site-header .mega-menu.bodor-card-menu,
  .detail-page .site-header .mega-menu.bodor-card-menu,
  .buy-page .site-header .mega-menu.bodor-card-menu {
    height: 128px !important;
    min-height: 128px !important;
    max-height: 128px !important;
    grid-template-columns: minmax(0, 1120px) !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 max(44px, calc((100vw - 1120px) / 2)) !important;
    overflow: hidden !important;
  }

  .home-page .site-header .mega-menu.solution-card-menu,
  .detail-page .site-header .mega-menu.solution-card-menu,
  .buy-page .site-header .mega-menu.solution-card-menu {
    height: 308px !important;
    min-height: 308px !important;
    max-height: 308px !important;
  }

  .home-page .site-header .mega-menu.bodor-card-menu .mega-columns,
  .detail-page .site-header .mega-menu.bodor-card-menu .mega-columns,
  .buy-page .site-header .mega-menu.bodor-card-menu .mega-columns {
    width: min(1120px, 100%) !important;
    gap: 0 !important;
  }

  .home-page .site-header .four-card-menu .mega-columns,
  .detail-page .site-header .four-card-menu .mega-columns,
  .buy-page .site-header .four-card-menu .mega-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .home-page .site-header .three-card-menu .mega-columns,
  .detail-page .site-header .three-card-menu .mega-columns,
  .buy-page .site-header .three-card-menu .mega-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .home-page .site-header .five-card-menu .mega-columns,
  .detail-page .site-header .five-card-menu .mega-columns,
  .buy-page .site-header .five-card-menu .mega-columns {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .home-page .site-header .solution-card-menu .mega-columns,
  .detail-page .site-header .solution-card-menu .mega-columns,
  .buy-page .site-header .solution-card-menu .mega-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* 2026-06-04 final desktop header spacing: keep nav and tools separated. */
@media (min-width: 981px) {
  .home-page .site-header,
  .detail-page .site-header,
  .buy-page .site-header {
    grid-template-columns: minmax(44px, 1fr) 128px minmax(430px, 620px) 340px minmax(44px, 1fr) !important;
  }

  .home-page .brand,
  .detail-page .brand,
  .buy-page .brand {
    grid-column: 2 !important;
    width: 128px !important;
    height: 46px !important;
  }

  .home-page .nav-links,
  .detail-page .nav-links,
  .buy-page .nav-links {
    grid-column: 3 !important;
    width: calc(100% - 42px) !important;
    min-width: 0 !important;
    margin-left: 42px !important;
    justify-self: start !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }

  .home-page .nav-item,
  .detail-page .nav-item,
  .buy-page .nav-item {
    padding: 0 !important;
  }

  .home-page .header-actions,
  .detail-page .header-actions,
  .buy-page .header-actions {
    grid-column: 4 !important;
    width: 340px !important;
    min-width: 340px !important;
    justify-self: end !important;
    justify-content: flex-end !important;
    gap: 14px !important;
  }

  .home-page .header-utility,
  .detail-page .header-utility,
  .buy-page .header-utility {
    margin-left: 0 !important;
  }
}

/* 2026-06-04: make the scrolled desktop header closer to Bodor's translucent gray bar. */
@media (min-width: 981px) {
  .home-page .site-header.is-solid,
  .home-page .site-header.is-solid:not(:hover):not(:focus-within),
  .home-page .site-header:hover,
  .home-page .site-header:focus-within,
  .detail-page .site-header,
  .detail-page .site-header.is-solid,
  .detail-page .site-header:hover,
  .detail-page .site-header:focus-within,
  .buy-page .site-header,
  .buy-page .site-header.is-solid,
  .buy-page .site-header:hover,
  .buy-page .site-header:focus-within {
    background: rgba(82, 82, 82, 0.78) !important;
    box-shadow: none !important;
    backdrop-filter: blur(18px) saturate(118%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(118%) !important;
  }
}
