.custom-matrix__sections--specs section {
  min-height: 100%;
}

:root {
  --black: #050505;
  --products-deep-gray: #14161a;
  --orange: #e25d1d; /* Hermès-inspired accent */
  --gray: #d9d9d9;
  --dark-gray: #232323;
  --text-light: #f7f4f1;
  --muted: #8f8f8f;
  --card: rgba(255, 255, 255, 0.04);
  --spec-preview-width: 240px;
  --_switch-inset: 0.8rem; /* 调整 custom-factor-mode-switch 的上右边距为 0.8rem */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--black);
  color: var(--text-light);
  line-height: 1.6;
}

body[data-page="contact"] {
  position: relative;
  isolation: isolate;
  background: var(--products-deep-gray);
  overflow: hidden;
  --contact-top-pad: clamp(36px, 6vh, 70px);
  --contact-pad-x: clamp(14px, 2.6vw, 40px);
  --contact-gap: clamp(12px, 1.8vw, 28px);
  --contact-container: clamp(1000px, 84vw, 1280px);
  --contact-h1: clamp(32px, 3.4vw, 56px);
  --contact-lead: clamp(13px, 1.05vw, 16px);
  --contact-text-width: 46ch;
  --contact-gutter: var(--contact-pad-x);
}

body[data-page="contact"]::before {
  content: none;
}

body[data-page="contact"] .contact-scroll {
  height: 100vh;
  height: 100svh;
  overflow-y: auto;
  background: var(--products-deep-gray);
  scroll-snap-type: none;
  scroll-snap-stop: normal;
  scroll-padding-top: 0;
}

body[data-page="contact"] .contact-scroll > header,
body[data-page="contact"] .contact-scroll > section,
body[data-page="contact"] .contact-scroll > footer {
  height: 100vh;
  height: 100svh;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

body[data-page="contact"] .contact-scroll > footer {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  height: auto;
  min-height: 0;
}


body[data-page="contact"] .contact-scroll > section {
  padding: 0 var(--contact-gutter);
}

body[data-page="contact"] .page-hero {
  min-height: 0;
  padding: var(--contact-top-pad) 0 0;
}

body[data-page="contact"] .contact-container {
  width: min(var(--contact-container), calc(100% - (2 * var(--contact-pad-x))));
  margin: 0 auto;
  height: 100%;
}

body[data-page="contact"] .contact-scroll > footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.belt-lightbox-open {
  overflow: hidden;
}

body[data-page="products"] {
  background: transparent;
  position: relative;
}

body[data-page="home"] {
  background: var(--products-deep-gray);
  --home-main-hero-gap: clamp(2rem, 5vw, 3rem);
}

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

:where(a[href], button, [role="button"], summary, label, [data-cursor-interactive]) {
  cursor: pointer;
}

.hero {
  min-height: 88vh;
  background: linear-gradient(130deg, rgba(5, 5, 5, 0.82) 25%, rgba(48, 22, 10, 0.72) 50%, rgba(226, 93, 29, 0.82));
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nav {
  --nav-bg: rgba(0, 0, 0, 0);
  --nav-blur: 18px;
  --nav-shadow: none;
  --nav-panel-bg: rgba(5, 5, 5, 0.08);
  --nav-panel-border: rgba(255, 255, 255, 0.35);
  --nav-panel-shadow: none;
  --nav-panel-blur: 22px;
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: min(1250px, calc(100% - clamp(0.75rem, 2.5vw, 3rem)));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.85rem clamp(1.75rem, 3.2vw, 2.4rem);
  background: var(--nav-bg, transparent);
  border: none;
  border-radius: 999px;
  backdrop-filter: blur(var(--nav-blur, 0px));
  -webkit-backdrop-filter: blur(var(--nav-blur, 0px));
  box-shadow: var(--nav-shadow, none);
  z-index: 999;
  transition:
    top 1.05s cubic-bezier(0.19, 1, 0.22, 1),
    left 1.05s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1.05s cubic-bezier(0.19, 1, 0.22, 1),
    width 1.15s cubic-bezier(0.19, 1, 0.22, 1),
    padding 0.85s cubic-bezier(0.19, 1, 0.22, 1),
    border-radius 0.7s cubic-bezier(0.74, 0, 0.38, 1),
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.78s ease,
    backdrop-filter 0.45s ease,
    -webkit-backdrop-filter 0.45s ease;
  will-change: width, border-radius, background;
}

.nav.is-anchored {
  --nav-blur: 16px;
  top: 0;
  left: 0;
  width: 100%;
  transform: none;
  border-radius: 0;
  padding: 0.85rem clamp(1.5rem, 5vw, 3rem);
}

.nav.is-solid {
  --nav-bg: #000;
  --nav-blur: 0px;
  --nav-shadow: none;
  --nav-panel-bg: rgba(0, 0, 0, 0.95);
  --nav-panel-border: rgba(255, 255, 255, 0.45);
  --nav-panel-shadow: none;
  --nav-panel-blur: 0px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 4rem;
  padding: 0;
  margin: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.nav li {
  position: relative;
}

.nav-utility {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: clamp(0.5rem, 2vw, 1.75rem);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  transform-origin: 50% 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, height 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 12px;
}

.nav-toggle span:nth-child(2) {
  top: 17px;
}

.nav-toggle span:nth-child(3) {
  top: 22px;
}

.nav-drawer {
  display: contents;
}

.nav-backdrop {
  display: none;
}

body.nav-drawer-open {
  overflow: hidden;
}

body.filter-drawer-open {
  overflow: hidden;
}

.nav-utility .language-switch {
  margin-left: 0;
  width: auto;
}

.language-switch {
  position: relative;
  flex-shrink: 0;
  margin-left: clamp(0.5rem, 2vw, 1.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-switch__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.language-switch__toggle--icon {
  min-height: 32px;
  padding: 0.25rem 0.95rem 0.25rem 0.35rem;
  position: relative;
  border: none;
  background: transparent;
  border-radius: 0;
  letter-spacing: 0;
  text-transform: none;
  gap: 0;
}

.language-switch__toggle:focus-visible:not(.language-switch__toggle--icon),
.language-switch.is-open .language-switch__toggle:not(.language-switch__toggle--icon) {
  color: var(--orange);
  border-color: var(--orange);
  transform: scale(1.05);
}

@media (hover: hover) {
  .language-switch__toggle:hover:not(.language-switch__toggle--icon) {
    color: var(--orange);
    border-color: var(--orange);
    transform: scale(1.05);
  }
}

.language-switch__toggle--icon:focus-visible,
.language-switch.is-open .language-switch__toggle--icon {
  color: var(--orange);
}

@media (hover: hover) {
  .language-switch__toggle--icon:hover {
    color: var(--orange);
  }
}

.language-switch__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.language-switch__label--icon {
  justify-content: center;
  gap: 0;
}

.language-switch__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50%;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.language-switch.is-open .language-switch__icon {
  transform: rotate(180deg);
}

.language-switch__icon svg {
  width: 18px;
  height: 18px;
}

.language-switch__text {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.language-switch__toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 4px;
}

.language-switch__menu {
  position: absolute;
  top: calc(100% + 1.75rem);
  left: 50%;
  display: flex;
  flex-direction: column;
  min-width: max(160px, 85%);
  width: auto;
  padding: 0.35rem 0.8rem;
  border-radius: 14px;
  border: 1px solid var(--nav-panel-border);
  background: var(--nav-panel-bg);
  box-shadow: var(--nav-panel-shadow);
  backdrop-filter: blur(var(--nav-panel-blur));
  -webkit-backdrop-filter: blur(var(--nav-panel-blur));
  background-clip: padding-box;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
  transition: opacity 0.55s ease, visibility 0.55s ease, transform 0.55s ease;
  z-index: 1200;
}

.language-switch.is-open .language-switch__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.language-switch__option {
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  font-weight: 400;
  width: 100%;
  cursor: pointer;
  border-radius: 0;
  color: #fff;
}

.language-switch__option:last-child {
  border-bottom: none;
}

.language-switch__flag {
  display: none;
  width: 22px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.language-switch__code {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
}

.language-switch__name {
  display: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.flag {
  flex-shrink: 0;
}

.flag-cn {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA2MCA0MCc+PHJlY3Qgd2lkdGg9JzYwJyBoZWlnaHQ9JzQwJyBmaWxsPScjZGUyOTEwJy8+PHBvbHlnb24gcG9pbnRzPSc4LDYgOS44LDExLjQgNC44LDggMTEuMiw4IDYuMiwxMS40JyBmaWxsPScjZmZkZTAwJy8+PHBvbHlnb24gcG9pbnRzPScxNSw0IDE2LDcgMTMsNS40IDE3LDUuNCAxNCw3JyBmaWxsPScjZmZkZTAwJy8+PHBvbHlnb24gcG9pbnRzPScxOCw3IDE5LDEwIDE2LDguNCAyMCw4LjQgMTcsMTAnIGZpbGw9JyNmZmRlMDAnLz48cG9seWdvbiBwb2ludHM9JzE4LDEyIDE5LDE1IDE2LDEzLjQgMjAsMTMuNCAxNywxNScgZmlsbD0nI2ZmZGUwMCcvPjxwb2x5Z29uIHBvaW50cz0nMTUsMTUgMTYsMTggMTMsMTYuNCAxNywxNi40IDE0LDE4JyBmaWxsPScjZmZkZTAwJy8+PC9zdmc+");
}

.flag-us {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA2MCA0MCc+PHJlY3Qgd2lkdGg9JzYwJyBoZWlnaHQ9JzQwJyBmaWxsPScjYjIyMjM0Jy8+PHBhdGggZD0nTTAgNWg2MHY1SDB6bTAgMTBoNjB2NUgwem0wIDEwaDYwdjVIMHptMCAxMGg2MHY1SDAnIGZpbGw9JyNmZmYnLz48cmVjdCB3aWR0aD0nMzAnIGhlaWdodD0nMjAnIGZpbGw9JyMzYzNiNmUnLz48Y2lyY2xlIGN4PSc2JyBjeT0nNCcgcj0nMS4yJyBmaWxsPScjZmZmJy8+PGNpcmNsZSBjeD0nMTInIGN5PSc3JyByPScxLjInIGZpbGw9JyNmZmYnLz48Y2lyY2xlIGN4PScxOCcgY3k9JzQnIHI9JzEuMicgZmlsbD0nI2ZmZicvPjxjaXJjbGUgY3g9JzI0JyBjeT0nNycgcj0nMS4yJyBmaWxsPScjZmZmJy8+PGNpcmNsZSBjeD0nNicgY3k9JzEwJyByPScxLjInIGZpbGw9JyNmZmYnLz48Y2lyY2xlIGN4PScxMicgY3k9JzEzJyByPScxLjInIGZpbGw9JyNmZmYnLz48L3N2Zz4=");
}

.flag-jp {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA2MCA0MCc+PHJlY3Qgd2lkdGg9JzYwJyBoZWlnaHQ9JzQwJyBmaWxsPScjZmZmJy8+PGNpcmNsZSBjeD0nMzAnIGN5PScyMCcgcj0nMTAnIGZpbGw9JyNiYzAwMmQnLz48L3N2Zz4=");
}

.flag-it {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA2MCA0MCc+PHJlY3Qgd2lkdGg9JzIwJyBoZWlnaHQ9JzQwJyBmaWxsPScjMDA5MjQ2Jy8+PHJlY3QgeD0nMjAnIHdpZHRoPScyMCcgaGVpZ2h0PSc0MCcgZmlsbD0nI2ZmZicvPjxyZWN0IHg9JzQwJyB3aWR0aD0nMjAnIGhlaWdodD0nNDAnIGZpbGw9JyNjZTJiMzcnLz48L3N2Zz4=");
}

.flag-es {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA2MCA0MCc+PHJlY3Qgd2lkdGg9JzYwJyBoZWlnaHQ9JzQwJyBmaWxsPScjYWExNTFiJy8+PHJlY3QgeT0nMTAnIHdpZHRoPSc2MCcgaGVpZ2h0PScyMCcgZmlsbD0nI2YxYmYwMCcvPjwvc3ZnPg==");
}

.nav > ul > li > a {
  font-size: 0.85rem;
  color: var(--text-light);
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: color 0.55s ease, transform 0.55s ease;
}

.nav > ul > li > a:hover {
  color: var(--orange);
  transform: none;
}

.nav > ul > li > a.is-active {
  color: var(--text-light);
}

.nav .has-submenu > a {
  padding-right: 1.1rem;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav .has-submenu::after {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 100%;
  width: calc(100% + 2.4rem);
  height: 3rem;
  background: transparent;
  pointer-events: auto;
  cursor: default;
}

.nav .has-submenu > a::before,
.language-switch__toggle--icon::after {
  content: "";
  position: absolute;
  right: 0.1rem;
  top: 50%;
  width: 0.35rem;
  height: 0.35rem;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav .has-submenu.is-open > a::before,
.language-switch.is-open .language-switch__toggle--icon::after {
  transform: translateY(-50%) rotate(225deg);
}

@media (hover: hover) {
  .nav .has-submenu:hover > a::before,
  .nav .has-submenu:focus-within > a::before,
  .language-switch:hover .language-switch__toggle--icon::after,
  .language-switch:focus-within .language-switch__toggle--icon::after {
    transform: translateY(-50%) rotate(225deg);
  }
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 1.75rem);
  left: 50%;
  display: flex;
  flex-direction: column;
  min-width: max(160px, 85%);
  gap: 0;
  padding: 0.35rem 0.8rem;
  border-radius: 14px;
  background: var(--nav-panel-bg);
  border: 1px solid var(--nav-panel-border);
  box-shadow: var(--nav-panel-shadow);
  backdrop-filter: blur(var(--nav-panel-blur));
  -webkit-backdrop-filter: blur(var(--nav-panel-blur));
  background-clip: padding-box;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -12px);
  transition: opacity 0.55s ease, visibility 0.55s ease, transform 0.55s ease;
  pointer-events: none;
  z-index: 1000;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  top: -1.75rem;
  left: -20%;
  width: 140%;
  height: 1.75rem;
  background: transparent;
  pointer-events: auto;
  cursor: default;
}

.nav-submenu::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  pointer-events: none;
  z-index: -1;
}

.nav-submenu a,
.language-switch__option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.55rem 1.8rem;
  border-bottom: 1px solid #fff;
  white-space: nowrap;
  text-align: center;
  transition: color 0.55s ease, border-color 0.55s ease;
}

.nav-submenu a:last-child {
  border-bottom: none;
}

.nav-submenu a.is-active,
.nav-submenu a:hover,
.language-switch__option.is-active,
.language-switch__option:hover,
.language-switch__option:focus-visible {
  color: var(--orange);
  border-color: #fff;
  outline: none;
}

.nav .has-submenu.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

@media (hover: hover) {
  .nav .has-submenu:hover .nav-submenu,
  .nav .has-submenu:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-left: 0.05rem;
}

.nav:not(.is-anchored) .logo {
  margin-left: clamp(0rem, 0.4vw, 0.25rem);
}

.nav:not(.is-anchored) .nav-utility {
  margin-right: clamp(0rem, 0.4vw, 0.25rem);
}

@media (min-width: 901px) {
  .nav.is-anchored .nav-utility {
    margin-right: clamp(1.2rem, 2.4vw, 2.1rem);
  }

  .nav.is-anchored .language-switch__menu {
    left: 50%;
    right: auto;
    max-width: min(220px, calc(100vw - 2.5rem));
    transform: translate(-50%, -10px);
  }

  .nav.is-anchored .language-switch.is-open .language-switch__menu {
    transform: translate(-50%, 0);
  }
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding: 0.14rem 0.22rem; */
  /* border-radius: 4px; */
  /* background: rgba(255, 255, 255, 0.95); */
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.logo img {
  height: clamp(13px, 1.4vw, 18px);
  width: auto;
  display: block;
}

body[data-page="products"][data-ui-language="en"] .nav .logo .logo-wordmark,
body[data-page="products"][data-ui-language="it"] .nav .logo .logo-wordmark,
body[data-page="products"][data-ui-language="es"] .nav .logo .logo-wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  line-height: 1;
  font-size: inherit;
  letter-spacing: inherit;
}

body[data-page="products"][data-ui-language="en"] .nav .logo .logo-wordmark__line,
body[data-page="products"][data-ui-language="it"] .nav .logo .logo-wordmark__line,
body[data-page="products"][data-ui-language="es"] .nav .logo .logo-wordmark__line {
  display: inline-block;
  white-space: nowrap;
}


.hero-copy {
  max-width: 560px;
  padding: 2rem 0 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


.eyebrow {
  color: var(--orange);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  font-size: 0.85rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 1rem 0;
}

.hero-title-break {
  display: none;
}

.hero-lede-break {
  display: none;
}

.hero-copy p {
  color: rgba(214, 206, 196, 0.92);
}

.hero-lede {
  font-size: 1rem;
  line-height: 2.52;
  max-width: 520px;
  color: rgba(222, 214, 204, 0.94);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  transition: background 0.2s ease;
}

.hero-actions .cta {
  margin-top: 0;
}

.cta:hover {
  background: var(--orange);
  color: var(--black);
}

main {
  padding: clamp(6rem, 14vw, 7.5rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vw, 5rem);
}

body[data-page="home"] main {
  padding-top: var(--home-main-hero-gap);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

body[data-page="contact"] main {
  padding-top: 0;
}

body[data-page="products"] main {
  padding-top: clamp(6rem, 14vw, 7.5rem);
}

body[data-page="products"][data-subpage="custom"] main {
  padding: 0;
}

body[data-page="about"] main {
  padding: 0;
}

body[data-page="about"] {
  background: var(--products-deep-gray);
  overflow-x: hidden;
  --about-fine-rule-width: 1px;
  --about-fine-rule-color: #fff;
  --about-material-copy-text-size: clamp(0.8rem, 1.8vw, 0.9rem);
  --about-section-inline-pad: clamp(1.5rem, 5vw, 4rem);
  --about-section-title-top-space: 1rem;
  --about-section-rail-height: var(--nav-height, 64px);
  --about-section-rail-gap: var(--about-section-inline-pad);
  --about-section-rail-bg: rgba(5, 5, 5, 0.96);
  --about-section-rail-blur: 12px;
  --about-section-rail-shell-pad: clamp(0.58rem, 1.1vw, 0.72rem);
  --about-section-rail-reserved-space: calc(
    var(--about-section-rail-height) +
    (var(--about-section-rail-shell-pad) * 2) +
    env(safe-area-inset-bottom) +
    1rem
  );
}

body[data-page="products"][data-subpage="custom"] .custom-scroll {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
  position: relative;
}

body[data-page="products"][data-subpage="custom"] {
  overflow: hidden;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(130deg, rgba(4, 11, 22, 0.35), rgba(11, 31, 51, 0.12)), url("../../images/custom/cutting-workshop-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > main,
body[data-page="products"][data-subpage="custom"] .custom-scroll > footer {
  position: relative;
  z-index: 1;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > main > section {
  padding: clamp(4.5rem, 10vh, 6.5rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vh, 5rem);
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-snap-section {
  min-height: 100vh;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

@supports (height: 100dvh) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll {
    height: 100dvh;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-snap-section {
    min-height: 100dvh;
    height: 100dvh;
  }
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > footer {
  scroll-snap-align: end;
  scroll-snap-stop: always;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(12px);
}

.section-header p {
  color: var(--orange);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2rem;
  margin: 0;
}

.section-header .seasonal-intro-label--mobile,
.section-header .seasonal-intro-title--mobile {
  display: none;
}

.brand-main {
  position: relative;
  isolation: isolate;
  background: var(--products-deep-gray);
}

.brand-main::before {
  content: none;
}

.brand-main > * {
  position: relative;
  z-index: 1;
}

.brand-section-rail {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding:
    var(--about-section-rail-shell-pad)
    var(--about-section-inline-pad)
    calc(var(--about-section-rail-shell-pad) + env(safe-area-inset-bottom));
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: var(--about-section-rail-bg);
  backdrop-filter: blur(var(--about-section-rail-blur));
  -webkit-backdrop-filter: blur(var(--about-section-rail-blur));
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.28);
  transform: translate3d(0, 16px, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 998;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0s linear 0.22s;
}

.brand-section-rail.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.brand-section-rail__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1280px, 100%);
  height: var(--about-section-rail-height);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.brand-section-rail__list::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 30%;
  height: 2px;
  background: rgba(255, 255, 255, 0.84);
  transform: translateY(-50%);
}

.brand-section-rail__list::after {
  content: none;
}

.brand-section-rail__item {
  position: relative;
}

.brand-section-rail__thumb-item {
  position: absolute;
  inset: 0;
  pointer-events: none;
  list-style: none;
}

.brand-section-rail__thumb {
  position: absolute;
  top: 30%;
  left: calc(10% + (80% * var(--brand-section-rail-progress, 0)));
  width: clamp(18px, 1.6vw, 24px);
  height: clamp(10px, 0.9vw, 12px);
  border-radius: 999px;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition:
    left 0.12s linear,
    box-shadow 0.18s ease,
    transform 0.18s ease;
  pointer-events: auto;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.brand-section-rail__thumb.is-dragging {
  cursor: grabbing;
  transition: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
}

.brand-section-rail__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.brand-section-rail__dot,
.brand-section-rail__label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-section-rail__dot {
  top: 30%;
  width: clamp(5px, 0.4vw, 7px);
  height: clamp(5px, 0.4vw, 7px);
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease;
}

.brand-section-rail__label {
  top: 56%;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.76rem, 0.82vw, 0.86rem);
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.brand-section-rail__link.is-active .brand-section-rail__label {
  color: var(--orange);
  font-weight: 700;
}

@media (hover: hover) {
  .brand-section-rail__link:hover .brand-section-rail__label {
    color: #fff;
  }
}

.brand-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(6.8rem, 12vh, 9rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 7vh, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
  background: var(--products-deep-gray);
  scroll-margin-top: var(--nav-bottom, var(--nav-height, 64px));
}

body[data-page="about"] .brand-section {
  align-items: flex-start;
  padding-top: var(--nav-height, 64px);
}

body[data-page="about"] .brand-section__inner,
body[data-page="about"] .brand-section__inner--stack {
  align-items: flex-start;
}

body[data-page="about"] .brand-section__inner--title-only {
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--about-section-title-top-space);
  box-sizing: border-box;
}

body[data-page="about"] .brand-company-main__title-wrap .brand-section__title,
body[data-page="about"] .brand-section--material .brand-section__title,
body[data-page="about"] .brand-section--flocking .brand-section__title,
body[data-page="about"] .brand-section--craft .brand-section__title,
body[data-page="about"] .brand-section--credentials .brand-section__title {
  letter-spacing: 0.16em;
}

body[data-page="about"] .brand-section__hero-toggle {
  display: none;
}

body[data-page="about"] .brand-section--flocking {
  --brand-flocking-card-pad: clamp(0.95rem, 2.4vw, 1.2rem);
  --about-title-hero-inline-pad: clamp(0.95rem, 2.4vw, 1.2rem);
  --about-title-hero-track-width: min(calc(100% - (2 * var(--about-section-inline-pad))), 48rem);
  --about-title-hero-bottom-pad: clamp(1rem, 2.4vw, 1.35rem);
  flex-direction: column;
  align-items: stretch;
  gap: var(--about-section-inline-pad);
  min-height: 0;
  height: auto;
  overflow: visible;
  padding-top: 0;
}

body[data-page="about"] .brand-section--craft,
body[data-page="about"] .brand-section--credentials {
  --about-title-hero-inline-pad: clamp(0.95rem, 2.4vw, 1.2rem);
  --about-title-hero-track-width: min(calc(100% - (2 * var(--about-section-inline-pad))), 48rem);
  --about-title-hero-bottom-pad: clamp(1rem, 2.4vw, 1.35rem);
  flex-direction: column;
  align-items: stretch;
  gap: var(--about-section-inline-pad);
  min-height: 0;
  height: auto;
  overflow: visible;
  padding-top: 0;
}

body[data-page="about"] .brand-section--flocking .brand-section__inner--title-only {
  position: relative;
  display: block;
  width: calc(100% + (2 * var(--about-section-inline-pad)));
  max-width: none;
  min-height: 0;
  aspect-ratio: 16 / 6;
  margin: 0 calc(var(--about-section-inline-pad) * -1);
  padding-top: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  box-sizing: border-box;
  isolation: isolate;
  background: #0a0e14 url("../../images/home/hero-slide-01.webp") center 42% / cover no-repeat;
}

body[data-page="about"] .brand-section--craft .brand-section__inner--title-only,
body[data-page="about"] .brand-section--credentials .brand-section__inner--title-only {
  position: relative;
  display: block;
  width: calc(100% + (2 * var(--about-section-inline-pad)));
  max-width: none;
  min-height: 0;
  aspect-ratio: 16 / 6;
  margin: 0 calc(var(--about-section-inline-pad) * -1);
  padding-top: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  box-sizing: border-box;
  isolation: isolate;
}

body[data-page="about"] .brand-section--craft .brand-section__inner--title-only {
  background: #0a0e14 url("../../images/about/production-flow-hero.webp") center 50% / cover no-repeat;
}

body[data-page="about"] .brand-section--credentials .brand-section__inner--title-only {
  background: #0a0e14 url("../../images/about/certification-hero.webp") center 42% / cover no-repeat;
}

body[data-page="about"] .brand-section--flocking .brand-section__inner--title-only::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0) 44%, rgba(8, 12, 18, 0.78) 100%);
  pointer-events: none;
}

body[data-page="about"] .brand-section--craft .brand-section__inner--title-only::after,
body[data-page="about"] .brand-section--credentials .brand-section__inner--title-only::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0) 44%, rgba(8, 12, 18, 0.78) 100%);
  pointer-events: none;
}

body[data-page="about"] .brand-section--flocking .brand-section__title {
  position: absolute;
  left: calc(50% - (var(--about-title-hero-track-width) / 2) + var(--about-title-hero-inline-pad));
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: max-content;
  max-width: calc(var(--about-title-hero-track-width) - (2 * var(--about-title-hero-inline-pad)));
  margin: 0;
  padding-inline: 0;
  box-sizing: border-box;
  text-align: left;
  color: rgba(248, 249, 251, 0.96);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

body[data-page="about"] .brand-section--craft .brand-section__title,
body[data-page="about"] .brand-section--credentials .brand-section__title {
  position: absolute;
  left: calc(50% - (var(--about-title-hero-track-width) / 2) + var(--about-title-hero-inline-pad));
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: max-content;
  max-width: calc(var(--about-title-hero-track-width) - (2 * var(--about-title-hero-inline-pad)));
  margin: 0;
  padding-inline: 0;
  box-sizing: border-box;
  text-align: left;
  color: rgba(248, 249, 251, 0.96);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

body[data-page="about"] .brand-section--flocking .brand-section__inner--flocking-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 48rem);
  margin: 0 auto;
}

body[data-page="about"] .brand-section--craft .brand-section__inner--craft-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 48rem);
  margin: 0 auto;
}

body[data-page="about"] .brand-section--credentials .brand-section__inner--quality-copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: min(100%, 48rem);
  margin: 0 auto;
  gap: var(--about-section-inline-pad);
}

body[data-page="about"] .brand-flocking-copy {
  --brand-flocking-copy-text-size: clamp(0.8rem, 1.8vw, 0.9rem);
  display: grid;
  width: 100%;
  gap: 0.85rem;
  color: rgba(232, 236, 241, 0.84);
  font-size: var(--brand-flocking-copy-text-size);
  line-height: 1.78;
  letter-spacing: 0;
  text-align: left;
  padding: var(--brand-flocking-card-pad);
  box-sizing: border-box;
  background: rgba(30, 34, 40, 0.82);
  border: 0;
  border-radius: clamp(0.9rem, 2.2vw, 1.15rem);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="about"] .brand-craft-copy {
  display: grid;
  width: 100%;
  gap: 0.85rem;
  color: rgba(232, 236, 241, 0.84);
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  line-height: 1.78;
  letter-spacing: 0;
  text-align: left;
  padding: clamp(0.95rem, 2.4vw, 1.2rem);
  box-sizing: border-box;
  background: rgba(30, 34, 40, 0.82);
  border: 0;
  border-radius: clamp(0.9rem, 2.2vw, 1.15rem);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="about"] .brand-craft-copy p {
  margin: 0;
}

body[data-page="about"] .brand-craft-copy strong {
  color: #fff;
  font-weight: 700;
}

body[data-page="about"] .brand-craft-copy__lead {
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(0.96rem, 2.2vw, 1.08rem);
  line-height: 1.2;
}

body[data-page="about"] .brand-quality-copy {
  display: grid;
  width: 100%;
  gap: 0.85rem;
  color: rgba(232, 236, 241, 0.84);
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  line-height: 1.78;
  letter-spacing: 0;
  text-align: left;
  padding: clamp(0.95rem, 2.4vw, 1.2rem);
  box-sizing: border-box;
  background: rgba(30, 34, 40, 0.82);
  border: 0;
  border-radius: clamp(0.9rem, 2.2vw, 1.15rem);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="about"] .brand-quality-copy p {
  margin: 0;
}

body[data-page="about"] .brand-quality-copy strong {
  color: #fff;
  font-weight: 700;
}

body[data-page="about"] .brand-quality-copy__lead {
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(0.96rem, 2.2vw, 1.08rem);
  line-height: 1.2;
}

body[data-page="about"] .brand-quality-certificates {
  display: grid;
  width: 100%;
  gap: clamp(0.95rem, 2.4vw, 1.2rem);
  margin-top: 0;
  padding: clamp(0.95rem, 2.4vw, 1.2rem);
  box-sizing: border-box;
  background: rgba(30, 34, 40, 0.82);
  border-radius: clamp(0.9rem, 2.2vw, 1.15rem);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="about"] .brand-quality-certificates__item {
  --brand-quality-stack-width: clamp(8.8rem, 26vw, 10.8rem);
  --brand-quality-stack-height: clamp(12.2rem, 36vw, 15rem);
  --brand-quality-certificate-base-width: clamp(7rem, 21vw, 8.6rem);
  display: grid;
  grid-template-columns: minmax(0, var(--brand-quality-stack-width)) minmax(0, 1fr);
  gap: clamp(0.95rem, 2.5vw, 1.3rem);
  align-items: center;
}

body[data-page="about"] .brand-quality-certificates__item + .brand-quality-certificates__item {
  padding-top: clamp(0.95rem, 2.4vw, 1.2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-page="about"] .brand-quality-certificates__stack {
  position: relative;
  min-height: 0;
  width: var(--brand-quality-stack-width);
  height: var(--brand-quality-stack-height);
  justify-self: start;
  align-self: center;
  --brand-quality-certificate-ratio: 858 / 1193;
}

body[data-page="about"] .brand-quality-certificates__stack--iso {
  --brand-quality-stack-overlap-factor: 1.25;
}

body[data-page="about"] .brand-quality-certificates__stack--cma {
  --brand-quality-stack-overlap-factor: 1.36;
}

body[data-page="about"] .brand-quality-certificates__frame {
  position: absolute;
  margin: 0;
  width: var(--brand-quality-certificate-base-width);
  height: auto;
  top: 0;
  left: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  background: transparent;
  aspect-ratio: var(--brand-quality-certificate-ratio);
}

body[data-page="about"] .brand-quality-certificates__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  background: #fff;
}

body[data-page="about"] .brand-quality-certificates__stack--iso .brand-quality-certificates__frame--primary {
  z-index: 2;
  transform: translate(0, 0);
}

body[data-page="about"] .brand-quality-certificates__stack--iso .brand-quality-certificates__frame--secondary {
  z-index: 1;
  transform: translate(
    var(--brand-quality-offset-x-2, 25%),
    var(--brand-quality-offset-y-2, 0.8rem)
  );
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

body[data-page="about"] .brand-quality-certificates__stack--cma .brand-quality-certificates__frame--primary {
  z-index: 3;
  transform: translate(0, 0);
}

body[data-page="about"] .brand-quality-certificates__stack--cma .brand-quality-certificates__frame--secondary {
  z-index: 2;
  transform: translate(
    var(--brand-quality-offset-x-2, 18%),
    var(--brand-quality-offset-y-2, 0.8rem)
  );
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

body[data-page="about"] .brand-quality-certificates__stack--cma .brand-quality-certificates__frame--tertiary {
  z-index: 1;
  transform: translate(
    var(--brand-quality-offset-x-3, 36%),
    var(--brand-quality-offset-y-3, 1.6rem)
  );
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}

body[data-page="about"] .brand-quality-certificates__detail {
  display: grid;
  gap: 0.72rem;
  text-align: left;
}

body[data-page="about"] .brand-quality-certificates__title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  line-height: 1.22;
}

body[data-page="about"] .brand-quality-certificates__meta {
  display: grid;
  gap: 0.62rem;
  margin: 0;
}

body[data-page="about"] .brand-quality-certificates__meta div {
  display: grid;
  gap: 0.12rem;
}

body[data-page="about"] .brand-quality-certificates__meta dt {
  margin: 0;
  color: rgba(176, 182, 191, 0.92);
  font-size: clamp(0.7rem, 1.45vw, 0.76rem);
  line-height: 1.3;
}

body[data-page="about"] .brand-quality-certificates__meta dd {
  margin: 0;
  color: rgba(232, 236, 241, 0.92);
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  line-height: 1.5;
}

body[data-page="about"] .brand-flocking-copy p {
  margin: 0;
}

body[data-page="about"] .brand-flocking-copy strong {
  color: #fff;
  font-weight: 700;
}

body[data-page="about"] .brand-flocking-copy__lead {
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(0.96rem, 2.2vw, 1.08rem);
  line-height: 1.2;
}

body[data-page="about"] .brand-flocking-copy__table-shell {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: clamp(0.9rem, 2.2vw, 1.05rem);
  background: var(--products-deep-gray);
  border: 0;
  box-shadow: none;
}

body[data-page="about"] .brand-flocking-table {
  --brand-flocking-head-shell-min-height: clamp(6.2rem, 13vw, 7rem);
  --brand-flocking-cell-v-pad: 0.98rem;
  --brand-flocking-head-bottom-gap: var(--brand-flocking-cell-v-pad);
  --brand-flocking-accent-fill: linear-gradient(100deg, rgba(226, 93, 29, 0.34) 0%, rgba(226, 93, 29, 0.2) 58%, rgba(226, 93, 29, 0) 87.5%, rgba(226, 93, 29, 0) 100%);
  --brand-flocking-accent-text-size: clamp(0.78rem, 1.72vw, 0.88rem);
  --brand-flocking-accent-column-width: 54%;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: rgba(232, 236, 241, 0.84);
  font-size: clamp(0.74rem, 1.7vw, 0.82rem);
  line-height: 1.55;
}

body[data-page="about"] .brand-flocking-table thead th {
  position: relative;
  height: var(--brand-flocking-head-shell-min-height);
  padding: 0;
  border-bottom: 0;
  background: transparent;
  color: rgba(248, 249, 251, 0.92);
  font-size: clamp(0.72rem, 1.55vw, 0.8rem);
  font-weight: 600;
  text-align: left;
  vertical-align: stretch;
}

body[data-page="about"] .brand-flocking-table thead th:first-child {
  width: var(--brand-flocking-accent-column-width);
}

body[data-page="about"] .brand-flocking-table thead th:last-child {
  width: calc(100% - var(--brand-flocking-accent-column-width));
}

body[data-page="about"] .brand-flocking-table thead th::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  pointer-events: none;
  z-index: 4;
}

body[data-page="about"] .brand-flocking-table thead th:first-child::after {
  left: 0.72rem;
}

body[data-page="about"] .brand-flocking-table thead th:last-child::after {
  right: 0.72rem;
}

body[data-page="about"] .brand-flocking-table thead th:first-child {
  color: rgba(248, 249, 251, 0.96);
}

body[data-page="about"] .brand-flocking-table thead th:first-child .brand-flocking-table__media-head figcaption {
  color: rgba(248, 249, 251, 0.96);
}

body[data-page="about"] .brand-flocking-table thead th:first-child .brand-flocking-table__media-head img {
  transform: scale(1.18);
  transform-origin: center center;
}

body[data-page="about"] .brand-flocking-table__media-head {
  position: relative;
  display: block;
  width: 100%;
  height: var(--brand-flocking-head-shell-min-height);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  isolation: isolate;
}

body[data-page="about"] .brand-flocking-table__media-head::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: clamp(2.3rem, 5.4vw, 2.8rem);
  background: linear-gradient(180deg, rgba(8, 12, 18, 0) 0%, rgba(8, 12, 18, 0.82) 100%);
  pointer-events: none;
  z-index: 2;
}

body[data-page="about"] .brand-flocking-table__media-head img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="about"] .brand-flocking-table__media-head figcaption {
  position: absolute;
  left: clamp(0.5rem, 1.2vw, 0.66rem);
  right: clamp(0.5rem, 1.2vw, 0.66rem);
  bottom: 0;
  z-index: 3;
  margin: 0;
  padding-bottom: var(--brand-flocking-head-bottom-gap);
  color: rgba(248, 249, 251, 0.96);
  font-size: var(--about-material-copy-text-size);
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

body[data-page="about"] .brand-flocking-table tbody td {
  padding: var(--brand-flocking-cell-v-pad) 0.72rem;
  border-bottom: 0;
  vertical-align: top;
  text-align: left;
  overflow-wrap: anywhere;
  background: transparent;
  background-repeat: no-repeat;
  background-image: none;
  text-wrap: pretty;
}

body[data-page="about"] .brand-flocking-table tbody td::before {
  content: attr(data-metric);
  display: block;
  margin-bottom: clamp(0.4rem, 0.85vw, 0.48rem);
  color: rgba(248, 249, 251, 0.62);
  font-size: clamp(0.68rem, 1.45vw, 0.74rem);
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
}

body[data-page="about"] .brand-flocking-table tbody td:first-child {
  background-image: var(--brand-flocking-accent-fill);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  color: rgba(248, 249, 251, 0.96);
  font-size: var(--brand-flocking-accent-text-size);
  font-weight: 600;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

body[data-page="about"] .brand-flocking-table tbody tr:not(:last-child) td:first-child {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    var(--brand-flocking-accent-fill);
  background-size: calc(100% - 0.72rem) 1px, 100% 100%;
  background-position: right bottom, center center;
  background-repeat: no-repeat, no-repeat;
}

body[data-page="about"] .brand-flocking-table tbody tr:not(:last-child) td:last-child {
  background-size: calc(100% - 0.72rem) 1px;
  background-position: left bottom;
  background-image: linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16));
}

body[data-page="about"] .brand-flocking-table tbody td:last-child {
  color: rgba(232, 236, 241, 0.76);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: normal;
  word-break: keep-all;
}

@supports (height: 100dvh) {
  .brand-section {
    min-height: 100dvh;
  }
}

.brand-section::before,
.brand-section::after {
  content: none;
}

.brand-section__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-section__inner--stack {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-section__inner--title-only {
  min-height: calc(100vh - clamp(9.8rem, 19vh, 14rem));
  min-height: calc(100svh - clamp(9.8rem, 19vh, 14rem));
  width: 100%;
}

.brand-section__copy {
  display: none;
}

.brand-section__eyebrow {
  display: none;
}

.brand-section__title {
  margin: 0;
  max-width: min(100%, 14em);
  font-size: 2rem;
  line-height: 1.14;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--text-light);
}

.brand-company-main {
  display: none;
  margin: 0;
}

.brand-section__inner--company-main {
  display: none;
}

.brand-section__inner--company-copy {
  display: none;
}

.brand-section__inner--material-copy {
  display: none;
}

.brand-section__inner--material-fill {
  display: none;
}

.brand-section__inner--flocking-copy {
  display: none;
}

.brand-section__inner--company-history {
  display: none;
}

.brand-company-copy {
  display: none;
}

.brand-material-copy {
  display: none;
}

.brand-material-fill {
  display: none;
}

.brand-flocking-copy {
  display: none;
}

.brand-material-gallery {
  display: none;
}

.brand-section__lede {
  display: none;
}

.brand-section__body {
  display: none;
}

.brand-section__panel,
.brand-cert-card {
  display: none;
}

.brand-section__panel {
  display: none;
}

.brand-overview__stats {
  display: none;
}

.brand-stat-card {
  display: none;
}

.brand-stat-card__value {
  display: none;
}

.brand-stat-card__label {
  display: none;
}

.brand-stat-card p,
.brand-detail-row span,
.brand-process-step p,
.brand-engineering-item p,
.brand-cert-card__meta p {
  display: none;
}

.brand-detail-panel,
.brand-engineering {
  display: none;
}

.brand-detail-row,
.brand-engineering-item,
.brand-process-step {
  display: none;
}

.brand-detail-row {
  display: none;
}

.brand-detail-row span,
.brand-process-step__index {
  display: none;
}

.brand-detail-row strong,
.brand-process-step h3,
.brand-engineering-item h3,
.brand-cert-card__meta h3 {
  display: none;
}

.brand-process {
  display: none;
}

.brand-process-step {
  display: none;
}

.brand-cert-grid {
  display: none;
}

.brand-cert-card {
  display: none;
}

.brand-cert-card img {
  display: none;
}

.brand-cert-card__meta {
  display: none;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="news"] .seasonal-intro-label--desktop,
  body[data-page="products"][data-subpage="news"] .seasonal-intro-title--desktop {
    display: none;
  }

  body[data-page="products"][data-subpage="news"] .seasonal-intro-label--mobile,
  body[data-page="products"][data-subpage="news"] .seasonal-intro-title--mobile {
    display: inline;
  }

  .brand-main::before {
    content: none;
  }

  .brand-section {
    padding: calc(var(--nav-height, 64px) + 1.75rem) clamp(1rem, 4.5vw, 1.35rem) 2rem;
    align-items: flex-start;
  }

  body[data-page="about"] .brand-section {
    padding-top: var(--nav-height, 64px);
  }

  body[data-page="about"] {
    --about-material-copy-text-size: clamp(0.8rem, 3.15vw, 0.9rem);
    --about-section-inline-pad: clamp(1rem, 4.5vw, 1.35rem);
    --about-collapsed-section-count: 5;
    --about-collapsed-title-hero-height: calc(
      (
        100svh -
        var(--nav-height, 64px) -
        (var(--about-fine-rule-width) * var(--about-collapsed-section-count))
      ) / var(--about-collapsed-section-count)
    );
  }

  .brand-section-rail {
    padding:
      var(--about-section-rail-shell-pad)
      var(--about-section-inline-pad)
      calc(var(--about-section-rail-shell-pad) + env(safe-area-inset-bottom));
  }

  .brand-section-rail__list::before {
    left: 10%;
    right: 10%;
  }

  .brand-section-rail__list::after {
    content: none;
  }

  .brand-section-rail__thumb {
    width: clamp(18px, 5.2vw, 22px);
    height: clamp(10px, 2.8vw, 12px);
  }

  .brand-section-rail__label {
    top: 58%;
    font-size: clamp(0.72rem, 2.05vw, 0.8rem);
    letter-spacing: 0.03em;
  }

  .brand-section__inner,
  .brand-section__inner--stack {
    display: flex;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
  }

  .brand-section__inner--title-only {
    min-height: calc(100svh - calc(var(--nav-height, 64px) + 3.75rem));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: var(--about-section-title-top-space);
    box-sizing: border-box;
  }

  .brand-section__title {
    max-width: min(100%, 14em);
    font-size: clamp(1.36rem, 6vw, 1.78rem);
    line-height: 1.14;
    text-align: center;
  }

  body[data-page="about"] .brand-section__hero-toggle {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.34rem, 1.25vw, 0.42rem);
    width: clamp(5.2rem, 22.5vw, 5.55rem);
    height: clamp(1.88rem, 7.2vw, 2.12rem);
    padding: 0 clamp(0.66rem, 2.6vw, 0.8rem);
    box-sizing: border-box;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(248, 249, 251, 0.96);
    font-size: clamp(0.72rem, 2.25vw, 0.8rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.03em;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    text-transform: none;
    cursor: pointer;
  }

  body[data-page="about"] .brand-section__hero-toggle::after {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 0.34rem;
    height: 0.34rem;
    border-right: 1.35px solid rgba(255, 255, 255, 0.68);
    border-bottom: 1.35px solid rgba(255, 255, 255, 0.68);
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }

  body[data-page="about"] .brand-section__hero-toggle[hidden] {
    display: none !important;
  }

  body[data-page="about"] .brand-section__hero-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
  }

  body[data-page="about"] .brand-section__hero-toggle[aria-expanded="false"] {
    background: rgba(255, 255, 255, 0.12);
  }

  body[data-page="about"] .brand-section__hero-toggle[aria-expanded="true"]::after {
    transform: rotate(-135deg);
  }

  body[data-page="about"] .brand-section__hero-toggle-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  body[data-page="about"] .brand-section--intro,
  body[data-page="about"] .brand-section--material,
  body[data-page="about"] .brand-section--flocking,
  body[data-page="about"] .brand-section--craft,
  body[data-page="about"] .brand-section--credentials {
    transition:
      gap 420ms cubic-bezier(0.22, 0.74, 0.2, 1),
      padding-bottom 420ms cubic-bezier(0.22, 0.74, 0.2, 1),
      min-height 420ms cubic-bezier(0.22, 0.74, 0.2, 1);
  }

  body[data-page="about"].is-about-section-preparing-expand .brand-section--intro,
  body[data-page="about"].is-about-section-preparing-expand .brand-section--material,
  body[data-page="about"].is-about-section-preparing-expand .brand-section--flocking,
  body[data-page="about"].is-about-section-preparing-expand .brand-section--craft,
  body[data-page="about"].is-about-section-preparing-expand .brand-section--credentials,
  body[data-page="about"].is-about-section-preparing-expand [data-section-collapse-body] {
    transition: none !important;
  }

  body[data-page="about"] [data-section-collapse-body] {
    overflow: hidden;
    max-height: var(--section-collapse-body-height, 0px);
    opacity: 1;
    transform: translateY(0);
    transform-origin: top center;
    transition:
      max-height 460ms cubic-bezier(0.22, 0.74, 0.2, 1),
      opacity 220ms ease,
      transform 460ms cubic-bezier(0.22, 0.74, 0.2, 1);
    will-change: max-height, opacity, transform;
  }

  body[data-page="about"] .brand-section:not(.is-section-collapsed) [data-section-collapse-body] {
    max-height: max(var(--section-collapse-body-height, 0px), 120rem);
    opacity: 1;
    transform: translateY(0);
  }

  body[data-page="about"] .brand-section.is-section-collapsed [data-section-collapse-body] {
    max-height: 0 !important;
    opacity: 0;
    transform: translateY(-0.6rem);
    pointer-events: none;
  }

  body[data-page="about"] .brand-section.is-section-collapsed {
    gap: 0;
    padding-bottom: 0;
  }

  @supports (height: 100dvh) {
    body[data-page="about"] {
      --about-collapsed-title-hero-height: calc(
        (
          100dvh -
          var(--nav-height, 64px) -
          (var(--about-fine-rule-width) * var(--about-collapsed-section-count))
        ) / var(--about-collapsed-section-count)
      );
    }
  }

  body[data-page="about"] .brand-company-main__title-wrap .brand-section__hero-toggle {
    top: calc(100% - var(--brand-company-title-bottom-pad));
    right: calc(50% - (var(--brand-company-title-track-width) / 2) + var(--brand-company-title-inline-pad));
    transform: translateY(-100%);
    pointer-events: auto;
  }

  body[data-page="about"] .brand-section--material .brand-section__hero-toggle,
  body[data-page="about"] .brand-section--flocking .brand-section__hero-toggle,
  body[data-page="about"] .brand-section--craft .brand-section__hero-toggle,
  body[data-page="about"] .brand-section--credentials .brand-section__hero-toggle {
    top: calc(100% - var(--about-title-hero-bottom-pad));
    right: calc(50% - (var(--about-title-hero-track-width) / 2) + var(--about-title-hero-inline-pad));
    transform: translateY(-100%);
  }

  body[data-page="about"] .brand-section--intro.is-section-collapsed .brand-company-main {
    aspect-ratio: auto;
    height: var(--about-collapsed-title-hero-height);
  }

  body[data-page="about"] .brand-company-main {
    aspect-ratio: auto;
    height: var(--about-collapsed-title-hero-height);
  }

  body[data-page="about"] .brand-section--material .brand-section__inner--title-only,
  body[data-page="about"] .brand-section--flocking .brand-section__inner--title-only,
  body[data-page="about"] .brand-section--craft .brand-section__inner--title-only,
  body[data-page="about"] .brand-section--credentials .brand-section__inner--title-only {
    aspect-ratio: auto;
    height: var(--about-collapsed-title-hero-height);
  }

  body[data-page="about"] .brand-section--material.is-section-collapsed .brand-section__inner--title-only,
  body[data-page="about"] .brand-section--flocking.is-section-collapsed .brand-section__inner--title-only,
  body[data-page="about"] .brand-section--craft.is-section-collapsed .brand-section__inner--title-only,
  body[data-page="about"] .brand-section--credentials.is-section-collapsed .brand-section__inner--title-only {
    aspect-ratio: auto;
    height: var(--about-collapsed-title-hero-height);
  }

  body[data-page="about"] .brand-section--material .brand-section__inner--title-only {
    --about-title-hero-inline-pad: clamp(0.95rem, 4vw, 1.2rem);
    --about-title-hero-track-width: min(calc(100% - (2 * var(--about-section-inline-pad))), 48rem);
    --about-title-hero-bottom-pad: clamp(1rem, 4.4vw, 1.35rem);
    position: relative;
    display: block;
    width: calc(100% + (2 * var(--about-section-inline-pad)));
    max-width: none;
    min-height: 0;
    aspect-ratio: 16 / 6;
    margin: 0 calc(var(--about-section-inline-pad) * -1);
    padding-top: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    box-sizing: border-box;
    isolation: isolate;
    background: #0a0e14 url("../../images/about/material-selection-hero.webp") center 34% / cover no-repeat;
  }

  body[data-page="about"] .brand-section--flocking .brand-section__inner--title-only {
    --about-title-hero-inline-pad: clamp(0.95rem, 4vw, 1.2rem);
    --about-title-hero-track-width: min(calc(100% - (2 * var(--about-section-inline-pad))), 48rem);
    --about-title-hero-bottom-pad: clamp(1rem, 4.4vw, 1.35rem);
    position: relative;
    display: block;
    width: calc(100% + (2 * var(--about-section-inline-pad)));
    max-width: none;
    min-height: 0;
    aspect-ratio: 16 / 6;
    margin: 0 calc(var(--about-section-inline-pad) * -1);
    padding-top: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    box-sizing: border-box;
    isolation: isolate;
    background: #0a0e14 url("../../images/home/hero-slide-01.webp") center 42% / cover no-repeat;
  }

  body[data-page="about"] .brand-section--craft .brand-section__inner--title-only,
  body[data-page="about"] .brand-section--credentials .brand-section__inner--title-only {
    --about-title-hero-inline-pad: clamp(0.95rem, 4vw, 1.2rem);
    --about-title-hero-track-width: min(calc(100% - (2 * var(--about-section-inline-pad))), 48rem);
    --about-title-hero-bottom-pad: clamp(1rem, 4.4vw, 1.35rem);
    position: relative;
    display: block;
    width: calc(100% + (2 * var(--about-section-inline-pad)));
    max-width: none;
    min-height: 0;
    aspect-ratio: 16 / 6;
    margin: 0 calc(var(--about-section-inline-pad) * -1);
    padding-top: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    box-sizing: border-box;
    isolation: isolate;
  }

  body[data-page="about"] .brand-section--craft .brand-section__inner--title-only {
    background: #0a0e14 url("../../images/about/production-flow-hero.webp") center 50% / cover no-repeat;
  }

  body[data-page="about"] .brand-section--credentials .brand-section__inner--title-only {
    background: #0a0e14 url("../../images/about/certification-hero.webp") center 42% / cover no-repeat;
  }

  body[data-page="about"] .brand-section--material {
    --brand-material-card-pad: clamp(0.95rem, 4vw, 1.2rem);
    --brand-material-fill-pad: var(--brand-material-card-pad);
    flex-direction: column;
    align-items: stretch;
    gap: var(--about-section-inline-pad);
    min-height: 0;
    height: auto;
    overflow: visible;
    padding-top: 0;
  }

  body[data-page="about"] .brand-section--flocking {
    --brand-flocking-card-pad: clamp(0.95rem, 4vw, 1.2rem);
    flex-direction: column;
    align-items: stretch;
    gap: var(--about-section-inline-pad);
    min-height: 0;
    height: auto;
    overflow: visible;
    padding-top: 0;
  }

  body[data-page="about"] .brand-section--craft,
  body[data-page="about"] .brand-section--credentials {
    flex-direction: column;
    align-items: stretch;
    gap: var(--about-section-inline-pad);
    min-height: 100svh;
    height: auto;
    overflow: visible;
    padding-top: 0;
  }

  @supports (height: 100dvh) {
    body[data-page="about"] .brand-section--craft,
    body[data-page="about"] .brand-section--credentials {
      min-height: 100dvh;
    }
  }

  body[data-page="about"] .brand-section--craft.is-section-collapsed,
  body[data-page="about"] .brand-section--credentials.is-section-collapsed {
    min-height: 0;
  }

  body[data-page="about"] .brand-section--material .brand-section__inner--title-only::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 12, 18, 0) 44%, rgba(8, 12, 18, 0.78) 100%);
    pointer-events: none;
  }

  body[data-page="about"] .brand-section--flocking .brand-section__inner--title-only::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 12, 18, 0) 44%, rgba(8, 12, 18, 0.78) 100%);
    pointer-events: none;
  }

  body[data-page="about"] .brand-section--craft .brand-section__inner--title-only::after,
  body[data-page="about"] .brand-section--credentials .brand-section__inner--title-only::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 12, 18, 0) 44%, rgba(8, 12, 18, 0.78) 100%);
    pointer-events: none;
  }

  body[data-page="about"] .brand-section--material .brand-section__title {
    position: absolute;
    left: calc(50% - (var(--about-title-hero-track-width) / 2) + var(--about-title-hero-inline-pad));
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: max-content;
    max-width: calc(var(--about-title-hero-track-width) - (2 * var(--about-title-hero-inline-pad)));
    margin: 0;
    padding-inline: 0;
    box-sizing: border-box;
    text-align: left;
    color: rgba(248, 249, 251, 0.96);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  }

  body[data-page="about"] .brand-section--flocking .brand-section__title {
    position: absolute;
    left: calc(50% - (var(--about-title-hero-track-width) / 2) + var(--about-title-hero-inline-pad));
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: max-content;
    max-width: calc(var(--about-title-hero-track-width) - (2 * var(--about-title-hero-inline-pad)));
    margin: 0;
    padding-inline: 0;
    box-sizing: border-box;
    text-align: left;
    color: rgba(248, 249, 251, 0.96);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  }

  body[data-page="about"] .brand-section--craft .brand-section__title,
  body[data-page="about"] .brand-section--credentials .brand-section__title {
    position: absolute;
    left: calc(50% - (var(--about-title-hero-track-width) / 2) + var(--about-title-hero-inline-pad));
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: max-content;
    max-width: calc(var(--about-title-hero-track-width) - (2 * var(--about-title-hero-inline-pad)));
    margin: 0;
    padding-inline: 0;
    box-sizing: border-box;
    text-align: left;
    color: rgba(248, 249, 251, 0.96);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  }

  body[data-page="about"] .brand-section--material .brand-section__inner--material-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: min(100%, 48rem);
    margin: 0 auto;
  }

  body[data-page="about"] .brand-section__material-stack {
    display: grid;
    gap: var(--about-section-inline-pad);
    width: 100%;
  }

  body[data-page="about"] .brand-section--material .brand-section__inner--material-fill {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: min(100%, 48rem);
    margin: 0 auto;
    flex: 0 0 auto;
    min-height: 0;
  }

  body[data-page="about"] .brand-section--flocking .brand-section__inner--flocking-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: min(100%, 48rem);
    margin: 0 auto;
  }

  body[data-page="about"] .brand-section--craft .brand-section__inner--craft-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: min(100%, 48rem);
    margin: 0 auto;
  }

  body[data-page="about"] .brand-section--credentials .brand-section__inner--quality-copy {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: min(100%, 48rem);
    margin: 0 auto;
    gap: var(--about-section-inline-pad);
  }

  body[data-page="about"] .brand-material-copy {
    display: grid;
    width: 100%;
    gap: 0.85rem;
    color: rgba(232, 236, 241, 0.84);
    font-size: clamp(0.8rem, 3.15vw, 0.9rem);
    line-height: 1.78;
    letter-spacing: 0;
    text-align: left;
    padding: var(--brand-material-card-pad);
    box-sizing: border-box;
    background: rgba(30, 34, 40, 0.82);
    border: 0;
    border-radius: clamp(0.9rem, 3.8vw, 1.15rem);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body[data-page="about"] .brand-flocking-copy {
    --brand-flocking-copy-text-size: clamp(0.8rem, 3.15vw, 0.9rem);
    display: grid;
    width: 100%;
    min-height: 0;
    gap: 0.85rem;
    color: rgba(232, 236, 241, 0.84);
    font-size: var(--brand-flocking-copy-text-size);
    line-height: 1.78;
    letter-spacing: 0;
    text-align: left;
    padding: var(--brand-flocking-card-pad);
    box-sizing: border-box;
    background: rgba(30, 34, 40, 0.82);
    border: 0;
    border-radius: clamp(0.9rem, 3.8vw, 1.15rem);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body[data-page="about"] .brand-craft-copy {
    display: grid;
    width: 100%;
    gap: 0.85rem;
    color: rgba(232, 236, 241, 0.84);
    font-size: clamp(0.8rem, 3.15vw, 0.9rem);
    line-height: 1.78;
    letter-spacing: 0;
    text-align: left;
    padding: clamp(0.95rem, 4vw, 1.2rem);
    box-sizing: border-box;
    background: rgba(30, 34, 40, 0.82);
    border: 0;
    border-radius: clamp(0.9rem, 3.8vw, 1.15rem);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body[data-page="about"] .brand-craft-copy p {
    margin: 0;
  }

  body[data-page="about"] .brand-craft-copy strong {
    color: #fff;
    font-weight: 700;
  }

  body[data-page="about"] .brand-craft-copy__lead {
    color: var(--orange);
    font-weight: 700;
    font-size: clamp(0.96rem, 3.9vw, 1.08rem);
    line-height: 1.2;
  }

  body[data-page="about"] .brand-quality-copy {
    display: grid;
    width: 100%;
    gap: 0.85rem;
    color: rgba(232, 236, 241, 0.84);
    font-size: clamp(0.8rem, 3.15vw, 0.9rem);
    line-height: 1.78;
    letter-spacing: 0;
    text-align: left;
    padding: clamp(0.95rem, 4vw, 1.2rem);
    box-sizing: border-box;
    background: rgba(30, 34, 40, 0.82);
    border: 0;
    border-radius: clamp(0.9rem, 3.8vw, 1.15rem);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body[data-page="about"] .brand-quality-copy p {
    margin: 0;
  }

  body[data-page="about"] .brand-quality-copy strong {
    color: #fff;
    font-weight: 700;
  }

  body[data-page="about"] .brand-quality-copy__lead {
    color: var(--orange);
    font-weight: 700;
    font-size: clamp(0.96rem, 3.9vw, 1.08rem);
    line-height: 1.2;
  }

  body[data-page="about"] .brand-quality-certificates {
    gap: clamp(0.95rem, 4vw, 1.2rem);
    margin-top: 0;
    padding: clamp(0.95rem, 4vw, 1.2rem);
    border-radius: clamp(0.9rem, 3.8vw, 1.15rem);
  }

  body[data-page="about"] .brand-quality-certificates__item {
    grid-template-columns: minmax(0, var(--brand-quality-stack-width)) minmax(0, 1fr);
    gap: clamp(0.8rem, 3.6vw, 1rem);
    align-items: center;
  }

  body[data-page="about"] .brand-quality-certificates__item + .brand-quality-certificates__item {
    padding-top: clamp(0.95rem, 4vw, 1.2rem);
  }

  body[data-page="about"] .brand-quality-certificates__stack {
    min-height: 0;
    align-self: center;
  }

  body[data-page="about"] .brand-quality-certificates__title {
    font-size: clamp(0.84rem, 3.5vw, 0.94rem);
  }

  body[data-page="about"] .brand-quality-certificates__meta dt {
    font-size: clamp(0.66rem, 2.5vw, 0.72rem);
  }

  body[data-page="about"] .brand-quality-certificates__meta dd {
    font-size: clamp(0.76rem, 2.9vw, 0.86rem);
  }

  body[data-page="about"] .brand-flocking-copy p {
    margin: 0;
  }

  body[data-page="about"] .brand-flocking-copy strong {
    color: #fff;
    font-weight: 700;
  }

  body[data-page="about"] .brand-flocking-copy__lead {
    color: var(--orange);
    font-weight: 700;
    font-size: clamp(0.96rem, 3.9vw, 1.08rem);
    line-height: 1.2;
  }

  body[data-page="about"] .brand-flocking-copy__table-shell {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: clamp(0.9rem, 3.8vw, 1.05rem);
    background: var(--products-deep-gray);
    border: 0;
    box-shadow: none;
  }

  body[data-page="about"] .brand-flocking-table {
    --brand-flocking-head-shell-min-height: clamp(5.2rem, 22vw, 6.4rem);
    --brand-flocking-cell-v-pad: 0.9rem;
    --brand-flocking-head-bottom-gap: var(--brand-flocking-cell-v-pad);
    --brand-flocking-accent-text-size: clamp(0.74rem, 2.7vw, 0.84rem);
    --brand-flocking-accent-column-width: 54%;
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    table-layout: fixed;
    color: rgba(232, 236, 241, 0.84);
    font-size: clamp(0.66rem, 2.45vw, 0.75rem);
    line-height: 1.48;
  }

  body[data-page="about"] .brand-flocking-table thead th {
    position: relative;
    height: var(--brand-flocking-head-shell-min-height);
    padding: 0;
    border-bottom: 0;
    background: transparent;
    color: rgba(248, 249, 251, 0.92);
    font-size: clamp(0.64rem, 2.3vw, 0.72rem);
    font-weight: 600;
    text-align: left;
    vertical-align: stretch;
  }

  body[data-page="about"] .brand-flocking-table thead th:first-child {
    width: var(--brand-flocking-accent-column-width);
  }

  body[data-page="about"] .brand-flocking-table thead th:last-child {
    width: calc(100% - var(--brand-flocking-accent-column-width));
  }

  body[data-page="about"] .brand-flocking-table thead th::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    pointer-events: none;
    z-index: 4;
  }

  body[data-page="about"] .brand-flocking-table thead th:first-child::after {
    left: 0.68rem;
  }

  body[data-page="about"] .brand-flocking-table thead th:last-child::after {
    right: 0.68rem;
  }

  body[data-page="about"] .brand-flocking-table thead th:first-child {
    color: rgba(248, 249, 251, 0.96);
  }

  body[data-page="about"] .brand-flocking-table thead th:first-child .brand-flocking-table__media-head figcaption {
    color: rgba(248, 249, 251, 0.96);
  }

  body[data-page="about"] .brand-flocking-table thead th:first-child .brand-flocking-table__media-head img {
    transform: scale(1.24);
    transform-origin: center center;
  }

  body[data-page="about"] .brand-flocking-table__media-head {
    position: relative;
    display: block;
    width: 100%;
    height: var(--brand-flocking-head-shell-min-height);
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    isolation: isolate;
  }

  body[data-page="about"] .brand-flocking-table__media-head::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: clamp(2.4rem, 10vw, 2.9rem);
    background: linear-gradient(180deg, rgba(8, 12, 18, 0) 0%, rgba(8, 12, 18, 0.82) 100%);
    pointer-events: none;
    z-index: 2;
  }

  body[data-page="about"] .brand-flocking-table__media-head img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page="about"] .brand-flocking-table__media-head figcaption {
    position: absolute;
    left: clamp(0.5rem, 2.1vw, 0.66rem);
    right: clamp(0.5rem, 2.1vw, 0.66rem);
    bottom: 0;
    z-index: 3;
    margin: 0;
    padding-bottom: var(--brand-flocking-head-bottom-gap);
    color: rgba(248, 249, 251, 0.96);
    font-size: var(--about-material-copy-text-size);
    font-weight: 600;
    line-height: 1.1;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  }

  body[data-page="about"] .brand-flocking-table tbody td {
    padding: var(--brand-flocking-cell-v-pad) 0.68rem;
    border-bottom: 0;
    vertical-align: top;
    text-align: left;
    overflow-wrap: anywhere;
    background: transparent;
    background-repeat: no-repeat;
    background-image: none;
    text-wrap: pretty;
  }

  body[data-page="about"] .brand-flocking-table tbody td::before {
    content: attr(data-metric);
    display: block;
    margin-bottom: clamp(0.34rem, 1.5vw, 0.42rem);
    color: rgba(248, 249, 251, 0.62);
    font-size: clamp(0.62rem, 2.2vw, 0.68rem);
    font-weight: 600;
    line-height: 1.15;
    white-space: nowrap;
  }

  body[data-page="about"] .brand-flocking-table tbody td:first-child {
    background-image: var(--brand-flocking-accent-fill);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    color: rgba(248, 249, 251, 0.96);
    font-size: var(--brand-flocking-accent-text-size);
    font-weight: 600;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  body[data-page="about"] .brand-flocking-table tbody tr:not(:last-child) td:first-child {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
      var(--brand-flocking-accent-fill);
    background-size: calc(100% - 0.68rem) 1px, 100% 100%;
    background-position: right bottom, center center;
    background-repeat: no-repeat, no-repeat;
  }

  body[data-page="about"] .brand-flocking-table tbody tr:not(:last-child) td:last-child {
    background-size: calc(100% - 0.68rem) 1px;
    background-position: left bottom;
    background-image: linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16));
  }

  body[data-page="about"] .brand-flocking-table tbody td:last-child {
    color: rgba(232, 236, 241, 0.76);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  body[data-page="about"] .brand-material-fill {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 0;
    padding: var(--brand-material-fill-pad);
    box-sizing: border-box;
    background: rgba(30, 34, 40, 0.82);
    border: 0;
    border-radius: clamp(0.9rem, 3.8vw, 1.15rem);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
  }

  body[data-page="about"] .brand-section--material.is-section-transitioning .brand-material-copy,
  body[data-page="about"] .brand-section--material.is-section-transitioning .brand-material-fill {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body[data-page="about"] .brand-material-gallery {
    --material-gallery-indicator-inset: 0px;
    --material-gallery-rail-pill-width: clamp(18px, 5.2vw, 22px);
    --material-gallery-rail-pill-height: clamp(10px, 2.8vw, 12px);
    --material-gallery-rail-dot-size: clamp(6px, 1.8vw, 7px);
    --material-gallery-track-center: calc(var(--material-gallery-indicator-inset) + (var(--material-gallery-rail-pill-height) / 2));
    --material-gallery-track-start: 0px;
    --material-gallery-track-end: 100%;
    --material-gallery-track-active: 0px;
    --material-gallery-card-gap: clamp(0.8rem, 3.2vw, 1rem);
    --material-gallery-image-radius: clamp(0.82rem, 3.3vw, 1rem);
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: var(--brand-material-fill-pad);
    align-items: start;
    width: 100%;
    min-height: 0;
    box-sizing: border-box;
  }

  body[data-page="about"] .brand-material-gallery__rail {
    position: relative;
    display: block;
    width: 100%;
    min-height: calc(var(--material-gallery-rail-pill-height) + 1.6rem);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  body[data-page="about"] .brand-material-gallery__rail::before {
    content: "";
    position: absolute;
    top: var(--material-gallery-track-center);
    left: var(--material-gallery-track-start);
    width: calc(var(--material-gallery-track-end) - var(--material-gallery-track-start));
    height: 1px;
    background: #fff;
    transform: translateY(-50%);
    pointer-events: none;
  }

  body[data-page="about"] .brand-material-gallery__rail::after {
    content: "";
    position: absolute;
    top: calc(var(--material-gallery-track-center) - (var(--material-gallery-rail-pill-height) / 2));
    left: calc(var(--material-gallery-track-active) - (var(--material-gallery-rail-pill-width) / 2));
    width: var(--material-gallery-rail-pill-width);
    height: var(--material-gallery-rail-pill-height);
    border-radius: 999px;
    background: var(--orange);
    transition: left 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  body[data-page="about"] .brand-material-gallery__rail-item {
    min-height: 0;
  }

  body[data-page="about"] .brand-material-gallery__dot {
    appearance: none;
    position: absolute;
    top: 0;
    left: var(--material-gallery-dot-center, 50%);
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 0.45rem;
    width: max-content;
    max-width: 100%;
    border: 0;
    padding: calc(var(--material-gallery-rail-pill-height) + 0.55rem) 0 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    transform: translateX(-50%);
  }

  body[data-page="about"] .brand-material-gallery__dot::before {
    content: "";
    position: absolute;
    top: calc(var(--material-gallery-rail-pill-height) / 2);
    left: 50%;
    width: var(--material-gallery-rail-dot-size);
    height: var(--material-gallery-rail-dot-size);
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    transition:
      background 0.28s ease,
      transform 0.28s ease;
  }

  body[data-page="about"] .brand-material-gallery__dot.is-active::before {
    background: #fff;
    transform: translate(-50%, -50%) scale(0.92);
  }

  body[data-page="about"] .brand-material-gallery__dot-label {
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.72rem, 2.05vw, 0.8rem);
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    transition: color 0.28s ease;
  }

  body[data-page="about"] .brand-material-gallery__dot.is-active .brand-material-gallery__dot-label {
    color: var(--orange);
    font-weight: 700;
  }

  body[data-page="about"] .brand-material-gallery__stage {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 0;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
  }

  body[data-page="about"] .brand-material-gallery__card {
    position: relative;
    grid-area: 1 / 1;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: var(--material-gallery-image-radius);
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.45rem);
    transition:
      opacity 0.42s ease,
      transform 0.42s ease,
      visibility 0s linear 0.42s;
  }

  body[data-page="about"] .brand-material-gallery__card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: clamp(4.2rem, 22vw, 5.2rem);
    background: linear-gradient(180deg, rgba(8, 12, 18, 0) 0%, rgba(8, 12, 18, 0.78) 100%);
    pointer-events: none;
    z-index: 1;
  }

  body[data-page="about"] .brand-material-gallery__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: inherit;
    background: transparent;
    isolation: isolate;
  }

  body[data-page="about"] .brand-material-gallery__media::before {
    content: none;
  }

  body[data-page="about"] .brand-material-gallery__card img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: inherit;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
  }

  body[data-page="about"] .brand-material-gallery__caption {
    position: absolute;
    inset: auto clamp(0.78rem, 3.2vw, 0.95rem) clamp(0.72rem, 3vw, 0.9rem) clamp(0.78rem, 3.2vw, 0.95rem);
    z-index: 2;
    margin: 0;
    color: rgba(248, 249, 251, 0.94);
    font-size: clamp(0.7rem, 2.65vw, 0.78rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
  }

  body[data-page="about"] .brand-material-gallery__card.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  body[data-page="about"] .brand-material-gallery__card:not(.is-active) {
    z-index: 1;
  }

  body[data-page="about"] .brand-material-copy p {
    margin: 0;
  }

  body[data-page="about"] .brand-material-copy strong {
    color: #fff;
    font-weight: 700;
  }

  body[data-page="about"] .brand-material-copy__lead {
    color: var(--orange);
    font-weight: 700;
    font-size: clamp(0.96rem, 3.9vw, 1.08rem);
    line-height: 1.2;
  }

  body[data-page="about"] .brand-section--intro {
    --about-intro-stack-gap: var(--about-section-inline-pad);
    flex-direction: column;
    align-items: stretch;
    gap: var(--about-intro-stack-gap);
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed {
    box-sizing: border-box;
    min-height: 0;
    height: auto;
    max-height: none;
    overflow: visible;
    padding-bottom: calc(var(--about-section-inline-pad) * 2);
    background:
      linear-gradient(180deg, rgba(7, 10, 15, 0.14) 0%, rgba(7, 10, 15, 0.24) 30%, rgba(7, 10, 15, 0.68) 58%, rgba(7, 10, 15, 0.92) 100%),
      url("../../images/about/company-intro-hero.webp") center 34% / cover no-repeat;
  }

  @supports (height: 100dvh) {
    body[data-page="about"] .brand-section--intro.is-history-collapsed {
      min-height: 0;
      height: auto;
      max-height: none;
    }
  }

  body[data-page="about"] .brand-section--intro .brand-section__inner--company-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: calc(100% + (2 * var(--about-section-inline-pad)));
    max-width: none;
    margin: 0 calc(var(--about-section-inline-pad) * -1);
  }

  body[data-page="about"] .brand-company-main {
    display: block;
    position: relative;
    isolation: isolate;
    width: 100%;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: #0a0e14;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-main {
    aspect-ratio: 16 / 6;
    background: transparent;
  }

  body[data-page="about"] .brand-company-main::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 12, 18, 0) 44%, rgba(8, 12, 18, 0.78) 100%);
    pointer-events: none;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-main::after {
    content: none;
  }

  body[data-page="about"] .brand-company-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 34%;
    filter: none;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-main img {
    display: none;
  }

  body[data-page="about"] .brand-company-main__title-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    --brand-company-title-inline-pad: clamp(0.95rem, 4vw, 1.2rem);
    --brand-company-title-track-width: min(calc(100% - (2 * var(--about-section-inline-pad))), 48rem);
    --brand-company-title-bottom-pad: clamp(1rem, 4.4vw, 1.35rem);
  }

  body[data-page="about"] .brand-company-main__title-wrap .brand-section__title {
    position: absolute;
    left: calc(50% - (var(--brand-company-title-track-width) / 2) + var(--brand-company-title-inline-pad));
    top: 50%;
    transform: translateY(-50%);
    color: rgba(248, 249, 251, 0.96);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    width: max-content;
    max-width: calc(var(--brand-company-title-track-width) - (2 * var(--brand-company-title-inline-pad)));
    margin: 0;
    box-sizing: border-box;
    padding-inline: 0;
    text-align: left;
    transition:
      left 380ms cubic-bezier(0.22, 0.74, 0.2, 1),
      top 380ms cubic-bezier(0.22, 0.74, 0.2, 1),
      transform 380ms cubic-bezier(0.22, 0.74, 0.2, 1),
      text-align 220ms ease;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-main__title-wrap .brand-section__title {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  body[data-page="about"] .brand-section--intro .brand-section__inner--company-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: min(100%, 48rem);
    margin: 0 auto 0;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-section__inner--company-copy {
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 0;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-section__inner--company-main,
  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-section__inner--company-history {
    flex: 0 0 auto;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-section__inner--company-history {
    margin-top: 0;
  }

  body[data-page="about"] .brand-company-copy {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    color: rgba(232, 236, 241, 0.84);
    font-size: clamp(0.8rem, 3.15vw, 0.9rem);
    line-height: 1.78;
    letter-spacing: 0;
    text-align: left;
    padding: clamp(0.95rem, 4vw, 1.2rem);
    box-sizing: border-box;
    background: rgba(30, 34, 40, 0.82);
    border: 0;
    border-radius: clamp(0.9rem, 3.8vw, 1.15rem);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body[data-page="about"] .brand-company-copy__header {
    flex: 0 0 auto;
  }

  body[data-page="about"] .brand-company-copy__body {
    display: grid;
    gap: 0.75rem;
    width: 100%;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-copy {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    max-height: 100%;
    background: rgba(16, 20, 26, 0.12);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-copy__body {
    flex: 0 0 auto;
    min-height: auto;
    overflow: visible;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed {
    background: none;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-main {
    background: #0a0e14;
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-main::after {
    content: "";
  }

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-main img {
    display: block;
  }

body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-main__title-wrap .brand-section__title {
  left: calc(50% - (var(--brand-company-title-track-width) / 2) + var(--brand-company-title-inline-pad));
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}

  body[data-page="about"] .brand-section--intro.is-history-collapsed .brand-company-copy {
    background: rgba(30, 34, 40, 0.82);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body[data-page="about"] .brand-section--intro.is-section-collapsed,
  body[data-page="about"] .brand-section--intro.is-history-collapsed.is-section-collapsed {
    padding-bottom: 0;
  }

  body[data-page="about"] .brand-company-copy p {
    margin: 0;
  }

  body[data-page="about"] .brand-company-copy strong {
    font-size: clamp(0.96rem, 3.9vw, 1.08rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
  }

  body[data-page="about"] .brand-company-copy__brand-name {
    color: var(--orange);
  }

  body[data-page="about"] .brand-company-copy__headline {
    color: #fff;
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
  }

  body[data-page="about"] .brand-company-copy__emphasis {
    color: #fff;
    font-weight: 700;
  }

  body[data-page="about"] .brand-section--intro .brand-section__inner--company-history {
    --brand-history-badge-width: clamp(4.2rem, 18vw, 5rem);
    --brand-history-badge-height: clamp(1.3rem, 5vw, 1.5rem);
    --brand-history-full-pill-min-height: clamp(2.15rem, 8vw, 2.45rem);
    --brand-history-list-gap: 0.72rem;
    --brand-history-step-row-gap: clamp(0.48rem, 2.2vw, 0.68rem);
    --brand-history-closing-top-gap: clamp(0.15rem, 0.8vw, 0.3rem);
    --brand-history-rail-x: clamp(0.84rem, 3.6vw, 1rem);
    --brand-history-track-width: calc(var(--brand-history-rail-x) + var(--about-section-inline-pad));
    --brand-history-year-start: clamp(0.92rem, 3.8vw, 1.08rem);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: min(100%, 48rem);
    margin: max(0px, calc(var(--about-section-inline-pad) - var(--about-intro-stack-gap))) auto 0;
  }

  body[data-page="about"] .brand-history-list {
    --brand-history-line-progress: 1;
    --brand-history-line-opacity: 1;
    --brand-history-line-duration: 0ms;
    display: grid;
    position: relative;
    width: 100%;
    gap: var(--brand-history-list-gap);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  body[data-page="about"] .brand-history-list::before {
    content: "";
    position: absolute;
    left: var(--brand-history-rail-x);
    top: calc(var(--brand-history-full-pill-min-height) * 0.5);
    bottom: 1.15rem;
    width: 1px;
    background: var(--orange);
    border-radius: 999px;
    pointer-events: none;
    opacity: var(--brand-history-line-opacity);
    transform-origin: top center;
    transform: scaleY(var(--brand-history-line-progress));
    transition:
      transform var(--brand-history-line-duration) linear,
      opacity 180ms ease;
    will-change: transform, opacity;
  }

  body[data-page="about"] .brand-history-list.is-collapsed {
    --brand-history-line-progress: 0;
    --brand-history-line-opacity: 0;
    --brand-history-line-duration: 0ms;
  }

  body[data-page="about"] .brand-history-list.is-collapsed .brand-history-step--full-pill {
    grid-template-rows: auto;
    row-gap: 0;
  }

  body[data-page="about"] .brand-history-step {
    display: grid;
    grid-template-columns: var(--brand-history-track-width) minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 0;
    row-gap: var(--brand-history-step-row-gap);
    position: relative;
  }

  body[data-page="about"] .brand-history-step__year {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--brand-history-badge-width);
    min-width: 0;
    min-height: var(--brand-history-badge-height);
    justify-self: start;
    padding: 0.18rem 0.68rem;
    border-radius: 999px;
    background: var(--orange);
    color: var(--black);
    font-size: clamp(0.66rem, 2.6vw, 0.76rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
    transition:
      opacity 280ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  body[data-page="about"] .brand-history-step__year--toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
  }

  body[data-page="about"] .brand-history-step__label-stack {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  body[data-page="about"] .brand-history-step__label {
    position: absolute;
    top: 50%;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 4.75rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition:
      left 360ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 220ms ease;
    will-change: left, transform, opacity;
  }

  body[data-page="about"] .brand-history-step__label--expanded {
    left: 0;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    padding-inline-start: var(--brand-history-year-start);
    transform: translate3d(0, -50%, 0);
    opacity: 1;
    text-align: left;
  }

  body[data-page="about"] .brand-history-step__label--collapsed {
    left: 50%;
    transform: translate3d(-50%, -50%, 0) scale(0.96);
    opacity: 0;
    text-align: center;
  }

  body[data-page="about"] .brand-history-step__year--toggle .brand-history-step__label--collapsed {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  body[data-page="about"] .brand-history-list.is-collapsing .brand-history-step__label--expanded {
    transition-delay: 0ms, 0ms, 90ms;
  }

  body[data-page="about"] .brand-history-list.is-collapsing .brand-history-step__label--collapsed {
    transition-delay: 90ms, 90ms, 140ms;
  }

  body[data-page="about"] .brand-history-step__toggle {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(5, 5, 5, 0.88);
    padding: 0;
    margin: 0 0 0 auto;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    transition: color 200ms ease;
  }

  body[data-page="about"] .brand-history-step__year--toggle .brand-history-step__toggle {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    width: 1em;
    height: 1em;
    margin: 0;
    font-size: 0.88rem;
    transform: translateY(-50%);
  }

  body[data-page="about"] .brand-history-step__toggle-icon {
    display: inline-flex;
    position: relative;
    width: 1em;
    height: 1em;
    align-items: center;
    justify-content: center;
    color: inherit;
    pointer-events: none;
  }

  body[data-page="about"] .brand-history-step__toggle-icon span {
    width: 100%;
    height: 0.12em;
    border-radius: 999px;
    background: currentColor;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, height 0.2s ease;
  }

  body[data-page="about"] .brand-history-step__toggle-icon span:nth-child(1) {
    top: calc(50% - 0.32em);
  }

  body[data-page="about"] .brand-history-step__toggle-icon span:nth-child(2) {
    top: 50%;
  }

  body[data-page="about"] .brand-history-step__toggle-icon span:nth-child(3) {
    top: calc(50% + 0.32em);
  }

  body[data-page="about"] .brand-history-step__toggle[aria-expanded="true"] .brand-history-step__toggle-icon span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body[data-page="about"] .brand-history-step__toggle[aria-expanded="true"] .brand-history-step__toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  body[data-page="about"] .brand-history-step__toggle[aria-expanded="true"] .brand-history-step__toggle-icon span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  body[data-page="about"] .brand-history-list.is-collapsed .brand-history-step__label--expanded,
  body[data-page="about"] .brand-history-list.is-collapsing .brand-history-step__label--expanded {
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    opacity: 0;
  }

  body[data-page="about"] .brand-history-list.is-collapsed .brand-history-step__label--collapsed,
  body[data-page="about"] .brand-history-list.is-collapsing .brand-history-step__label--collapsed {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  body[data-page="about"] .brand-history-step__content {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: clamp(0.72rem, 3vw, 0.88rem) clamp(0.78rem, 3.25vw, 0.96rem);
    box-sizing: border-box;
    border-radius: clamp(0.9rem, 3.8vw, 1.1rem);
    background:
      linear-gradient(180deg, rgba(35, 39, 46, 0.92) 0%, rgba(26, 30, 36, 0.92) 100%);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
    transition:
      opacity 320ms ease,
      transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  body[data-page="about"] .brand-history-step__content p {
    margin: 0;
    color: rgba(232, 236, 241, 0.84);
    font-size: clamp(0.8rem, 3.05vw, 0.9rem);
    line-height: 1.72;
    letter-spacing: 0;
    text-align: left;
  }

  body[data-page="about"] .brand-history-step--full-width {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    padding-top: var(--brand-history-closing-top-gap);
  }

  body[data-page="about"] .brand-history-list > .brand-history-step--full-pill:first-child {
    padding-top: 0;
  }

  body[data-page="about"] .brand-history-step--full-pill {
    row-gap: calc(var(--brand-history-list-gap) + var(--brand-history-closing-top-gap));
  }

  body[data-page="about"] .brand-history-list.is-expanding [data-brand-history-primary-content]:not(.is-history-revealed),
  body[data-page="about"] .brand-history-list.is-collapsing [data-brand-history-primary-content]:not(.is-history-revealed),
  body[data-page="about"] .brand-history-list.is-expanding [data-brand-history-item]:not(.is-history-revealed) .brand-history-step__content,
  body[data-page="about"] .brand-history-list.is-collapsing [data-brand-history-item]:not(.is-history-revealed) .brand-history-step__content {
    opacity: 0;
    transform: translate3d(24px, 0, 0);
  }

  body[data-page="about"] .brand-history-list.is-expanding [data-brand-history-item]:not(.is-history-revealed) .brand-history-step__year,
  body[data-page="about"] .brand-history-list.is-collapsing [data-brand-history-item]:not(.is-history-revealed) .brand-history-step__year {
    opacity: 0;
    transform: scale(0.88);
  }

  body[data-page="about"] .brand-history-list.is-expanding [data-brand-history-primary-content].is-history-revealed,
  body[data-page="about"] .brand-history-list.is-collapsing [data-brand-history-primary-content].is-history-revealed,
  body[data-page="about"] .brand-history-list.is-expanding [data-brand-history-item].is-history-revealed .brand-history-step__content,
  body[data-page="about"] .brand-history-list.is-collapsing [data-brand-history-item].is-history-revealed .brand-history-step__content {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 120ms;
  }

  body[data-page="about"] .brand-history-list.is-expanding [data-brand-history-item].is-history-revealed .brand-history-step__year,
  body[data-page="about"] .brand-history-list.is-collapsing [data-brand-history-item].is-history-revealed .brand-history-step__year {
    opacity: 1;
    transform: scale(1);
  }

  body[data-page="about"] .brand-history-step--full-pill .brand-history-step__year {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    min-height: var(--brand-history-full-pill-min-height);
    justify-self: stretch;
    padding: 0.6rem 1.35rem 0.6rem 0;
    text-align: center;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  body[data-page="about"] .brand-history-step--full-pill .brand-history-step__content {
    grid-column: 2;
    grid-row: 2;
  }

  body[data-page="about"] .brand-history-step--full-pill .brand-history-step__toggle {
    width: 1em;
    height: 1em;
    font-size: 0.88rem;
  }

  body[data-page="about"] .brand-history-step--full-width .brand-history-step__year {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-height: var(--brand-history-full-pill-min-height);
    justify-self: stretch;
    justify-content: flex-start;
    padding: 0.6rem 1.35rem 0.6rem 0;
    text-align: left;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  body[data-page="about"] .brand-history-step__year--closing {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  body[data-page="about"] .brand-history-step__closing-copy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: calc(var(--brand-history-track-width) + 0.25rem);
    box-sizing: border-box;
    pointer-events: none;
  }

  body[data-page="about"] .brand-history-step__closing-copy-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    max-width: min(100%, 20rem);
    color: rgba(5, 5, 5, 0.9);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body[data-page="about"] .brand-history-step__closing-year,
  body[data-page="about"] .brand-history-step__closing-message {
    display: inline-block;
    white-space: nowrap;
  }

  body[data-page="about"] .brand-history-step__toggle--closing {
    position: relative;
    z-index: 1;
    margin-right: 0;
  }

  body[data-page="about"] .brand-history-list.is-collapsed [data-brand-history-primary-content][hidden],
  body[data-page="about"] .brand-history-list.is-collapsed [data-brand-history-item][hidden] {
    display: none !important;
  }
}

.section-lede {
  max-width: 640px;
  color: var(--gray);
  margin-top: 1rem;
}

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

.inline-plus {
  display: inline-flex;
  align-items: center;
  gap: 0.05em;
  vertical-align: middle;
  white-space: nowrap;
}

.inline-plus--compact {
  gap: 0.025em;
}

.inline-plus__text {
  display: inline-block;
  line-height: 1;
}

.inline-plus__mark {
  position: relative;
  display: inline-block;
  width: 0.58em;
  height: 0.58em;
  flex: 0 0 auto;
}

.inline-plus__mark::before,
.inline-plus__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.inline-plus__mark::before {
  width: 100%;
  height: 0.11em;
}

.inline-plus__mark::after {
  width: 0.11em;
  height: 100%;
}

body[data-page="products"][data-subpage="custom"] .custom-section__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: center;
  height: 100%;
}

body[data-page="products"][data-subpage="custom"] .custom-section__inner > * {
  min-width: 0;
}

body[data-page="products"][data-subpage="custom"] .custom-section__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  align-self: stretch;
}

body[data-page="products"][data-subpage="custom"] .custom-section__media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
}

.custom-success-section .custom-section__inner,
.custom-team-section .custom-section__inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-section__inner {
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 0;
  align-items: stretch;
  padding-inline: 0;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-section__content {
  max-width: 520px;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
  gap: clamp(2rem, 3.5vw, 3rem);
  justify-content: flex-start;
  padding-top: 0;
  position: relative;
  background: transparent;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .section-header {
  margin-top: clamp(7.5rem, 16vh, 9rem);
}

.custom-team-section .custom-section__content {
  max-width: 520px;
}

body[data-page="products"][data-subpage="custom"] .custom-team-section {
  margin-top: 0;
}

.custom-success-section .custom-section__media,
.custom-team-section .custom-section__media {
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(5, 5, 5, 0.45);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-section__media {
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  align-self: stretch;
  height: 100%;
  justify-content: flex-start;
}

.custom-team-section .split-media {
  flex: 1;
  min-height: clamp(320px, 48vh, 520px);
}

body[data-page="products"][data-subpage="custom"] .custom-section__media:empty {
  display: none;
}

body[data-page="products"][data-subpage="custom"] .custom-section {
  width: 100%;
  background: rgba(5, 5, 5, 0.95);
}

body[data-page="products"][data-subpage="custom"] .custom-section--factors,
body[data-page="products"][data-subpage="custom"] .custom-section--flow,
body[data-page="products"][data-subpage="custom"] .custom-section--cases,
body[data-page="products"][data-subpage="custom"] .custom-section--team {
  background-color: transparent;
  background-image: none;
}

/* 流程区域特殊布局 */
body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  gap: 0;
}

body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content {
  width: 100%;
  max-width: 800px;
  text-align: center;
  align-items: center;
  margin-bottom: 3rem;
  padding-top: 0;
}

body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__media {
  width: 100%;
  max-width: none;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--cases {
  padding: 0;
}

body[data-page="products"][data-subpage="custom"] .custom-section--cases {
  position: relative;
}

body[data-page="products"][data-subpage="custom"] .custom-section--cases::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 0;
  pointer-events: none;
}

body[data-page="products"][data-subpage="custom"] .custom-section--cases .custom-section__inner {
  position: relative;
  z-index: 1;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors {
  justify-content: flex-start;
  padding-top: clamp(6rem, 14vw, 7.5rem);
  padding-bottom: 0;
}

body[data-page="products"][data-subpage="custom"] .custom-section--factors .custom-section__inner {
  align-items: flex-start;
}

body[data-page="products"][data-subpage="custom"] .custom-section--factors .custom-section__content,
body[data-page="products"][data-subpage="custom"] .custom-section--factors .custom-section__media {
  justify-content: flex-start;
}


/* Restored custom matrix desktop/base styles */
.custom-matrix-grid {
  position: relative;
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 3rem);
  min-height: clamp(420px, 55vh, 560px);
  align-items: stretch;
}

.custom-matrix-grid[data-active] .custom-matrix:not(.is-open) {
  opacity: 0.75;
  filter: none;
}

.custom-matrix-grid[data-active] .custom-matrix:not(.is-open) .custom-matrix__body {
  justify-content: space-between;
}

.custom-matrix-grid[data-active] .custom-matrix:not(.is-open) .custom-matrix__pillars {
  display: none;
}

.custom-matrix {
  position: relative;
  padding: clamp(1.75rem, 3vw, 3rem);
  padding-bottom: clamp(4rem, 6vw, 4.75rem);
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), rgba(5, 5, 5, 0.82));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  min-height: clamp(420px, 55vh, 560px);
  height: clamp(420px, 55vh, 560px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
  transition: flex-grow 0.95s cubic-bezier(0.18, 0.9, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.custom-matrix.is-open {
  flex-grow: 5;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 45px 85px rgba(0, 0, 0, 0.6);
  background: radial-gradient(circle at top, rgba(226, 93, 29, 0.18), rgba(5, 5, 5, 0.94));
}

.custom-matrix.is-closing {
  flex-grow: 1;
}

.custom-matrix__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.custom-matrix__body :is(h2, h3) {
  margin: 0;
}

.custom-matrix[data-matrix="specs"] .custom-matrix__body :is(h2, h3) {
  margin-top: -0.25rem;
}

.custom-matrix__eyebrow {
  margin: 0;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.custom-matrix__lede {
  margin: 0;
  color: var(--gray);
}

.custom-matrix__lede--muted {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.custom-matrix__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.custom-matrix__lede-wrapper {
  position: relative;
}

/* lede show/hide animation: hide lede for non-open cards while grid is transitioning,
   then reveal after JS adds `.collapsed-lede-visible` when shrink animation completes */
.custom-matrix__lede-wrapper {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.custom-matrix-grid[data-active]:not(.collapsed-lede-visible) .custom-matrix:not(.is-open) .custom-matrix__lede-wrapper {
  opacity: 0;
  visibility: hidden;
}

.custom-matrix-grid[data-active="specs"] [data-matrix="styles"] .custom-matrix__body {
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* keep h3 position consistent for collapsed panels */

.custom-matrix-grid[data-active="specs"] [data-matrix="styles"] .custom-matrix__eyebrow,
.custom-matrix-grid[data-active="specs"] [data-matrix="styles"] .custom-matrix__pillars {
  display: none;
}

.custom-matrix-grid[data-active="specs"] [data-matrix="styles"] .custom-matrix__lede-wrapper {
  transform: translateY(-7rem);
}

.custom-matrix-grid[data-active="styles"] [data-matrix="specs"] .custom-matrix__body {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.custom-matrix-grid[data-active="styles"] [data-matrix="specs"] .custom-matrix__eyebrow,
.custom-matrix-grid[data-active="styles"] [data-matrix="specs"] .custom-matrix__pillars {
  display: none;
}

.custom-matrix-grid[data-active="styles"] [data-matrix="specs"] .custom-matrix__lede-wrapper {
  transform: translateY(-7rem);
}

.custom-matrix[data-matrix="specs"].lede-hidden .custom-matrix__lede-wrapper {
  opacity: 0;
  visibility: hidden;
}

.custom-matrix[data-matrix="specs"].lede-visible .custom-matrix__lede-wrapper {
  opacity: 1;
  visibility: visible;
}

/* 当款式（styles）展开时，让款式卡片的标题向上微移，符合“款式向上移动”的要求 */
.custom-matrix-grid[data-active="styles"] [data-matrix="styles"] :is(h2, h3) {
  transform: translateY(-1.25rem);
}

/* reverted: keep original symmetry handled by the specs->styles rule */

.custom-matrix__pillar {
  padding: 0.85rem clamp(0.35rem, 1.5vw, 0.9rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-matrix__pillar:first-child {
  border-left: none;
}

.custom-matrix__pillar-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.custom-matrix__pillar-copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.spec-summary-line {
  display: block;
}

.spec-summary-line + .spec-summary-line {
  margin-top: 0.15rem;
}

.custom-option-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.5rem 0 0;
}

.custom-option {
  display: flex;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.custom-option input[type="radio"] {
  appearance: none;
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  margin: 0;
  position: relative;
  flex-shrink: 0;
  transform: translateY(0.2rem);
  background: transparent;
}

.custom-option input[type="radio"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

.custom-option input[type="radio"]:checked {
  border-color: var(--orange);
}

.custom-option input[type="radio"]:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

.custom-option input[type="radio"]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.custom-option__content {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.custom-option__title {
  font-size: 0.82rem;
  font-weight: 600;
}

.custom-option__desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.custom-option.is-selected {
  border-color: rgba(226, 93, 29, 0.65);
  background: rgba(226, 93, 29, 0.08);
}

.custom-option:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 720px) {
  .custom-matrix__pillars {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .custom-matrix__pillar {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .custom-matrix__pillar:first-child {
    border-top: none;
  }
}


.custom-matrix.is-open,
.custom-matrix.is-closing {
  gap: clamp(1.75rem, 3vw, 3rem);
}

.custom-matrix.is-open .custom-matrix__body {
  opacity: 0;
  pointer-events: none;
}

.custom-matrix[data-matrix="specs"].is-open .custom-matrix__eyebrow,
.custom-matrix[data-matrix="specs"].is-open :is(h2, h3),
.custom-matrix[data-matrix="specs"].is-open .custom-matrix__lede-wrapper {
  display: none;
}

.custom-matrix__cta {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 2.5vw, 1.75rem);
  transform: translateX(-50%);
  align-self: center;
  width: min(185px, 100%);
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}


.custom-matrix__cta-icon {
  position: relative;
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 0;
  line-height: 0;
  align-items: center;
  justify-content: center;
  transition: transform 0.65s ease, background 0.65s ease, color 0.65s ease;
}

.custom-matrix__cta-icon::before,
.custom-matrix__cta-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.65s ease;
}

.custom-matrix__cta-icon::before {
  width: 0.55rem;
  height: 2px;
}

.custom-matrix__cta-icon::after {
  width: 2px;
  height: 0.55rem;
}

.custom-matrix.is-open .custom-matrix__cta-icon {
  transform: rotate(180deg);
}

.custom-matrix.is-open .custom-matrix__cta-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.custom-matrix__details[hidden] {
  display: none !important;
}

.custom-matrix__details {
  position: absolute;
  top: clamp(0rem, 0.6vw, 0.4rem);
  left: clamp(1.35rem, 2.2vw, 2.2rem);
  right: clamp(1.35rem, 2.2vw, 2.2rem);
  bottom: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.custom-matrix.is-open .custom-matrix__details {
  opacity: 1;
  pointer-events: auto;
}

.custom-matrix.is-closing .custom-matrix__details {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* CTA-hover states reused for button */
.custom-matrix__cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.custom-matrix__details header p {
  margin: 0 0 0.35rem;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
}

.custom-matrix__details header :is(h2, h3) {
  margin: 0;
}

.custom-matrix__sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.35rem;
  align-content: start;
}

.custom-matrix__sections section {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.4rem 0.6rem;
  background: rgba(5, 5, 5, 0.28);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.custom-matrix__detail-eyebrow {
  margin: 0;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.custom-matrix__sections :is(h2, h4) {
  margin: 0;
  font-size: 0.92rem;
}

.custom-matrix__sections--specs section:nth-child(-n + 3) :is(h2, h4) {
  text-align: center;
}

.custom-matrix__sections ul {
  margin: 0;
  padding-left: 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.25;
}

.custom-matrix__sections--styles section {
  padding-bottom: 0;
}

.custom-matrix__sections--styles section:first-child {
  padding-left: 0;
}

.custom-matrix__sections--styles section:nth-child(n + 2) {
  padding-bottom: 0;
}


.custom-matrix__sections--specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
  align-items: stretch;
}

.custom-matrix__sections--specs section {
  flex: 1 1 180px;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0 0.55rem;
  position: relative;
  min-width: 0;
  min-height: 100%;
}

.custom-matrix__sections--specs section:first-child {
  padding-left: 0;
}

/* hardware/material columns share same baseline */
.custom-matrix__sections--specs section:nth-child(n + 2) {
  padding-bottom: 0;
}

.custom-matrix__sections--specs section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 33%, transparent 0);
  background-size: 1px 8px;
  background-repeat: repeat-y;
  opacity: 0.6;
}

.custom-matrix__sections--specs section:last-child::after,
.custom-matrix__sections--specs section:nth-child(3n)::after,
.custom-matrix__sections--specs section:nth-child(3n+3)::after {
  content: none;
}


.custom-matrix__sections--specs :is(h2, h4) {
  margin-top: 1.4rem;
}

.custom-matrix__sections--specs section:first-child .spec-dimensions {
  margin-top: 1.4rem;
}

.custom-matrix__sections--specs section:nth-child(n + 2) .spec-stack {
  margin-top: 0.85rem;
}

.custom-matrix__sections--styles section:first-child .spec-stack {
  margin-top: 0.85rem;
}

.custom-matrix__sections--specs .custom-option-list {
  margin-top: 0.2rem;
}

.spec-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.spec-stack--preview {
  align-items: center;
}

.spec-stack--preview > *:not(.spec-preview) {
  width: 100%;
}

.custom-matrix__sections--styles section:nth-child(2) .spec-preview {
  margin-top: 0.3rem;
}

.spec-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.spec-dots[data-spec-group="hardware"],
.spec-dots[data-spec-group="material"],
.spec-dots[data-style-group="form"] {
  justify-content: center;
}


.spec-dots--grid {
  gap: 0.3rem;
}


.spec-dots--scroll {
  flex-wrap: nowrap;
  gap: 0.26rem;
  padding: 0.15rem 0.2rem;
}


.spec-dots--scroll .spec-dot {
  flex: 0 0 auto;
  max-width: none;
}

.spec-dots--scroll .spec-dot__label {
  display: block;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.12em;
}

.style-fragrance-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.style-scroll {
  width: 28px;
  height: 28px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 5, 5, 0.35);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
  transform: translateY(2px);
}

.style-scroll > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(0);
}

.style-scroll:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
}

.style-scroll:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.style-scroll__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 0.2rem;
}

.style-scroll__viewport::-webkit-scrollbar {
  display: none;
}

.spec-dot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0.2rem;
}

.spec-dot input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.spec-dot__circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1.5px solid #bbb;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-spec-group="hardware"] .spec-dot__circle {
  background-image: url("../../images/products/hardware-tone-grid.jpg");
  background-size: 200% 200%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

[data-spec-group="hardware"] .spec-dot__circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

[data-spec-group="hardware"] .spec-dot.is-selected .spec-dot__circle::after,
[data-spec-group="hardware"] .spec-dot:hover .spec-dot__circle::after {
  opacity: 0.45;
}

[data-spec-group="hardware"] .spec-dot[data-spec-tone="alloy"] .spec-dot__circle {
  background-position: 0% 0%;
}

[data-spec-group="hardware"] .spec-dot[data-spec-tone="copper"] .spec-dot__circle {
  background-position: 100% 0%;
}

[data-spec-group="hardware"] .spec-dot[data-spec-tone="steel"] .spec-dot__circle {
  background-position: 0% 100%;
}

[data-spec-group="hardware"] .spec-dot[data-spec-tone="silver"] .spec-dot__circle {
  background-position: 100% 100%;
}

[data-style-group="form"] .spec-dot__circle {
  background-image: url("../../images/products/buckle-style-grid.jpg") !important;
  background-size: 200% 200% !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  position: relative;
  overflow: hidden;
}

[data-style-group="form"] .spec-dot__circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

[data-style-group="form"] .spec-dot.is-selected .spec-dot__circle::after,
[data-style-group="form"] .spec-dot:hover .spec-dot__circle::after {
  opacity: 0.45;
}

[data-spec-tone="form-auto"] .spec-dot__circle {
  background-position: 0% 0% !important;
}

[data-spec-tone="form-pin"] .spec-dot__circle {
  background-position: 100% 0% !important;
}

[data-spec-tone="form-day"] .spec-dot__circle {
  background-position: 0% 100% !important;
}

[data-spec-group="material"] .spec-dot__circle {
  background-image: url("../../images/products/leather-finish-grid.jpg") !important;
  background-size: 200% 200% !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}

[data-spec-group="material"] .spec-dot__circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.35));
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

[data-spec-group="material"] .spec-dot.is-selected .spec-dot__circle::after,
[data-spec-group="material"] .spec-dot:hover .spec-dot__circle::after {
  opacity: 0.45;
}

[data-spec-group="material"] .spec-dot[data-spec-tone="leather-full"] .spec-dot__circle {
  background-position: 0% 0% !important;
}

[data-spec-group="material"] .spec-dot[data-spec-tone="leather-split"] .spec-dot__circle {
  background-position: 100% 0% !important;
}

[data-spec-group="material"] .spec-dot[data-spec-tone="synthetic"] .spec-dot__circle {
  background-position: 0% 100% !important;
}

[data-spec-group="material"] .spec-dot[data-spec-tone="synthetic-light"] .spec-dot__circle {
  background-position: 100% 100% !important;
}

.spec-dot[data-spec-tone="leather-full"] .spec-dot__circle {
  background: linear-gradient(135deg, rgba(122, 76, 45, 0.95), rgba(63, 35, 17, 0.9));
  border-color: #bbb;
}

.spec-dot[data-spec-tone="leather-split"] .spec-dot__circle {
  background: linear-gradient(135deg, rgba(142, 96, 54, 0.9), rgba(96, 59, 30, 0.85));
}

.spec-dot[data-spec-tone="synthetic"] .spec-dot__circle {
  background: linear-gradient(135deg, rgba(89, 108, 143, 0.92), rgba(33, 42, 63, 0.85));
}

.spec-dot[data-spec-tone="synthetic-light"] .spec-dot__circle {
  background: linear-gradient(135deg, rgba(173, 191, 210, 0.95), rgba(95, 119, 143, 0.85));
}

.spec-dot[data-spec-tone="form-auto"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(230, 112, 63, 0.95), rgba(93, 45, 25, 0.85));
}

.spec-dot[data-spec-tone="form-pin"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(184, 168, 140, 0.95), rgba(90, 82, 64, 0.82));
}

.spec-dot[data-spec-tone="form-day"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(88, 107, 137, 0.95), rgba(36, 44, 60, 0.85));
}

.spec-dot[data-spec-tone="frag-shangrila"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(179, 132, 110, 0.95), rgba(86, 53, 37, 0.85));
}

.spec-dot[data-spec-tone="frag-silver"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(173, 197, 199, 0.95), rgba(103, 128, 136, 0.85));
}

.spec-dot[data-spec-tone="frag-jasmine"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(226, 229, 207, 0.95), rgba(144, 158, 125, 0.85));
}

.spec-dot[data-spec-tone="frag-magnolia"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(213, 200, 177, 0.95), rgba(123, 106, 88, 0.85));
}

.spec-dot[data-spec-tone="frag-lemon"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(244, 214, 131, 0.95), rgba(190, 149, 54, 0.85));
}

.spec-dot[data-spec-tone="frag-lavender"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(186, 168, 214, 0.95), rgba(109, 90, 138, 0.85));
}

.spec-dot[data-spec-tone="frag-bell"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(164, 187, 214, 0.95), rgba(92, 118, 147, 0.85));
}

.spec-dot[data-spec-tone="frag-gardenia"] .spec-dot__circle {
  background: linear-gradient(140deg, rgba(235, 218, 209, 0.95), rgba(167, 143, 129, 0.85));
}

.spec-dot__label {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}

.spec-dot.is-selected .spec-dot__circle {
  border-color: var(--orange);
  box-shadow: 0 0 10px rgba(226, 93, 29, 0.4);
}

.spec-dot.is-selected .spec-dot__label {
  color: var(--text-light);
}

.spec-preview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  width: min(var(--spec-preview-width), 100%);
  max-width: var(--spec-preview-width);
  min-height: 180px;
  margin-top: auto;
  align-self: center;
}

.spec-preview__photo {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.spec-preview__photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.spec-preview[data-spec-preview="hardware"] {
  width: 100%;
  max-width: none;
}

.spec-preview__swatch {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(200, 206, 214, 0.9), rgba(122, 129, 145, 0.8));
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.spec-preview[data-spec-preview="hardware"] {
  border: none;
  padding: 0;
  background: transparent;
  width: min(180px, 100%);
  max-width: 180px;
  min-height: auto;
  position: relative;
  overflow: hidden;
  gap: 0.45rem;
}

.spec-preview[data-spec-preview="material"] {
  border: none;
  padding: 0;
  background: transparent;
  width: min(180px, 100%);
  max-width: 180px;
  min-height: auto;
  position: relative;
  overflow: hidden;
  gap: 0.45rem;
}

.spec-preview[data-spec-preview="hardware"] .spec-preview__swatch {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 14px;
  border: none;
  background-color: transparent;
  overflow: hidden;
}

.spec-preview[data-spec-preview="hardware"] .spec-preview__swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/products/buckle-finish-grid.jpg");
  background-size: 200% 200%;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  transition: transform 0.48s ease, box-shadow 0.36s ease;
  transform-origin: center center;
  will-change: transform;
  border-radius: inherit;
}

.spec-preview[data-spec-preview="hardware"]:hover .spec-preview__swatch::before,
.spec-preview[data-spec-preview="hardware"]:focus-within .spec-preview__swatch::before {
  transform: scale(1.08);
}

.spec-preview[data-spec-preview="hardware"]:hover .spec-preview__swatch,
.spec-preview[data-spec-preview="hardware"]:focus-within .spec-preview__swatch {
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
}

.spec-preview[data-spec-preview="hardware"] .spec-preview__swatch::after {
  display: none;
}

.spec-preview[data-spec-preview="hardware"] .spec-preview__meta {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(5, 5, 5, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.spec-preview[data-spec-preview="hardware"]:hover .spec-preview__meta,
.spec-preview[data-spec-preview="hardware"]:focus-within .spec-preview__meta {
  opacity: 1;
  pointer-events: auto;
}

.spec-preview[data-spec-preview="material"] .spec-preview__swatch {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 14px;
  border: none;
  background-color: transparent;
  overflow: hidden;
}

.spec-preview[data-spec-preview="material"] .spec-preview__swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/products/belt-strap-grid.jpg");
  background-size: 200% 200%;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  transition: transform 0.48s ease, box-shadow 0.36s ease;
  transform-origin: center center;
  will-change: transform;
  border-radius: inherit;
}

.spec-preview[data-spec-preview="material"]:hover .spec-preview__swatch::before,
.spec-preview[data-spec-preview="material"]:focus-within .spec-preview__swatch::before {
  transform: scale(1.08);
}

.spec-preview[data-spec-preview="material"]:hover .spec-preview__swatch,
.spec-preview[data-spec-preview="material"]:focus-within .spec-preview__swatch {
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
}

.spec-preview[data-spec-preview="material"] .spec-preview__swatch::after {
  display: none;
}

.spec-preview[data-spec-preview="material"] .spec-preview__meta {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(5, 5, 5, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.spec-preview[data-spec-preview="material"]:hover .spec-preview__meta,
.spec-preview[data-spec-preview="material"]:focus-within .spec-preview__meta {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  body[data-page="contact"] .appointment-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(6px, 1.6svh, 14px);
    margin-top: 0;
    padding-top: 6svh;
  }

  body[data-page="contact"] .appointment-frame {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2.4svh, 18px);
    height: auto;
    min-height: 0;
    padding-top: var(--nav-height, 64px);
  }

  body[data-page="contact"] .appointment-section {
    padding-top: 0;
  }

  body[data-page="contact"] .appointment-section .section-header p {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    opacity: 0.8;
  }

  body[data-page="contact"] .appointment-section .product-highlight {
    grid-template-columns: 1fr;
    gap: clamp(12px, 3svh, 20px);
    margin-top: clamp(12px, 3svh, 20px);
  }

  body[data-page="contact"] .appointment-section .form-card {
    padding: clamp(20px, 4svh, 32px) clamp(16px, 4vw, 24px);
    border-radius: 24px;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  body[data-page="contact"] .appointment-section .map-card {
    display: none;
  }
  body[data-page="products"][data-subpage="custom"] .custom-section__inner {
    grid-template-columns: 1fr;
    padding-block: 2rem;
  }

  .custom-success-section .custom-section__inner {
    padding-inline: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
    position: static;
    transform: none;
    margin-top: 1.5rem;
  }

  .custom-team-section .custom-section__media {
    order: 2;
  }
}

.product-list--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-list--compact .product-item {
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 7, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.product-list--compact .product-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.product-list--compact .product-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.case-copy {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2.7;
  letter-spacing: 0.02em;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .case-copy,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .case-copy,
body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
  position: absolute;
  top: 52%;
  left: clamp(1.5rem, 5vw, 4rem);
  right: clamp(1.5rem, 4vw, 3rem);
  transform: translateY(-50%);
  margin: 0;
  text-align: left;
  justify-items: start;
}

.case-copy p {
  margin: 0;
}

.custom-section--cases .case-copy p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.custom-section--cases.is-visible .case-copy p {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases.is-visible .case-copy p:nth-child(1) {
  transition-delay: 0.2s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(2) {
  transition-delay: 0.45s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(3) {
  transition-delay: 0.7s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(4) {
  transition-delay: 0.95s;
}

.case-copy__sub {
  color: var(--orange);
  font-weight: 400;
}

.case-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  align-items: stretch;
  height: 100%;
  flex: 1;
}

.case-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.4vw, 2rem);
  min-height: 0;
  height: 100%;
  border-radius: 0;
  border: 0;
  background: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(10, 10, 10, 0.55);
  text-transform: uppercase;
  overflow: hidden;
  --logo-base-scale: 1;
  --logo-hover-scale: 1.16;
}

.case-logo-slot:nth-child(2) {
  background: #f6f6f6;
}

.case-logo-slot:nth-child(3) {
  background: #fbfbfb;
}

.case-logo-slot:nth-child(4) {
  background: #f2f2f2;
}

.custom-section--cases .case-logo-slot {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(1) {
  transition-delay: 0.35s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(2) {
  transition-delay: 0.75s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(3) {
  transition-delay: 1.15s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(4) {
  transition-delay: 1.55s;
}

.case-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(var(--logo-base-scale));
  transform-origin: center;
  transition: transform 1.1s ease;
}

.case-logo-slot:hover img,
.case-logo-slot:focus-within img {
  transform: scale(var(--logo-hover-scale));
}

.case-logo-slot--polo {
  --logo-base-scale: 1.4;
  --logo-hover-scale: 1.55;
}

.case-logo-slot--ck {
  --logo-base-scale: 0.88;
  --logo-hover-scale: 1.05;
}

.case-logo-slot span {
  display: block;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section__inner {
    grid-template-columns: 1fr;
    padding-block: 2rem;
  }

  .custom-success-section .custom-section__inner {
    padding-inline: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
    position: static;
    transform: none;
    margin-top: 1.5rem;
  }

  .custom-team-section .custom-section__media {
    order: 2;
  }
}

.product-list--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-list--compact .product-item {
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 7, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.product-list--compact .product-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.product-list--compact .product-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.case-copy {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2.7;
  letter-spacing: 0.02em;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
  position: absolute;
  top: 52%;
  left: clamp(1.5rem, 5vw, 4rem);
  right: clamp(1.5rem, 4vw, 3rem);
  transform: translateY(-50%);
  margin: 0;
  text-align: left;
  justify-items: start;
}

.case-copy p {
  margin: 0;
}

.custom-section--cases .case-copy p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.custom-section--cases.is-visible .case-copy p {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases.is-visible .case-copy p:nth-child(1) {
  transition-delay: 0.2s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(2) {
  transition-delay: 0.45s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(3) {
  transition-delay: 0.7s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(4) {
  transition-delay: 0.95s;
}

.case-copy__sub {
  color: var(--orange);
  font-weight: 400;
}

.case-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  align-items: stretch;
  height: 100%;
  flex: 1;
}

.case-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.4vw, 2rem);
  min-height: 0;
  height: 100%;
  border-radius: 0;
  border: 0;
  background: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(10, 10, 10, 0.55);
  text-transform: uppercase;
  overflow: hidden;
  --logo-base-scale: 1;
  --logo-hover-scale: 1.16;
}

.case-logo-slot:nth-child(2) {
  background: #f6f6f6;
}

.case-logo-slot:nth-child(3) {
  background: #fbfbfb;
}

.case-logo-slot:nth-child(4) {
  background: #f2f2f2;
}

.custom-section--cases .case-logo-slot {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(1) {
  transition-delay: 0.35s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(2) {
  transition-delay: 0.75s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(3) {
  transition-delay: 1.15s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(4) {
  transition-delay: 1.55s;
}

.case-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(var(--logo-base-scale));
  transform-origin: center;
  transition: transform 1.1s ease;
}

.case-logo-slot:hover img,
.case-logo-slot:focus-within img {
  transform: scale(var(--logo-hover-scale));
}

.case-logo-slot--polo {
  --logo-base-scale: 1.4;
  --logo-hover-scale: 1.55;
}

.case-logo-slot--ck {
  --logo-base-scale: 0.88;
  --logo-hover-scale: 1.05;
}

.case-logo-slot span {
  display: block;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section__inner {
    grid-template-columns: 1fr;
    padding-block: 2rem;
  }

  .custom-success-section .custom-section__inner {
    padding-inline: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
    position: static;
    transform: none;
    margin-top: 1.5rem;
  }

  .custom-team-section .custom-section__media {
    order: 2;
  }
}

.product-list--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-list--compact .product-item {
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 7, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.product-list--compact .product-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.product-list--compact .product-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.case-copy {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2.7;
  letter-spacing: 0.02em;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
  position: absolute;
  top: 52%;
  left: clamp(1.5rem, 5vw, 4rem);
  right: clamp(1.5rem, 4vw, 3rem);
  transform: translateY(-50%);
  margin: 0;
  text-align: left;
  justify-items: start;
}

.case-copy p {
  margin: 0;
}

.custom-section--cases .case-copy p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.custom-section--cases.is-visible .case-copy p {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases.is-visible .case-copy p:nth-child(1) {
  transition-delay: 0.2s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(2) {
  transition-delay: 0.45s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(3) {
  transition-delay: 0.7s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(4) {
  transition-delay: 0.95s;
}

.case-copy__sub {
  color: var(--orange);
  font-weight: 400;
}

.case-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  align-items: stretch;
  height: 100%;
  flex: 1;
}

.case-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.4vw, 2rem);
  min-height: 0;
  height: 100%;
  border-radius: 0;
  border: 0;
  background: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(10, 10, 10, 0.55);
  text-transform: uppercase;
  overflow: hidden;
  --logo-base-scale: 1;
  --logo-hover-scale: 1.16;
}

.case-logo-slot:nth-child(2) {
  background: #f6f6f6;
}

.case-logo-slot:nth-child(3) {
  background: #fbfbfb;
}

.case-logo-slot:nth-child(4) {
  background: #f2f2f2;
}

.custom-section--cases .case-logo-slot {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(1) {
  transition-delay: 0.35s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(2) {
  transition-delay: 0.75s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(3) {
  transition-delay: 1.15s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(4) {
  transition-delay: 1.55s;
}

.case-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(var(--logo-base-scale));
  transform-origin: center;
  transition: transform 1.1s ease;
}

.case-logo-slot:hover img,
.case-logo-slot:focus-within img {
  transform: scale(var(--logo-hover-scale));
}

.case-logo-slot--polo {
  --logo-base-scale: 1.4;
  --logo-hover-scale: 1.55;
}

.case-logo-slot--ck {
  --logo-base-scale: 0.88;
  --logo-hover-scale: 1.05;
}

.case-logo-slot span {
  display: block;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section__inner {
    grid-template-columns: 1fr;
    padding-block: 2rem;
  }

  .custom-success-section .custom-section__inner {
    padding-inline: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
    position: static;
    transform: none;
    margin-top: 1.5rem;
  }

  .custom-team-section .custom-section__media {
    order: 2;
  }
}

.product-list--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-list--compact .product-item {
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 7, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.product-list--compact .product-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.product-list--compact .product-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.case-copy {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2.7;
  letter-spacing: 0.02em;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
  position: absolute;
  top: 52%;
  left: clamp(1.5rem, 5vw, 4rem);
  right: clamp(1.5rem, 4vw, 3rem);
  transform: translateY(-50%);
  margin: 0;
  text-align: left;
  justify-items: start;
}

.case-copy p {
  margin: 0;
}

.custom-section--cases .case-copy p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.custom-section--cases.is-visible .case-copy p {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases.is-visible .case-copy p:nth-child(1) {
  transition-delay: 0.2s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(2) {
  transition-delay: 0.45s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(3) {
  transition-delay: 0.7s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(4) {
  transition-delay: 0.95s;
}

.case-copy__sub {
  color: var(--orange);
  font-weight: 400;
}

.case-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  align-items: stretch;
  height: 100%;
  flex: 1;
}

.case-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.4vw, 2rem);
  min-height: 0;
  height: 100%;
  border-radius: 0;
  border: 0;
  background: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(10, 10, 10, 0.55);
  text-transform: uppercase;
  overflow: hidden;
  --logo-base-scale: 1;
  --logo-hover-scale: 1.16;
}

.case-logo-slot:nth-child(2) {
  background: #f6f6f6;
}

.case-logo-slot:nth-child(3) {
  background: #fbfbfb;
}

.case-logo-slot:nth-child(4) {
  background: #f2f2f2;
}

.custom-section--cases .case-logo-slot {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(1) {
  transition-delay: 0.35s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(2) {
  transition-delay: 0.75s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(3) {
  transition-delay: 1.15s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(4) {
  transition-delay: 1.55s;
}

.case-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(var(--logo-base-scale));
  transform-origin: center;
  transition: transform 1.1s ease;
}

.case-logo-slot:hover img,
.case-logo-slot:focus-within img {
  transform: scale(var(--logo-hover-scale));
}

.case-logo-slot--polo {
  --logo-base-scale: 1.4;
  --logo-hover-scale: 1.55;
}

.case-logo-slot--ck {
  --logo-base-scale: 0.88;
  --logo-hover-scale: 1.05;
}

.case-logo-slot span {
  display: block;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section__inner {
    grid-template-columns: 1fr;
    padding-block: 2rem;
  }

  .custom-success-section .custom-section__inner {
    padding-inline: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
    position: static;
    transform: none;
    margin-top: 1.5rem;
  }

  .custom-team-section .custom-section__media {
    order: 2;
  }
}

.product-list--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-list--compact .product-item {
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 7, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.product-list--compact .product-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.product-list--compact .product-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.case-copy {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2.7;
  letter-spacing: 0.02em;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
  position: absolute;
  top: 52%;
  left: clamp(1.5rem, 5vw, 4rem);
  right: clamp(1.5rem, 4vw, 3rem);
  transform: translateY(-50%);
  margin: 0;
  text-align: left;
  justify-items: start;
}

.case-copy p {
  margin: 0;
}

.custom-section--cases .case-copy p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.custom-section--cases.is-visible .case-copy p {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases.is-visible .case-copy p:nth-child(1) {
  transition-delay: 0.2s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(2) {
  transition-delay: 0.45s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(3) {
  transition-delay: 0.7s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(4) {
  transition-delay: 0.95s;
}

.case-copy__sub {
  color: var(--orange);
  font-weight: 400;
}

.case-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  align-items: stretch;
  height: 100%;
  flex: 1;
}

.case-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.4vw, 2rem);
  min-height: 0;
  height: 100%;
  border-radius: 0;
  border: 0;
  background: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(10, 10, 10, 0.55);
  text-transform: uppercase;
  overflow: hidden;
  --logo-base-scale: 1;
  --logo-hover-scale: 1.16;
}

.case-logo-slot:nth-child(2) {
  background: #f6f6f6;
}

.case-logo-slot:nth-child(3) {
  background: #fbfbfb;
}

.case-logo-slot:nth-child(4) {
  background: #f2f2f2;
}

.custom-section--cases .case-logo-slot {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(1) {
  transition-delay: 0.35s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(2) {
  transition-delay: 0.75s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(3) {
  transition-delay: 1.15s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(4) {
  transition-delay: 1.55s;
}

.case-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(var(--logo-base-scale));
  transform-origin: center;
  transition: transform 1.1s ease;
}

.case-logo-slot:hover img,
.case-logo-slot:focus-within img {
  transform: scale(var(--logo-hover-scale));
}

.case-logo-slot--polo {
  --logo-base-scale: 1.4;
  --logo-hover-scale: 1.55;
}

.case-logo-slot--ck {
  --logo-base-scale: 0.88;
  --logo-hover-scale: 1.05;
}

.case-logo-slot span {
  display: block;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section__inner {
    grid-template-columns: 1fr;
    padding-block: 2rem;
  }

  .custom-success-section .custom-section__inner {
    padding-inline: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
    position: static;
    transform: none;
    margin-top: 1.5rem;
  }

  .custom-team-section .custom-section__media {
    order: 2;
  }
}

.product-list--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-list--compact .product-item {
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 7, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.product-list--compact .product-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.product-list--compact .product-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.case-copy {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2.7;
  letter-spacing: 0.02em;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
  position: absolute;
  top: 52%;
  left: clamp(1.5rem, 5vw, 4rem);
  right: clamp(1.5rem, 4vw, 3rem);
  transform: translateY(-50%);
  margin: 0;
  text-align: left;
  justify-items: start;
}

.case-copy p {
  margin: 0;
}

.custom-section--cases .case-copy p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.custom-section--cases.is-visible .case-copy p {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases.is-visible .case-copy p:nth-child(1) {
  transition-delay: 0.2s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(2) {
  transition-delay: 0.45s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(3) {
  transition-delay: 0.7s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(4) {
  transition-delay: 0.95s;
}

.case-copy__sub {
  color: var(--orange);
  font-weight: 400;
}

.case-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  align-items: stretch;
  height: 100%;
  flex: 1;
}

.case-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.4vw, 2rem);
  min-height: 0;
  height: 100%;
  border-radius: 0;
  border: 0;
  background: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(10, 10, 10, 0.55);
  text-transform: uppercase;
  overflow: hidden;
  --logo-base-scale: 1;
  --logo-hover-scale: 1.16;
}

.case-logo-slot:nth-child(2) {
  background: #f6f6f6;
}

.case-logo-slot:nth-child(3) {
  background: #fbfbfb;
}

.case-logo-slot:nth-child(4) {
  background: #f2f2f2;
}

.custom-section--cases .case-logo-slot {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(1) {
  transition-delay: 0.35s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(2) {
  transition-delay: 0.75s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(3) {
  transition-delay: 1.15s;
}

.custom-section--cases .case-logos.is-visible .case-logo-slot:nth-child(4) {
  transition-delay: 1.55s;
}

.case-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(var(--logo-base-scale));
  transform-origin: center;
  transition: transform 1.1s ease;
}

.case-logo-slot:hover img,
.case-logo-slot:focus-within img {
  transform: scale(var(--logo-hover-scale));
}

.case-logo-slot--polo {
  --logo-base-scale: 1.4;
  --logo-hover-scale: 1.55;
}

.case-logo-slot--ck {
  --logo-base-scale: 0.88;
  --logo-hover-scale: 1.05;
}

.case-logo-slot span {
  display: block;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section__inner {
    grid-template-columns: 1fr;
    padding-block: 2rem;
  }

  .custom-success-section .custom-section__inner {
    padding-inline: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
    position: static;
    transform: none;
    margin-top: 1.5rem;
  }

  .custom-team-section .custom-section__media {
    order: 2;
  }
}

.product-list--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-list--compact .product-item {
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 7, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.product-list--compact .product-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.product-list--compact .product-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.case-copy {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2.7;
  letter-spacing: 0.02em;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
  position: absolute;
  top: 52%;
  left: clamp(1.5rem, 5vw, 4rem);
  right: clamp(1.5rem, 4vw, 3rem);
  transform: translateY(-50%);
  margin: 0;
  text-align: left;
  justify-items: start;
}

.case-copy p {
  margin: 0;
}

.custom-section--cases .case-copy p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.custom-section--cases.is-visible .case-copy p {
  opacity: 1;
  transform: translateY(0);
}

.custom-section--cases.is-visible .case-copy p:nth-child(1) {
  transition-delay: 0.2s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(2) {
  transition-delay: 0.45s;
}

.custom-section--cases.is-visible .case-copy p:nth-child(3) {
  transition-delay: 0.7s;
}

.spec-preview[data-spec-preview="material"] .spec-preview__meta {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(5, 5, 5, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.spec-preview[data-spec-preview="material"]:hover .spec-preview__meta,
.spec-preview[data-spec-preview="material"]:focus-within .spec-preview__meta {
  opacity: 1;
  pointer-events: auto;
}

.spec-preview[data-spec-preview="material"][data-spec-preview-theme="leather-full"] .spec-preview__swatch::before {
  background-position: 0% 0%;
}

.spec-preview[data-spec-preview="material"][data-spec-preview-theme="leather-split"] .spec-preview__swatch::before {
  background-position: 100% 0%;
}

.spec-preview[data-spec-preview="material"][data-spec-preview-theme="synthetic"] .spec-preview__swatch::before {
  background-position: 0% 100%;
}

.spec-preview[data-spec-preview="material"][data-spec-preview-theme="synthetic-light"] .spec-preview__swatch::before {
  background-position: 100% 100%;
}

.spec-preview__swatch::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  opacity: 0.6;
}

.spec-preview__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
}

.spec-preview__title {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-preview__desc {
  margin: 0;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.spec-preview:not([data-spec-preview="hardware"])[data-spec-preview-theme="alloy"] .spec-preview__swatch {
  background: linear-gradient(135deg, rgba(200, 206, 214, 0.9), rgba(122, 129, 145, 0.8));
}

.spec-preview:not([data-spec-preview="hardware"])[data-spec-preview-theme="steel"] .spec-preview__swatch {
  background: linear-gradient(135deg, rgba(173, 181, 194, 0.95), rgba(95, 106, 124, 0.9));
  border-color: rgba(255, 255, 255, 0.25);
}

.spec-preview:not([data-spec-preview="hardware"])[data-spec-preview-theme="copper"] .spec-preview__swatch {
  background: linear-gradient(135deg, rgba(180, 96, 52, 0.95), rgba(96, 52, 24, 0.85));
}

.spec-preview:not([data-spec-preview="hardware"])[data-spec-preview-theme="silver"] .spec-preview__swatch {
  background: linear-gradient(135deg, rgba(247, 247, 247, 0.95), rgba(183, 189, 204, 0.85));
  border-color: rgba(255, 255, 255, 0.45);
}

.spec-preview[data-spec-preview="hardware"][data-spec-preview-theme="alloy"] .spec-preview__swatch::before {
  background-position: 0% 0%;
}

.spec-preview[data-spec-preview="hardware"][data-spec-preview-theme="copper"] .spec-preview__swatch::before {
  background-position: 100% 0%;
}

.spec-preview[data-spec-preview="hardware"][data-spec-preview-theme="steel"] .spec-preview__swatch::before {
  background-position: 0% 100%;
}

.spec-preview[data-spec-preview="hardware"][data-spec-preview-theme="silver"] .spec-preview__swatch::before {
  background-position: 100% 100%;
}


.spec-preview:not([data-spec-preview="material"])[data-spec-preview-theme="leather-full"] .spec-preview__swatch {
  background: linear-gradient(135deg, rgba(112, 69, 38, 0.95), rgba(57, 30, 14, 0.9));
  border-color: rgba(255, 255, 255, 0.18);
}

.spec-preview:not([data-spec-preview="material"])[data-spec-preview-theme="leather-split"] .spec-preview__swatch {
  background: linear-gradient(135deg, rgba(136, 88, 52, 0.9), rgba(82, 47, 24, 0.85));
  border-color: rgba(255, 255, 255, 0.2);
}

.spec-preview:not([data-spec-preview="material"])[data-spec-preview-theme="synthetic"] .spec-preview__swatch {
  background: linear-gradient(135deg, rgba(72, 94, 136, 0.95), rgba(28, 39, 61, 0.9));
  border-color: rgba(255, 255, 255, 0.3);
}

.spec-preview:not([data-spec-preview="material"])[data-spec-preview-theme="synthetic-light"] .spec-preview__swatch {
  background: linear-gradient(135deg, rgba(189, 203, 219, 0.95), rgba(117, 139, 163, 0.9));
  border-color: rgba(255, 255, 255, 0.35);
}

.spec-preview[data-style-preview="form"] {
  border: none;
  padding: 0;
  background: transparent;
  width: min(180px, 100%);
  max-width: 180px;
  min-height: auto;
  gap: 0.45rem;
  position: relative;
}

.spec-preview[data-style-preview="form"] .spec-preview__swatch {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 14px;
  border: none;
  background-color: transparent !important;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.spec-preview[data-style-preview="form"] .spec-preview__swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/products/buckle-style-grid.jpg");
  background-size: 200% 200%;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  border-radius: inherit;
  transition: transform 0.45s ease, box-shadow 0.35s ease;
  transform-origin: center;
}

.spec-preview[data-style-preview="form"][data-style-preview-theme="auto"] .spec-preview__swatch {
  background-position: 0% 0% !important;
}

.spec-preview[data-style-preview="form"][data-style-preview-theme="pin"] .spec-preview__swatch {
  background-position: 100% 0% !important;
}

.spec-preview[data-style-preview="form"][data-style-preview-theme="day"] .spec-preview__swatch {
  background-position: 0% 100% !important;
}

.spec-preview[data-style-preview="form"][data-style-preview-theme="auto"] .spec-preview__swatch::before {
  background-position: 0% 0%;
}

.spec-preview[data-style-preview="form"][data-style-preview-theme="pin"] .spec-preview__swatch::before {
  background-position: 100% 0%;
}

.spec-preview[data-style-preview="form"][data-style-preview-theme="day"] .spec-preview__swatch::before {
  background-position: 0% 100%;
}

.spec-preview[data-style-preview="form"] .spec-preview__swatch::after {
  display: none;
}

.spec-preview[data-style-preview="form"] .spec-preview__meta {
  position: absolute;
  inset: 0;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  background: rgba(5, 5, 5, 0.65);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.spec-preview[data-style-preview="form"] .spec-preview__title {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

.spec-preview[data-style-preview="form"] .spec-preview__desc {
  margin: 0;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
}

.spec-preview[data-style-preview="form"]:hover .spec-preview__meta,
.spec-preview[data-style-preview="form"]:focus-within .spec-preview__meta {
  opacity: 1;
  pointer-events: auto;
}

.spec-preview[data-style-preview="form"]:hover .spec-preview__swatch::before,
.spec-preview[data-style-preview="form"]:focus-within .spec-preview__swatch::before {
  transform: scale(1.07);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

.spec-preview[data-style-preview="fragrance"] {
  border: none;
  padding: 0;
  background: transparent;
  width: min(180px, 100%);
  max-width: 180px;
  min-height: auto;
  position: relative;
  overflow: hidden;
  gap: 0.45rem;
}

.spec-preview[data-style-preview="fragrance"] .spec-preview__swatch {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 14px;
  border: none;
  background-color: transparent;
  overflow: hidden;
}

.spec-preview[data-style-preview="fragrance"] .spec-preview__swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/products/fragrance-grid.jpg");
  background-size: 300% 300%;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  transition: transform 0.48s ease, box-shadow 0.36s ease;
  transform-origin: center center;
  will-change: transform;
  border-radius: inherit;
}

.spec-preview[data-style-preview="fragrance"]:hover .spec-preview__swatch::before,
.spec-preview[data-style-preview="fragrance"]:focus-within .spec-preview__swatch::before {
  transform: scale(1.08);
}

.spec-preview[data-style-preview="fragrance"]:hover .spec-preview__swatch,
.spec-preview[data-style-preview="fragrance"]:focus-within .spec-preview__swatch {
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
}

.spec-preview[data-style-preview="fragrance"] .spec-preview__swatch::after {
  display: none;
}

.spec-preview[data-style-preview="fragrance"] .spec-preview__meta {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(5, 5, 5, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.spec-preview[data-style-preview="fragrance"]:hover .spec-preview__meta,
.spec-preview[data-style-preview="fragrance"]:focus-within .spec-preview__meta {
  opacity: 1;
  pointer-events: auto;
}

.spec-preview[data-style-preview="fragrance"][data-style-preview-theme="none"] .spec-preview__swatch::before {
  background-position: 0% 0%;
}

.spec-preview[data-style-preview="fragrance"][data-style-preview-theme="shangri-la"] .spec-preview__swatch::before {
  background-position: 50% 0%;
}

.spec-preview[data-style-preview="fragrance"][data-style-preview-theme="silver-mountain"] .spec-preview__swatch::before {
  background-position: 100% 0%;
}

.spec-preview[data-style-preview="fragrance"][data-style-preview-theme="jasmine"] .spec-preview__swatch::before {
  background-position: 0% 50%;
}

.spec-preview[data-style-preview="fragrance"][data-style-preview-theme="magnolia"] .spec-preview__swatch::before {
  background-position: 50% 50%;
}

.spec-preview[data-style-preview="fragrance"][data-style-preview-theme="lemon"] .spec-preview__swatch::before {
  background-position: 100% 50%;
}

.spec-preview[data-style-preview="fragrance"][data-style-preview-theme="lavender"] .spec-preview__swatch::before {
  background-position: 0% 100%;
}

.spec-preview[data-style-preview="fragrance"][data-style-preview-theme="bellflower"] .spec-preview__swatch::before {
  background-position: 50% 100%;
}

.spec-preview[data-style-preview="fragrance"][data-style-preview-theme="gardenia"] .spec-preview__swatch::before {
  background-position: 100% 100%;
}

.style-color-control {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.style-color__current {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: min(220px, 100%);
}

.style-color__swatch {
  width: 52px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.35);
  background: var(--color-hex, #000);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.style-color__swatch:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.style-color__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.style-color__label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.style-color__value {
  margin: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-light);
}

.style-color__board {
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  padding: 0.45rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 18px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
}

.style-color__grid {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, 1fr);
  gap: 0.45rem;
  justify-items: stretch;
  align-items: stretch;
  justify-content: center;
  overflow: visible;
  padding-bottom: 0;
}

.style-color__chip {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--chip-color, #000);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  display: grid;
  place-items: center;
}

.style-color__board .style-color__chip {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  max-height: 100%;
}

.style-color__chip::after {
  content: attr(data-color-name);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
  line-height: 1.1;
  backdrop-filter: blur(0px);
  background: transparent;
  opacity: 0;
  transition: opacity 0.18s ease, backdrop-filter 0.18s ease, background 0.18s ease;
  border-radius: inherit;
}

.style-color__chip:hover,
.style-color__chip:focus-visible {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.38);
  outline: none;
}

.style-color__chip:hover::after,
.style-color__chip:focus-visible::after {
  opacity: 1;
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.2);
}

.location-switcher {
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 10% 10%, rgba(226, 93, 29, 0.15), rgba(7, 7, 7, 0.85));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  max-width: 1080px;
}

/* Removed duplicate .location-section .section-header */

.location-section .section-header p,
.location-section .section-header h2 {
  text-align: left;
  width: 100%;
}

.location-section .section-header h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.2;
}

body[data-page="contact"] .location-section .section-header h2 {
  font-size: var(--contact-h1);
  line-height: 1.05;
}

body[data-page="contact"] .location-section .section-header {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.4vw, 1.1rem);
}

body[data-page="contact"] .location-section .section-header p,
body[data-page="contact"] .location-section .section-header h2 {
  text-align: center;
}

body[data-page="contact"] .location-section .section-header p {
  margin-bottom: 0;
}

body[data-page="contact"] .location-section .section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--orange);
  margin: 0;
}

.location-section .section-header p {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.location-section {
  margin-top: clamp(3rem, 6vw, 4rem);
}

body[data-page="contact"] .location-section {
  margin-top: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100svh;
  max-height: 100svh;
  --location-section-gap: clamp(1.2rem, 2.6vw, 2.2rem);
  --location-section-padding: clamp(1.2rem, 3vh, 2.6rem);
}

body[data-page="contact"] .location-frame {
  width: min(var(--contact-container), calc(100% - (2 * var(--contact-pad-x))));
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  row-gap: var(--location-section-gap);
  height: 100%;
  padding: clamp(22px, 4vw, 64px) 0;
}

body[data-page="products"][data-subpage="news"] .location-section {
  margin-top: 0;
  padding: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100%;
  height: 100svh;
  max-height: 100svh;
  row-gap: clamp(1.2rem, 2.6vw, 2.2rem);
  overflow: hidden;
}
.location-section .section-header {
  width: 100%;
  max-width: var(--contact-container);
  margin: 0 auto;
  padding-left: 0;
  text-align: left;
  justify-self: stretch;
}

body[data-page="contact"] .contact-scroll > .location-section {
  padding: 0;
}

body[data-page="contact"] .contact-scroll > .appointment-section {
  padding: 0;
}

body[data-page="products"][data-subpage="news"] .location-container {
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
}

body[data-page="products"][data-subpage="news"] .location-content {
  min-height: 0;
}

body[data-page="products"][data-subpage="news"] .location-detail {
  overflow-y: auto;
  overscroll-behavior: contain;
}

body[data-page="contact"] .contact-scroll > .location-section > .location-frame {
  margin-top: 0;
  margin-bottom: 0;
}

.location-container {
  display: grid;
  grid-template-columns: 280px minmax(0, var(--location-content-max));
  --location-column-gap: 24px;
  gap: var(--location-column-gap);
  justify-self: center;
  justify-content: center;
  width: 100%;
  max-width: var(--contact-container);
  margin: 0 auto;
  height: min(clamp(480px, 52vh, 640px), 100%);
  max-height: 100%;
  --location-map-pad: 16px;
  --location-text-pad: calc(var(--location-map-pad) + 8px);
  --location-content-max: clamp(760px, 58vw, 900px);
}

@supports not (height: 1svh) {
  body[data-page="contact"] .location-section {
    height: 100vh;
    max-height: 100vh;
  }

  body[data-page="products"][data-subpage="news"] .location-section {
    height: 100vh;
    max-height: 100vh;
  }
}

body[data-page="contact"] .location-section > * {
  min-height: 0;
}

/* Removed .location-split and related obsolete layout styles */

.location-pane {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.8rem, 4vw, 3rem) var(--contact-gutter, clamp(1.5rem, 5vw, 4rem));
}

.location-pane--retail {
  background: rgba(0, 0, 0, 0.6);
}

.location-pane--factory {
  background: rgba(226, 93, 29, 0.28);
}

.location-pane__section,
.location-pane__map {
  flex: 1;
  min-height: 0;
}

.location-pane__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-pane__map {
  display: flex;
}

.location-pane__map .location-map__viewport {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 16px;
}

.location-switcher__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.location-switcher__toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.location-switcher__tab {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1.2rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.location-switcher__tab.is-active {
  color: var(--black);
}

.location-switcher__thumb {
  position: absolute;
  inset: 4px;
  width: calc(50% - 4px);
  background: var(--orange);
  border-radius: 999px;
  transform: translateX(0%);
  transition: transform 0.28s ease;
}

.location-switcher__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.location-switcher__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.location-card {
  position: relative;
  isolation: isolate;
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body[data-page="contact"] .location-split .location-card {
  min-height: 0;
  padding: 0;
}

.location-card.is-hidden {
  display: none;
}

.location-card__eyebrow {
  margin: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

.location-card__addr {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-light);
}

.location-card__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.location-map {
  padding: 1rem 1.2rem;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.location-map__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.location-map__eyebrow {
  margin: 0;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.location-map__title {
  margin: 0;
  font-weight: 700;
  color: var(--text-light);
}

.location-map__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-map__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(1.1);
}

.location-map__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.location-subtoggle {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.35rem 0 0.7rem;
}

.location-subtoggle__btn {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.location-subtoggle__btn.is-active {
  background: rgba(226, 93, 29, 0.15);
  border-color: var(--orange);
  color: var(--text-light);
  box-shadow: 0 10px 20px rgba(226, 93, 29, 0.2);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .location-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .location-switcher {
    padding: 0.9rem;
  }

  .location-switcher__grid {
    grid-template-columns: 1fr;
  }

  .location-map__viewport {
    aspect-ratio: 3 / 2;
  }
}

.style-color__chip.is-selected {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 0 2px rgba(226, 93, 29, 0.6);
  border-color: rgba(226, 93, 29, 0.8);
  opacity: 1;
}

.style-color__grid .style-color__chip {
  scroll-snap-align: start;
}

.order-color-group {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.order-color-group__label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.78);
}

.order-color-group__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.order-color-group--custom .order-color-group__label {
  color: rgba(255, 255, 255, 0.68);
}

.custom-inquiry-modal__color-grid[data-has-color-groups] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: flex-start;
  gap: 0.9rem;
  overflow: visible;
  padding: 0.65rem 0 1.1rem;
  min-height: 120px;
}

.custom-inquiry-modal__color-grid[data-has-color-groups] .order-color-group__grid {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0.25rem 0 0.5rem;
  scrollbar-gutter: stable both-edges;
  scroll-snap-type: x mandatory;
  min-height: 72px;
}

.custom-inquiry-modal__color-grid[data-has-color-groups] .order-color-group__grid .style-color__chip {
  scroll-snap-align: start;
}

.custom-inquiry-modal__color-grid[data-has-color-groups] .style-color__chip {
  scroll-snap-align: unset;
}

.custom-inquiry-modal__control--color {
  align-self: stretch;
  grid-column: 1 / -1;
  width: 100%;
}

.custom-inquiry-modal__color-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.35rem 0.15rem 0.65rem;
  margin: 0.25rem 0 0;
  scroll-snap-type: x mandatory;
  scrollbar-gutter: stable both-edges;
  min-height: 60px;
}

.custom-inquiry-modal__color-grid .style-color__chip {
  scroll-snap-align: start;
}

.custom-inquiry-modal__color-grid::-webkit-scrollbar {
  height: 8px;
}

.custom-inquiry-modal__color-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.custom-inquiry-modal__color-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.custom-inquiry-modal__color-grid .style-color__chip:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.18);
}

.custom-inquiry-modal__color-grid .style-color__chip:hover::after {
  opacity: 0;
  backdrop-filter: none;
  background: transparent;
}

.custom-inquiry-modal__color-grid .style-color__chip.is-hovered,
.custom-inquiry-modal__color-grid .style-color__chip:focus-visible {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.38);
}

.custom-inquiry-modal__color-grid .style-color__chip.is-hovered::after,
.custom-inquiry-modal__color-grid .style-color__chip:focus-visible::after,
.custom-inquiry-modal__color-grid .style-color__chip.is-selected::after {
  opacity: 1;
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.2);
}

.lead-time-toast {
  position: fixed;
  right: clamp(12px, 3vw, 26px);
  bottom: clamp(12px, 3vw, 26px);
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 10% 10%, rgba(226, 93, 29, 0.16), rgba(12, 12, 12, 0.9));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  color: var(--text-light);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lead-time-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lead-time-toast__content {
  display: grid;
  gap: 0.25rem;
}

.lead-time-toast__content strong {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-time-toast__content p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
}

.lead-time-toast__close {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.lead-time-toast__close:hover,
.lead-time-toast__close:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(226, 93, 29, 0.24);
  border-color: rgba(226, 93, 29, 0.8);
  background: rgba(226, 93, 29, 0.18);
}

.style-color__hint {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.custom-inquiry {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.12), rgba(4, 6, 12, 0.92));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  color: var(--text-light);
}

.custom-inquiry__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.custom-inquiry__intro {
  flex: 1 1 320px;
  min-width: 260px;
}

.custom-inquiry__eyebrow {
  margin: 0 0 0.4rem;
  letter-spacing: 0.25em;
  font-size: 0.68rem;
  color: rgba(143, 180, 255, 0.8);
}

.custom-inquiry__intro :is(h2, h3) {
  margin: 0;
  font-size: 1.6rem;
}

.custom-inquiry__lede {
  margin: 0.6rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.custom-inquiry__form {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.custom-inquiry__button {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: var(--orange);
  color: var(--black);
  cursor: pointer;
  box-shadow: 0 20px 38px rgba(226, 93, 29, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.custom-inquiry__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 46px rgba(226, 93, 29, 0.45);
}

.custom-inquiry__note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-inquiry__note strong {
  color: var(--text-light);
  font-weight: 600;
}

.custom-mobile-inquiry-wrap {
  display: none;
}

.custom-inquiry-fab {
  position: fixed;
  top: 50%;
  right: clamp(0.25rem, 1.5vw, 1.25rem);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 900;
  pointer-events: auto;
  min-width: 0;
  cursor: grab;
  transition: left 0.3s ease, top 0.3s ease, transform 0.3s ease;
}

.custom-inquiry-fab[data-has-custom-pos="true"] {
  transform: none;
}

.custom-inquiry-fab__toggle {
  pointer-events: auto;
  writing-mode: vertical-rl;
  border: none;
  border-radius: 999px;
  padding: 1rem 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--black);
  background: #e66300;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(230, 99, 0, 0.16);
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: inquiry-pulse 4.4s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.custom-inquiry-fab__toggle:hover,
.custom-inquiry-fab.is-open .custom-inquiry-fab__toggle {
  background: #e66300;
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(230, 99, 0, 0.16);
}

.custom-inquiry-fab.is-dragging {
  cursor: grabbing;
  transition: none;
}

.custom-inquiry--floating {
  pointer-events: auto;
  width: min(340px, calc(100vw - 4rem));
  margin: 0;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  transition: opacity 0.35s ease, transform 0.35s ease;
  position: absolute;
  top: 50%;
  right: calc(100% + 0.65rem);
  transform: translateY(-50%);
  background: #0b0c0f;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.custom-inquiry-fab[data-snap-side="left"] .custom-inquiry--floating {
  left: calc(100% + 0.65rem);
  right: auto;
}

/* Stack floating panel contents so the CTA stays within the card width */
.custom-inquiry--floating .custom-inquiry__content {
  flex-direction: column;
  align-items: stretch;
}

.custom-inquiry--floating .custom-inquiry__form {
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.custom-inquiry--floating .custom-inquiry__button {
  width: 100%;
  text-align: center;
  white-space: normal;
}

.custom-inquiry-fab:not(.is-open) .custom-inquiry--floating {
  opacity: 0;
  transform: translateY(-50%) translateX(16px);
  pointer-events: none;
}

.custom-inquiry-fab.is-open .custom-inquiry--floating {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-mobile-inquiry-wrap {
    display: block;
    margin-top: 0.95rem;
    padding: 0 0.2rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-mobile-inquiry-wrap .custom-mobile-inquiry-trigger {
    width: 100%;
  }

  body[data-page="products"][data-subpage="custom"] .custom-inquiry-fab {
    display: none !important;
  }

  .custom-inquiry-fab {
    top: auto;
    bottom: 1.5rem;
    transform: none;
    right: 1rem;
    flex-direction: column;
    align-items: flex-end;
  }

  .custom-inquiry--floating {
    width: min(320px, calc(100vw - 2rem));
    top: auto;
    right: 0;
    bottom: calc(100% + 0.85rem);
    transform: translateY(0);
  }

  .custom-inquiry-fab:not(.is-open) .custom-inquiry--floating {
    transform: translateY(12px);
  }

  .custom-inquiry-fab.is-open .custom-inquiry--floating {
    transform: translateY(0);
  }

  .custom-inquiry-fab__toggle {
    writing-mode: horizontal-tb;
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
  }
}

@keyframes inquiry-pulse {
  0%,
  100% {
    transform: translateZ(0) scale(1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(230, 99, 0, 0.16);
  }
  25% {
    transform: translateZ(0) scale(0.97);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 0 5px rgba(230, 99, 0, 0.15);
  }
  55% {
    transform: translateZ(0) scale(1.05);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.58), 0 0 0 7px rgba(230, 99, 0, 0.18);
  }
  80% {
    transform: translateZ(0) scale(0.99);
    box-shadow: 0 17px 40px rgba(0, 0, 0, 0.53), 0 0 0 6px rgba(230, 99, 0, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-inquiry-fab__toggle {
    animation: none;
  }
}

@media (max-width: 540px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow {
    padding: 0.78rem;
  }

  body[data-page="products"][data-subpage="custom"] .process-steps--horizontal {
    gap: 0.58rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-marker {
    width: 38px;
    height: 38px;
  }

  body[data-page="products"][data-subpage="custom"] .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-content {
    padding: 0.72rem 0.76rem;
    border-radius: 10px;
  }

  body[data-page="products"][data-subpage="custom"] .step-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 0.28rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-title {
    font-size: 0.86rem;
    margin-bottom: 0.2rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .custom-inquiry-fab {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    width: 100%;
    justify-content: center;
  }

  .custom-inquiry-fab__toggle {
    writing-mode: horizontal-tb;
    padding: 0.5rem 1.1rem;
    letter-spacing: 0.2em;
  }

  .custom-inquiry--floating {
    width: min(400px, calc(100vw - 1.5rem));
    bottom: calc(100% + 0.75rem);
  }

  .custom-inquiry-fab[data-snap-side="left"] .custom-inquiry--floating {
    left: 0;
    right: auto;
  }

  .custom-inquiry-fab:not(.is-open) .custom-inquiry--floating {
    transform: translateY(16px);
  }
}

body.has-inquiry-modal {
  overflow: hidden;
}

body.has-inquiry-modal #site-nav {
  opacity: 0;
  pointer-events: none;
}

body.has-belt-modal {
  overflow: hidden;
}

body.has-belt-modal #site-nav {
  opacity: 0;
  pointer-events: none;
}

.belt-bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  --belt-shift: 0%;
  background-image:
    linear-gradient(180deg, rgba(4, 6, 14, 0.35), rgba(4, 6, 14, 0.65)),
    url('../../images/products/catalog-background.jpg');
  background-size:
    cover,
    cover;
  background-repeat:
    no-repeat,
    no-repeat;
  background-position:
    center,
    var(--belt-shift, 0%) center;
  will-change: background-position;
  opacity: 0.9;
  mix-blend-mode: normal;
}

body[data-page="products"][data-subpage="custom"] .belt-bg-layer {
  background-image: linear-gradient(180deg, rgba(4, 6, 14, 0.35), rgba(4, 6, 14, 0.85));
}

.belt-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 203, 164, 0.08) 35%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 176, 112, 0.08) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
  animation: belt-glare-drift 90s ease-in-out infinite alternate;
  will-change: background-position, transform;
}

body[data-page="products"][data-subpage="overview"] .belt-bg-layer {
  --belt-shift: 50%;
}

body[data-page="products"][data-subpage="news"] .belt-bg-layer::after {
  content: none;
  animation: none;
}

body[data-page="products"][data-subpage="overview"] .belt-bg-layer::after {
  content: none;
  animation: none;
}

@keyframes belt-glare-drift {
  0% {
    background-position: 0% 50%;
    transform: translateX(-5%);
  }
  50% {
    background-position: 50% 50%;
    transform: translateX(5%);
  }
  100% {
    background-position: 100% 50%;
    transform: translateX(-3%);
  }
}

body[data-page="products"] main,
body[data-page="products"] footer {
  position: relative;
  z-index: 2;
}

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

.custom-inquiry-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.custom-inquiry-modal::-webkit-scrollbar {
  display: none;
}

.custom-inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(6px);
}

.custom-inquiry-modal__dialog {
  position: relative;
  width: min(480px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.07), rgba(4, 6, 14, 0.96));
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55);
  padding: clamp(1.25rem, 3vw, 2.15rem);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-height: min(92vh, 900px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(226, 93, 29, 0.65) rgba(255, 255, 255, 0.08);
}

.custom-inquiry-modal__dialog::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.custom-inquiry-modal__dialog::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.custom-inquiry-modal__dialog::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(226, 93, 29, 0.9), rgba(226, 93, 29, 0.65));
  border: 1px solid rgba(5, 5, 5, 0.35);
}

.custom-inquiry-modal__dialog::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(226, 93, 29, 1), rgba(226, 93, 29, 0.75));
}

.custom-inquiry-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  cursor: pointer;
}

.custom-inquiry-modal__eyebrow {
  margin: 0;
  letter-spacing: 0.25em;
  font-size: 0.65rem;
  color: rgba(143, 180, 255, 0.8);
}

.custom-inquiry-modal__lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
}


.custom-inquiry-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.custom-inquiry-modal__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.custom-inquiry-modal__legend {
  margin: 0 0 0.15rem;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
}

.custom-inquiry-modal__panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.015);
}

.custom-inquiry-modal__grid {
  display: grid;
  gap: 0.65rem;
}

.custom-inquiry-modal__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


.custom-inquiry-modal__grid--two {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}


.custom-inquiry-modal__control {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.custom-inquiry-modal__control input,
.custom-inquiry-modal__control select {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 0.45rem 0.65rem;
  min-height: 40px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-inquiry-modal__control input.has-error {
  border-color: rgba(255, 107, 107, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.25);
}

.custom-inquiry-modal__control input:focus-visible,
.custom-inquiry-modal__control select:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(226, 93, 29, 0.25);
}

.custom-inquiry-modal__control select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.6) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.6) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.custom-inquiry-modal__control--color input[type="color"] {
  width: 56px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
}

.custom-inquiry-modal__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}


.custom-inquiry-modal__submit,
.custom-inquiry-modal__cancel {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-inquiry-modal__submit {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 18px 36px rgba(226, 93, 29, 0.35);
}

.custom-inquiry-modal__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 46px rgba(226, 93, 29, 0.45);
}

.custom-inquiry-modal__cancel {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-inquiry-modal__cancel:hover {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 520px) {
  .custom-inquiry-modal__dialog {
    padding: 1.5rem;
  }

  .custom-inquiry-modal__grid--three {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 900px) {
  .custom-inquiry__form {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }

}

@media (max-width: 640px) {
  .custom-inquiry__content {
    flex-direction: column;
    align-items: stretch;
  }

  .custom-inquiry__form {
    flex-direction: column;
    align-items: stretch;
  }

  .custom-inquiry__button {
    width: 100%;
    text-align: center;
  }
}

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

.mobile-belt-detail {
  display: none;
}

.mobile-belt-detail[hidden] {
  display: none !important;
}

.belt-detail-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.75rem);
  z-index: 1000;
}

.belt-detail-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(8px);
}

.belt-detail-modal__dialog {
  position: relative;
  width: min(1080px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.06), rgba(4, 6, 14, 0.94));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  padding: clamp(1.2rem, 3vw, 2rem);
  color: var(--text-light);
  overflow: hidden;
}

.belt-detail-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
}

.belt-detail-modal__close:hover,
.belt-detail-modal__close:focus-visible {
  color: var(--text-light);
  outline: none;
  transform: scale(1.08);
}

.belt-detail-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: stretch;
}

.belt-detail-modal__media {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.belt-detail-modal__viewer {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 2vw, 0.9rem);
  justify-content: flex-start;
  width: 100%;
  margin-right: auto;
  transform: translateX(clamp(-0.6rem, -1.5vw, -0.3rem));
}

.belt-detail-modal__stage {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(226, 93, 29, 0.1), rgba(5, 5, 5, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.belt-detail-modal__nav {
  flex: 0 0 auto;
  width: clamp(24px, 2.4vw, 32px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 5, 5, 0.32);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.belt-detail-modal__nav:hover,
.belt-detail-modal__nav:focus-visible {
  background: rgba(226, 93, 29, 0.9);
  color: var(--black);
  border-color: var(--orange);
  outline: none;
  transform: scale(1.05);
}

.belt-detail-modal__nav span {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  pointer-events: none;
}

.belt-detail-modal__nav--next span {
  transform: translateX(0.08em);
}

.belt-detail-modal__nav[hidden] {
  visibility: hidden;
}

.belt-detail-modal__viewer .belt-detail-modal__slides {
  flex: 1 1 auto;
  min-width: 0;
}

.belt-detail-modal__slides {
  position: relative;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 260px;
  max-height: 520px;
  overflow: hidden;
  background: transparent;
  border: none;
  cursor: pointer;
}

.belt-detail-modal__slide {
  position: absolute;
  inset: 0;
  /* Slightly zoom background to hide potential 2px white borders in source images */
  background-size: calc(100% + 4px) calc(100% + 4px);
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.belt-detail-modal__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.belt-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 4vw, 2rem);
  z-index: 2000;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.9);
}

.belt-lightbox[hidden] {
  display: none;
}

.belt-lightbox__image {
  width: min(100vw, 2200px);
  max-height: 95vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

.belt-detail-modal__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.45rem 0.25rem 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.belt-detail-modal__dots .belt-pagination__dot-core {
  background: rgba(255, 255, 255, 0.24);
}

.belt-detail-modal__dots .belt-pagination__dot.is-active .belt-pagination__dot-core {
  width: 1.12rem;
  background: rgba(226, 93, 29, 0.92);
  box-shadow: 0 0 0 1px rgba(226, 93, 29, 0.18);
}

.belt-detail-modal__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.belt-detail-modal__heading {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.belt-detail-modal__eyebrow {
  margin: 0;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: rgba(143, 180, 255, 0.82);
  text-transform: uppercase;
}

.belt-detail-modal__title {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.belt-detail-modal__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

.belt-detail-modal__meta {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.85rem;
}

.belt-detail-modal__meta li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.86rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  padding-bottom: 0.35rem;
}

.belt-detail-modal__meta span {
  display: block;
  letter-spacing: 0.08em;
  line-height: 1.2;
  flex: 0 0 auto;
  white-space: nowrap;
}

.belt-detail-modal__meta strong {
  display: block;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.2;
  min-width: 0;
  flex: 1 1 auto;
  align-self: flex-start;
  text-align: right;
}

.belt-detail-modal__meta[data-belt-modal-meta] li,
.belt-detail-modal__meta[data-mobile-belt-meta] li {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.25rem;
}

.belt-detail-modal__meta[data-belt-modal-meta] span,
.belt-detail-modal__meta[data-mobile-belt-meta] span {
  white-space: nowrap;
}

.belt-detail-modal__meta[data-belt-modal-meta] strong,
.belt-detail-modal__meta[data-mobile-belt-meta] strong {
  width: 100%;
  flex: 0 0 auto;
  text-align: left;
}

.belt-detail-modal__colors {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.belt-detail-modal__colors-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
}

.belt-detail-modal__colors-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.belt-detail-modal__color-dot {
  width: 18px;
  height: 18px;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--dot-color, #d9d9d9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.belt-detail-modal__color-dot:hover,
.belt-detail-modal__color-dot:focus-visible {
  transform: translateY(-1px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  outline: none;
}

.belt-detail-modal__color-dot.is-selected {
  border-color: var(--orange);
  box-shadow: 0 8px 18px rgba(226, 93, 29, 0.35), inset 0 0 0 2px rgba(0, 0, 0, 0.25);
  transform: scale(1.08);
}

.belt-detail-modal__actions {
  margin-top: auto;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.belt-detail-modal__cta {
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.belt-detail-modal__cta:hover,
.belt-detail-modal__cta:focus-visible {
  transform: translateY(-2px);
  border-color: var(--orange);
  color: var(--text-light);
  outline: none;
}

.belt-detail-modal__cta--primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  box-shadow: 0 16px 34px rgba(226, 93, 29, 0.35);
}

.belt-detail-modal__cta--primary:hover,
.belt-detail-modal__cta--primary:focus-visible {
  background: var(--orange);
  color: var(--black);
  border-color: rgba(255, 186, 134, 0.9);
  box-shadow: 0 12px 26px rgba(226, 93, 29, 0.3);
  transform: translateY(-1px);
}

.belt-detail-modal__cta--ghost:hover,
.belt-detail-modal__cta--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .belt-detail-modal {
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .belt-detail-modal__dialog {
    --mobile-modal-pad: 1.6rem;
    --mobile-close-size: 1.3rem;
    --mobile-close-offset: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    padding: var(--mobile-modal-pad);
  }

  .belt-detail-modal__close {
    position: absolute;
    top: var(--mobile-close-offset);
    right: var(--mobile-close-offset);
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 1.2rem;
    box-sizing: border-box;
    z-index: 3;
    background: transparent;
    border-radius: 0;
    color: #fff;
  }

  .belt-detail-modal__content {
    grid-template-columns: 1fr;
  }

  .belt-detail-modal__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .belt-detail-modal__heading {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .belt-detail-modal__title {
    order: 1;
    font-size: 1.1rem;
  }

  .belt-detail-modal__eyebrow {
    order: 2;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .belt-detail-modal__viewer {
    transform: none;
    gap: 0;
    justify-content: center;
  }

  .belt-detail-modal__nav {
    display: none;
  }

  .belt-detail-modal__stage {
    width: 100%;
  }

  .belt-detail-modal__slides {
    touch-action: pan-y;
  }

  .belt-detail-modal__actions .belt-detail-modal__cta {
    font-size: 1rem;
  }

  .belt-detail-modal__dots {
    position: absolute;
    left: 50%;
    bottom: 0.45rem;
    transform: translateX(-50%);
    margin-top: 0;
    padding: 0.25rem 0.5rem;
    border-top: none;
    z-index: 2;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}


.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-item {
  padding: 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.45);
}

.product-item ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-item li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--gray);
}

.product-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.product-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.seasonal-drops {
  padding: 0 0 4rem;
}

.seasonal-drop-grid {
  display: grid;
  grid-template-columns: minmax(360px, 3.5fr) minmax(220px, 1.5fr);
  gap: 2.5rem;
  align-items: stretch;
}

.seasonal-showcase {
  background: rgba(5, 5, 5, 0.62);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.seasonal-heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--products-deep-gray);
  border-radius: 16px;
  padding: 0.9rem 1rem;
}

.seasonal-showcase header p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  font-size: 0.9rem;
}

.seasonal-heading-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.seasonal-heading-row h3 {
  margin: 0;
}

.seasonal-period {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
}

.seasonal-heading #current-drop-heading-desc {
  margin-top: 0.25rem;
}

.seasonal-quarter-select {
  display: none;
}

.seasonal-quarter-select__desc-shell {
  display: none;
}

.seasonal-badge {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}

 .seasonal-viewer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.current-drop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: stretch;
}

.current-drop-stage {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.current-drop-hero {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.current-drop-hero img {
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  transform: scale(1.02);
}

.current-drop-hero .current-drop-dots {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  z-index: 2;
  width: max-content;
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(28, 32, 38, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.current-drop-hero .current-drop-dots .belt-pagination__dot-core {
  background: rgba(255, 255, 255, 0.34);
}

.current-drop-hero .current-drop-dots .belt-pagination__dot.is-active .belt-pagination__dot-core {
  width: 1.12rem;
  background: rgba(226, 93, 29, 0.92);
  box-shadow: 0 0 0 1px rgba(226, 93, 29, 0.18);
}

.current-drop-selector-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.current-drop-selector {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding: 0.25rem 0.5rem;
  width: min(100%, calc(4 * 76px + 3 * 0.85rem + 1rem));
  flex: 0 0 auto;
}

.selector-empty {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.selector-tile {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
  width: 76px;
  min-width: 76px;
  height: 76px;
  padding: 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.selector-thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.selector-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.selector-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 0.35rem;
}

.selector-arrow {
  width: 42px;
  height: 42px;
  min-width: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.selector-arrow span {
  width: 0.5rem;
  height: 0.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  display: inline-block;
}

.selector-arrow[aria-label="下一组"] span {
  transform: rotate(-135deg);
}

.selector-arrow:hover {
  border-color: var(--orange);
  background: rgba(226, 93, 29, 0.15);
  transform: translateY(-1px);
}

.selector-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selector-tile.is-active {
  border-color: var(--orange);
  background: rgba(226, 93, 29, 0.12);
  transform: translateY(-2px);
}

.selector-tile.is-active .selector-info,
.selector-tile:hover .selector-info,
.selector-tile:focus-visible .selector-info {
  opacity: 1;
}

.selector-tile.is-active .selector-thumb img,
.selector-tile:hover .selector-thumb img,
.selector-tile:focus-visible .selector-thumb img {
  transform: scale(1.05);
}

.current-drop-panel {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--products-deep-gray);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 100%;
}

.current-drop-panel h4 {
  margin: 0;
  font-size: 1.35rem;
}

.current-drop-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.current-drop-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.current-drop-actions .history-inline-btn {
  display: none;
}

.current-drop-actions .belt-detail-modal__cta--primary {
  padding: 0.65rem 1.6rem;
  font-size: 0.85rem;
}

.current-drop-actions--dual .belt-detail-modal__cta--primary {
  padding: 0.65rem 1.15rem;
  font-size: inherit;
}

@media (min-width: 768px) {
  .current-drop-actions--dual {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .current-drop-actions .history-inline-btn {
    display: none !important;
  }

  .current-drop-actions--dual .belt-detail-modal__cta {
    width: 100%;
    flex: 0 0 auto;
    min-width: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.1;
    letter-spacing: 0.08em;
    font-size: clamp(0.75rem, 0.62rem + 0.45vw, 0.88rem);
    padding: 0.65rem 1.15rem;
    font-weight: 600;
  }
}
.current-drop-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.belt-detail-modal__meta.current-drop-meta {
  background: rgba(37, 41, 49, 0.82);
  border-radius: 14px;
  padding: 0.8rem;
}

.current-drop-meta li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  padding-bottom: 0.4rem;
}

.seasonal-thumb {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.12rem;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  width: 68px;
  height: 68px;
}

.seasonal-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.seasonal-thumb span {
  display: none;
}

.seasonal-thumb.is-active {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.seasonal-history {
  background: rgba(0, 0, 0, 0.52);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6rem;
  align-self: flex-start;
}

.history-header p {
  margin: 0 0 0.35rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.history-scroll {
  position: relative;
  max-height: 460px;
  overflow-y: auto;
  padding-right: 0.75rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.history-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.history-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: visible;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.history-active-indicator {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
  border-radius: 14px;
  background: rgba(226, 93, 29, 0.12);
  box-shadow: 0 0 0 4px rgba(226, 93, 29, 0.1);
  transform: translateY(0);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), height 620ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.history-active-indicator.is-visible {
  opacity: 1;
}

.history-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  padding: 1rem 0.25rem;
}

.history-timeline li {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  column-gap: 0.75rem;
  row-gap: 0.35rem;
  position: relative;
  align-items: flex-start;
  padding: 0.3rem 0.45rem 0.45rem 0.1rem;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 1;
}

.history-timeline li:focus-visible {
  outline: 2px solid rgba(226, 93, 29, 0.7);
  outline-offset: 2px;
}

.history-timeline li:hover {
  background: rgba(255, 255, 255, 0.04);
}

.history-timeline li.is-active {
  background: transparent;
  box-shadow: none;
}

.history-timeline li::before {
  content: "";
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  align-self: center;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.65);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.history-timeline li:hover::before {
  border-color: var(--orange);
  background: rgba(226, 93, 29, 0.2);
}

.history-timeline li.is-active::before {
  border-color: var(--orange);
  background: rgba(226, 93, 29, 0.35);
}

.history-timeline h4 {
  grid-column: 2;
  margin: 0;
  font-size: 1rem;
}

.history-timeline .history-season-row {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.history-timeline .history-season-row .history-season {
  margin: 0;
}

.history-timeline .history-current-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.08rem 0.42rem;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
}

.history-timeline .history-season {
  grid-column: 2;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0.15rem 0 0.15rem;
}

.history-timeline .history-desc {
  grid-column: 2;
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.history-timeline li.is-active .history-desc {
  color: rgba(255, 255, 255, 0.84);
}

.history-thumb-row {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.3rem;
}

.history-thumb {
  flex: 0 0 auto;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  appearance: none;
}

.history-thumb:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.history-thumb:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.section-body {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.section-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--orange);
  padding-left: 1.5rem;
}

.section-body li + li {
  margin-top: 0.8rem;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--gray);
}

.products {
  --products-section-bg: var(--dark-gray);
  background: var(--products-section-bg);
  border-radius: 24px;
  padding: 3rem;
}

body[data-page="home"] .products {
  --products-section-bg: var(--products-deep-gray);
  padding-top: var(--home-main-hero-gap);
  padding-bottom: 0;
}

body[data-page="home"] .products--world-map {
  padding-top: calc(var(--home-main-hero-gap) * 0.5);
}

body[data-page="home"] .products.products--browse-showcase {
  --products-section-bg: #14161a !important;
  --browse-showcase-bleed: clamp(2rem, 4vw, 4rem);
  --browse-showcase-control-bleed: 3rem;
  background: #14161a !important;
  background-color: #14161a !important;
  border-radius: 0;
  overflow: visible;
  padding-top: clamp(1rem, 3vw, 1.7rem);
  padding-bottom: clamp(1rem, 3vw, 1.7rem);
}

.product-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}

.product-map-mobile {
  display: block;
  width: 100%;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: clamp(1.15rem, 3.2vw, 1.9rem);
  padding-bottom: clamp(0.8rem, 2.4vw, 1.35rem);
}

.product-map-mobile__stage {
  --map-focus-x: 65%;
  --map-focus-y: 36.8%;
  --map-stage-ratio: 2.24;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 2.24 / 1;
  min-height: clamp(320px, 32vw, 420px);
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.product-map-mobile__stage::before,
.product-map-mobile__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-map-mobile__stage::before {
  background: none;
}

.product-map-mobile__stage::after {
  background: none;
}

.product-map-mobile__continents {
  --map-image-ratio: 1.7786458333;
  --map-logo-x: 43.6%;
  --map-logo-y: 33.8%;
  --map-loop-duration: 6.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, calc(100% * var(--map-image-ratio) / var(--map-stage-ratio)));
  height: min(100%, calc(100% * var(--map-stage-ratio) / var(--map-image-ratio)));
  aspect-ratio: 1366 / 768;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.product-map-mobile__layer {
  position: absolute;
  inset: 0;
  -webkit-mask: url("../../images/maps/world-map-mask.webp") center / contain no-repeat;
  mask: url("../../images/maps/world-map-mask.webp") center / contain no-repeat;
}

.product-map-mobile__layer--base {
  z-index: 1;
  background: #ffffff;
}

.product-map-mobile__layer--orange {
  z-index: 2;
  background: var(--orange);
  clip-path: circle(0% at var(--map-logo-x) var(--map-logo-y));
  will-change: clip-path;
}

.product-map-mobile__marker-rings {
  position: absolute;
  z-index: 3;
  inset: 0;
}

.product-map-mobile__marker-ring {
  position: absolute;
  width: clamp(52px, 8.6vw, 108px);
  aspect-ratio: 1;
  top: var(--map-logo-y);
  left: var(--map-logo-x);
  --ring-start: 0.12;
  --ring-end: 1.2;
  transform: translate(-50%, -50%) scale(var(--ring-start));
  border-radius: 999px;
  opacity: 0;
  background: none;
  border: 1px solid rgba(226, 93, 29, 0.34);
  box-shadow: 0 0 0 1px rgba(226, 93, 29, 0.12) inset;
}

.product-map-mobile__marker-logo {
  position: absolute;
  z-index: 4;
  width: clamp(48px, 7.8vw, 92px);
  height: auto;
  top: var(--map-logo-y);
  left: var(--map-logo-x);
  box-sizing: border-box;
  padding: clamp(0.1rem, 0.35vw, 0.22rem);
  background: #ffffff;
  border-radius: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.products--world-map.reveal.is-visible .product-map-mobile__layer--orange {
  animation: mapOrangeSpreadLoop var(--map-loop-duration) linear 0.1s infinite;
}

.products--world-map.reveal.is-visible .product-map-mobile__marker-ring {
  animation: mapLogoPulseRingLoop var(--map-loop-duration) linear infinite both;
}

.products--world-map.reveal.is-visible .product-map-mobile__marker-ring:nth-child(1) {
  animation-delay: 0.05s;
  --ring-start: 0.12;
  --ring-end: 1.35;
}

.products--world-map.reveal.is-visible .product-map-mobile__marker-ring:nth-child(2) {
  animation-delay: 0.87s;
  --ring-start: 1.22;
  --ring-end: 2.35;
}

.products--world-map.reveal.is-visible .product-map-mobile__marker-ring:nth-child(3) {
  animation-delay: 1.69s;
  --ring-start: 2.22;
  --ring-end: 3.5;
}

.products--world-map.reveal.is-visible .product-map-mobile__marker-ring:nth-child(4) {
  animation-delay: 2.51s;
  --ring-start: 3.35;
  --ring-end: 4.95;
}

.products--world-map.reveal.is-visible .product-map-mobile__marker-ring:nth-child(5) {
  animation-delay: 3.33s;
  --ring-start: 4.78;
  --ring-end: 6.55;
}

.products--world-map.reveal.is-visible .product-map-mobile__marker-ring:nth-child(6) {
  animation-delay: 4.15s;
  --ring-start: 6.3;
  --ring-end: 8.45;
}

.products--world-map.reveal.is-visible .product-map-mobile__marker-logo {
  animation: mapLogoPopLoop var(--map-loop-duration) linear infinite both;
}

@keyframes mapOrangeSpreadLoop {
  0%,
  7% {
    clip-path: circle(0% at var(--map-logo-x) var(--map-logo-y));
  }

  16% {
    clip-path: circle(10% at var(--map-logo-x) var(--map-logo-y));
  }

  25% {
    clip-path: circle(18% at var(--map-logo-x) var(--map-logo-y));
  }

  34% {
    clip-path: circle(28% at var(--map-logo-x) var(--map-logo-y));
  }

  43% {
    clip-path: circle(40% at var(--map-logo-x) var(--map-logo-y));
  }

  52% {
    clip-path: circle(58% at var(--map-logo-x) var(--map-logo-y));
  }

  61% {
    clip-path: circle(78% at var(--map-logo-x) var(--map-logo-y));
  }

  72%,
  99.9% {
    clip-path: circle(108% at var(--map-logo-x) var(--map-logo-y));
  }

  100% {
    clip-path: circle(0% at var(--map-logo-x) var(--map-logo-y));
  }
}

@keyframes mapLogoPulseRingLoop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(var(--ring-start));
  }

  4% {
    opacity: 0.9;
  }

  8% {
    opacity: 0.42;
  }

  11%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(var(--ring-end));
  }
}

@keyframes mapLogoPopLoop {
  0%,
  2% {
    transform: translate(-50%, -50%) scale(0.78);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }

  5% {
    transform: translate(-50%, -50%) scale(1.08);
    filter: drop-shadow(0 10px 22px rgba(226, 93, 29, 0.26));
  }

  9%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
  }
}

@media (prefers-reduced-motion: reduce) {
  .products--world-map .product-map-mobile__layer--orange {
    animation: none !important;
    clip-path: circle(108% at var(--map-logo-x) var(--map-logo-y));
  }

  .products--world-map .product-map-mobile__marker-ring,
  .products--world-map .product-map-mobile__marker-logo {
    animation: none !important;
  }

  .products--world-map .product-map-mobile__marker-rings {
    display: none;
  }
}

.products--world-map > .link-arrow {
  margin-top: 1.5rem;
}

.product-map-mobile__modes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.6rem);
  margin-top: 0;
  padding: 0 clamp(0.3rem, 1vw, 0.8rem);
}

.product-map-mobile__modes::before,
.product-map-mobile__modes::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  width: 2px;
  background: #ffffff;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.product-map-mobile__modes::before {
  left: calc(33.333% - 1px);
}

.product-map-mobile__modes::after {
  left: calc(66.666% - 1px);
}

.product-map-mobile__mode {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  padding: clamp(0.25rem, 1vw, 0.55rem) clamp(0.4rem, 1.2vw, 0.8rem);
  text-align: center;
}

.product-map-mobile__mode-value {
  font-size: clamp(1.8rem, 8vw, 2.7rem);
  line-height: 1;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.06em;
}

.product-map-mobile__mode-label {
  max-width: 8em;
  font-size: clamp(0.82rem, 3.8vw, 0.96rem);
  line-height: 1.35;
  color: var(--text-light);
}

.products--world-map > .section-header,
.products--certifications > .section-header,
.products--browse-showcase > .section-header {
  margin-top: 2.25rem;
}

.products--world-map > .section-header h2,
.products--certifications > .section-header h2,
.products--browse-showcase > .section-header h2 {
  text-wrap: balance;
  letter-spacing: 0.08em;
}

.products--world-map {
  padding-bottom: clamp(1rem, 2.5vw, 1.6rem);
}

.products--certifications {
  padding-bottom: clamp(1rem, 2.5vw, 1.6rem);
}

.certification-deck {
  --certification-card-width: min(22rem, 34%);
  --certification-card-front-scale: 1.1;
  --certification-card-mid-scale: 1.06;
  --certification-card-back-scale: 1.01;
  position: relative;
  height: clamp(28rem, 42vw, 33rem);
  margin-top: clamp(1rem, 2.4vw, 1.6rem);
  padding-top: clamp(0.8rem, 1.8vw, 1.1rem);
  overflow: visible;
}

.certification-deck__card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.2rem, 0.55vw, 0.38rem);
  margin: 0;
  width: var(--certification-card-width);
  padding: clamp(0.35rem, 0.8vw, 0.5rem);
  border: 1px solid #ffffff;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  transform-origin: center center;
  transition:
    left 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease,
    opacity 0.8s ease,
    box-shadow 0.8s ease;
}

.certification-deck__category {
  order: 2;
  display: grid;
  place-items: center;
  align-self: center;
  min-height: clamp(1.5rem, 2.5vw, 1.85rem);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 0.08rem;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #111111;
  font-size: var(--browse-showcase-toolbar-font-size, 0.76rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: center;
}

.certification-deck__category-text {
  display: block;
  letter-spacing: 0.08em;
  transform: translateY(-0.04em);
}

.certification-deck__card img {
  order: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.certification-deck__card[data-certification-slot="0"] {
  z-index: 5;
  left: 50%;
  opacity: 1;
  border-color: var(--orange);
  background: var(--orange);
  filter: none;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%) scale(var(--certification-card-front-scale));
}

.certification-deck__card[data-certification-slot="0"] .certification-deck__category {
  border-color: var(--orange);
  background: var(--orange);
  color: #111111;
  font-weight: 700;
}

.certification-deck__card[data-certification-slot="1"] {
  z-index: 4;
  left: 34%;
  opacity: 0.92;
  filter: saturate(0.9) brightness(0.95);
  transform: translate(-50%, -50%) scale(var(--certification-card-mid-scale));
}

.certification-deck__card[data-certification-slot="5"] {
  z-index: 4;
  left: 66%;
  opacity: 0.92;
  filter: saturate(0.9) brightness(0.95);
  transform: translate(-50%, -50%) scale(var(--certification-card-mid-scale));
}

.certification-deck__card[data-certification-slot="2"] {
  z-index: 3;
  left: 20%;
  opacity: 0.8;
  filter: saturate(0.8) brightness(0.9);
  transform: translate(-50%, -50%) scale(var(--certification-card-back-scale));
}

.certification-deck__card[data-certification-slot="4"] {
  z-index: 3;
  left: 80%;
  opacity: 0.8;
  filter: saturate(0.8) brightness(0.9);
  transform: translate(-50%, -50%) scale(var(--certification-card-back-scale));
}

.certification-deck__card[data-certification-slot="3"] {
  z-index: 1;
  left: 50%;
  opacity: 0;
  filter: saturate(0.74) brightness(0.85);
  transform: translate(-50%, -50%) scale(0.72);
}

.products--browse-showcase {
  color: var(--text-light);
  padding-bottom: clamp(1rem, 3vw, 1.7rem);
}

.products--browse-showcase > .section-header {
  display: flex;
  justify-content: center;
}

.products--browse-showcase > .section-header h2 {
  color: var(--text-light);
  max-width: min(100%, 14em);
  text-align: center;
}

.browse-showcase {
  --browse-showcase-card-gap: clamp(0.85rem, 1.8vw, 1rem);
  margin-top: clamp(1rem, 2.2vw, 1.45rem);
  display: grid;
  gap: clamp(0.7rem, 1.8vw, 1rem);
  overflow: visible;
}

.browse-showcase__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--browse-showcase-card-gap);
  align-items: start;
  width: 100%;
  margin-left: 0;
}

.browse-showcase__toolbar {
  --browse-showcase-toolbar-height: 2.2rem;
  --browse-showcase-toolbar-radius: calc(var(--browse-showcase-toolbar-height) / 2);
  --browse-showcase-toolbar-font-size: 0.76rem;
  --browse-showcase-toolbar-letter-spacing: 0.01em;
  --browse-showcase-controls-border-width: 1px;
  --browse-showcase-switch-padding: 0.18rem;
  --browse-showcase-control-inner-height: calc(
    var(--browse-showcase-toolbar-height) - (var(--browse-showcase-switch-padding) * 2) - (var(--browse-showcase-controls-border-width) * 2)
  );
  --browse-showcase-control-inner-radius: calc(var(--browse-showcase-control-inner-height) / 2);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--browse-showcase-card-gap);
  order: 2;
  width: calc(100% + var(--browse-showcase-control-bleed, 0px) + var(--browse-showcase-control-bleed, 0px));
  max-width: none;
  margin-left: calc(-1 * var(--browse-showcase-control-bleed, 0px));
  margin-right: calc(-1 * var(--browse-showcase-control-bleed, 0px));
}

.browse-showcase__controls {
  --browse-showcase-active-index: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  align-self: start;
  box-sizing: border-box;
  contain: none;
  position: relative;
  top: auto;
  z-index: auto;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: var(--browse-showcase-toolbar-height);
  height: var(--browse-showcase-toolbar-height);
  margin-left: 0;
  padding: var(--browse-showcase-switch-padding);
  border-radius: var(--browse-showcase-toolbar-radius);
  border: var(--browse-showcase-controls-border-width) solid rgba(255, 255, 255, 0.82);
  background: transparent;
  overflow: hidden;
  clip-path: none;
  isolation: isolate;
}

.browse-showcase__controls::before {
  content: "";
  position: absolute;
  top: var(--browse-showcase-switch-padding);
  bottom: var(--browse-showcase-switch-padding);
  left: var(--browse-showcase-switch-padding);
  width: calc((100% - (var(--browse-showcase-switch-padding) * 2)) / 3);
  border-radius: var(--browse-showcase-control-inner-radius);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(226, 93, 29, 0.36);
  transform: translateX(calc(var(--browse-showcase-active-index, 0) * 100%));
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

.browse-showcase__all-link {
  --browse-showcase-all-link-icon-slot: 1.4rem;
  display: block;
  box-sizing: border-box;
  align-self: center;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: var(--browse-showcase-control-inner-height);
  position: relative;
  padding: 0;
  background: var(--orange);
  color: var(--black);
  border: 1px solid var(--orange);
  border-radius: var(--browse-showcase-control-inner-radius);
  font-size: var(--browse-showcase-toolbar-font-size);
  font-weight: 600;
  letter-spacing: var(--browse-showcase-toolbar-letter-spacing);
  line-height: 1;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.browse-showcase__all-link-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.browse-showcase__all-link-icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: var(--browse-showcase-all-link-icon-slot);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.browse-showcase__all-link-icon svg {
  display: block;
  width: 0.62rem;
  height: 0.62rem;
  overflow: visible;
}

.browse-showcase__all-link-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.browse-showcase__all-link:hover {
  filter: brightness(1.03);
}

.browse-showcase__all-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 2px;
}

.browse-showcase__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: none;
  border-radius: var(--browse-showcase-control-inner-radius);
  box-sizing: border-box;
  background: transparent;
  color: #ffffff;
  min-height: 0;
  height: 100%;
  min-width: 0;
  width: 100%;
  margin-left: 0;
  padding: 0;
  text-align: center;
  font-size: var(--browse-showcase-toolbar-font-size);
  line-height: 1;
  font-weight: 400;
  letter-spacing: var(--browse-showcase-toolbar-letter-spacing);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.browse-showcase__control.is-active {
  color: var(--black);
  font-weight: 600;
}

.browse-showcase__control:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 2px;
}

.browse-showcase__control:not(.is-active):hover {
  background: transparent;
  color: rgba(247, 244, 241, 0.94);
}

.browse-showcase__row {
  display: grid;
  grid-template-columns: minmax(0, 8.6rem) minmax(0, 1fr);
  gap: clamp(0.75rem, 1.8vw, 1rem);
  align-items: center;
}

.browse-showcase__row-header {
  display: grid;
  gap: 0.28rem;
  align-content: start;
}

.browse-showcase__row-index {
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.browse-showcase__row-header h3 {
  margin: 0;
  font-size: clamp(0.96rem, 1.75vw, 1.08rem);
  line-height: 1.12;
  color: #ffffff;
}

.browse-showcase__viewport {
  position: relative;
  order: 1;
  width: calc(100% + var(--browse-showcase-bleed, 0px) + var(--browse-showcase-bleed, 0px));
  max-width: none;
  margin-left: calc(-1 * var(--browse-showcase-bleed, 0px));
  margin-right: calc(-1 * var(--browse-showcase-bleed, 0px));
  overflow: hidden;
  padding-block: 0;
  background: transparent;
}

.browse-showcase__track {
  --showcase-gap: var(--browse-showcase-card-gap);
  display: flex;
  gap: var(--showcase-gap);
  width: max-content;
  will-change: transform;
  animation: browseShowcaseMarquee var(--marquee-duration, 38s) linear infinite;
}

.browse-showcase__row.is-reverse .browse-showcase__track {
  animation-direction: reverse;
}

.browse-showcase__group {
  display: flex;
  gap: var(--showcase-gap);
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
}

.browse-showcase__card {
  width: clamp(172px, 16.5vw, 208px);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-light);
  background: #000000;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(19, 21, 24, 0.2);
  opacity: 1;
  transform: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.browse-showcase__card .belt-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #000000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s ease;
}

.browse-showcase__card .belt-card__media::after {
  display: none;
}

.browse-showcase__card .belt-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.browse-showcase__card .belt-card__badge,
.browse-showcase__card .belt-card__footer,
.browse-showcase__card .belt-card__cta {
  display: none !important;
}

.browse-showcase__card .belt-card__body {
  display: flex;
  flex-direction: column;
  padding: 0.56rem 0.62rem 0.62rem;
  min-height: auto;
  gap: 0;
  position: relative;
  border: none;
  outline: none;
  box-shadow: none;
}

.browse-showcase__card .belt-attributes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 0.58rem;
  gap: 0.24rem 0.42rem;
  min-height: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
}

.browse-showcase__card .belt-attribute-row--identity {
  gap: 0.42rem;
  padding-bottom: 0.28rem;
  margin-bottom: 0.12rem;
}

.browse-showcase__card .belt-attribute-text--id {
  font-size: 0.68rem;
}

.browse-showcase__card .belt-attribute--colors {
  display: flex;
  justify-content: flex-end;
  gap: 0.22rem;
}

.browse-showcase__card .belt-attribute--colors .belt-color-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

@media (hover: hover) {
  .browse-showcase__viewport:hover .browse-showcase__track {
    animation-play-state: paused;
  }

  .browse-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(19, 21, 24, 0.24);
  }

  .browse-showcase__card:hover .belt-card__body,
  .browse-showcase__card:hover .belt-card__media {
    transform: none;
  }
}

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

  to {
    transform: translateX(calc(-50% - (var(--showcase-gap) / 2)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .browse-showcase__viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .browse-showcase__track {
    animation: none;
    width: max-content;
  }

  .browse-showcase__group[aria-hidden="true"] {
    display: none;
  }
}

.product-map-mobile__title-line {
  display: block;
}

.product-map-mobile__title-line + .product-map-mobile__title-line {
  margin-top: 0.18em;
}

.product-map-mobile__title-accent {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  font-size: clamp(1.8rem, 8vw, 2.7rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-body {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-body h3 {
  margin-top: 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

input,
textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--text-light);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background: var(--orange);
  color: var(--black);
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  opacity: 0.9;
}

.footer {
  padding: 3rem clamp(1.5rem, 6vw, 5rem) 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray);
  font-size: 0.9rem;
  background: var(--black);
}

body[data-page="contact"] .footer {
  background: var(--products-deep-gray);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-logo {
  font-weight: 600;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-meta {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-meta .footer-logo {
  font-size: 0.95rem;
}

.footer-meta p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="news"] .belt-intro,
  body[data-page="products"][data-subpage="overview"] .belt-intro {
    display: block;
    padding-top: 0;
    margin: clamp(2.5rem, 10vw, 4rem) 0;
    text-align: center;
  }

  body[data-page="products"][data-subpage="news"] .belt-intro,
  body[data-page="products"][data-subpage="overview"] .belt-intro {
    margin: clamp(2.5rem, 10vw, 4rem) 0 clamp(1.25rem, 5vw, 2rem);
  }

  body[data-page="products"][data-subpage="news"] .belt-intro.reveal,
  body[data-page="products"][data-subpage="overview"] .belt-intro.reveal {
    transform: translateY(28px);
    transition-duration: 0.48s;
  }

  body[data-page="products"][data-subpage="news"] .belt-intro.reveal.is-visible,
  body[data-page="products"][data-subpage="overview"] .belt-intro.reveal.is-visible {
    transform: translateY(0);
  }

  .belt-intro {
    padding-top: 0;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    text-align: center;
  }

  body[data-page="products"][data-subpage="news"] .belt-intro .section-header,
  body[data-page="products"][data-subpage="overview"] .belt-intro .section-header {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  body[data-page="products"][data-subpage="news"] .belt-intro .section-header h2,
  body[data-page="products"][data-subpage="overview"] .belt-intro .section-header h2 {
    max-width: min(100%, 14em);
    font-size: clamp(1.36rem, 6vw, 1.78rem);
    line-height: 1.14;
    text-align: center;
    margin: 0;
  }

  body[data-page="products"][data-subpage="news"] .belt-intro .section-lede,
  body[data-page="products"][data-subpage="overview"] .belt-intro .section-lede,
  .belt-intro .section-lede {
    display: none;
  }

  .footer {
    position: relative;
    padding: 3.5rem 2rem 2.5rem;
    background: var(--products-deep-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer::before {
    content: none;
  }

  .footer-content {
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
    margin-bottom: 3rem;
  }

  .footer-nav-section {
    gap: 1.2rem;
  }

  /* Make contact section span full width */
  .footer-nav-section:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 0.5rem;
  }

  .footer-nav-title {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
  }

  .footer-links {
    gap: 0.8rem;
    display: flex;
    flex-direction: column;
  }

  .footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    font-weight: 400;
    transition: color 0.3s ease;
    text-decoration: none;
    display: block;
    width: fit-content;
  }
  
  .footer-links a:active {
    color: var(--orange);
    transform: translateX(4px);
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .footer-contact p {
    margin: 0;
  }

  .footer-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    border: none; /* Already has top border from grid if needed, or remove border here */
    border-radius: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  
  .footer-meta:hover, 
  .footer-meta:active {
    opacity: 0.8;
  }

  .footer-meta .footer-logo {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
  }

  .footer-meta p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
  }
}

.page-hero {
  min-height: 70vh;
  padding: clamp(5rem, 12vw, 10rem) clamp(1rem, 6vw, 5rem);
  padding-top: clamp(6rem, 14vw, 9rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.page-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--orange);
.badge-orange {
  color: var(--orange);
}
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--gray);
  max-width: 540px;
}

.section-eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.atelier-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url("../../images/products/cattle-ranch-landscape.png") center/cover no-repeat,
    radial-gradient(circle at 30% 30%, rgba(50, 50, 50, 0.5), #050505);
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) clamp(1rem, 6vw, 5rem);
}

.atelier-hero__noise {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 2px);
  opacity: 0.3;
  filter: blur(0.5px);
  animation: grainDrift 18s linear infinite;
}

.atelier-hero__content {
  position: relative;
  text-align: center;
  max-width: 720px;
  padding: 4rem 1.5rem;
  color: #fff;
  animation: heroFocus 1.8s ease forwards;
}

.atelier-hero__eyebrow {
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.atelier-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.75rem);
  letter-spacing: 0.04em;
}

.atelier-hero__lede {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.material-dual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.material-dual__bg {
  position: absolute;
  inset: 0;
  background: url("../../images/products/cattle-ranch-landscape.png") center/cover no-repeat;
  opacity: 1;
}

.material-dual__grid {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  border-radius: 0;
  overflow: hidden;
  border: none;
  isolation: isolate;
}

.material-panel {
  position: relative;
  flex: 1 1 50%;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: flex-end;
  background: transparent;
  overflow: hidden;
  min-height: clamp(360px, 60vh, 560px);
  --panel-overlay: transparent;
}

.material-panel::before,
.material-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.material-panel::before {
  background: var(--panel-overlay);
  opacity: 0;
  transform: scale(1.05);
  transition: transform 4s ease, opacity 2s ease;
}

.material-panel::after {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.2));
  opacity: 0;
  transition: opacity 2s ease;
}

.material-panel--index {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  align-items: stretch;
  --panel-overlay: linear-gradient(140deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.22));
}

.material-panel--index::before {
  opacity: 0.18;
  transform: scale(1);
}

.material-panel--narrative {
  flex: 1 1 66.666%;
  align-items: center;
  --panel-overlay: linear-gradient(150deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.55));
}

.material-panel--narrative::before {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.material-panel--narrative::after {
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.8));
}

.material-panel__body {
  position: relative;
  width: min(460px, 86%);
  margin: clamp(1.5rem, 5vh, 4rem) clamp(2rem, 3.5vw, 3rem) auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
  text-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  z-index: 1;
  mix-blend-mode: normal;
}

.material-panel--narrative .material-panel__body {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.material-dual.is-visible .material-panel--narrative::before {
  opacity: 0.45;
  transform: scale(1);
}

.material-dual.is-visible .material-panel--narrative::after {
  opacity: 0.7;
}

.material-dual.is-visible .material-panel--narrative .material-panel__body {
  opacity: 1;
  transform: translateY(0);
}

.material-panel__label {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  color: #fff;
  margin: 0;
}

.material-panel__origin {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: #fff;
}

.material-panel__locale {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #fff;
}

.material-panel__title {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #fff;
}

.material-panel__text {
  margin: 0;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.02em;
  max-width: 38ch;
}

.material-panel__text--secondary {
  color: #fff;
  opacity: 1;
}

.material-panel__statement {
  margin: 0;
  color: #fff;
  letter-spacing: 0.08em;
}

.material-study {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5.5rem) clamp(4rem, 10vw, 7rem);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.88));
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.material-study__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 2.5rem);
  max-width: 900px;
}

.material-study__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.material-study__intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.material-study__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  max-width: 48ch;
}

.material-study__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
}

.material-study__grid article {
  padding: clamp(1rem, 3vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.material-study__grid h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.material-study__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .material-study__intro {
    flex-direction: column;
  }
}

.material-panel__meta {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.material-panel__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.material-panel__meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  .material-dual {
    padding: 2rem 0;
  }

  .material-dual__grid {
    flex-direction: column;
    min-height: unset;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .material-panel {
    min-height: 380px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    align-items: flex-end;
    max-width: 100%;
    flex: 1 1 100%;
  }

  .material-panel:first-child {
    border-top: none;
  }

  .material-panel__body {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 2rem;
  }
}

.heritage-stack {
  position: relative;
  margin: 5rem 0;
  border-radius: 40px;
  overflow: hidden;
  background: #050505;
}

.heritage-stack::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background-image: url("../../images/products/tannery-workshop.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  opacity: 0.95;
  pointer-events: none;
  z-index: 5;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
}

.heritage-stack__media {
  position: absolute;
  inset: 0;
  background-image: url("../../images/products/catalog-background.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
  overflow: hidden;
}

.heritage-stack__content {
  position: relative;
  padding: 4rem;
  display: grid;
  gap: 1.5rem;
  color: #fff;
  z-index: 1;
}

.heritage-stack__layers {
  display: grid;
  gap: 1.25rem;
}

.heritage-stack__layers article {
  border-left: 2px solid rgba(255, 255, 255, 0.35);
  padding-left: 1rem;
}

.heritage-stack__layers h3 {
  margin: 0 0 0.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.credential-grid {
  padding: 4rem 0 6rem;
}

.credential-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.credential-grid__list article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  min-height: 180px;
}

.credential-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

@keyframes grainDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-3%, -3%, 0);
  }
}

@keyframes heroFocus {
  0% {
    filter: blur(8px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.hero-stat {
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stat-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
}

.hero-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  min-height: clamp(340px, 52vh, 480px);
  padding-bottom: 2rem;
}

body[data-page="home"] > header.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(4, 4, 4, 0.58) 0%,
      rgba(6, 6, 6, 0.50) 16%,
      rgba(10, 8, 6, 0.20) 44%,
      rgba(10, 8, 6, 0.13) 62%,
      rgba(5, 5, 5, 0.46) 80%,
      rgba(3, 3, 3, 0.66) 100%
    ),
    radial-gradient(130% 86% at 50% 52%, rgba(5, 5, 5, 0) 54%, rgba(5, 5, 5, 0.26) 100%),
    url("../../images/home/hero-slide-01.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}

body[data-page="home"] > header.hero:has(.hero-slide:first-child.is-active)::before {
  opacity: 1;
}

body[data-page="home"] > header.hero:has(.hero-slide:nth-child(2).is-active)::before {
  background-image:
    linear-gradient(
      180deg,
      rgba(4, 4, 4, 0.58) 0%,
      rgba(6, 6, 6, 0.50) 16%,
      rgba(10, 8, 6, 0.20) 44%,
      rgba(10, 8, 6, 0.13) 62%,
      rgba(5, 5, 5, 0.46) 80%,
      rgba(3, 3, 3, 0.66) 100%
    ),
    radial-gradient(130% 86% at 50% 52%, rgba(5, 5, 5, 0) 54%, rgba(5, 5, 5, 0.26) 100%),
    url("../../images/home/hero-slide-02.jpg");
  opacity: 1;
}

body[data-page="home"] > header.hero:has(.hero-slide:nth-child(3).is-active)::before {
  background-image:
    linear-gradient(
      180deg,
      rgba(4, 4, 4, 0.58) 0%,
      rgba(6, 6, 6, 0.50) 16%,
      rgba(10, 8, 6, 0.20) 44%,
      rgba(10, 8, 6, 0.13) 62%,
      rgba(5, 5, 5, 0.46) 80%,
      rgba(3, 3, 3, 0.66) 100%
    ),
    radial-gradient(130% 86% at 50% 52%, rgba(5, 5, 5, 0) 54%, rgba(5, 5, 5, 0.26) 100%),
    url("../../images/home/hero-slide-03.jpg");
  opacity: 1;
}

body[data-page="home"] .hero-carousel {
  z-index: 1;
}

.hero-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  min-height: clamp(420px, 55vh, 520px);
  opacity: 0;
  transform: translateX(6%);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

body[data-page="home"] .hero-slide .hero-copy .eyebrow,
body[data-page="home"] .hero-slide .hero-copy .hero-title-line,
body[data-page="home"] .hero-slide .hero-copy .hero-lede-line,
body[data-page="home"] .hero-slide > .hero-actions > *,
body[data-page="home"] .hero-slide .hero-stats {
  opacity: 0;
  transform: translate3d(0, 9px, 0);
  transition: opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1), transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

body[data-page="home"] .hero-slide .hero-copy .hero-title-line,
body[data-page="home"] .hero-slide .hero-copy .hero-lede-line {
  display: inline-block;
}

body[data-page="home"] .hero-slide.is-active .hero-copy .eyebrow,
body[data-page="home"] .hero-slide.is-active .hero-copy .hero-title-line,
body[data-page="home"] .hero-slide.is-active .hero-copy .hero-lede-line,
body[data-page="home"] .hero-slide.is-active > .hero-actions > *,
body[data-page="home"] .hero-slide.is-active .hero-stats {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page="home"] .hero-slide.is-active .hero-copy .eyebrow {
  transition-delay: 0s;
}

body[data-page="home"] .hero-slide.is-active .hero-copy .hero-title-line--1 {
  transition-delay: 0s;
}

body[data-page="home"] .hero-slide.is-active .hero-copy .hero-title-line--2 {
  transition-delay: 0.08s;
}

body[data-page="home"] .hero-slide.is-active .hero-copy .hero-lede-line--1 {
  transition-delay: 0.12s;
}

body[data-page="home"] .hero-slide.is-active .hero-copy .hero-lede-line--2 {
  transition-delay: 0.26s;
}

body[data-page="home"] .hero-slide.is-active .hero-copy .hero-lede-line--3 {
  transition-delay: 0.4s;
}

body[data-page="home"] .hero-slide.is-active > .hero-actions > *:nth-child(1) {
  transition-delay: 0.52s;
}

body[data-page="home"] .hero-slide.is-active > .hero-actions > *:nth-child(2) {
  transition-delay: 0.66s;
}

body[data-page="home"] .hero-slide.is-active .hero-stats {
  transition-delay: 0.8s;
}

body[data-page="home"] .hero-carousel.is-hero-bg-fading .hero-slide.is-active .hero-copy .hero-lede-line,
body[data-page="home"] .hero-carousel.is-hero-bg-fading .hero-slide.is-active > .hero-actions > *,
body[data-page="home"] .hero-carousel.is-hero-bg-fading .hero-slide.is-active .hero-stats {
  opacity: 0;
  transform: translate3d(0, 9px, 0);
  transition-delay: 0s;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  z-index: 2;
}

.hero-dot {
  width: 46px;
  height: 3px;
  border: none;
  padding: 0;
  appearance: none;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1), background 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--orange);
}

.belt-pagination__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  min-width: 0;
}

.belt-pagination__dot {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.08rem;
  border: none;
  background: transparent;
  border-radius: 999px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.belt-pagination__dot-core {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition:
    width 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.belt-pagination__dot.is-active .belt-pagination__dot-core {
  width: 1.12rem;
  background: rgba(226, 93, 29, 0.92);
  box-shadow: 0 0 0 1px rgba(226, 93, 29, 0.18);
}

.belt-pagination__dot:not(.is-active):hover .belt-pagination__dot-core,
.belt-pagination__dot:not(.is-active):focus-visible .belt-pagination__dot-core {
  background: rgba(255, 255, 255, 0.5);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.link-arrow::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.75rem;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-reasons-section .section-header h2 {
  text-wrap: balance;
  letter-spacing: 0.1em;
}

.feature-reasons-section {
  --feature-reasons-title-space: 1.5rem;
  --feature-reasons-title-top-space: 2.25rem;
}

.feature-reasons-section .section-header {
  margin-top: var(--feature-reasons-title-top-space);
}

.feature-grid {
  margin-top: var(--feature-reasons-title-space);
}

.feature-reasons-title-accent {
  display: inline;
  color: inherit;
  font-size: 1em;
}

.feature-metrics-grid {
  display: none;
}

.feature-metric-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.feature-metric-icon {
  width: clamp(3.6rem, 11.5vw, 4.3rem);
  height: clamp(3.6rem, 11.5vw, 4.3rem);
  margin-bottom: 0.35rem;
  color: var(--text-light);
}

.feature-metric-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke-width: 1.35;
}

.feature-metric-value {
  font-size: clamp(1.6rem, 4.8vw, 2.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--orange);
}

.feature-metric-value--compact {
  letter-spacing: 0.03em;
}

.feature-metric-label {
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.feature-card {
  padding: 1.75rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transform: translate3d(80px, 0, 0);
  transition: transform 1.15s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.15s ease;
  transition-delay: var(--delay, 0s);
}

.feature-card.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: 24px;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(226, 93, 29, 0.2), rgba(5, 5, 5, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  pointer-events: none;
}

.timeline {
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5rem;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--orange);
  border-radius: 50%;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.value-card {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card);
}

/* ========================================
   Process Timeline - Premium Horizontal Design
   ======================================== */

.custom-section__inner--full {
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  grid-template-columns: none !important;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem) !important;
  gap: 0 !important;
}

.custom-section__content--centered {
  text-align: center !important;
  max-width: 700px;
  margin: 0 auto 2.5rem !important;
  width: 100%;
  padding-top: 0;
}

.custom-section__content--centered .section-header {
  align-items: center !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-section__content--centered .section-header p {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.custom-section__content--centered .section-header h2 {
  font-size: 2rem;
  margin: 0;
}

.custom-section__media--full {
  width: 100% !important;
  max-width: none !important;
}

.flow-intro {
  margin: 0.75rem auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-timeline--horizontal {
  position: relative;
  padding: 1.5rem 0;
  margin: 3rem 0 0 0;
  width: 100%;
  overflow: visible;
}

.timeline-track {
  position: absolute;
  left: -100px;
  right: -100px;
  top: 52px;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(226, 93, 29, 0) 0%,
    rgba(226, 93, 29, 0.25) 8%,
    rgba(226, 93, 29, 0.5) 50%,
    rgba(226, 93, 29, 0.25) 92%,
    rgba(226, 93, 29, 0) 100%
  );
  z-index: 0;
}

.process-steps--horizontal {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  width: 100%;
  justify-items: center;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 360px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
  transform: scale(1) translateX(0);
  opacity: 1;
  will-change: transform, opacity;
}

.step-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  order: -1;
  opacity: 0;
  transform: scale(0.5);
}

/* 当section可见时触发动画 */
.custom-section--flow.is-visible .step-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.custom-section--flow.is-visible .step-marker {
  animation: scaleIn 0.7s ease-out forwards;
}

/* 即使动画完成,描述文字仍保持隐藏 */
.custom-section--flow.is-visible .step-description {
  opacity: 0 !important;
  max-height: 0 !important;
}

/* 每个步骤的动画延迟 */
.custom-section--flow.is-visible .process-step[data-step="1"] .step-content { animation-delay: 0.2s; }
.custom-section--flow.is-visible .process-step[data-step="1"] .step-marker { animation-delay: 0s; }

.custom-section--flow.is-visible .process-step[data-step="2"] .step-content { animation-delay: 0.5s; }
.custom-section--flow.is-visible .process-step[data-step="2"] .step-marker { animation-delay: 0.3s; }

.custom-section--flow.is-visible .process-step[data-step="3"] .step-content { animation-delay: 0.8s; }
.custom-section--flow.is-visible .process-step[data-step="3"] .step-marker { animation-delay: 0.6s; }

.custom-section--flow.is-visible .process-step[data-step="4"] .step-content { animation-delay: 1.1s; }
.custom-section--flow.is-visible .process-step[data-step="4"] .step-marker { animation-delay: 0.9s; }

.custom-section--flow.is-visible .process-step[data-step="5"] .step-content { animation-delay: 1.4s; }
.custom-section--flow.is-visible .process-step[data-step="5"] .step-marker { animation-delay: 1.2s; }

.custom-section--flow.is-visible .process-step[data-step="6"] .step-content { animation-delay: 1.7s; }
.custom-section--flow.is-visible .process-step[data-step="6"] .step-marker { animation-delay: 1.5s; }

.step-number {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #d94d15 100%);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  box-shadow: 
    0 6px 18px rgba(226, 93, 29, 0.4),
    0 2px 6px rgba(226, 93, 29, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
}

.step-number__text {
  display: inline-block;
  line-height: 1;
}

.step-number__icon {
  display: none;
  width: 14px;
  height: 14px;
}

.step-number__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.step-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.step-content {
  padding: 2rem 1.75rem;
  border-radius: 20px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), rgba(5, 5, 5, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  min-height: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(30px);
  will-change: border-color, box-shadow, background;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--orange) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 0.75rem;
  color: var(--orange);
  opacity: 0.85;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(226, 93, 29, 0.3));
}

.step-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.step-description {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  flex: 1;
  opacity: 0 !important;
  max-height: 0 !important;
  overflow: hidden;
}

/* 悬停效果 - 使用 JavaScript 类控制 */
.process-step--hovered {
  transform: scale(1.2) !important;
  z-index: 10 !important;
}

.process-step--shift-left {
  transform: translateX(-40px) scale(0.85) !important;
  opacity: 0.7 !important;
}

.process-step--shift-right {
  transform: translateX(40px) scale(0.85) !important;
  opacity: 0.7 !important;
}

.process-step--hovered .step-content {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(226, 93, 29, 0.3);
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), rgba(5, 5, 5, 0.85));
}

.process-step--hovered .step-content::before {
  opacity: 1;
}

.process-step--hovered .step-number {
  transform: scale(1.15);
  box-shadow: 
    0 15px 40px rgba(226, 93, 29, 0.6),
    0 5px 15px rgba(226, 93, 29, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.process-step--hovered .step-icon {
  transform: scale(1.15) translateY(-2px);
  opacity: 1;
  color: #ff7a3d;
}

.process-step--hovered .step-title {
  color: #ffffff;
}

.process-step--hovered .step-description {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1 !important;
  max-height: 100px !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .process-steps--horizontal {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  
  .process-step {
    max-width: 360px;
  }
  
  .step-content {
    min-height: 260px;
    height: 260px;
  }
}

@media (max-width: 900px) {
  .process-steps--horizontal {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .process-step {
    max-width: 320px;
  }
  
  .step-marker {
    width: 52px;
    height: 52px;
  }
  
  .step-number {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }
  
  .step-content {
    min-height: 240px;
    height: 240px;
    padding: 1.75rem 1.5rem;
  }
  
  .timeline-track {
    display: none;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .process-steps--horizontal {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-step {
    max-width: 100%;
  }
  
  .step-marker {
    width: 56px;
    height: 56px;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  
  .step-icon {
    width: 42px;
    height: 42px;
  }
  
  .step-content {
    min-height: auto;
    height: auto;
    padding: 1.5rem 1.25rem;
  }
  
  .flow-intro {
    font-size: 0.9rem;
  }
}

.product-tab {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-tab.is-active {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

.contact-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-panel {
  padding: 1.75rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card);
}

.contact-panel h3 {
  margin-top: 0;
}

.belt-intro {
  margin-bottom: 4rem;
}

.belt-hub {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.belt-filter-panel {
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(5, 5, 5, 0.7) 55%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  position: sticky;
  top: 6rem;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.belt-filter-panel__body {
  padding: 2rem;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}

.belt-filter-panel .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: -0.35rem 0 1.4rem -0.45rem;
}

.filter-block {
  margin-bottom: 1.6rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-block__section + .filter-block__section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.filter-heading-group {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.filter-block:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-heading {
  margin: 0;
  line-height: 1;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.length-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 1.3rem;
  min-width: 90px;
  cursor: pointer;
}

.length-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.length-toggle-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.7rem;
  height: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.length-toggle-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text-light);
}

.length-toggle input:checked + .length-toggle-pill {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
  box-shadow: 0 10px 18px rgba(226, 93, 29, 0.3);
}

.length-toggle input:checked + .length-toggle-pill:hover {
  background: rgba(226, 93, 29, 0.08);
  border-color: rgba(226, 93, 29, 0.85);
  color: var(--orange);
  box-shadow: 0 12px 20px rgba(226, 93, 29, 0.3);
}

.length-toggle input:focus-visible + .length-toggle-pill {
  outline: 2px solid rgba(226, 93, 29, 0.4);
  outline-offset: 2px;
}

.filter-hint {
  margin: 0.35rem 0 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.belt-filter-panel small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.belt-filter-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.slider-display {
  --slider-progress: 0.4;
  --slider-progress-width: 40%;
  --switch-padding: 0.3rem;
  position: relative;
  margin: 0.9rem 0 0.9rem;
  padding: var(--switch-padding);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(2 * var(--switch-padding) + 2rem);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}

.slider-display--secondary {
  margin-top: 1.5rem;
}

.slider-display--compact {
  --switch-padding: 0.2rem;
  margin: 0.25rem 0 0.35rem;
  min-height: calc(2 * var(--switch-padding) + 1rem);
}

.spec-dimension__body .slider-display--compact {
  margin-bottom: -0.3rem;
}

.slider-display.is-disabled {
  opacity: 0.4;
}

.slider-display::after {
  content: "";
  position: absolute;
  top: var(--switch-padding);
  bottom: var(--switch-padding);
  left: var(--switch-padding);
  width: var(--slider-progress-width);
  max-width: calc(100% - var(--switch-padding) * 2);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(226, 93, 29, 0.55), rgba(226, 93, 29, 0.15));
  transition: width 0.3s ease;
  opacity: 0.7;
  pointer-events: none;
}

.slider-display > * {
  position: relative;
  z-index: 1;
}

.slider-display-main {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.15rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.slider-display-main .slider-display-label,
.slider-display-main .slider-display-value,
.slider-display-main .slider-display-unit {
  justify-self: unset;
  text-align: inherit;
}

.slider-display-value {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--orange);
  transition: color 0.2s ease, transform 0.2s ease;
}

.slider-display-unit {
  font-size: 0.75rem;
  font-weight: 600;
}

.slider-display-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

.slider-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  margin: 1.2rem 0 0.6rem;
}


.belt-filter-panel input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0.25rem 0 0.75rem;
}

.belt-filter-panel input[type="range"]:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.belt-filter-panel input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(226, 93, 29, 0.5));
  border-radius: 999px;
}

.belt-filter-panel input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  margin-top: -8px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(226, 93, 29, 0.35);
}

.belt-filter-panel input[type="range"]::-moz-range-track {
  height: 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(226, 93, 29, 0.5));
  border-radius: 999px;
}

.belt-filter-panel input[type="range"]::-moz-range-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(226, 93, 29, 0.35);
}

.slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.spec-dimensions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.spec-dimension {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}


.spec-dimension__body {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.45rem;
  row-gap: 0.4rem;
  align-items: center;
}

.spec-dimension__body .spec-dimension__heading {
  grid-column: 1;
  grid-row: 1;
  white-space: nowrap;
}

.spec-dimension__body .slider-display {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 230px;
  margin-top: 0;
}

.spec-dimension__slider {
  grid-column: 2;
  grid-row: 2;
  max-width: 230px;
  width: 100%;
}
.spec-dimension__heading {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.6);
}

.spec-dimension__body {
  margin-top: 0.35rem;
}

.spec-dimension input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  border: none;
  margin: 0.05rem 0 0.2rem;
}

.spec-dimension input[type="range"]::-webkit-slider-runnable-track {
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(226, 93, 29, 0.5));
  border-radius: 999px;
}

.spec-dimension input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  margin-top: -6px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(226, 93, 29, 0.3);
}

.spec-dimension input[type="range"]::-moz-range-track {
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(226, 93, 29, 0.5));
  border-radius: 999px;
}

.spec-dimension input[type="range"]::-moz-range-thumb {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(226, 93, 29, 0.3);
}

.belt-browser {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 5, 5, 0.4);
  padding: 1.5rem 2rem 5rem;
  position: relative;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.belt-hub-meta {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  text-align: right;
}

#belt-count {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.belt-filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.4rem 1.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.belt-search-bar {
  display: none;
}

.belt-hub-selectors {
  display: none;
}

.gender-switch {
  --gender-index: 0;
  --gender-count: 3;
  --switch-padding: 0.3rem;
  --switch-slot: calc((100% - var(--switch-padding) * 2) / var(--gender-count));
  display: flex;
  gap: 0;
  position: relative;
  width: 100%;
  padding: var(--switch-padding);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  isolation: isolate;
  min-height: calc(2 * var(--switch-padding) + 2rem);
  margin-top: 0.65rem;
}

.gender-switch::before {
  content: "";
  position: absolute;
  top: var(--switch-padding);
  bottom: var(--switch-padding);
  left: var(--switch-padding);
  width: var(--switch-slot);
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 10px 25px rgba(226, 93, 29, 0.45);
  transform: translateX(calc(var(--gender-index, 0) * 100%));
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.gender-pill {
  background: transparent;
  color: var(--gray);
  border: none;
  padding: 0.45rem 0;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  z-index: 1;
  flex: 1 1 0%;
}

.gender-pill.is-active {
  color: var(--black);
  font-weight: 600;
}
.style-filter {
  display: flex;
  top: 0;
  bottom: 0;
  margin: 0.65rem 0 0;
}


.style-switch {
  --style-count: 4;
  --style-index: 0;
  --switch-padding: 0.3rem;
  --style-slot: calc((100% - var(--switch-padding) * 2) / var(--style-count));
  position: relative;
  display: flex;
  gap: 0;
  padding: var(--switch-padding);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  isolation: isolate;
  min-height: calc(2 * var(--switch-padding) + 2rem);
}

.style-switch::before {
  content: "";
  position: absolute;
  top: var(--switch-padding);
  left: var(--switch-padding);
  width: var(--style-slot);
  height: calc(100% - var(--switch-padding) * 2);
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(226, 93, 29, 0.35);
  transform: translateX(calc(var(--style-index, 0) * 100%));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.style-switch button {
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 0.4rem 0;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
  flex: 1 1 calc(100% / var(--style-count));
}

.style-switch button.is-active {
  color: var(--black);
  font-weight: 600;
}

.belt-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.belt-card {
  border-radius: 20px;
  border: none;
  background: linear-gradient(
    165deg,
    rgba(33, 37, 44, 0.86) 0%,
    rgba(23, 26, 32, 0.9) 100%
  );
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Scroll Animation Init State */
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.belt-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.belt-card__media {
  height: 280px;
  background: linear-gradient(120deg, rgba(226, 93, 29, 0.25), rgba(5, 5, 5, 0.85));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  transition: transform 0.5s ease;
  cursor: pointer;
}

@supports (aspect-ratio: 1 / 1) {
  .belt-card__media {
    height: auto;
    aspect-ratio: 1 / 1.15;
  }
}

.belt-card__badge {
  display: none;
}

.belt-card__body {
  padding: 0.1rem 0.9rem 0.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: transform 0.4s ease;
  min-height: 110px;
  position: relative;
}

.belt-card__meta-id {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.belt-card__body h3 {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-light);
  min-height: 1.4rem;
}

.belt-attributes {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.2rem 0.55rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  min-height: 2.6rem;
}

.belt-attribute-row {
  min-width: 0;
}

.belt-attribute-row--identity {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.35rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.belt-attribute-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.belt-attribute-text--id {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
}

.belt-attribute-text--value {
  color: rgba(255, 255, 255, 0.88);
}

.belt-colors {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.belt-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: var(--dot-color, #d9d9d9);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.belt-attribute--colors {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  margin-left: 0;
  min-width: 0;
}

.belt-attribute--colors .belt-colors {
  margin: 0;
  gap: 0.3rem;
}

.belt-card:hover .belt-card__media {
  transform: scale(1.08);
  transition-duration: 0.6s;
}

.belt-card__cta {
  margin-top: 0;
  align-self: auto;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.belt-card__cta::after {
  content: '›';
  font-size: 0.8rem;
}

.belt-card__footer {
  padding: 0.1rem 0.9rem 0.65rem;
  display: flex;
  justify-content: flex-end;
}

.belt-card__cta:hover,
.belt-card__cta:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.belt-card:hover .belt-card__body {
  transform: translateY(12px);
}

.belt-card__body h3:empty {
  display: none;
}

body[data-page="products"][data-subpage="overview"] .belt-grid {
  gap: clamp(1.15rem, 2.1vw, 1.55rem);
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
}

body[data-page="products"][data-subpage="overview"] .belt-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 20%),
    linear-gradient(165deg, rgba(24, 28, 34, 0.96) 0%, rgba(11, 13, 18, 0.98) 100%);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body[data-page="products"][data-subpage="overview"] .belt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

body[data-page="products"][data-subpage="overview"] .belt-card::after {
  content: none;
}

body[data-page="products"][data-subpage="overview"] .belt-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 34px 72px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(226, 93, 29, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body[data-page="products"][data-subpage="overview"] .belt-card__media {
  background-position: center 44%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  isolation: isolate;
}

@supports (aspect-ratio: 1 / 1) {
  body[data-page="products"][data-subpage="overview"] .belt-card__media {
    aspect-ratio: 1 / 1.08;
  }
}

body[data-page="products"][data-subpage="overview"] .belt-card__media::before {
  content: none;
}

body[data-page="products"][data-subpage="overview"] .belt-card__badge {
  display: inline-flex;
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  align-items: center;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 14, 0.52);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

body[data-page="products"][data-subpage="overview"] .belt-card__price {
  position: absolute;
  right: 0;
  bottom: 0.88rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.34rem;
  width: auto;
  max-width: calc(100% - 0.75rem);
  min-width: max(34%, 6.7rem);
  box-sizing: border-box;
  padding: 0.42rem 0.74rem 0.42rem 1.08rem;
  border: 1px solid rgba(226, 93, 29, 0.78);
  background: rgba(226, 93, 29, 0.28);
  color: rgba(18, 9, 4, 0.96);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  border-radius: 14px 0 0 14px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body[data-page="products"][data-subpage="overview"] .belt-card__price::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 50%;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

body[data-page="products"][data-subpage="overview"] .belt-card__price-label {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}

body[data-page="products"][data-subpage="overview"] .belt-card__price-value {
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

body[data-page="products"][data-subpage="overview"] .belt-card__body {
  padding: 0.92rem 1rem 0.28rem;
  min-height: auto;
  gap: 0.38rem;
  background: rgba(10, 12, 16, 0.98);
}

body[data-page="products"][data-subpage="overview"] .belt-card__body h3 {
  min-height: 0;
}

body[data-page="products"][data-subpage="overview"] .belt-attributes {
  gap: 0.42rem 0.85rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
}

body[data-page="products"][data-subpage="overview"] .belt-attribute-row--identity {
  position: relative;
  padding-bottom: 0.52rem;
  margin-bottom: 0.04rem;
  border-bottom: none;
}

body[data-page="products"][data-subpage="overview"] .belt-attribute-row--identity::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(226, 93, 29, 0.88) 0%,
    rgba(226, 93, 29, 0.36) 20%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

body[data-page="products"][data-subpage="overview"] .belt-attribute-text--id {
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

body[data-page="products"][data-subpage="overview"] .belt-attribute-text--value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

body[data-page="products"][data-subpage="overview"] .belt-attribute--colors {
  gap: 0.42rem;
}

body[data-page="products"][data-subpage="overview"] .belt-color-dot {
  width: 12px;
  height: 12px;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(5, 5, 5, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body[data-page="products"][data-subpage="overview"] .belt-card__footer {
  padding: 0.78rem 1rem 1rem;
  margin-top: auto;
}

body[data-page="products"][data-subpage="overview"] .belt-card__cta {
  width: 100%;
  justify-content: center;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body[data-page="products"][data-subpage="overview"] .belt-card__cta::after {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  font-size: 0;
}

body[data-page="products"][data-subpage="overview"] .belt-card:hover .belt-card__body {
  transform: none;
}

body[data-page="products"][data-subpage="overview"] .belt-card:hover .belt-card__media {
  transform: scale(1.04);
}

.belt-empty-state {
  margin-top: 1.5rem;
  padding: 2rem;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  text-align: center;
  color: var(--gray);
}

.belt-loading {
  color: var(--gray);
  padding: 1rem 0;
}

@keyframes beltSkeletonShimmer {
  100% {
    transform: translateX(100%);
  }
}

.form-card,
.map-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.5);
  padding: 2rem;
}

.map-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-placeholder {
  flex: 1;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav {
    --nav-height: 64px;
    --mobile-nav-control-pad: 0.6rem;
    --mobile-nav-control-size: 36px;
    --mobile-nav-control-rail: calc(var(--mobile-nav-control-size) + var(--mobile-nav-control-pad));
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    transform: none;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 0.85rem;
    transition: none;
    overflow-x: clip;
    overflow-y: visible;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    left: var(--mobile-nav-control-pad);
    z-index: 1002;
  }

  .nav.is-drawer-open .nav-toggle span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 1.5px;
    border-radius: 0;
  }

  .nav.is-drawer-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-drawer-open .nav-toggle span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    height: 1.5px;
    border-radius: 0;
  }

  .nav.is-anchored {
    padding: 0.85rem 0.85rem;
  }

  .nav .logo {
    flex: 0 1 calc(100% - (var(--mobile-nav-control-rail) * 2));
    width: calc(100% - (var(--mobile-nav-control-rail) * 2));
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    max-width: calc(100% - (var(--mobile-nav-control-rail) * 2));
    min-width: 0;
    padding: 0 0.2rem;
  }

  .nav:not(.is-anchored) .logo {
    margin-left: 0;
  }

  .nav .logo {
    font-size: clamp(0.9rem, 3.4vw, 1.08rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1;
    gap: 0.45rem;
    transition: gap 0.92s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav .logo > span:last-child {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform-origin: left center;
    transition: max-width 1.05s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.82s ease,
      transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav .logo .logo-mark {
    transition: transform 0.92s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav.is-logo-compact .logo {
    gap: 0;
  }

  .nav.is-logo-compact .logo > span:last-child {
    max-width: 0;
    opacity: 0;
    transform: translateX(-0.3rem);
    pointer-events: none;
  }

  .nav .logo img {
    height: clamp(11px, 2.4vw, 14px);
  }

  body[data-page="products"][data-ui-language="en"] .nav .logo .logo-wordmark,
  body[data-page="products"][data-ui-language="it"] .nav .logo .logo-wordmark,
  body[data-page="products"][data-ui-language="es"] .nav .logo .logo-wordmark {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.08rem;
    min-height: 2.12em;
    font-size: clamp(0.48rem, 1.7vw, 0.62rem);
    letter-spacing: 0.04em;
    line-height: 1.02;
    text-align: left;
    white-space: normal;
  }

  body[data-page="products"][data-ui-language="en"] .nav .logo .logo-wordmark__line,
  body[data-page="products"][data-ui-language="it"] .nav .logo .logo-wordmark__line,
  body[data-page="products"][data-ui-language="es"] .nav .logo .logo-wordmark__line {
    display: block;
    line-height: 1.02;
  }


  .nav-drawer {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    max-height: calc(100vh - var(--nav-height, 64px));
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.8rem 0.4rem;
    transform-origin: top;
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease, visibility 0s linear 0.4s;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    pointer-events: none;
  }

  .nav.is-drawer-open .nav-drawer {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease, visibility 0s linear 0s;
  }


  .nav-backdrop {
    position: fixed;
    top: var(--nav-bottom, var(--nav-height, 64px));
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 997;
    display: block;
  }

  .nav.is-drawer-open .nav-backdrop,
  .nav.is-language-menu-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  
  .custom-matrix-grid {
    flex-direction: column;
  }
  
  .custom-matrix {
    min-height: clamp(360px, 55vh, 460px);
    height: auto;
    padding: 1.25rem;
    border-radius: 32px;
    flex: 1 1 auto;
  }
  
  .custom-matrix__details {
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    bottom: clamp(3.25rem, 12vw, 4.25rem);
  }
  
  .custom-matrix.is-open,
  .custom-matrix.is-closing {
    flex-grow: 1;
    border-radius: 30px;
  }
  
  .custom-matrix__sections {
    grid-template-columns: 1fr;
  }
  
  .custom-matrix__details {
    gap: 1.1rem;
  }
  
  .nav-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .nav-drawer li > a {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    justify-content: flex-start;
    width: 100%;
    line-height: 1.2;
    min-height: 54px;
    align-items: center;
    display: flex;
    padding: 1.05rem 0;
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease, padding-left 0.3s ease;
  }
  
  .nav-drawer li > a:active {
    padding-left: 8px;
    color: var(--orange, #c5a47e);
  }

  .nav-drawer li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .nav-drawer li:last-child {
    border-bottom: none;
  }

  .nav-drawer .has-submenu > a {
    padding-right: 0;
  }

  .nav-drawer .has-submenu > a::before {
    content: none;
  }

  .nav-drawer .has-submenu > a::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-bottom: 1.5px solid rgba(255,255,255,0.5);
    border-right: 1.5px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    margin-left: auto;
    margin-right: 5px;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s ease;
  }

  .nav-drawer .has-submenu.is-open > a::after {
    transform: rotate(225deg) translate(-2px, -2px);
    border-color: var(--orange, #c5a47e);
  }

  .nav-drawer .has-submenu.is-open > a {
    color: var(--orange);
  }

  .nav-drawer .has-submenu::after,
  .nav-drawer .nav-submenu::before,
  .nav-drawer .nav-submenu::after {
    content: none;
  }

  .nav-drawer .nav-submenu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-4px);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.28s ease, padding 0.28s ease;
  }

  .nav-drawer .has-submenu.is-open .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0 0 0.6rem 0.75rem;
    max-height: 320px;
    transform: translateY(0);
  }

  .nav-drawer .nav-submenu a {
    justify-content: flex-start;
    border-bottom: none;
    padding: 0.35rem 0;
    font-size: clamp(0.8rem, 3.15vw, 0.9rem);
    letter-spacing: 0.1em;
    width: 100%;
  }

  .nav-drawer .nav-submenu a:first-child {
    padding-top: 0;
  }

  .nav > .nav-utility {
    position: absolute;
    top: calc(50% - (var(--mobile-nav-control-size) / 2));
    right: var(--mobile-nav-control-pad);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--mobile-nav-control-size);
    height: var(--mobile-nav-control-size);
    margin-left: 0;
    border-bottom: none;
  }

  .nav > .nav-utility .language-switch {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }

  .nav > .nav-utility .language-switch__toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .nav-drawer .language-switch__label--icon {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .nav-drawer .language-switch__label--icon::before {
    content: "切换语言";
    display: inline-block;
  }

  html[lang="en"] .nav-drawer .language-switch__label--icon::before {
    content: "Change language";
    letter-spacing: 0.03em;
  }

  .nav > .nav-utility .language-switch__toggle--icon {
    width: var(--mobile-nav-control-size);
    min-width: var(--mobile-nav-control-size);
    height: var(--mobile-nav-control-size);
    min-height: var(--mobile-nav-control-size);
    padding: 0;
    line-height: 1;
    font-size: 0;
    font-weight: 400;
    letter-spacing: 0;
    gap: 0;
    color: rgba(255, 255, 255, 0.96);
    transition: color 0.2s ease;
  }

  .nav > .nav-utility .language-switch__label--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .nav > .nav-utility .language-switch__icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
    transition:
      transform 0.34s cubic-bezier(0.19, 1, 0.22, 1),
      opacity 0.12s ease 0.12s;
  }

  .nav > .nav-utility .language-switch__toggle--icon::before,
  .nav > .nav-utility .language-switch__toggle--icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1.5px;
    border: none;
    background: currentColor;
    border-radius: 0;
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.72) rotate(0deg);
    transition:
      transform 0.24s cubic-bezier(0.19, 1, 0.22, 1),
      opacity 0.12s ease;
  }

  .nav > .nav-utility .language-switch:not(.is-open) .language-switch__toggle--icon::before,
  .nav > .nav-utility .language-switch:not(.is-open):hover .language-switch__toggle--icon::before,
  .nav > .nav-utility .language-switch:not(.is-open):focus-within .language-switch__toggle--icon::before,
  .nav > .nav-utility .language-switch:not(.is-open) .language-switch__toggle--icon::after,
  .nav > .nav-utility .language-switch:not(.is-open):hover .language-switch__toggle--icon::after,
  .nav > .nav-utility .language-switch:not(.is-open):focus-within .language-switch__toggle--icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.72) rotate(0deg);
  }

  .nav > .nav-utility .language-switch.is-open .language-switch__icon svg {
    opacity: 0;
    transform: rotate(180deg) scale(0.76);
    transition:
      transform 0.34s cubic-bezier(0.19, 1, 0.22, 1),
      opacity 0.12s ease 0.16s;
  }

  .nav > .nav-utility .language-switch.is-open .language-switch__toggle--icon::before {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg);
    transition-delay: 0.16s, 0.16s;
  }

  .nav > .nav-utility .language-switch.is-open .language-switch__toggle--icon::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition-delay: 0.16s, 0.16s;
  }

  .nav > .nav-utility .language-switch__menu {
    position: fixed;
    top: calc(var(--nav-bottom, var(--nav-height, 64px)) - 1px);
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: calc(100vh - var(--nav-bottom, var(--nav-height, 64px)) + 1px);
    padding: 0 1.8rem 0.4rem;
    box-sizing: border-box;
    border: none;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateY(-20px);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease, visibility 0s linear 0.4s;
  }

  .nav > .nav-utility .language-switch.is-open .language-switch__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease, visibility 0s linear 0s;
  }

  .nav > .nav-utility .language-switch__option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    width: 100%;
    min-height: 54px;
    padding: 1.05rem 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: left;
    text-transform: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
  }

  .nav > .nav-utility .language-switch__option:last-child {
    border-bottom: none;
  }

  .nav > .nav-utility .language-switch__option:active,
  .nav > .nav-utility .language-switch__option.is-active,
  .nav > .nav-utility .language-switch__option:focus-visible {
    color: var(--orange);
    outline: none;
  }

  .nav > .nav-utility .language-switch__code {
    display: none;
  }

  .nav > .nav-utility .language-switch__name {
    display: inline-flex;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
  }

  .nav-drawer .language-switch__menu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    border: none;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-clip: border-box;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-4px);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.28s ease, padding 0.28s ease;
  }

  .nav-drawer .language-switch.is-open .language-switch__menu {
    opacity: 1;
    visibility: visible;
    padding: 0 0 0.6rem 0.75rem;
    max-height: 320px;
    transform: translateY(0);
  }

  .nav-drawer .language-switch__option {
    justify-content: flex-start;
    border-bottom: none;
    padding: 0.35rem 0;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    width: 100%;
    text-transform: none;
  }

  .nav-drawer .language-switch__option:first-child {
    padding-top: 0;
  }

  .nav-drawer .language-switch__flag,
  .nav-drawer .language-switch__code {
    display: none;
  }

  .nav-drawer .language-switch__name {
    display: inline-flex;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .seasonal-drop-grid {
    grid-template-columns: 1fr;
  }

  .current-drop-layout {
    grid-template-columns: 1fr;
  }

  .current-drop-panel {
    min-height: auto;
    margin-top: 1rem;
  }

  .current-drop-selector {
    grid-template-columns: repeat(2, minmax(72px, 1fr));
  }

  .current-drop-hero {
    min-height: 280px;
  }

  .belt-hub {
    grid-template-columns: 1fr;
  }

  .belt-filter-panel {
    position: static;
  }

  .belt-filter-panel__body {
    max-height: none;
    overflow: visible;
  }

  .belt-browser {
    padding-bottom: 2.5rem;
  }

  .belt-hub-meta {
    position: static;
    margin-top: 1rem;
    justify-content: flex-start;
    text-align: left;
  }

  .belt-filter-chip {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .belt-grid {
    gap: 1rem;
  }

  .seasonal-drop-grid {
    grid-template-columns: 1fr;
  }

  .seasonal-showcase,
  .seasonal-history {
    padding: 1.75rem;
  }

  .page-hero {
    padding: clamp(4.5rem, 22vw, 6.5rem) 1.25rem 3rem;
  }

  .products {
    padding: 2rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    min-width: auto;
  }
}
.history-scroll:hover {
  scrollbar-width: thin;
}

.history-scroll:hover::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.history-scroll:hover::-webkit-scrollbar-track {
  background: rgba(200, 200, 200, 0.25);
  border-radius: 999px;
}

.history-scroll:hover::-webkit-scrollbar-thumb {
  background: rgba(200, 200, 200, 0.7);
  border-radius: 999px;
}

.history-scroll:hover::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 200, 200, 0.95);
}

/* Contact Hero Section */
.contact-hero {
  height: 100%;
  padding: clamp(22px, 4vw, 64px) 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--contact-gap);
  align-items: center;
}

.contact-hero__content {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: clamp(1.8rem, 3.5vw, 3rem);
  margin-top: 0;
  min-height: max(var(--contact-hero-frame-height, 0px), clamp(320px, 50vh, 580px));
  align-content: center;
  width: min-content;
  max-width: 100%;
}

.contact-hero__heading {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.4vw, 1.1rem);
}

.contact-hero__content .badge,
.contact-hero__content h1 {
  transform: translateY(0);
}

.contact-hero__content h1 {
  white-space: nowrap;
  font-size: var(--contact-h1);
  line-height: 1.05;
  margin: 0.1rem 0 0.2rem 0;
}

.contact-hero__content p {
  margin: 0 0 0 0.5rem;
  font-size: var(--contact-lead);
  line-height: 2.2;
  max-width: 90%;
  align-self: center;
  transform: translateY(-0.2rem);
}

.contact-hero__actions {
  display: flex;
  gap: clamp(10px, 1.6vw, 20px);
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent; /* Ensure consistent box model */
}

.contact-hero .btn {
  padding: clamp(0.85rem, 1.2vw, 1.1rem) clamp(1.8rem, 3vw, 2.6rem);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.btn--primary {
  background: var(--orange);
  color: #000;
}

.btn--primary:active {
  transform: scale(0.98);
}

@media (hover: hover) {
  .btn--primary:hover {
    background: #d45a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 93, 29, 0.3);
  }
}

.btn--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:active {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0.98);
}

@media (hover: hover) {
  .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
  }
}

/* Carousel Styles */
.contact-hero__carousel {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 100vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  align-self: center;
  margin-top: clamp(12px, 2.2vw, 28px);
  height: auto;
  transform: translateX(0);
}

/* Gallery-style premium frame */
.hero-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  max-height: 100vh;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Outer frame */
.hero-frame--gallery {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  padding: 16px;
}

/* Inner mat + subtle depth */
.hero-frame--gallery::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 18px 40px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

/* Right media size: harmonious range */
.hero-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  max-height: 100vh;
}

/* If your hero uses flex, make right column stable */
.hero-right {
  flex: 0 0 clamp(520px, 44vw, 760px);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  display: none;
}

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  z-index: 10;
}

.carousel-dots .belt-pagination__dot-core {
  background: rgba(255, 255, 255, 0.32);
}

.carousel-dots .belt-pagination__dot.is-active .belt-pagination__dot-core {
  width: 1.12rem;
  background: rgba(226, 93, 29, 0.92);
  box-shadow: 0 0 0 1px rgba(226, 93, 29, 0.18);
}

@media (max-width: 1024px) {
  body[data-page="contact"] {
    --contact-gap: clamp(12px, 3.2vw, 20px);
  }

  .contact-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
    width: 100%;
  }

  .contact-hero__content {
    min-height: auto;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .contact-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact-hero .btn {
    width: 100%;
    min-height: clamp(36px, 4.8svh, 56px);
    padding: clamp(9px, 1.4svh, 14px) clamp(1.8rem, 6vw, 2.6rem);
  }
}

@media (max-width: 768px) {
  body[data-page="contact"] {
    --contact-top-pad: 0px;
    --contact-pad-x: clamp(16px, 5vw, 24px);
    --contact-gap: clamp(12px, 4vw, 20px);
    --contact-h1: clamp(32px, 8vw, 40px);
    --contact-text-width: clamp(18rem, 80vw, 30rem);
    --contact-hero-pad-y: clamp(20px, 6vw, 40px);
    --contact-hero-pad-bottom: 0px;
    --contact-title-pad-top: var(--nav-height, 64px);
    --contact-title-margin-top: 0;
    --contact-title-h-margin-top: 0.5rem;
    --contact-title-h-margin-bottom: 0.5rem;
    --contact-location-offset: clamp(8px, 2.2vw, 16px);
    --contact-location-title-pad: clamp(16px, 4.2vw, 32px);
    --contact-location-title-margin-top: 5svh;
    --contact-location-nav-gap: clamp(0.5rem, 1.2vh, 0.9rem);
  }

  .contact-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    --contact-hero-spacing: clamp(12px, 2.5svh, 24px);
    gap: var(--contact-hero-spacing);
    grid-template-columns: 1fr;
    min-height: auto;
    position: relative;
    padding-top: var(--nav-height, 64px);
    padding-bottom: var(--contact-hero-pad-bottom);
    --contact-hero-frame-offset: 0px;
    --contact-hero-frame-height: auto;
  }

  body[data-page="contact"] .contact-screen--hero {
    overflow: hidden;
  }

  .contact-hero__content {
    display: contents;
    min-height: auto;
    width: 100%;
  }

  .contact-hero__heading {
    order: 1;
    margin-top: 4svh;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  body[data-page="contact"] .contact-hero__heading .badge {
    align-self: center;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    opacity: 0.8;
  }

  body[data-page="contact"] .location-section .section-header .badge,
  body[data-page="contact"] .section-header p {
    font-weight: 600;
  }

  body[data-page="contact"] .contact-hero__content h1,
  body[data-page="contact"] .location-section .section-header h2 {
    margin-top: var(--contact-title-h-margin-top);
    margin-bottom: var(--contact-title-h-margin-bottom);
    line-height: 1.2;
    font-weight: 500;
  }

  .contact-hero__carousel {
    height: auto;
    transform: none;
    order: 2;
    margin-top: 0;
    margin-bottom: clamp(10px, 2svh, 20px) !important;
  }

  .contact-hero__content p {
    order: 3;
    margin-top: 0;
    margin-bottom: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero__actions {
    order: 4;
    margin-top: clamp(10px, 2svh, 20px) !important;
  }

  body[data-page="contact"] .location-section {
    align-content: start;
    position: relative;
  }

  body[data-page="contact"] .contact-scroll > .location-section {
    scroll-margin-top: 0;
  }

  body[data-page="contact"] .location-frame {
    padding-top: var(--nav-height, 64px);
    padding-bottom: var(--contact-hero-pad-y);
  }

  body[data-page="contact"] .location-frame .section-header {
    margin-top: var(--contact-location-title-margin-top);
    padding-top: 0;
    align-items: center;
    text-align: center;
  }

  .hero-right {
    flex: none;
    width: 100%;
  }

  .hero-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 45vh;
  }

  .contact-hero__actions {
    flex-direction: column;
    gap: clamp(10px, 2.5vw, 16px);
    margin-top: 0 !important;
    margin-bottom: 0;
  }

  .contact-hero .btn {
    width: 100%;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    border-radius: 999px; /* 更圆润的按钮 */
    font-weight: 500;
  }

  /* 当屏幕高度较小、横屏或接近方形屏幕时，调整为并排按钮和更扁平的轮播图 */
  @media (max-height: 700px), (orientation: landscape), (min-aspect-ratio: 9/10) {
    .contact-hero__actions {
      flex-direction: row;
    }

    .contact-hero .btn {
      width: auto;
      flex: 1;
      padding-left: 0.8rem;
      padding-right: 0.8rem;
    }

    .hero-card {
      aspect-ratio: 16 / 9;
      max-height: 50vh;
    }
  }

  @media (min-aspect-ratio: 9/10) and (max-aspect-ratio: 11/10) {
    body[data-page="contact"] {
      --contact-hero-pad-y: clamp(18px, 5vw, 32px);
      --contact-title-pad-top: var(--contact-hero-pad-y);
    }

    .contact-hero {
      --contact-hero-spacing: clamp(12px, 4vw, 20px);
    }

    .hero-card {
      max-height: 38vh;
    }
  }

  .contact-hero__content h1 {
    white-space: nowrap;
    max-width: none;
  }

  body[data-page="contact"] .hero-frame--gallery {
    padding: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  }

  body[data-page="contact"] .hero-frame--gallery::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 18px 40px rgba(0, 0, 0, 0.25);
    pointer-events: none;
  }

  body[data-page="contact"] .hero-frame img {
    border-radius: 12px;
  }
}

/* Removed duplicate .location-container definition */

.location-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--location-sidebar-pad);
  --location-sidebar-pad: clamp(12px, 2.5vw, 20px);
  padding: var(--location-sidebar-pad);
  border-radius: 24px; /* 更大的圆角 */
  border: 1px solid rgba(255, 255, 255, 0.15); /* 调淡边框 */
  background: rgba(18, 18, 18, 0.65); /* 统一半透明底色 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.location-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  --location-group-radius: 12px;
  border-radius: var(--location-group-radius);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.location-group.is-open {
  border-color: #e85d04;
}

.location-group:hover {
  border-color: #e85d04;
}

.location-tab {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
  color: #fff;
}

.location-tab[data-loc-tab="factory"] {
  padding-left: 1rem;
  padding-right: 1rem;
}

.location-tab--group {
  position: relative;
  padding-right: 2.6rem;
  border: none;
  border-radius: 0;
  background: transparent;
}

.location-tab--group.active {
  background: #e85d04;
  border: none;
  border-radius: calc(var(--location-group-radius) - 1px) calc(var(--location-group-radius) - 1px) 0 0;
  color: #000;
}

.location-group.is-open .location-tab--group.active {
  border-radius: calc(var(--location-group-radius) - 1px) calc(var(--location-group-radius) - 1px) 0 0;
}

.location-group:not(.is-open) .location-tab--group.active {
  border-radius: calc(var(--location-group-radius) - 1px);
}

.location-tab__arrow {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.location-group.is-open .location-tab__arrow {
  transform: translateY(-50%) rotate(225deg);
}

.location-subtabs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0.8rem 0 0.8rem;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    transform 0.5s ease,
    padding 0.5s ease;
}

.location-group:not(.is-open) .location-subtabs {
  pointer-events: none;
}

.location-group:not(.is-open):hover .location-subtabs,
.location-group:not(.is-open):focus-within .location-subtabs {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  padding-top: 0;
  padding-bottom: 0;
}

.location-group.is-open .location-subtabs {
  padding: 0.4rem 0.8rem 0.9rem 0.8rem;
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}

.location-subtab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.6rem;
  border-radius: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-align: left;
}

.location-subtab + .location-subtab {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.location-tab--group.active + .location-subtabs .location-subtab + .location-subtab {
  border-top-color: #e85d04;
}

.location-subtab:hover {
  background: transparent;
  border-top-color: rgba(255, 255, 255, 0.5);
}

.location-tab--group.active + .location-subtabs .location-subtab:hover {
  border-top-color: #e85d04;
}

.location-subtab.active {
  background: transparent;
  color: #e85d04;
  transform: none;
}

.location-tab:hover {
  background: transparent;
  border-color: #e85d04;
}

.location-tab.active {
  background: #e85d04;
  border-color: #e85d04;
  color: #000;
}

.location-tab__title {
  font-weight: 600;
  font-size: 1.1rem;
  color: inherit;
}

.location-tab__desc {
  font-size: 0.8rem;
  opacity: 0.7;
}

.location-content {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(5, 5, 5, 0.7) 55%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

.location-detail {
  position: absolute;
  inset: 0;
  padding: var(--location-map-pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.location-detail.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.location-info {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--location-map-pad);
  height: 100%;
  align-items: start;
}

.location-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  order: 2;
  padding: 0;
}

.location-text__body {
  padding: calc(var(--location-text-pad) - var(--location-map-pad));
  margin-bottom: calc(var(--location-text-pad) - var(--location-map-pad));
}

.location-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.location-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 1.2rem 0;
  color: var(--text-light);
}

.location-addr {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 1.5em);
}

.location-meta {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0.3rem 0;
}

.location-visuals {
  position: relative;
  width: 100%;
  min-height: 450px;
  height: 100%;
  display: flex;
  flex-direction: column;
  order: 3; /* Move to right column (1fr) to ensure visibility */
}

.location-map {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: rgba(0,0,0,0.2);
}

.location-nav-card {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1.2rem;
  border-radius: 16px;
  background: var(--orange);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(226, 93, 29, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
  margin-bottom: 0;
  margin-right: 0;
  align-self: flex-end;
}

.location-nav-card--visit {
  background: transparent;
  color: #e85d04;
  border: 1px solid #e85d04;
  box-shadow: none;
}

.location-nav-card:hover:not(.location-nav-card--visit) {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(226, 93, 29, 0.5);
}

.location-nav-card--visit:hover {
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}

.location-nav-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.location-nav-card__icon svg {
  width: 18px;
  height: 18px;
  fill: #000;
}

.location-nav-card--visit .location-nav-card__icon svg {
  fill: #e85d04;
  transform: rotate(-45deg);
  transform-origin: center;
}

.location-map__iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(1.1) contrast(1.1);
  position: absolute;
  inset: 0;
  z-index: 1;
}

@media (max-width: 900px) {
  body[data-page="contact"] .location-section.reveal,
  body[data-page="contact"] .location-section.reveal.is-visible {
    transform: none;
    will-change: auto;
  }

  body[data-page="contact"] {
    --contact-location-container-height: 70svh;
    --contact-location-map-height: 40svh;
    --contact-location-text-height: 10svh;
    --contact-location-button-height: 4.6svh;
    --contact-location-button-gap: clamp(6px, 1.6svh, 16px);
    --contact-location-tab-height: 6svh;
    --contact-location-info-height: calc(
      var(--contact-location-text-height) +
      var(--contact-location-map-height) +
      var(--contact-location-button-height) +
      var(--contact-location-button-gap)
    );
    --contact-location-detail-height: calc(var(--contact-location-info-height) + (2 * var(--location-map-pad)));
  }

  .location-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr; /* 关键修复：第一行自适应内容高度，第二行填充剩余空间 */
    height: 100%; /* 固定高度填充父容器 */
    gap: clamp(0.5rem, 2vw, 1rem);
    min-height: 0; /* 允许Flex/Grid子项缩小 */
    overflow: hidden; /* 防止溢出 */
  }
  
  .location-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: clamp(0.5rem, 2vw, 1rem);
    overflow: visible;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-shrink: 0;
    /* 移除可能创建 containing block 的属性，确保 fixed 定位相对于视口 */
    transform: none;
    perspective: none;
    filter: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: auto; /* 确保不被拉伸 */
    min-height: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  body[data-page="contact"] .location-sidebar {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: var(--location-map-pad);
    width: 100%;
  }
  
  .location-tab {
    flex: 1; /* 按钮大小自适应 */
    text-align: center;
    width: 0; /* 强制平分宽度 */
    min-width: 0; /* 允许按钮尽量缩小以适应屏幕 */
    /* 参照 .contact-hero .btn 的垂直 padding: clamp(0.85rem, 1.2vw, 1.1rem) */
    padding: clamp(0.4rem, 1.6vw, 0.65rem) 0.5rem; 
    white-space: nowrap; /* 保持文字不换行 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
    height: var(--contact-location-tab-height);
    min-height: var(--contact-location-tab-height);
    max-height: var(--contact-location-tab-height);
  }

  .location-tab[data-loc-tab="factory"] {
    padding: clamp(0.4rem, 1.6vw, 0.65rem) 0.5rem;
  }

  .location-sidebar > .location-tab,
  .location-sidebar > .location-group {
    flex: 1 1 0;
    width: 100%;
    justify-self: stretch;
  }

  /* 针对侧边栏里的 .location-group 也应用 flex: 1 来确保平分 */
  .location-sidebar > .location-group {
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  
  /* 在移动端移除 Web 端下拉时的“平底”效果，保持圆角 */
  .location-group.is-open .location-tab--group.active {
    border-radius: 12px;
  }

  /* 确保组内的按钮填满组容器 */
  .location-group .location-tab {
    width: 100%;
    flex: 1;
    border-radius: 16px !important; /* 统一圆角 */
    border: 1px solid rgba(255, 255, 255, 0.2); 
    background: rgba(255,255,255,0.05); /* 轻微背景 */
  }
  
  .location-group .location-tab.active,
  .location-tab[data-loc-tab="factory"].active {
    background: var(--orange, #c5a47e) !important;
    border-color: var(--orange, #c5a47e) !important;
    color: #000 !important;
    box-shadow: none;
    font-weight: 600;
  }

  .location-tab__title {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    line-height: 1.2;
    font-weight: 500;
  }

  .location-tab__desc {
    font-size: clamp(0.65rem, 2.5vw, 0.75rem);
    line-height: 1.2;
    opacity: 0.7;
  }

  .location-tab--group {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .location-tab__arrow {
    right: 0.6rem;
  }

  .location-tab__arrow {
    transition: none;
  }

  .location-group {
    overflow: visible; /* Allow subtabs to pop out */
    border: none;
    background: transparent;
    border-radius: 0;
  }

  .location-tab--group.active {
    border: 1px solid #e85d04;
  }

  /* 统一处理 location-subtabs 在移动端的状态，始终使用 Fixed 定位，
     避免在 is-open 移除瞬间退化为 static 导致页面拉伸 */
  .location-subtabs,
  .location-group:not(.is-open) .location-subtabs,
  .location-group:hover .location-subtabs,
  .location-group.is-open .location-subtabs {
    position: fixed !important;
    inset: auto 0 0 0; /* Bottom sheet align */
    width: 100%;
    z-index: 999;
    
    /* 基础样式 (Drawer的外观) */
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px 24px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    padding: 2.5rem 1.5rem 2.5rem 1.5rem !important; /* Force padding */
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    
    /* 让高度自适应内容，不再强制占满视口 */
    height: auto !important; 
    max-height: 85vh !important;
    
    /* 动画控制：使用 transition 而非 animation，支持双向过渡 */
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease, visibility 0s linear 0s !important;
  }

  /* 默认（关闭）状态 */
  .location-subtabs,
  .location-group:not(.is-open) .location-subtabs {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  /* 打开状态 */
  .location-group.is-open .location-subtabs {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Bottom Drawer Mask */
  .location-group.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 998;
    animation: fadeIn 0.3s ease;
  }

  /* Drawer Handle (Attach to all states, opacity handled by parent) */
  .location-subtabs::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: block;
  }

  /* Drawer Items - Style to match Top Nav Drawer */
  .location-group.is-open .location-subtab {
    width: 100%;
    padding: 1.1rem 0.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    font-weight: 500;
    justify-content: flex-start;
    text-align: left;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
  }

  /* Last item remove border */
  .location-group.is-open .location-subtab:last-child {
    border-bottom: none;
  }

  /* Active/Hover state */
  .location-group.is-open .location-subtab:active {
    background: transparent;
    padding-left: 1rem; /* Slide effect like top nav */
    color: var(--orange, #c5a47e);
    transform: none; /* Disable scale for list style */
  }

  /* Add arrow to right like top nav items? Optional, but adds consistency */
  .location-group.is-open .location-subtab::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid rgba(255,255,255,0.3);
    border-right: 1.5px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    margin-left: auto;
    margin-right: 5px;
  }

  .location-group.is-open .location-subtab:active::after {
    border-color: var(--orange, #c5a47e);
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .location-content {
    min-height: 0; /* 允许收缩 */
    height: auto; /* Change from 100% to auto to hug content */
    overflow-y: hidden; /* 禁止内部滚动 */
    display: flex;
    flex-direction: column;
    position: relative; 
    padding-bottom: 0; 
  }
  
  /* 隐藏移动端详细地址下的电话/接待信息 */
  .location-meta {
    display: none;
  }

  /* 隐藏移动端详细地址下方的分割线 */
  .location-addr {
    border-bottom: none;
    margin-bottom: 0.2rem;
    padding-bottom: 0;
  }
  
  .location-detail {
    height: auto; /* Change from 100% to auto */
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  body[data-page="contact"] .location-container {
    height: auto;
    max-height: none;
    min-height: 0;
    grid-template-rows: auto auto;
    gap: 0;
    align-content: start;
    align-self: stretch;
    align-items: stretch;
    overflow: hidden;
  }

  body[data-page="contact"] .location-detail {
    position: relative;
    inset: auto;
    display: none;
    height: auto;
    max-height: none;
    min-height: 0;
    box-sizing: border-box;
    padding: var(--location-map-pad);
  }

  body[data-page="contact"] .location-detail.active {
    display: flex;
  }
  
  .location-info {
    display: flex; /* flex column to stack text and map */
    flex-direction: column;
    height: auto; /* Change from 100% to auto */
    gap: clamp(6px, 1.6vh, 12px);
    width: 100%;
  }

  body[data-page="contact"] .location-info {
    height: auto;
    min-height: 0;
    max-height: none;
    gap: 0;
  }

  .location-text {
    order: 1;
    padding: 0;
    display: contents; /* Strip container to let children participate in flex */
  }

  /* 调整去参观/去导航按钮为普通流布局，位于底部 */
  .location-nav-card,
  body[data-page="contact"] .location-nav-card {
    position: static; /* Back to flow */
    align-self: stretch; /* Full width */
    order: 3; /* Render last */
    margin: var(--contact-location-button-gap) 0 0;
    width: 100%;
    height: var(--contact-location-button-height);
    min-height: var(--contact-location-button-height);
    max-height: var(--contact-location-button-height);
    padding-top: 0;
    padding-bottom: 0;
    justify-content: center;
    box-shadow: none;
    background: transparent;
    flex-shrink: 0; /* Do not shrink */
    color: #e85d04 !important; /* 橙字 */
    border: 1px solid #e85d04 !important; /* 橙边框 */
    display: flex; /* 确保Flex行为 */
  }

  /* 修复移动端图标颜色问题 */
  body[data-page="contact"] .location-nav-card .location-nav-card__icon svg {
    fill: #e85d04 !important;
  }

  body[data-page="contact"] .location-content {
    min-height: 0;
    height: auto;
    max-height: none;
    min-height: 0;
    align-self: start;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  body[data-page="contact"] .location-text__body {
    order: 1;
    flex-shrink: 0; /* Keep text size */
    padding: 0;
    margin-bottom: 0;
    padding-bottom: var(--location-map-pad);
    height: auto;
    min-height: 0;
    max-height: none;
  }

  body[data-page="contact"] .location-text h3 {
    margin-bottom: 0;
  }

  body[data-page="contact"] .location-addr {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    color: var(--muted);
  }

  body[data-page="contact"] .location-visuals {
    order: 2;
    width: 100%;
    /* 使用视口高度 clamp 控制高度，自适应填充 */
    flex: 0 0 var(--contact-location-map-height);
    height: var(--contact-location-map-height);
    min-height: var(--contact-location-map-height);
    aspect-ratio: auto;
    max-height: var(--contact-location-map-height);
    margin-bottom: 0;
  }

  .location-visuals {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
    min-height: 0;
    position: relative;
    order: 1;
  }

  .location-visuals--map-only {
    grid-template-rows: 1fr;
    padding: 0;
    align-items: stretch;
    height: 100%;
  }

  body[data-page="contact"] .location-visuals--map-only {
    height: 100%;
  }

  .location-visuals--map-only .location-map {
    aspect-ratio: unset; /* 取消固定比例，自适应填充 */
    height: 100%;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    place-self: stretch;
  }

  body[data-page="contact"] .location-visuals--map-only .location-map {
    height: var(--contact-location-map-height);
    min-height: var(--contact-location-map-height);
    max-height: var(--contact-location-map-height);
  }

  @supports (height: 1svh) {
    body[data-page="contact"] .location-visuals {
      height: auto;
    }

    .location-visuals--map-only .location-map {
      min-height: 0;
    }
  }

  .location-thumb {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .location-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .location-thumb:hover img {
    transform: scale(1.05);
  }

  @media (max-width: 900px) {
    .location-visuals {
      height: 400px; /* Give it specific height on mobile */
    }
  }
}


@media (hover: none) and (pointer: coarse) {
  .nav {
    --nav-bg: #000;
    --nav-blur: 0px;
    --nav-shadow: none;
    --nav-panel-bg: rgba(0, 0, 0, 0.95);
    --nav-panel-border: rgba(255, 255, 255, 0.45);
    --nav-panel-shadow: none;
    --nav-panel-blur: 0px;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    border-radius: 0 0 18px 18px;
    padding: 0.85rem clamp(1.5rem, 5vw, 3rem);
  }
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  :root {
    --page-pad-x: clamp(20px, 5vw, 52px);
  }

  body[data-page="home"] {
    --home-mobile-section-pad-top: clamp(1.15rem, 3.2vw, 1.9rem);
    --home-mobile-section-pad-inline: clamp(0.5rem, 2.25vw, 0.7rem);
    --home-mobile-section-pad-bottom: clamp(0.8rem, 2.4vw, 1.35rem);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body[data-page="home"] main,
  body[data-page="home"] .hero,
  body[data-page="home"] .hero-carousel,
  body[data-page="home"] .hero-slide.is-active,
  body[data-page="home"] section {
    width: 100%;
    max-width: 100vw;
  }

  body[data-page="home"] main,
  body[data-page="home"] section {
    overflow-x: hidden;
  }

  body[data-page="home"] main {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--products-deep-gray);
    position: relative;
    z-index: 0;
  }

  body[data-page="home"] main .reveal,
  body[data-page="home"] main .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    background: var(--products-deep-gray);
    background-image: none;
  }

  body[data-page="home"] .hero {
    --home-viewport-safe: var(--home-viewport-height, 100vh);
    --hero-mobile-frame-height: calc(var(--home-viewport-safe) + var(--nav-height, 64px));
    position: relative;
    isolation: isolate;
    height: var(--hero-mobile-frame-height);
    min-height: var(--hero-mobile-frame-height);
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
    background: transparent;
  }

  body[data-page="home"] > header.hero {
    position: relative;
    z-index: 1;
  }

  body[data-page="home"] .hero-mobile-bg {
    display: block;
    position: absolute;
    inset: 0;
    background-image: url("../../images/home/hero-slide-01.webp");
    background-size: auto 100%;
    background-position: center 42%;
    background-repeat: no-repeat;
    transform: translate3d(0, var(--hero-mobile-bg-shift, 0px), 0) scale(var(--hero-mobile-bg-scale, 1));
    transform-origin: center center;
    transition: transform 0.12s linear;
    will-change: transform;
    pointer-events: none;
    z-index: 0;
  }

  body[data-page="home"] .hero-mobile-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../images/home/hero-slide-03.jpg");
    background-size: auto 100%;
    background-position: center 42%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  body[data-page="home"] .hero-mobile-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(4, 4, 4, 0.58) 0%,
        rgba(6, 6, 6, 0.50) 16%,
        rgba(10, 8, 6, 0.20) 44%,
        rgba(10, 8, 6, 0.13) 62%,
        rgba(5, 5, 5, 0.2) 80%,
        rgba(3, 3, 3, 0.16) 100%
      ),
      radial-gradient(130% 86% at 50% 52%, rgba(5, 5, 5, 0) 54%, rgba(5, 5, 5, 0.16) 100%);
    pointer-events: none;
  }

  body[data-page="home"] .hero:has(.hero-slide:nth-child(3).is-active) .hero-mobile-bg::before {
    opacity: 1;
  }

  body[data-page="home"] .hero:has(.hero-slide:nth-child(2).is-active) .hero-mobile-bg {
    background-image: url("../../images/home/hero-slide-02.jpg");
    background-position: 8% 42%;
  }

  body[data-page="home"] .hero-carousel {
    --hero-mobile-rhythm: clamp(0.62rem, 1.65vh, 0.86rem);
    --hero-mobile-dots-space: clamp(0.24rem, 0.75vh, 0.48rem);
    --hero-mobile-dots-top-space: clamp(1.74rem, 4.2vh, 2.28rem);
    height: var(--home-viewport-safe);
    min-height: var(--home-viewport-safe);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: min(100%, 760px);
    margin: 0 auto;
    padding-top: calc(var(--nav-height, 64px) + clamp(0.65rem, 1.8vh, 1.05rem));
    padding-bottom: 0;
    gap: 0;
    background: transparent;
    position: relative;
    isolation: isolate;
    overflow: visible;
    z-index: 2;
  }

  @supports (height: 100dvh) {
    body[data-page="home"] .hero {
      --home-viewport-safe: var(--home-viewport-height, 100dvh);
      --hero-mobile-frame-height: calc(var(--home-viewport-safe) + var(--nav-height, 64px));
      height: var(--hero-mobile-frame-height);
      min-height: var(--hero-mobile-frame-height);
    }
  }

  body[data-page="home"] .hero-carousel::before,
  body[data-page="home"] .hero::before {
    content: none;
  }

  body[data-page="home"] .hero-slide {
    display: none;
    grid-template-columns: 1fr;
    min-height: 0;
    flex: 1 1 auto;
    gap: clamp(0.85rem, 2.2vh, 1.2rem);
    align-content: start;
    align-items: stretch;
    justify-content: space-between;
    overflow: visible;
    opacity: 1;
    transform: none;
    pointer-events: none;
  }

  body[data-page="home"] .hero-slide.is-active {
    display: flex;
    position: relative;
    z-index: 8;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1 1 auto;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--page-pad-x);
    gap: 0;
    overflow: visible;
    pointer-events: auto;
    animation: hero-mobile-slide-enter 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes hero-mobile-slide-enter {
    from {
      opacity: 0;
      transform: translate3d(0, 14px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  body[data-page="home"] .hero-copy {
    display: flex;
    position: relative;
    z-index: 8;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    max-width: 36rem;
    padding: clamp(4.6rem, 14vh, 8.2rem) 0 0;
    gap: clamp(0.58rem, 1.7vh, 0.92rem);
    align-items: stretch;
    text-align: left;
  }

  body[data-page="home"] .hero-copy > :not(.hero-actions) {
    margin: 0;
    width: 100%;
  }

  body[data-page="home"] .hero-copy .eyebrow {
    font-size: clamp(0.62rem, 2.1vw, 0.72rem);
    letter-spacing: 0.24em;
    opacity: 1;
    color: rgba(232, 232, 232, 0.78);
    font-weight: 600;
    margin-bottom: clamp(0.04rem, 0.18vh, 0.12rem);
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: clamp(2.55rem, 12.8vw, 3.9rem);
    line-height: 1.45;
    margin: 0;
    width: 100%;
    max-width: 100%;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  body[data-page="home"] .hero-copy h1 .hero-title-break {
    display: block;
    margin-top: clamp(1.58rem, 6.4vh, 3.1rem);
  }

  body[data-page="home"] .hero-copy .hero-lede .hero-lede-break {
    display: block;
    line-height: 0;
    height: clamp(0.28rem, 1.05vh, 0.56rem);
  }

  body[data-page="home"] .hero-copy .hero-lede {
    font-size: clamp(0.9rem, 3.2vw, 1.02rem);
    line-height: 1.82;
    margin: auto 0 0;
    padding-top: clamp(0.72rem, 2vh, 1.2rem);
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100%;
    display: block;
    overflow: visible;
    overflow-wrap: break-word;
    word-break: normal;
    color: #fff;
  }

  body[data-page="home"] .hero-stats {
    display: none;
  }

  body[data-page="home"] .hero-stat {
    padding: clamp(0.7rem, 2.4vw, 0.9rem);
    border-radius: 14px;
    gap: 0.32rem;
    justify-content: flex-start;
    text-align: left;
    min-height: clamp(72px, 16vw, 90px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
  }

  body[data-page="home"] .hero-stat-label {
    font-size: clamp(0.56rem, 1.9vw, 0.66rem);
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.62);
  }

  body[data-page="home"] .hero-stat-value {
    font-size: clamp(0.78rem, 2.6vw, 0.92rem);
    line-height: 1.4;
    font-weight: 500;
    color: rgba(247, 244, 241, 0.9);
  }

  body[data-page="home"] .hero-slide > .hero-actions {
    margin: var(--hero-mobile-rhythm) 0 0;
    width: 100%;
    max-width: 36rem;
    padding-top: var(--hero-mobile-rhythm);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    z-index: 9;
  }

  body[data-page="home"] .hero-slide.is-active .hero-lede,
  body[data-page="home"] .hero-slide.is-active > .hero-actions,
  body[data-page="home"] .hero-dots {
    will-change: transform;
  }

  body[data-page="home"] .hero-actions {
    margin-top: 0;
    gap: var(--hero-mobile-rhythm);
    justify-content: stretch;
    flex-direction: column;
    width: 100%;
  }

  body[data-page="home"] .hero-actions .cta {
    width: 100%;
    min-height: 0;
    padding: 0.75rem 1.2rem;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: none;
    border-radius: 999px;
    border-color: transparent;
    background: var(--orange);
    color: #0c0c0c;
    font-weight: 500;
  }

  body[data-page="home"] .hero-actions .link-arrow {
    width: 100%;
    min-height: 0;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.07);
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: none;
    font-weight: 500;
    color: rgba(247, 244, 241, 0.92);
  }

  body[data-page="home"] .hero-actions .link-arrow::after {
    content: "";
    display: block;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    width: 0.44rem;
    height: 0.44rem;
    border-top: 1.8px solid currentColor;
    border-right: 1.8px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
  }

  body[data-page="home"] .hero-actions .link-arrow:hover::after {
    transform: translateY(-50%) rotate(45deg);
  }

  body[data-page="home"] .hero-dots {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 8;
    justify-content: center;
    align-items: center;
    gap: clamp(0.38rem, 1.2vw, 0.56rem);
    margin-top: var(--hero-mobile-dots-top-space);
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: calc(var(--hero-mobile-dots-space) + env(safe-area-inset-bottom));
    line-height: 0;
    transform: none;
    width: 100%;
  }

  body[data-page="home"] .hero-dot {
    width: clamp(16px, 5.4vw, 22px);
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
  }

  body[data-page="home"] .hero-dot.is-active {
    width: clamp(30px, 9.8vw, 42px);
    height: 3px;
    background: rgba(226, 93, 29, 0.96);
  }

  body[data-page="home"] .hero-copy,
  body[data-page="home"] .hero-stats,
  body[data-page="home"] .hero-copy > * {
    min-width: 0;
  }

  body[data-page="home"] .hero-copy .hero-lede,
  body[data-page="home"] .hero-stat-value {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  @media (max-width: 380px) {
    body[data-page="home"] .hero-carousel {
      padding-top: calc(var(--nav-height, 64px) + 0.6rem);
      gap: 0;
    }

    body[data-page="home"] .hero-slide.is-active {
      padding: 0 clamp(14px, 4vw, 18px);
      gap: 0;
    }

    body[data-page="home"] .hero-copy {
      gap: 0.68rem;
    }

    body[data-page="home"] .hero-copy h1 {
      font-size: clamp(2.22rem, 11.6vw, 2.92rem);
      max-width: 100%;
    }

    body[data-page="home"] .hero-copy .hero-lede {
      font-size: 0.84rem;
      line-height: 2.88;
      line-clamp: 4;
      -webkit-line-clamp: 4;
    }

    body[data-page="home"] .hero-actions {
      gap: var(--hero-mobile-rhythm);
    }
  }

  body[data-page="home"] .hero-copy,
  body[data-page="home"] .hero-stats {
    min-width: 0;
  }

  /* Keep homepage cards/grid within mobile viewport. */
  body[data-page="home"] .products {
    background: var(--products-deep-gray);
    padding: var(--home-main-hero-gap) clamp(1.25rem, 5vw, 2rem) 0;
  }

  body[data-page="home"] .products.products--browse-showcase {
    --products-section-bg: #14161a !important;
    --browse-showcase-bleed: calc(clamp(1.25rem, 5vw, 2rem) + clamp(0.55rem, 2.2vw, 0.95rem));
    --browse-showcase-control-bleed: 0px;
    background: #14161a !important;
    background-color: #14161a !important;
    border-radius: 0;
    overflow: visible;
  }

  body[data-page="home"] .products--world-map {
    padding-top: calc(var(--home-main-hero-gap) * 0.5);
    padding-bottom: clamp(0.85rem, 3vw, 1.2rem);
  }

  body[data-page="home"] .products--certifications {
    padding-bottom: clamp(0.85rem, 3vw, 1.2rem);
  }

  body[data-page="home"] .products--world-map .product-map-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    padding: var(--home-mobile-section-pad-top) var(--home-mobile-section-pad-inline) var(--home-mobile-section-pad-bottom);
  }

  body[data-page="home"] .products--world-map .product-map-mobile__stage {
    --map-stage-ratio: 1.78;
    aspect-ratio: 1.78 / 1;
    min-height: clamp(168px, 46vw, 232px);
  }

  body[data-page="home"] .products--world-map > .section-header,
  body[data-page="home"] .products--certifications > .section-header,
  body[data-page="home"] .products--browse-showcase > .section-header {
    display: flex;
    justify-content: center;
  }

  body[data-page="home"] .products--browse-showcase > .section-header {
    justify-content: center;
  }

  body[data-page="home"] .products--world-map > .section-header h2,
  body[data-page="home"] .products--certifications > .section-header h2,
  body[data-page="home"] .products--browse-showcase > .section-header h2 {
    max-width: min(100%, 14em);
    margin: 0;
    font-size: clamp(1.36rem, 6vw, 1.78rem);
    line-height: 1.14;
    text-align: center;
  }

  body[data-page="home"] .products--browse-showcase > .section-header h2 {
    max-width: min(100%, 14em);
    text-align: center;
    color: var(--text-light);
  }

  body[data-page="home"] .certification-deck {
    --certification-card-width: 34%;
    --certification-card-front-scale: 1.08;
    --certification-card-mid-scale: 1.04;
    --certification-card-back-scale: 1;
    height: clamp(16rem, 56vw, 20rem);
    margin-top: 0;
    padding-top: 0.7rem;
  }

  body[data-page="home"] .certification-deck__card {
    gap: 0.16rem;
    padding: 0.25rem;
  }

  body[data-page="home"] .certification-deck__category {
    min-height: 1.28rem;
    padding: 0 0.04rem;
    font-size: var(--browse-showcase-toolbar-font-size, 0.76rem);
    line-height: 1;
  }

  body[data-page="home"] .certification-deck__category-text {
    letter-spacing: 0.04em;
  }

  body[data-page="home"] .certification-deck__card img {
    border-radius: 0;
  }

  body[data-page="home"] .certification-deck__card[data-certification-slot="1"] {
    left: 33%;
  }

  body[data-page="home"] .certification-deck__card[data-certification-slot="5"] {
    left: 67%;
  }

  body[data-page="home"] .certification-deck__card[data-certification-slot="2"] {
    left: 18%;
  }

  body[data-page="home"] .certification-deck__card[data-certification-slot="4"] {
    left: 82%;
  }

  body[data-page="home"] .browse-showcase {
    --browse-showcase-toolbar-spacing: clamp(1.05rem, 4.2vw, 1.45rem);
    --browse-showcase-card-gap: clamp(0.65rem, 2.8vw, 0.85rem);
    margin-top: var(--browse-showcase-toolbar-spacing);
    gap: clamp(0.62rem, 3vw, 0.9rem);
  }

  body[data-page="home"] .browse-showcase__panel {
    gap: var(--browse-showcase-toolbar-spacing);
  }

  body[data-page="home"] .browse-showcase__toolbar {
    --browse-showcase-toolbar-height: 2.2rem;
    --browse-showcase-toolbar-radius: calc(var(--browse-showcase-toolbar-height) / 2);
    --browse-showcase-toolbar-font-size: 0.76rem;
    --browse-showcase-toolbar-letter-spacing: 0.01em;
    --browse-showcase-controls-border-width: 1px;
    --browse-showcase-switch-padding: 0.14rem;
    --browse-showcase-control-inner-height: calc(
      var(--browse-showcase-toolbar-height) - (var(--browse-showcase-switch-padding) * 2) - (var(--browse-showcase-controls-border-width) * 2)
    );
    --browse-showcase-control-inner-radius: calc(var(--browse-showcase-control-inner-height) / 2);
    gap: var(--browse-showcase-card-gap);
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    order: 2;
  }

  body[data-page="home"] .browse-showcase__controls {
  }

  body[data-page="home"] .browse-showcase__control {
    min-height: 0;
    padding: 0;
    font-size: var(--browse-showcase-toolbar-font-size);
    white-space: nowrap;
  }

  body[data-page="home"] .browse-showcase__all-link {
    --browse-showcase-all-link-icon-slot: 1.1rem;
    min-height: 0;
    height: var(--browse-showcase-control-inner-height);
    padding: 0;
    font-size: var(--browse-showcase-toolbar-font-size);
    letter-spacing: var(--browse-showcase-toolbar-letter-spacing);
  }

  body[data-page="home"] .browse-showcase__row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  body[data-page="home"] .browse-showcase__row-header {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 0.55rem;
  }

  body[data-page="home"] .browse-showcase__row-header h3 {
    font-size: clamp(0.92rem, 4vw, 1.04rem);
  }

  body[data-page="home"] .browse-showcase__viewport {
    order: 1;
    width: calc(100% + var(--browse-showcase-bleed) + var(--browse-showcase-bleed));
    max-width: none;
    margin-left: calc(-1 * var(--browse-showcase-bleed));
    margin-right: calc(-1 * var(--browse-showcase-bleed));
  }

  body[data-page="home"] .browse-showcase__card {
    width: clamp(140px, 37vw, 178px);
    border-radius: 14px;
  }

  body[data-page="home"] .browse-showcase__card .belt-card__body {
    padding: 0.5rem 0.56rem 0.56rem;
  }

  body[data-page="home"] .browse-showcase__card .belt-attributes {
    font-size: 0.55rem;
  }

  /* Homepage browse showcase: final visual reset to avoid orange strip artifacts */
  body[data-page="home"] .products--browse-showcase .browse-showcase__panel,
  body[data-page="home"] .products--browse-showcase .browse-showcase__viewport,
  body[data-page="home"] .products--browse-showcase .browse-showcase__track,
  body[data-page="home"] .products--browse-showcase .browse-showcase__group {
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body[data-page="home"] .products--browse-showcase .browse-showcase__card.belt-card,
  body[data-page="home"] .products--browse-showcase .browse-showcase__card.belt-card:hover {
    background: #000000 !important;
    background-image: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body[data-page="home"] .products--browse-showcase .browse-showcase__card .belt-card__body {
    display: none !important;
  }

  body[data-page="home"] .products--browse-showcase .browse-showcase__card .belt-card__media::after {
    display: none !important;
  }

  body[data-page="home"] .products--world-map > .link-arrow {
    margin-top: 1.5rem;
  }

  body[data-page="home"] .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  }

  body[data-page="home"] .feature-grid {
    display: none;
  }

  body[data-page="home"] .feature-reasons-section {
    padding-left: 0;
    padding-right: 0;
  }

  body[data-page="home"] .feature-reasons-section .section-header {
    display: flex;
    justify-content: center;
    padding-left: var(--page-pad-x);
    padding-right: var(--page-pad-x);
  }

  body[data-page="home"] .feature-reasons-section .section-header h2 {
    max-width: min(100%, 12em);
    margin: 0;
    font-size: clamp(1.4rem, 6.4vw, 1.85rem);
    line-height: 1.2;
    text-align: center;
    color: var(--text-light);
  }

  body[data-page="home"] .feature-card {
    width: 100%;
    max-width: 100%;
    opacity: 1;
    transform: none;
  }

  body[data-page="home"] .feature-metrics-grid {
    --feature-metrics-line-color: #ffffff;
    --feature-metrics-line-glow: rgba(255, 255, 255, 0.18);
    --feature-metrics-gap: clamp(1rem, 4.5vw, 1.4rem);
    --feature-metrics-line-inset: calc(var(--feature-metrics-gap) * 1.6);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    box-sizing: border-box;
    padding: var(--home-mobile-section-pad-top) var(--home-mobile-section-pad-inline) var(--home-mobile-section-pad-bottom);
    gap: var(--feature-metrics-gap);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background: var(--products-deep-gray);
    color: var(--orange);
  }

  body[data-page="home"] .feature-metrics-grid::before,
  body[data-page="home"] .feature-metrics-grid::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }

  body[data-page="home"] .feature-metrics-grid::before {
    top: var(--feature-metrics-line-inset);
    bottom: var(--feature-metrics-line-inset);
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0 0 4px var(--feature-metrics-line-glow);
  }

  body[data-page="home"] .feature-metrics-grid::after {
    top: 50%;
    left: var(--feature-metrics-line-inset);
    right: var(--feature-metrics-line-inset);
    height: 2px;
    transform: translateY(-50%);
    background: #ffffff;
    box-shadow: 0 0 4px var(--feature-metrics-line-glow);
  }

  body[data-page="home"] .feature-reasons-section.reveal .feature-metrics-grid::before {
    clip-path: inset(50% 0 50% 0);
  }

  body[data-page="home"] .feature-reasons-section.reveal .feature-metrics-grid::after {
    clip-path: inset(0 50% 0 50%);
  }

  body[data-page="home"] .feature-metrics-center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 0 4px var(--feature-metrics-line-glow);
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
  }

  body[data-page="home"] .feature-reasons-section.reveal .feature-metrics-center-dot {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  body[data-page="home"] .feature-reasons-section.reveal.is-visible .feature-metrics-grid::before {
    animation: featureMetricsVerticalRevealFromCenter 0.8s ease-out 0.12s both;
  }

  body[data-page="home"] .feature-reasons-section.reveal.is-visible .feature-metrics-grid::after {
    animation: factorsHorizontalReveal 0.8s ease-out 0.12s both;
  }

  body[data-page="home"] .feature-reasons-section.reveal.is-visible .feature-metrics-center-dot {
    animation: featureMetricsCenterDotReveal 0.28s ease-out both;
  }

  body[data-page="home"] .feature-metric-cell {
    padding: clamp(1rem, 4.5vw, 1.5rem);
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    position: relative;
    z-index: 1;
  }

  body[data-page="home"] .feature-metric-value {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  body[data-page="home"] .feature-metric-label {
    max-width: none;
    width: 100%;
    font-size: clamp(0.64rem, 2.9vw, 0.9rem);
    white-space: nowrap;
    color: var(--text-light);
    margin: 0 auto;
  }

  body[data-page="home"] .contact-body {
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  }

  body[data-page="home"] .contact,
  body[data-page="home"] .footer {
    background: var(--products-deep-gray);
    background-image: none;
  }

  body[data-page="home"] .product-card,
  body[data-page="home"] .contact-body > * {
    min-width: 0;
  }

  body[data-page="home"] .contact-body p,
  body[data-page="home"] .footer-contact p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body[data-page="contact"] {
    --contact-pad-x: var(--page-pad-x);
  }

  body > header,
  body > section,
  body > footer,
  body > main > header,
  body > main > section,
  body > main > footer,
  body .contact-scroll > header,
  body .contact-scroll > section,
  body .contact-scroll > footer {
    padding-left: var(--page-pad-x);
    padding-right: var(--page-pad-x);
  }

  body[data-page="home"] > header.hero {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Mobile Bottom Navigation Optimization */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0.5rem calc(0.6rem + env(safe-area-inset-bottom));
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  .mobile-bottom-nav {
    display: flex;
  }

  body[data-page="home"] .mobile-bottom-nav {
    background: var(--products-deep-gray);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  
  /* Add padding to body so content isn't covered by bottom nav */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  body[data-page="home"] {
    padding-bottom: 0;
  }
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  gap: 5px;
  flex: 1;
  padding: 4px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.mobile-bottom-nav .nav-item::before {
  content: '';
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 0 0 4px 4px;
  transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-item.is-active {
  color: var(--text-light);
}

.mobile-bottom-nav .nav-item.is-active::before {
  transform: translateX(-50%) scaleX(1);
}

.mobile-bottom-nav .nav-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-item.is-active .nav-icon {
  transform: translateY(-2px);
  color: var(--orange);
}

.mobile-bottom-nav .nav-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-bottom-nav .nav-label {
  font-weight: 500;
  letter-spacing: 0.02em;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Filter Optimization */
.mobile-filter-trigger {
  display: none;
}

@media (max-width: 900px) {
  body[data-page="products"] {
    overflow-x: hidden;
  }

  body[data-page="products"] {
    background: var(--products-deep-gray);
    --filter-fab-bottom: 20px;
    --filter-fab-clear: 96px;
    --mobile-drawer-height: 66.6667vh;
    --mobile-drawer-height-dvh: 66.6667dvh;
  }

  body[data-page="products"][data-subpage="overview"],
  body[data-page="products"][data-subpage="news"] {
    background: var(--products-deep-gray);
  }

  body[data-page="products"] .belt-bg-layer {
    background: var(--products-deep-gray);
    background-image: none;
    opacity: 1;
  }

  body[data-page="products"][data-subpage="overview"] .belt-bg-layer,
  body[data-page="products"][data-subpage="news"] .belt-bg-layer {
    background: var(--products-deep-gray);
  }

  body[data-page="products"] .belt-bg-layer::after {
    content: none;
    animation: none;
  }

  body[data-page="products"]:not(.has-belt-modal):not(.belt-lightbox-open):not(.nav-drawer-open):not(.filter-drawer-open):not(.history-drawer-open) {
    overflow-y: visible !important;
    height: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.filter-drawer-open {
    height: 100%;
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }

  body[data-page="products"].history-drawer-open {
    overflow: hidden;
    height: 100%;
    touch-action: pan-y;
    width: 100%;
    position: static;
  }

  body[data-page="products"].filter-drawer-open .belt-content-group,
  body[data-page="products"].filter-drawer-open .belt-pagination,
  body[data-page="products"].filter-drawer-open .belt-empty-state {
    pointer-events: none;
  }

  /* Reset Main Padding for Products Page */
  body[data-page="products"] main {
    padding: 0;
    padding-top: var(--nav-height, 64px);
    overflow-x: hidden;
  }
  
  /* Belt Hub Grid Layout */
  .belt-hub {
    grid-template-columns: 1fr;
    gap: 15px 0;
    padding: 0 10px 1.5rem;
    max-width: 100%;
    
    /* Keep mobile zone clean and transparent */
    background: transparent;
    border-top: none;
    border-bottom: none;
    
    /* Disable transform on mobile to allow fixed children */
    transform: none !important;
    opacity: 1 !important; 
    will-change: auto !important;
  }

  /* Content Group Wrapper for Sticky Logic */
  .belt-content-group {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between meta and grid */
    position: relative; /* Context for sticky */
    min-height: 100vh; /* Ensure tall enough track */
  }

  .belt-hub.reveal.is-visible {
    margin-top: 1rem;
    gap: 10px 0;
  }

  body[data-page="products"][data-subpage="overview"] .belt-hub.reveal.is-visible {
    margin-top: 0.5rem;
  }

  .belt-hub.reveal.is-visible .belt-content-group {
    gap: 10px;
  }

  /* Filter Trigger Button - Floating until pagination */
  .mobile-filter-anchor {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    min-height: 0;
    padding: 0.58rem 1rem calc(0.58rem + env(safe-area-inset-bottom));
    box-sizing: border-box;
    background: var(--black);
    z-index: 979;
    pointer-events: none;
  }

  .mobile-filter-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    
    /* Floating placement */
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    z-index: 980;
    margin: 0;
    
    /* Layout */
    width: 100%;
    pointer-events: auto;
    
    /* Match history-inline-btn style */
    background: rgba(10, 10, 10, 0.9);
    color: var(--orange, #e25d1d);
    border: 1px solid rgba(226, 93, 29, 0.6);
    border-radius: 999px;
    padding: 0.6rem 1.35rem;
    box-shadow: none;
    
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .mobile-filter-trigger .badgem-filt {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }
  
  .belt-content-group .belt-hub-meta {
    padding-top: 0;
  }
  
  .mobile-filter-trigger:active {
    transform: scale(0.96);
    background: rgba(10, 10, 10, 0.9);
  }

  .mobile-filter-anchor.is-stopped .mobile-filter-trigger {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }

  .mobile-filter-anchor.is-stopped {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }

  body[data-page="products"].filter-drawer-open .mobile-filter-anchor {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: none;
    z-index: 2002;
  }

  body[data-page="products"].filter-drawer-open .mobile-filter-anchor .mobile-filter-trigger {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    visibility: visible;
    filter: none !important;
  }
  
  .mobile-filter-trigger .filter-toggle {
    display: inline-flex;
    position: absolute;
    right: 0.8rem;
    top: 50%;
    width: 1em;
    height: 1em;
    flex: 0 0 1em;
    align-items: center;
    justify-content: center;
    color: inherit;
    transform: translateY(-50%);
  }

  .mobile-filter-trigger .filter-toggle span {
    width: 100%;
    height: 0.12em;
    border-radius: 999px;
    background: currentColor;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, height 0.2s ease;
  }

  .mobile-filter-trigger .filter-toggle span:nth-child(1) {
    top: calc(50% - 0.32em);
  }

  .mobile-filter-trigger .filter-toggle span:nth-child(2) {
    top: 50%;
  }

  .mobile-filter-trigger .filter-toggle span:nth-child(3) {
    top: calc(50% + 0.32em);
  }

  .mobile-filter-trigger[aria-expanded="true"] .filter-toggle span:nth-child(1),
  .mobile-filter-trigger.is-open .filter-toggle span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 0.12em;
    background: currentColor;
  }

  .mobile-filter-trigger[aria-expanded="true"] .filter-toggle span:nth-child(2),
  .mobile-filter-trigger.is-open .filter-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mobile-filter-trigger[aria-expanded="true"] .filter-toggle span:nth-child(3),
  .mobile-filter-trigger.is-open .filter-toggle span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    height: 0.12em;
    background: currentColor;
  }

  /* Open state: same style, only icon changes */
  .mobile-filter-trigger[aria-expanded="true"],
  .mobile-filter-trigger.is-open {
    background: rgba(10, 10, 10, 0.9);
    color: var(--orange, #e25d1d);
    border-color: rgba(226, 93, 29, 0.6);
    box-shadow: none;
  }

  /* Filter Panel Drawer */
  .belt-filter-panel {
    position: fixed;
    top: var(--nav-bottom, var(--nav-height, 64px));
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    --mobile-filter-panel-height: min(
      var(--mobile-drawer-height, 50vh),
      calc(100vh - var(--nav-height, 64px) - var(--filter-fab-clear, 96px))
    );
    height: var(--mobile-filter-panel-height);
    max-height: var(--mobile-filter-panel-height);
    border-radius: 0 0 24px 24px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1600;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    touch-action: pan-y;
    overscroll-behavior: contain;
  }
  
  .belt-filter-panel.is-open {
    transform: translateY(0);
  }

  @supports (height: 100dvh) {
    .belt-filter-panel {
      --mobile-filter-panel-height: min(
        var(--mobile-drawer-height-dvh, 50dvh),
        calc(100dvh - var(--nav-height, 64px) - var(--filter-fab-clear, 96px))
      );
    }
  }
  
  /* Mobile Drawer Typography Optimization */
  .belt-filter-panel .filter-heading {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    font-weight: 600;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.76);
  }

  .belt-filter-panel .filter-block > .filter-heading {
    margin-bottom: var(--mobile-filter-space-sm);
  }

  .belt-filter-panel {
    --mobile-filter-switch-height: 2.08rem;
    --mobile-filter-control-radius: 999px;
    --mobile-filter-switch-padding: 0.18rem;
    --mobile-filter-space: 0.7rem;
    --mobile-filter-space-sm: 0.46rem;
    --mobile-filter-top-gap: 0.72rem;
    --mobile-filter-inline-pad: clamp(1.25rem, 5vw, 2rem);
  }

  .belt-filter-panel .gender-switch,
  .belt-filter-panel .style-switch {
    --switch-padding: var(--mobile-filter-switch-padding);
    min-height: var(--mobile-filter-switch-height);
    height: var(--mobile-filter-switch-height);
    border-radius: var(--mobile-filter-control-radius);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  }

  .belt-filter-panel .gender-switch::before,
  .belt-filter-panel .style-switch::before {
    border-radius: var(--mobile-filter-control-radius);
    box-shadow: none;
    background: rgba(226, 93, 29, 0.94);
  }

  .belt-filter-panel .gender-switch,
  .belt-filter-panel .style-filter {
    margin-top: 0;
  }

  .belt-filter-panel .filter-heading-row {
    margin-bottom: 0.58rem;
  }

  .belt-filter-panel .filter-heading-group {
    width: 100%;
    gap: 0.72rem;
    justify-content: space-between;
  }

  .belt-filter-panel .gender-pill,
  .belt-filter-panel .style-switch button {
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    letter-spacing: 0.03em;
  }

  body[data-page="products"][data-subpage="overview"][data-ui-language="ja"] .belt-filter-panel .style-switch button {
    min-width: 0;
    padding-inline: 0.16rem;
    font-size: clamp(0.54rem, 1.7vw, 0.64rem);
    letter-spacing: 0;
    text-transform: none;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body[data-page="products"][data-subpage="overview"][data-ui-language="it"] .belt-filter-panel .style-switch button,
  body[data-page="products"][data-subpage="overview"][data-ui-language="es"] .belt-filter-panel .style-switch button {
    min-width: 0;
    padding-inline: 0.1rem;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .belt-filter-panel .length-toggle-pill {
    font-size: 0.68rem;
    min-width: 4.2rem;
    padding: 0 0.88rem;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.74);
    letter-spacing: 0.08em;
  }

  .belt-filter-panel .length-toggle input:checked + .length-toggle-pill,
  .belt-filter-panel .length-toggle input:checked + .length-toggle-pill:hover {
    background: rgba(226, 93, 29, 0.96);
    border-color: rgba(226, 93, 29, 0.96);
    color: var(--black);
    box-shadow: none;
  }

  .belt-filter-panel .filter-hint,
  .belt-filter-panel small {
    font-size: 0.64rem;
    line-height: 1.4;
  }

  .belt-filter-panel .filter-hint {
    display: block;
    font-size: 0.6rem;
    line-height: 1.55;
    letter-spacing: 0.04em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.05rem 0 0.72rem;
  }

  .belt-filter-panel .slider-display {
    --switch-padding: var(--mobile-filter-switch-padding);
    min-height: var(--mobile-filter-switch-height);
    height: var(--mobile-filter-switch-height);
    border-radius: var(--mobile-filter-control-radius);
    margin: var(--mobile-filter-space-sm) 0;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  }

  .belt-filter-panel .slider-display::after {
    border-radius: var(--mobile-filter-control-radius);
    background: linear-gradient(120deg, rgba(226, 93, 29, 0.38), rgba(226, 93, 29, 0.12));
    box-shadow: none;
    opacity: 0.85;
  }

  .belt-filter-panel .slider-display-main {
    align-items: center;
    gap: 0.12rem;
    padding: 0 0.68rem;
    line-height: 1;
  }

  .belt-filter-panel .slider-display--secondary {
    margin-top: var(--mobile-filter-space);
  }

  .belt-filter-panel .slider-divider {
    margin: var(--mobile-filter-space) 0 var(--mobile-filter-space-sm);
    background: rgba(255, 255, 255, 0.08);
  }

  .belt-filter-panel input[type="range"] {
    margin: 0 0 var(--mobile-filter-space-sm);
  }

  .belt-filter-panel input[type="range"]::-webkit-slider-runnable-track,
  .belt-filter-panel input[type="range"]::-moz-range-track {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(226, 93, 29, 0.36));
  }

  .belt-filter-panel input[type="range"]::-webkit-slider-thumb,
  .belt-filter-panel input[type="range"]::-moz-range-thumb {
    box-shadow: none;
  }

  .belt-filter-panel .slider-display-label,
  .belt-filter-panel .slider-display-value,
  .belt-filter-panel .slider-display-unit {
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
  }

  .belt-filter-panel .slider-scale {
    font-size: 0.6rem;
    margin-bottom: var(--mobile-filter-space-sm);
  }
  
  .belt-filter-panel__close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.36rem;
    margin-right: -0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .belt-filter-panel__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.58rem;
    min-height: 0;
    max-height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding: var(--mobile-filter-top-gap) var(--mobile-filter-inline-pad) var(--mobile-filter-inline-pad);
    padding-bottom: calc(var(--mobile-filter-inline-pad) + env(safe-area-inset-bottom));
  }

  .belt-filter-panel::after {
    content: none;
  }
  
  /* Adjust Filter Block spacing for mobile */
  .belt-filter-panel .filter-block {
    margin-bottom: 0;
    padding: 0.72rem 0.76rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  }

  .belt-filter-panel .filter-block + .filter-block {
    padding-top: 0.72rem;
  }

  .belt-filter-panel .filter-block--paired .filter-heading {
    display: none;
  }

  .belt-filter-panel .filter-block--paired {
    padding: 0.68rem 0.72rem;
  }

  .belt-filter-panel .filter-block--paired .filter-block__section + .filter-block__section {
    margin-top: 0.68rem;
    padding-top: 0.68rem;
    border-top-color: rgba(255, 255, 255, 0.06);
  }

  .belt-filter-panel .filter-block--size {
    padding: 0.86rem 0.82rem 0.8rem;
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.025);
  }

  .belt-filter-panel .style-filter {
    margin: 0;
  }
  
  /* Flatten belt browser wrapper on mobile */
  .belt-browser {
    display: contents;
  }
}

@media (max-width: 900px) {
  /* Product Grid Mobile Optimization */
  body[data-page="products"][data-subpage="overview"] .belt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* Match edge padding for consistent visuals */
    margin: 0; /* Remove extra margins handled by parent gap */
    width: 100%;
  }

  /* Mobile card — premium compact layout */
  body[data-page="products"][data-subpage="overview"] .belt-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 22%),
      linear-gradient(168deg, rgba(28, 32, 39, 0.94) 0%, rgba(18, 21, 27, 0.94) 100%);
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton {
    pointer-events: none;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-card__media,
  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-attribute-skeleton {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-card__media::after,
  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-attribute-skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.13) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    animation: beltSkeletonShimmer 1.28s ease-in-out infinite;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-card__body {
    padding-top: 0.78rem;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-card__badge {
    display: none;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-attribute-row--identity::after {
    background: rgba(255, 255, 255, 0.06);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-attribute-skeleton {
    display: block;
    height: 0.58rem;
    border-radius: 999px;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-attribute-skeleton--id {
    width: 4.15rem;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-attribute-skeleton--dot {
    width: 1.1rem;
    height: 0.42rem;
    justify-self: end;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-attribute-skeleton--material {
    width: 4.65rem;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-attribute-skeleton--buckle {
    width: 3.8rem;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-attribute-skeleton--length {
    width: 5.1rem;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card--skeleton .belt-attribute-skeleton--width {
    width: 3.35rem;
    justify-self: start;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__media {
    height: auto;
    width: 100%;
    aspect-ratio: 1 / 1.04;
    background-size: cover;
    border-radius: 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__media::before {
    content: none;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__media::after {
    content: none;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__badge {
    display: inline-flex;
    position: absolute;
    top: 0.68rem;
    left: 0.68rem;
    z-index: 2;
    align-items: center;
    padding: 0.34rem 0.58rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 9, 12, 0.5);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.54rem;
    line-height: 1;
    letter-spacing: 0.06em;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__price {
    bottom: 0.68rem;
    width: auto;
    max-width: calc(100% - 0.5rem);
    min-width: max(38%, 5.8rem);
    gap: 0.28rem;
    padding: 0.34rem 0.58rem 0.34rem 0.92rem;
    border-radius: 12px 0 0 12px;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__price-label {
    font-size: 0.54rem;
    letter-spacing: 0.06em;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__price-value {
    font-size: 0.66rem;
    letter-spacing: 0.03em;
  }

  /* Info body: refined spacing & hierarchy */
  body[data-page="products"][data-subpage="overview"] .belt-card__body {
    display: flex !important;
    flex-direction: column;
    padding: 0.72rem 0.78rem 0.82rem;
    min-height: auto;
    gap: 0;
    position: relative;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__body h3 {
    min-height: 0;
    line-height: 1.2;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__body h3:empty {
    display: none;
  }

  /* Attributes grid: 2 columns */
  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attributes {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    font-size: 0.63rem;
    gap: 0.32rem 0.55rem;
    min-height: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.56);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attribute-row--identity {
    gap: 0.5rem;
    padding-bottom: 0.42rem;
    margin-bottom: 0.18rem;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attribute-row--identity::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attributes .belt-attribute-text--id {
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.04em;
    align-self: center;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attributes .belt-attribute-text--buckle,
  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attributes .belt-attribute-text--material,
  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attributes .belt-attribute-text--width {
    color: rgba(255, 255, 255, 0.82);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attributes .belt-attribute-text--buckle,
  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attributes .belt-attribute-text--material {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attributes .belt-attribute-text--buckle {
    justify-self: start;
    text-align: left;
    white-space: nowrap;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attribute-row--size {
    display: contents;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attribute-row--size .belt-attribute-text {
    font-size: 0.6rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attribute-row--size .belt-attribute-text--length {
    color: rgba(255, 255, 255, 0.9);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attribute-row--size .belt-attribute-text--width {
    justify-self: start;
    text-align: left;
    white-space: nowrap;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attribute--colors {
    display: flex;
    justify-content: flex-end;
    gap: 0.3rem;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card .belt-attribute--colors .belt-color-dot {
    width: 11px;
    height: 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__footer {
    display: none !important;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card__cta {
    display: none !important;
  }

  /* Disable hover effect on mobile (no transform jitter on tap) */
  body[data-page="products"][data-subpage="overview"] .belt-card:hover .belt-card__body {
    transform: none;
  }

  body[data-page="products"][data-subpage="overview"] .belt-card:hover .belt-card__media {
    transform: none;
  }
  
  .belt-pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1.1rem 0 0;
    padding: 0.1rem 0 1rem;
    box-sizing: border-box;
  }

  .belt-pagination__panel {
    width: min(100%, 20.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
    padding: 0;
  }

  .belt-pagination__summary {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-width: 0;
    transform: translateY(-0.04rem);
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .belt-pagination__summary-label {
    color: rgba(255, 255, 255, 0.36);
  }

  .belt-pagination__summary-page {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .belt-pagination__controls {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
  }

  .belt-pagination button {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    line-height: 1;
  }

  .belt-pagination button:not(:disabled):active {
    transform: scale(0.94);
  }

  .belt-pagination__nav {
    min-width: 4.85rem;
    min-height: 2.04rem;
    padding: 0 0.88rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.72);
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition:
      transform 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease,
      background-color 0.2s ease;
  }

  .belt-pagination__nav-icon {
    display: block;
    font-size: 0.96rem;
    line-height: 1;
    transform: translateY(-0.02em);
  }

  .belt-pagination__nav:not(:disabled):hover,
  .belt-pagination__nav:focus-visible {
    color: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
  }

  .belt-pagination__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    min-width: 0;
  }

  .belt-pagination__dot {
    padding: 0.22rem 0.08rem;
    border-radius: 999px;
    transition: transform 0.2s ease;
  }

  .belt-pagination__dot-core {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    transition:
      width 0.2s ease,
      background-color 0.2s ease,
      opacity 0.2s ease,
      box-shadow 0.2s ease;
  }

  .belt-pagination__dot.is-active .belt-pagination__dot-core {
    width: 1.12rem;
    background: rgba(226, 93, 29, 0.92);
    box-shadow: 0 0 0 1px rgba(226, 93, 29, 0.18);
  }

  .belt-pagination__dot:not(.is-active):hover .belt-pagination__dot-core,
  .belt-pagination__dot:not(.is-active):focus-visible .belt-pagination__dot-core {
    background: rgba(255, 255, 255, 0.5);
  }

  .belt-pagination button:disabled {
    opacity: 0.28;
    cursor: default;
  }

  /* Filter Meta - Top Position Mobile */
  .belt-search-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    gap: 0;
    width: 100%;
    min-height: 2.12rem;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .belt-search-bar:focus-within,
  .belt-search-bar.is-active {
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  }

  .belt-search-bar::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.12rem;
    width: 1px;
    height: 0.98rem;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-50%);
    pointer-events: none;
  }

  .belt-search-bar__input {
    flex: 1 1 auto;
    min-width: 0;
    align-self: stretch;
    height: 2.12rem;
    padding: 0 0.2rem 0 2.32rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 2.12rem;
    text-align: center;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .belt-search-bar__input::placeholder {
    color: rgba(255, 255, 255, 0.46);
    letter-spacing: 0.02em;
  }

  .belt-search-bar__input::-webkit-search-cancel-button,
  .belt-search-bar__input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
  }

  .belt-search-bar__button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 2.12rem;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }

  .belt-search-bar__button:hover,
  .belt-search-bar__button:focus-visible {
    color: rgba(255, 255, 255, 0.96);
    background: rgba(255, 255, 255, 0.03);
    outline: none;
  }

  .belt-search-bar__button:active {
    transform: scale(0.98);
  }

  .belt-search-bar__button svg {
    display: block;
    width: 0.92rem;
    height: 0.92rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .belt-hub-selectors {
    display: flex;
    gap: 0.4rem;
    width: 100%;
    padding: 0;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.92);
  }

  .belt-hub-select {
    position: relative;
    flex: 1 1 0;
  }

  /* Trigger — frosted glass pill */
  .belt-hub-select__trigger {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    padding: 0.48rem 1.85rem 0.48rem 0.82rem;
    min-height: 2.08rem;
    font-size: inherit;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-align: left;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: background 0.25s ease, box-shadow 0.25s ease;
  }

  .belt-hub-select.is-open .belt-hub-select__trigger {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  /* Arrow icon */
  .belt-hub-select__trigger::after {
    content: "";
    position: absolute;
    right: 0.72rem;
    top: 50%;
    width: 0.32rem;
    height: 0.32rem;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
    border-right: 1.5px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
    pointer-events: none;
  }

  /* Dropdown panel — deeper glass card */
  .belt-hub-select__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.4rem);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.45rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(16, 16, 16, 0.96);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
    z-index: 20;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-height: 240px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                visibility 0s linear 0.3s;
  }

  .belt-hub-select.is-open .belt-hub-select__menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .belt-hub-select.is-open .belt-hub-select__trigger::after {
    transform: translateY(-35%) rotate(225deg);
    border-color: var(--orange, #e25d1d);
  }

  /* Option items */
  .belt-hub-select__option {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    font-size: inherit;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
  }

  /* Selected option — orange accent bar */
  .belt-hub-select__option[aria-selected="true"] {
    background: rgba(226, 93, 29, 0.14);
    color: var(--orange, #e25d1d);
    font-weight: 600;
  }

  .belt-hub-select__option[aria-selected="true"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 2.5px;
    border-radius: 2px;
    background: var(--orange, #e25d1d);
  }

  .belt-hub-select__option:hover,
  .belt-hub-select__option:focus-visible {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.95);
    outline: none;
  }

  .belt-hub-meta {
    position: static;
    margin: 0; /* Remove vertical margin, rely on parent gap */
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 0.3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    text-align: left;
    width: 100%;
    font-size: clamp(0.62rem, 1.9vw, 0.76rem);
    color: rgba(255, 255, 255, 0.92);
  }

  .belt-hub-meta::-webkit-scrollbar {
    display: none;
  }

  #belt-count {
    font-size: inherit;
    color: inherit;
    opacity: 1;
    flex: 0 0 auto;
    margin-left: auto;
    order: 2;
    white-space: nowrap;
    letter-spacing: 0.06em;
  }

  .belt-filter-chip {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 1.92rem;
    padding: 0.42rem 0.68rem;
    font-size: inherit;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    order: 1;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    white-space: nowrap;
  }

  .belt-filter-chip strong {
    color: inherit;
    font-weight: 600;
    white-space: nowrap;
  }

  body[data-page="products"][data-subpage="overview"] .belt-hub-selectors,
  body[data-page="products"][data-subpage="overview"] .belt-hub-select__trigger,
  body[data-page="products"][data-subpage="overview"] .belt-hub-select__label,
  body[data-page="products"][data-subpage="overview"] .belt-hub-meta,
  body[data-page="products"][data-subpage="overview"] #belt-count,
  body[data-page="products"][data-subpage="overview"] .belt-filter-chip,
  body[data-page="products"][data-subpage="overview"] .belt-filter-chip strong {
    color: rgba(255, 255, 255, 0.46) !important;
    opacity: 1 !important;
  }

  body[data-page="products"][data-subpage="overview"] .belt-hub-select__trigger::after {
    border-bottom-color: rgba(255, 255, 255, 0.46) !important;
    border-right-color: rgba(255, 255, 255, 0.46) !important;
  }

  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] .belt-hub-select__trigger,
  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] .belt-hub-select__option,
  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] #belt-count,
  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] .belt-filter-chip,
  body[data-page="products"][data-subpage="overview"][data-ui-language="it"] .belt-hub-select__trigger,
  body[data-page="products"][data-subpage="overview"][data-ui-language="it"] .belt-hub-select__option,
  body[data-page="products"][data-subpage="overview"][data-ui-language="it"] #belt-count,
  body[data-page="products"][data-subpage="overview"][data-ui-language="it"] .belt-filter-chip,
  body[data-page="products"][data-subpage="overview"][data-ui-language="es"] .belt-hub-select__trigger,
  body[data-page="products"][data-subpage="overview"][data-ui-language="es"] .belt-hub-select__option,
  body[data-page="products"][data-subpage="overview"][data-ui-language="es"] #belt-count,
  body[data-page="products"][data-subpage="overview"][data-ui-language="es"] .belt-filter-chip {
    text-transform: none;
    letter-spacing: 0.03em;
  }

  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] #belt-count,
  body[data-page="products"][data-subpage="overview"][data-ui-language="it"] #belt-count,
  body[data-page="products"][data-subpage="overview"][data-ui-language="es"] #belt-count {
    letter-spacing: 0.05em;
  }

  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] .belt-intro .section-header h2,
  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] .belt-filter-panel .filter-heading,
  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] .belt-detail-modal__title,
  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] .custom-inquiry-modal__dialog > h3,
  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] .custom-inquiry-modal__legend,
  body[data-page="products"][data-subpage="overview"][data-ui-language="en"] .footer-nav-title {
    text-transform: uppercase;
  }

  /* Hide badge on mobile if needed, or adjust it */
  .belt-card__badge {
    top: 6px;
    left: 6px;
    font-size: 0.6rem;
    padding: 2px 6px;
  }
}

/* Mobile History Timeline Optimization (Reference Products Filter) */
.mobile-history-trigger {
  display: none;
}

@media (max-width: 900px) {
  /* Layout adjustments matching Contact Us page margins */
  .seasonal-drops {
    width: min(var(--contact-container), calc(100% - (2 * var(--contact-pad-x))));
    margin: 0 auto;
    padding: 0 0 2rem;
    /* Prevent reveal transform from constraining the fixed history drawer */
    transform: none !important;
    opacity: 1 !important;
    will-change: auto !important;
  }

  .seasonal-drop-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* History Drawer Styles */
  .seasonal-history {
    position: fixed;
    top: var(--nav-bottom, var(--nav-height, 64px));
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: min(
      var(--mobile-drawer-height, 50vh),
      calc(100vh - var(--nav-height, 64px) - var(--history-drawer-bottom-gap, var(--filter-fab-clear, 96px)))
    );
    height: min(
      var(--mobile-drawer-height-dvh, 50dvh),
      calc(100dvh - var(--nav-height, 64px) - var(--history-drawer-bottom-gap, var(--filter-fab-clear, 96px)))
    );
    max-height: var(--mobile-drawer-height, 66.6667vh);
    border-radius: 0 0 24px 24px;
    background: rgba(12, 12, 12, 1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1600;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: none;
    overflow: hidden;
    touch-action: pan-y;
    overscroll-behavior: contain;
    pointer-events: auto;
  }

  .seasonal-history.is-open {
    transform: translateY(0);
  }

  @supports (height: 100dvh) {
    .seasonal-history {
      max-height: var(--mobile-drawer-height-dvh, 66.6667dvh);
    }
  }

  .seasonal-history .history-header {
    display: none;
    padding: 0;
  }

  .seasonal-history .history-header p {
    display: none;
  }

  .seasonal-history .history-header h3 {
    display: none;
  }

  .seasonal-history .history-scroll {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    --history-scroll-top: 1.25rem;
    padding: var(--history-scroll-top) 1.5rem calc(2rem + env(safe-area-inset-bottom));
    padding-right: 1.5rem;
  }

  .seasonal-history .history-timeline::before {
    top: calc(-1 * var(--history-scroll-top, 0px));
  }

  .seasonal-history {
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
  }

  .seasonal-history .history-scroll {
    --history-scroll-top: 1rem;
    padding: var(--history-scroll-top) 1rem calc(1rem + env(safe-area-inset-bottom));
    padding-right: 1rem;
  }

  .seasonal-history .history-timeline {
    gap: 0.9rem;
  }

  .seasonal-history .history-active-indicator {
    border-radius: 12px;
  }

  .seasonal-history .history-timeline li {
    grid-template-columns: 1.5rem 1fr;
    column-gap: 0.58rem;
    row-gap: 0.24rem;
    padding: 0.22rem 0.3rem 0.34rem 0.06rem;
    border-radius: 12px;
  }

  .seasonal-history .history-timeline li::before {
    width: 0.74rem;
    height: 0.74rem;
    border-width: 1.5px;
  }

  .seasonal-history .history-timeline h4 {
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .seasonal-history .history-timeline .history-season-row {
    gap: 0.32rem;
  }

  .seasonal-history .history-timeline .history-season {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    margin: 0.08rem 0;
  }

  .seasonal-history .history-timeline .history-current-tag {
    padding: 0.06rem 0.34rem;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .seasonal-history .history-timeline .history-desc {
    margin: 0.08rem 0 0;
    font-size: 0.68rem;
    line-height: 1.38;
  }

  .seasonal-history .history-thumb-row {
    gap: 0.32rem;
    margin-top: 0.2rem;
  }

  .seasonal-history .history-thumb {
    width: 32px;
    height: 32px;
  }

  .seasonal-history .history-empty {
    padding: 0.75rem 0.15rem;
    font-size: 0.72rem;
  }

  /* Prevent body scroll when drawer is open */
  body.history-drawer-open {
    overflow: hidden;
  }

  /* Lock background interactions when history drawer is open (mobile) */
  body[data-page="products"].history-drawer-open {
    --drawer-bottom-gap: var(--history-drawer-bottom-gap, var(--filter-fab-clear, 96px));
  }

  body[data-page="products"].filter-drawer-open {
    --drawer-bottom-gap: var(--filter-fab-clear, 96px);
  }

  body[data-page="products"].history-drawer-open::before,
  body[data-page="products"].filter-drawer-open::before {
    content: none;
  }

  body[data-page="products"].history-drawer-open main,
  body[data-page="products"].filter-drawer-open main {
    position: relative;
    z-index: 0;
    isolation: isolate;
  }

  body[data-page="products"].history-drawer-open main::before,
  body[data-page="products"].filter-drawer-open main::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.12);
    backdrop-filter: blur(12px) saturate(1.08);
    -webkit-backdrop-filter: blur(12px) saturate(1.08);
    pointer-events: none;
    z-index: 1500;
  }

  body[data-page="products"].history-drawer-open .nav,
  body[data-page="products"].filter-drawer-open .nav {
    pointer-events: none;
    z-index: 1601;
  }

  body[data-page="products"].history-drawer-open .current-drop-actions {
    z-index: 2002;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body[data-page="products"].history-drawer-open .current-drop-actions.is-sticky-floating {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0), rgba(12, 12, 12, 0.92) 26%, rgba(12, 12, 12, 0.96));
    box-shadow: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body[data-page="products"].filter-drawer-open .mobile-filter-trigger {
    z-index: 2002;
    background: rgba(10, 10, 10, 0.9);
    color: var(--orange, #e25d1d);
    border-color: rgba(226, 93, 29, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body[data-page="products"].history-drawer-open .seasonal-history {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body[data-page="products"].filter-drawer-open .belt-filter-panel {
    background: linear-gradient(180deg, #222 0%, #121212 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body[data-page="products"].history-drawer-open .current-drop-actions__split {
    background: transparent;
    border-color: rgba(226, 93, 29, 0.6);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Trigger Button (Copy of .mobile-filter-trigger) */
  .mobile-history-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
    --filter-toggle-offset: -0.08em;
    
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 950;
    margin: 0;
    
    width: calc(100% - 2.5rem);
    
    background: rgba(18, 18, 18, 0.85);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s ease;
  }

  .mobile-history-trigger:active {
    transform: translateX(-50%) scale(0.96);
    background: rgba(18, 18, 18, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
  }

  /* Toggle Icon Styles */
  .mobile-history-trigger .filter-toggle {
    display: inline-flex;
    position: relative;
    width: 1em;
    height: 1em;
    flex: 0 0 1em;
    align-items: center;
    justify-content: center;
    color: inherit;
    transform: translateY(var(--filter-toggle-offset));
    align-self: center;
  }

  .mobile-history-trigger .filter-toggle span {
    width: 100%;
    height: 0.12em;
    border-radius: 999px;
    background: currentColor;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, height 0.2s ease;
  }

  .mobile-history-trigger .filter-toggle span:nth-child(1) { top: calc(50% - 0.32em); }
  .mobile-history-trigger .filter-toggle span:nth-child(2) { top: 50%; }
  .mobile-history-trigger .filter-toggle span:nth-child(3) { top: calc(50% + 0.32em); }

  .mobile-history-trigger.is-open .filter-toggle span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .mobile-history-trigger.is-open .filter-toggle span:nth-child(2) { opacity: 0; }
  .mobile-history-trigger.is-open .filter-toggle span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* --- Fixes for Seasonal Radar Mobile Layout & Logic --- */

/* 1. Ensure Mobile Trigger is fixed relative to viewport (override transforms if any) */
@media (max-width: 900px) {
  /* Show the anchor container only on mobile */
  .mobile-filter-anchor[style*="display: none"] {
    display: flex !important; /* Force show the container we added */
    /* Ensure no transform interferes */
    transform: none !important;
    position: static; /* Let the fixed child handle position */
  }

  /* Refine button position strictly at bottom center */
  .mobile-history-trigger {
    display: flex !important;
    position: fixed;
    bottom: 32px; /* Or var(--filter-fab-bottom) */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000; /* Higher than modal backdrops but lower than modal/drawer itself if opened */
    margin: 0;
  }
  
  /* Hide trigger when drawer is open to avoid clutter, or keep it as toggle? 
     Design pattern usually keeps it. Let's ensure z-index is correct. */
   .seasonal-history.is-open ~ .mobile-filter-anchor .mobile-history-trigger {
       z-index: 2001; /* Ensure clickable above backdrop if backdrop exists */
   }
   
   /* 2. Fix History Drawer "Residue" (Visibility/Display) */
   /* Desktop uses 'aside' in normal flow. Mobile must pull it out. */
   .seasonal-history {
     /* Ensure it's hidden by default on mobile if not open */
     visibility: hidden; 
     transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.4s step-end;
   }
   
   .seasonal-history.is-open {
     visibility: visible;
     transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s step-start;
   }
   
   /* 3. Optimize "Current Drop" Container Layout */
   /* Reduce padding inside the card */
   .seasonal-showcase {
     padding: 1.25rem;
     gap: 1.25rem;
     border-radius: 20px;
   }
   
   /* Seasonal Header adjustments */
   .seasonal-heading {
     flex-direction: column;
     align-items: flex-start;
     gap: 0.5rem;
     padding-bottom: 0.5rem;
   }
   
   .seasonal-heading-row {
     width: 100%;
     justify-content: space-between;
     align-items: center; /* Align badge/text */
     display: none;
   }
   
   .seasonal-quarter-select {
     display: block;
     width: 100%;
     margin-top: 0.15rem;
   }

   .seasonal-heading h3 {
     font-size: 1.5rem;
     margin: 0;
   }
   
   .seasonal-badge {
     margin-bottom: 0;
   }
   
   /* Image Aspect Ratio */
   .current-drop-hero {
      /* Ensure image isn't too tall on mobile */
      aspect-ratio: 4/3; /* or 3/2 per user request previously */
   }
   
   /* Panel typography */
   .current-drop-panel h4 {
     font-size: 1.25rem;
   }
}

/* --- Fix for Seasonal History Drawer Position & Width --- */
@media (max-width: 900px) {
  .seasonal-history {
    position: fixed;
    /* Ensure it pulls down from exactly below the nav */
    top: var(--nav-bottom, var(--nav-height, 64px)) !important; 
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important; /* Force override any layout margins */
    max-width: none !important; /* Remove container max-width limits */
    border-radius: 0 0 24px 24px; /* Only bottom rounded */
    
    /* Ensure correct z-index to sit below nav but above content */
    z-index: 1600; 
  }
}

/* Mobile Refactor for Products News (Max-width 767px) */
@media (max-width: 767px) {
  /* Reset Seasonal Drops Container */
  .seasonal-drops {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .seasonal-drop-grid {
    display: block;
    gap: 0;
  }

  /* Reset Showcase "Card" */
  .seasonal-showcase {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 0;
  }

  /* Header Section */
  .seasonal-heading {
    margin: 0;
    padding: 0;
    align-items: stretch;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 60;
    overflow: visible;
  }

  .seasonal-heading-row {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
  }

  .seasonal-heading h3 {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }

  .seasonal-period {
    font-size: 0.75rem;
    opacity: 0.8;
  }

  /* Hide the descriptive paragraph in header to save space on mobile */
  #current-drop-heading-desc {
    display: none;
  }

  .seasonal-badge {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
  }

  .seasonal-badge,
  .seasonal-heading-row h3 {
    display: none;
  }

  .seasonal-heading-row {
    display: none;
  }

  .seasonal-heading {
    --seasonal-mobile-section-gap: clamp(1.25rem, 5vw, 2rem);
  }

  .seasonal-quarter-select__desc-shell {
    display: block;
    margin:
      clamp(0.62rem, 2.7vw, 0.82rem)
      var(--seasonal-mobile-section-gap)
      var(--seasonal-mobile-section-gap);
    padding: clamp(0.72rem, 3vw, 0.9rem) clamp(0.95rem, 3.8vw, 1.05rem);
    box-sizing: border-box;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .seasonal-quarter-select__desc {
    margin: 0;
    color: rgba(232, 236, 241, 0.76);
    font-size: clamp(0.78rem, 3.05vw, 0.88rem);
    line-height: 1.68;
    letter-spacing: 0.01em;
    text-align: justify;
    text-align-last: auto;
    text-wrap: pretty;
  }

  body[data-page="products"][data-subpage="news"][data-ui-language="en"] .seasonal-quarter-select__desc,
  body[data-page="products"][data-subpage="news"][data-ui-language="it"] .seasonal-quarter-select__desc,
  body[data-page="products"][data-subpage="news"][data-ui-language="es"] .seasonal-quarter-select__desc {
    text-wrap: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .seasonal-quarter-select__desc::before {
    content: "季度说明";
    display: block;
    margin-bottom: 0.42rem;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
  }

  .seasonal-quarter-select {
    display: block;
    width: auto;
    margin: 0 var(--seasonal-mobile-section-gap);
    position: relative;
    z-index: 70;
  }

  .seasonal-quarter-select[hidden] + .seasonal-quarter-select__desc-shell {
    margin-top: 0;
  }

  .seasonal-quarter-select .belt-hub-select__trigger {
    width: 100%;
    min-height: 2.12rem;
    padding: 0 2rem 0 0.95rem;
    font-size: 0.83rem;
    letter-spacing: 0.03em;
    line-height: 1.2;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: transparent;
    box-shadow: none;
  }

  .seasonal-quarter-select.belt-hub-select.is-open .belt-hub-select__trigger {
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: transparent;
    box-shadow: none;
  }

  .seasonal-quarter-select.belt-hub-select.is-open .belt-hub-select__trigger::after {
    border-color: var(--orange, #e25d1d);
  }

  .seasonal-quarter-select .belt-hub-select__label {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.42rem;
    width: 100%;
    padding-right: 1.35rem;
    min-width: 0;
    font-size: 0.82rem;
    letter-spacing: 0.015em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .seasonal-quarter-select .drop-quarter-current-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 0;
    padding: 0.1rem 0.42rem;
    border-radius: 999px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--orange);
    flex: 0 0 auto;
    line-height: normal;
    white-space: nowrap;
    pointer-events: none;
  }

  .seasonal-quarter-select.belt-hub-select .belt-hub-select__trigger .drop-quarter-text-main {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.012em;
  }

  .seasonal-quarter-select.belt-hub-select .belt-hub-select__trigger .drop-quarter-text-sep {
    color: rgba(255, 255, 255, 0.34);
    font-weight: 400;
  }

  .seasonal-quarter-select.belt-hub-select .belt-hub-select__trigger .drop-quarter-text-sub {
    font-weight: 700;
    font-size: 0.92em;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.008em;
  }

  .seasonal-quarter-select .belt-hub-select__menu {
    font-size: 0.82rem;
    max-height: min(42vh, 260px);
    z-index: 1800;
  }

  .seasonal-quarter-select .belt-hub-select__option {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.34rem;
    min-height: 2.02rem;
    padding: 0.44rem 0.68rem;
    font-size: 0.82rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
  }

  .seasonal-quarter-select .drop-quarter-option-main {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
  }

  .seasonal-quarter-select .drop-quarter-option-sep {
    color: rgba(255, 255, 255, 0.34);
  }

  .seasonal-quarter-select .drop-quarter-option-sub {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
  }

  .seasonal-quarter-select .belt-hub-select__option[aria-selected="true"] .drop-quarter-option-main {
    color: rgba(226, 93, 29, 0.84);
  }

  .seasonal-quarter-select .belt-hub-select__option[aria-selected="true"] .drop-quarter-option-sub {
    color: var(--orange, #e25d1d);
  }

  /* Viewer Area */
  .seasonal-viewer {
    gap: 0;
  }

  .current-drop-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Hero Image Area */
  .current-drop-stage {
    gap: 0;
  }

  .current-drop-hero {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 1 / 1; /* Square is good standard */
    background: #111;
  }
  
  /* Indicators inside Hero */
  .current-drop-hero .current-drop-dots {
    left: 50%;
    bottom: 1rem;
    gap: clamp(0.38rem, 1.2vw, 0.56rem);
    padding: 0.45rem 0.7rem;
    transform: translateX(-50%);
  }

  /* Thumbnails Selector */
  .current-drop-selector-wrap {
    background: #0a0a0a;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Hide arrows on mobile touch */
  }

  .selector-arrow {
    display: none;
  }

  .current-drop-selector {
    width: 100%;
    padding: 0 1.25rem;
    justify-content: flex-start;
    /* Ensure inertia scrolling */
    -webkit-overflow-scrolling: touch;
  }
  
  .selector-tile {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 12px;
  }

  /* Product Details Panel */
  .current-drop-panel {
    --current-drop-page-pad: 1.25rem;
    padding: var(--current-drop-page-pad) var(--current-drop-page-pad) 1.5rem;
    width: 100%;
    border-radius: 0;
    margin-top: 0;
  }

  .current-drop-panel h4 {
    font-size: clamp(1.96rem, 7.6vw, 2.36rem);
    line-height: 1.06;
    margin: 0.14rem 0 0.68rem;
    color: #fff;
  }

  /* Meta Data (Color, Size etc) */
  .current-drop-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
    font-size: 0.85rem;
    padding: 1rem;
    background: rgba(43, 48, 58, 0.86);
    border-radius: 12px;
  }

  .current-drop-meta li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .current-drop-meta li strong {
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
  }

  .current-drop-title,
  #current-drop-title {
    display: none;
  }

  /* Fixed Bottom Actions */
  .current-drop-actions {
    position: fixed;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    width: calc(100% - 2.5rem) !important;
    max-width: calc(100vw - 2.5rem);
    margin-left: auto;
    margin-right: auto;
    transform: none !important;
    padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom));
    box-sizing: border-box;
    /* Default is transparent for "docked" state to match panel */
    background: transparent;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.2s ease, backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease;
  }

  /* When floating, use solid background to cover content */
  .current-drop-actions.is-sticky-floating {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0), rgba(12, 12, 12, 0.92) 26%, rgba(12, 12, 12, 0.96));
    box-shadow: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .current-drop-actions.current-drop-actions--dual.is-sticky-floating {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    transform: none !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Remove orange shadow on mobile for primary button */
  .current-drop-actions .belt-detail-modal__cta--primary {
    box-shadow: none;
  }
  
  .current-drop-actions .belt-detail-modal__cta {
    width: 100%;

    margin: 0;
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
  
}

/* Mobile Bottom Bar Refinement */
@media (max-width: 767px) {
  .current-drop-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    --mobile-action-font: 0.88rem;
    --mobile-action-pad-y: 0.6rem;
    --mobile-action-pad-x: 1.35rem;
    --mobile-action-letter: 0.04em;
    --mobile-action-line: 1;
  }

  .current-drop-actions__split {
    display: inline-flex;
    width: 100%;
    align-items: stretch;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(226, 93, 29, 0.6);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex: 0 0 auto;
    box-shadow: none;
  }

  .current-drop-actions__split .drop-custom-btn {
    display: none !important;
  }

  .current-drop-actions__split .history-inline-btn {
    display: inline-flex !important;
    width: 100%;
    flex: 1 1 100%;
  }

  /* Split Button (Mobile) */
  .current-drop-actions__split .belt-detail-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--orange, #e25d1d);
    padding: var(--mobile-action-pad-y) var(--mobile-action-pad-x);
    font-size: var(--mobile-action-font);
    letter-spacing: var(--mobile-action-letter);
    line-height: var(--mobile-action-line);
    font-weight: 500;
    width: 100%;
    min-width: 0;
    flex: 1 1 0;
    white-space: nowrap;
    text-align: center;
  }

  .current-drop-actions__split .belt-detail-modal__cta + .belt-detail-modal__cta {
    border-left: 1px solid rgba(226, 93, 29, 0.35);
  }

  .current-drop-actions__split .drop-custom-btn + .history-inline-btn {
    border-left: none;
  }

  .current-drop-actions__split .belt-detail-modal__cta:hover,
  .current-drop-actions__split .belt-detail-modal__cta:focus-visible {
    transform: none;
  }

  .current-drop-actions__split .belt-detail-modal__cta:active {
    transform: none;
  }

  .history-inline-btn .filter-toggle {
    display: inline-flex;
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    flex: 0 0 1em;
    align-items: center;
    justify-content: center;
    color: inherit;
    margin: 0;
  }

  .current-drop-actions__split .history-inline-btn {
    position: relative;
    padding-right: 2.2rem;
    padding-left: 2.2rem;
    background: transparent !important;
  }

  .current-drop-actions__split .history-inline-btn:hover,
  .current-drop-actions__split .history-inline-btn:focus-visible,
  .current-drop-actions__split .history-inline-btn:active,
  .current-drop-actions__split .history-inline-btn.is-open,
  .current-drop-actions__split .history-inline-btn[aria-expanded="true"] {
    background: transparent !important;
  }

  .history-inline-btn .filter-toggle span {
    width: 100%;
    height: 0.12em;
    border-radius: 999px;
    background: currentColor;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, height 0.2s ease;
  }

  .history-inline-btn .filter-toggle span:nth-child(1) { top: calc(50% - 0.32em); }
  .history-inline-btn .filter-toggle span:nth-child(2) { top: 50%; }
  .history-inline-btn .filter-toggle span:nth-child(3) { top: calc(50% + 0.32em); }

  .history-inline-btn[aria-expanded="true"] .filter-toggle span:nth-child(1),
  .history-inline-btn.is-open .filter-toggle span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .history-inline-btn[aria-expanded="true"] .filter-toggle span:nth-child(2),
  .history-inline-btn.is-open .filter-toggle span:nth-child(2) {
    opacity: 0;
  }

  .history-inline-btn[aria-expanded="true"] .filter-toggle span:nth-child(3),
  .history-inline-btn.is-open .filter-toggle span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  .history-inline-btn.belt-detail-modal__cta:active {
    background: transparent;
    transform: scale(0.96);
  }

  /* Order Button */
  .current-drop-actions .belt-detail-modal__cta--primary {
    flex: 0 0 auto;
    width: 100%;
    padding: var(--mobile-action-pad-y) var(--mobile-action-pad-x);
    font-size: var(--mobile-action-font);
    letter-spacing: var(--mobile-action-letter);
    line-height: var(--mobile-action-line);
    text-align: center;
    justify-content: center;
  }

  /* Ensure the trigger works visually when active (open drawer) */
  .history-inline-btn.is-open {
    background: transparent;
    color: var(--orange, #e25d1d);
  }
  
  /* Disable the floating trigger styles if any leaked */
  .mobile-history-trigger {
    display: none !important;
  }
}

/* Specificity fix for history button width */
@media (max-width: 767px) {
  .current-drop-actions > .history-inline-btn {
    width: auto !important;
    flex: 0 0 auto;
  }
}

/* Mobile Thumbnails Refinement: Full-width Rectangles Strip */
@media (max-width: 767px) {
  .current-drop-selector-wrap {
    padding: 0 !important;
    border-bottom: none;
    background: transparent;
    margin-top: 2px; /* Space between main image and thumbs */
  }

  .current-drop-selector {
    padding: 0 !important;
    gap: 2px !important; /* Thin slit between items */
    width: 100%;
    scroll-padding-left: 0;
  }

  .selector-tile {
    border-radius: 0 !important;
    border: none !important;
    /* Show roughly 4.5 items to hint scrolling */
    width: 100px; 
    min-width: 22vw; 
    height: 22vw;
    margin: 0;
    opacity: 1;
    transition: box-shadow 0.2s ease;
    background: #1a1a1a; /* Placeholder bg */
  }
  
  .selector-tile:first-child {
    /* No left offset */
  }
  
  .selector-info {
    display: none !important;
  }

  .selector-tile .selector-thumb img {
    transform: none !important;
  }

  .selector-tile.is-active,
  .selector-tile.is-selected {
    box-shadow: none !important;
    transform: none !important;
  }

  .selector-tile.is-active::after,
  .selector-tile.is-selected::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--orange);
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
  }
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail {
    --mobile-belt-detail-z-index: 940;
    --mobile-belt-detail-topbar-height: calc(2 * clamp(1.25rem, 5vw, 2rem));
    position: fixed;
    top: calc(var(--nav-bottom, var(--nav-height, 64px)) - 1px);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    background: var(--products-deep-gray);
    z-index: var(--mobile-belt-detail-z-index);
    overflow: hidden;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__inner {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-top: var(--mobile-belt-detail-topbar-height);
    padding-bottom: calc(7rem + env(safe-area-inset-bottom));
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__topbar {
    position: fixed;
    top: var(--nav-bottom, var(--nav-height, 64px));
    right: 0;
    left: 0;
    z-index: calc(var(--mobile-belt-detail-z-index) + 1);
    display: flex;
    align-items: center;
    min-height: var(--mobile-belt-detail-topbar-height);
    box-sizing: border-box;
    padding: 0 clamp(1.25rem, 5vw, 2rem);
    background: var(--products-deep-gray);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__back {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.22rem;
    min-height: 100%;
    border: none;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.1;
    cursor: pointer;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__back > span:last-child {
    display: inline-flex;
    align-items: center;
    line-height: 1.1;
    transform: translateY(0.05em);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__back-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.8rem;
    height: 0.8rem;
    flex: 0 0 0.8rem;
    font-size: 0;
    line-height: 0;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__back-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.42rem;
    height: 0.42rem;
    border-bottom: 1.2px solid currentColor;
    border-right: 1.2px solid currentColor;
    transform: translate(-50%, -56%) rotate(135deg);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__viewer {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-width: 0;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-width: 0;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__stage {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-width: 0;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__hero {
    position: relative;
    margin: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    touch-action: pan-y;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    border-radius: 0;
    background: #111;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__indicators {
    position: absolute;
    left: 50%;
    bottom: clamp(0.8rem, 3vw, 1rem);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: clamp(0.38rem, 1.2vw, 0.56rem);
    width: max-content;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(28, 32, 38, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    line-height: 0;
    transform: translateX(-50%);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__indicators .belt-pagination__dot-core {
    background: rgba(255, 255, 255, 0.28);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__indicators .belt-pagination__dot.is-active .belt-pagination__dot-core {
    width: 1.12rem;
    background: rgba(226, 93, 29, 0.92);
    box-shadow: 0 0 0 1px rgba(226, 93, 29, 0.18);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__hero img {
    position: absolute;
    top: -2%;
    left: -2%;
    width: 104%;
    height: 104%;
    object-fit: cover;
    transform: scale(1.02);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__selector-wrap {
    display: block;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border-bottom: none;
    background: transparent;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__selector {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    justify-content: stretch;
    gap: 2px;
    overflow: visible;
    width: 100%;
    max-width: none;
    padding: 0 !important;
    scroll-padding-left: 0;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__selector .selector-tile {
    width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__panel {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: clamp(1.25rem, 5vw, 2rem);
    border-radius: 0;
    background: var(--products-deep-gray);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__title {
    margin: 0.14rem 0 0.68rem;
    font-size: clamp(1.96rem, 7.6vw, 2.36rem);
    line-height: 1.06;
    color: #fff;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__meta {
    margin: 0;
    padding: 0.8rem;
    background: rgba(37, 41, 49, 0.82);
    border-radius: 14px;
    gap: 0.5rem 1rem;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__meta li {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.25rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__meta span {
    letter-spacing: 0.08em;
    font-size: 0.74rem;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__meta strong {
    width: 100%;
    font-size: 0.82rem;
    line-height: 1.45;
    min-width: 0;
    flex: 0 0 auto;
    text-align: left;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__eyebrow:empty,
  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__desc:empty {
    display: none;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__desc {
    margin: 0 0 0.84rem;
    font-size: 0.84rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.7);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__colors {
    margin-top: 0.2rem;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0.75rem clamp(1.25rem, 5vw, 2rem) calc(0.75rem + env(safe-area-inset-bottom));
    box-sizing: border-box;
    z-index: calc(var(--mobile-belt-detail-z-index) + 2);
    background: linear-gradient(180deg, rgba(12, 12, 12, 0), rgba(12, 12, 12, 0.92) 26%, rgba(12, 12, 12, 0.96));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__actions .belt-detail-modal__cta {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.6rem 1.35rem;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    line-height: 1;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__actions .belt-detail-modal__cta--primary {
    box-shadow: none;
  }

  body[data-page="products"][data-subpage="overview"] .mobile-belt-detail__actions .belt-detail-modal__cta--ghost {
    display: inline-flex;
  }

  body[data-page="products"].has-mobile-belt-detail {
    overflow: hidden !important;
  }

  body[data-page="products"].has-mobile-belt-detail .mobile-filter-anchor,
  body[data-page="products"].has-mobile-belt-detail .belt-pagination {
    opacity: 0;
    pointer-events: none;
  }
}

/* ==================== 移动端新品速递标题动画 ==================== */
@media (max-width: 767px) {
  /* 为seasonal-heading元素添加入场动画 */
  .seasonal-drops.reveal:not(.is-visible) .seasonal-heading {
    opacity: 0;
  }

  .seasonal-drops.reveal.is-visible .seasonal-heading {
    animation: seasonalHeadingFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  /* 标题文字渐入动画 */
  .seasonal-drops.reveal.is-visible .seasonal-heading h3 {
    animation: seasonalTextSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  }

  /* Badge渐入动画 */
  .seasonal-drops.reveal.is-visible .seasonal-badge {
    animation: seasonalBadgeFade 0.6s ease-out 0.1s both;
  }

  /* Period标签渐入动画 */
  .seasonal-drops.reveal.is-visible .seasonal-period {
    animation: seasonalPeriodSlide 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
  }

  /* 背景装饰动画 */
  .seasonal-drops.reveal.is-visible .seasonal-heading::before {
    animation: seasonalGlowPulse 2s ease-in-out 0.8s infinite alternate;
  }
}

/* 关键帧定义 */
@keyframes seasonalHeadingFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes seasonalBadgeFade {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 0.9;
    transform: translateX(0);
  }
}

@keyframes seasonalPeriodSlide {
  from {
    opacity: 0;
    transform: translateX(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes seasonalGlowPulse {
  from {
    opacity: 0.12;
    transform: scale(1);
  }
  to {
    opacity: 0.18;
    transform: scale(1.1);
  }
}

/* 移动端seasonal-heading触摸优化和细节增强 */
@media (max-width: 767px) {
  /* 提升触摸体验 - 防止误触 */
  .seasonal-heading {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
  }

  /* 让标题文字可以被选中（用户可能想复制） */
  .seasonal-heading h3,
  .seasonal-heading p {
    user-select: text;
  }

  /* Period标签悬停效果（适用于触屏后） */
  .seasonal-period {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  /* 为badge添加微妙的脉动效果 */
  @media (prefers-reduced-motion: no-preference) {
    .seasonal-badge {
      animation: badgeGentlePulse 3s ease-in-out infinite;
    }
  }

  /* 响应式文字大小调整 */
  @media (max-width: 400px) {
    .seasonal-heading {
      padding: 1.5rem 1.25rem 1.25rem;
    }

    .seasonal-heading h3 {
      font-size: 1.5rem;
    }

    .seasonal-period {
      font-size: 0.7rem;
      padding: 0.2rem 0.6rem;
    }

    .seasonal-badge {
      font-size: 0.6rem;
    }
  }

  /* 超大屏幕优化（平板横屏） */
  @media (min-width: 600px) and (max-width: 767px) {
    .seasonal-heading {
      padding: 2.5rem 2rem 2rem;
    }

    .seasonal-heading h3 {
      font-size: 2rem;
    }

    .seasonal-period {
      font-size: 0.85rem;
    }
  }
}

/* Badge脉动动画 - 更温和 */
@keyframes badgeGentlePulse {
  0%, 100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.7;
  }
}

/* 深色模式优化（如果需要） */
@media (prefers-color-scheme: dark) {
  .seasonal-heading {
    background: var(--products-deep-gray);
  }

  .seasonal-heading::before {
    background: none;
  }
}

@media (max-width: 767px) {
  .seasonal-heading {
    padding: 0 !important;
    align-items: stretch !important;
    background: transparent !important;
  }

  .seasonal-quarter-select__desc-shell {
    margin-inline: var(--seasonal-mobile-section-gap);
  }
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: var(--products-deep-gray);
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll {
    height: auto !important;
    min-height: 100vh;
    overflow: visible !important;
    scroll-snap-type: none !important;
    scroll-snap-stop: normal !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll::before {
    content: none;
  }

  body[data-page="products"][data-subpage="custom"] main {
    --custom-main-top-pad: clamp(5.6rem, 14vw, 6.8rem);
    padding: var(--custom-main-top-pad) clamp(0.9rem, 3.8vw, 1.35rem) clamp(2.4rem, 8vw, 3.2rem);
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > section {
    padding: 0;
    margin-bottom: clamp(1rem, 4vw, 1.5rem);
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-snap-section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > footer {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow {
    margin-top: 0;
    min-height: 0 !important;
    height: auto !important;
    margin-bottom: clamp(0.9rem, 3.5vw, 1.35rem);
  }

  @supports (height: 100dvh) {
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow {
      min-height: 0 !important;
      height: auto !important;
    }
  }

  body[data-page="products"][data-subpage="custom"] .custom-section {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(5, 5, 5, 0.66));
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
    padding: clamp(1rem, 3.5vw, 1.25rem);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section__inner {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    height: auto;
    align-items: stretch;
    width: 100%;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section__inner--full {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    gap: 0.9rem !important;
    padding: 0 !important;
    max-width: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section__content--centered,
  body[data-page="products"][data-subpage="custom"] .custom-section__content--centered .section-header {
    margin: 0 !important;
    text-align: right !important;
    align-items: flex-start !important;
    max-width: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section__content,
  body[data-page="products"][data-subpage="custom"] .custom-section__media {
    gap: 0.9rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content {
    margin-bottom: 0;
    align-items: flex-start;
    text-align: left;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(5, 5, 5, 0.66));
    padding: clamp(0.95rem, 3.2vw, 1.2rem);
    min-height: 0 !important;
    height: auto !important;
  }

  @supports (height: 100dvh) {
    body[data-page="products"][data-subpage="custom"] .custom-section--flow {
      min-height: 0 !important;
      height: auto !important;
    }
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__inner {
    height: auto !important;
    min-height: 0;
    gap: 0.72rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__media {
    flex: 0 0 auto;
    min-height: 0 !important;
    height: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content .section-header {
    align-items: flex-start !important;
    text-align: left;
  }

  body[data-page="products"][data-subpage="custom"] .process-timeline--horizontal {
    margin-top: 0.15rem;
    padding: 0;
    height: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .process-steps--horizontal {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.7rem;
    height: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .timeline-track,
  body[data-page="products"][data-subpage="custom"] .step-pulse {
    display: none;
  }

  body[data-page="products"][data-subpage="custom"] .process-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.62rem;
    align-items: start;
    position: relative;
    max-width: none;
    min-height: 0;
    border-radius: 0;
    overflow: visible;
  }

  body[data-page="products"][data-subpage="custom"] .process-step::before {
    content: none;
  }

  body[data-page="products"][data-subpage="custom"] .step-marker {
    display: flex;
    width: 42px;
    height: 42px;
    opacity: 1;
    transform: none;
    animation: none !important;
    order: 0;
    margin-top: 0.12rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-content {
    position: relative;
    z-index: 1;
    min-height: 0;
    height: auto;
    padding: 0.82rem 0.86rem;
    border-radius: 12px;
    background: rgba(7, 11, 16, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: none;
    animation: none !important;
    justify-content: flex-start;
  }

  body[data-page="products"][data-subpage="custom"] .step-content::before {
    content: none;
  }

  body[data-page="products"][data-subpage="custom"] .step-icon {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0 0 0.32rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-title {
    margin-bottom: 0.24rem;
    font-size: 0.92rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    line-height: 1.48;
  }

  body[data-page="products"][data-subpage="custom"] .process-step--hovered,
  body[data-page="products"][data-subpage="custom"] .process-step--shift-left,
  body[data-page="products"][data-subpage="custom"] .process-step--shift-right {
    transform: none !important;
    opacity: 1 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section .section-header h2 {
    font-size: clamp(1.35rem, 5.8vw, 1.78rem);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section .section-lede {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
    max-width: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix-grid {
    margin-top: 0.75rem;
    gap: 0.75rem;
    min-height: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix {
    min-height: 0;
    height: auto;
    padding: 0.95rem;
    border-radius: 16px;
    background: rgba(7, 11, 16, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    gap: 0.82rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix.is-open,
  body[data-page="products"][data-subpage="custom"] .custom-matrix.is-closing {
    flex-grow: 1;
    border-radius: 16px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix__body,
  body[data-page="products"][data-subpage="custom"] .custom-matrix.is-open .custom-matrix__body {
    opacity: 1;
    pointer-events: auto;
    justify-content: flex-start;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix__cta {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 0.1rem;
    letter-spacing: 0.12em;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix__details {
    position: static;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    gap: 0.7rem;
    margin-top: 0.15rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix__sections,
  body[data-page="products"][data-subpage="custom"] .custom-matrix__sections--specs {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix__sections--specs section {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.68rem 0.76rem;
    min-height: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix__sections--specs section::after {
    content: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix__sections--specs :is(h2, h4),
  body[data-page="products"][data-subpage="custom"] .custom-matrix__sections--specs section:first-child .spec-dimensions,
  body[data-page="products"][data-subpage="custom"] .custom-matrix__sections--specs section:nth-child(n + 2) .spec-stack {
    margin-top: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-section__inner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-section__content {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    gap: 0.5rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .section-header {
    margin-top: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
    position: static;
    transform: none;
    margin: 0;
    line-height: 1.72;
    gap: 0.4rem;
    justify-items: start;
  }

  body[data-page="products"][data-subpage="custom"] .case-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 12px;
    overflow: hidden;
  }

  body[data-page="products"][data-subpage="custom"] .case-logo-slot {
    min-height: 82px;
    padding: 0.6rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-team-section .custom-section__inner {
    gap: 0.85rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-team-section .custom-section__media {
    order: 1;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-team-section .custom-section__content {
    order: 2;
  }

  body[data-page="products"][data-subpage="custom"] .custom-team-section .split-media {
    min-height: clamp(190px, 44vw, 250px);
    border-radius: 14px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-team-section .plain-list {
    gap: 0.35rem;
    margin-top: 0.4rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-team-section .cta {
    align-self: flex-start;
    margin-top: 0.2rem;
    padding-inline: 1.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] main {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow {
    min-height: 0 !important;
    height: auto !important;
    padding: 0.78rem;
  }

  body[data-page="products"][data-subpage="custom"] .process-steps--horizontal {
    gap: 0.58rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-marker {
    width: 38px;
    height: 38px;
  }

  body[data-page="products"][data-subpage="custom"] .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-content {
    padding: 0.72rem 0.76rem;
    border-radius: 10px;
  }

  body[data-page="products"][data-subpage="custom"] .step-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 0.28rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-title {
    font-size: 0.86rem;
    margin-bottom: 0.2rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    font-size: 0.72rem;
    line-height: 1.42;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section .section-header p {
    display: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section .section-header h2 {
    font-size: clamp(1.22rem, 7vw, 1.5rem);
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix {
    border-radius: 14px;
    padding: 0.8rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix__cta {
    width: 100%;
    letter-spacing: 0.1em;
    font-size: 0.62rem;
  }

  body[data-page="products"][data-subpage="custom"] .case-logo-slot {
    min-height: 74px;
  }
}

body[data-page="products"][data-subpage="custom"] h2 {
  font-size: 2rem !important;
  margin: 0 !important;
  text-align: center !important;
}

body[data-page="products"][data-subpage="custom"] .section-header,
body[data-page="products"][data-subpage="custom"] .custom-section__content--centered .section-header,
body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content .section-header {
  align-items: center !important;
  text-align: center !important;
}

body[data-page="products"][data-subpage="custom"] .custom-section__content--centered,
body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content {
  align-items: center !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow {
    margin-top: calc(var(--custom-main-top-pad, 0px) * -1);
    min-height: 100svh !important;
    height: 100svh !important;
    margin-bottom: clamp(0.9rem, 3.5vw, 1.35rem);
  }

  @supports (height: 100dvh) {
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow {
      min-height: 100dvh !important;
      height: 100dvh !important;
    }
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__inner {
    height: 100% !important;
    min-height: 0;
    gap: 0.6rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content {
    flex: 0 0 auto;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__media {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: 100% !important;
  }

  body[data-page="products"][data-subpage="custom"] .process-timeline--horizontal {
    margin-top: 0;
    padding: 0;
    height: 100% !important;
  }

  body[data-page="products"][data-subpage="custom"] .process-steps--horizontal {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, minmax(0, 1fr));
    gap: 0.4rem;
    height: 100% !important;
  }

  body[data-page="products"][data-subpage="custom"] .timeline-track,
  body[data-page="products"][data-subpage="custom"] .step-pulse,
  body[data-page="products"][data-subpage="custom"] .step-marker,
  body[data-page="products"][data-subpage="custom"] .step-icon {
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .process-step {
    display: block;
    position: relative;
    max-width: none;
    min-height: 0;
    border-radius: 10px;
    overflow: hidden;
  }

  body[data-page="products"][data-subpage="custom"] .process-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--flow-step-bg, linear-gradient(135deg, #3f4958, #262d38));
    z-index: 0;
  }

  body[data-page="products"][data-subpage="custom"] .process-step[data-step="1"] {
    --flow-step-bg: linear-gradient(135deg, #5f6f82, #3f4d5f);
  }

  body[data-page="products"][data-subpage="custom"] .process-step[data-step="2"] {
    --flow-step-bg: linear-gradient(135deg, #5f7d6a, #3f5c4b);
  }

  body[data-page="products"][data-subpage="custom"] .process-step[data-step="3"] {
    --flow-step-bg: linear-gradient(135deg, #7d665f, #5c4840);
  }

  body[data-page="products"][data-subpage="custom"] .process-step[data-step="4"] {
    --flow-step-bg: linear-gradient(135deg, #6a5f83, #4b4264);
  }

  body[data-page="products"][data-subpage="custom"] .process-step[data-step="5"] {
    --flow-step-bg: linear-gradient(135deg, #7d735f, #5e5644);
  }

  body[data-page="products"][data-subpage="custom"] .step-content {
    position: relative;
    z-index: 1;
    min-height: 0;
    height: 100%;
    padding: 0.5rem 0.72rem;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.52));
    border: 0;
    text-align: left;
    box-shadow: none;
    opacity: 1;
    transform: none;
    animation: none !important;
    justify-content: flex-end;
  }

  body[data-page="products"][data-subpage="custom"] .step-content::before {
    content: none;
  }

  body[data-page="products"][data-subpage="custom"] .step-title {
    margin-bottom: 0.14rem;
    font-size: 0.84rem;
    color: #ffffff;
  }

  body[data-page="products"][data-subpage="custom"] .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.67rem;
    line-height: 1.35;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow {
    min-height: 100svh !important;
    height: 100svh !important;
  }

  @supports (height: 100dvh) {
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow {
      min-height: 100dvh !important;
      height: 100dvh !important;
    }
  }

  body[data-page="products"][data-subpage="custom"] .process-steps--horizontal {
    gap: 0.34rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-content {
    padding: 0.46rem 0.66rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-title {
    font-size: 0.8rem;
  }

  body[data-page="products"][data-subpage="custom"] .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    font-size: 0.64rem;
  }
}

/* Final mobile overrides for flow section spacing + full-bleed step blocks */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] main {
    --custom-main-pad-x: clamp(0.9rem, 3.8vw, 1.35rem);
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow {
    margin-left: calc(var(--custom-main-pad-x, 0px) * -1) !important;
    margin-right: calc(var(--custom-main-pad-x, 0px) * -1) !important;
    width: calc(100% + var(--custom-main-pad-x, 0px) + var(--custom-main-pad-x, 0px)) !important;
    --custom-flow-stack-gap: clamp(0.46rem, 1.8vw, 0.62rem);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--custom-flow-stack-gap) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--custom-flow-stack-gap) !important;
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding: clamp(1.05rem, 3.2vw, 1.35rem) clamp(0.78rem, 2.5vw, 1rem) 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered .section-header {
    margin: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-flow-lede {
    margin: 0 auto !important;
    max-width: 40rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(176, 182, 191, 0.96);
    text-align: center;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__media,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-timeline--horizontal {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__media,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-timeline--horizontal,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    width: 100% !important;
    max-width: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    border-radius: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    gap: 0 !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] main {
    --custom-main-pad-x: 0.75rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-flow-lede {
    font-size: 0.74rem;
    line-height: 1.5;
    padding: 0 0.25rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    gap: 0 !important;
  }
}

/* Final mobile polish: business custom flow readability */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: clamp(0.9rem, 3.5vw, 1.35rem) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__inner {
    height: auto !important;
    gap: 0.72rem !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__media,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-timeline--horizontal,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    height: auto !important;
    min-height: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    grid-template-rows: none !important;
    gap: 0.62rem !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .timeline-track {
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.62rem;
    align-items: start;
    border-radius: 0;
    overflow: visible;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step::before {
    content: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-marker {
    display: flex !important;
    width: 42px;
    height: 42px;
    margin-top: 0.12rem;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    order: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-number {
    width: 34px;
    height: 34px;
    font-size: 0.76rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-pulse {
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-icon {
    display: block !important;
    width: 20px;
    height: 20px;
    margin: 0 0 0.28rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    min-height: 0 !important;
    height: auto !important;
    padding: 0.82rem 0.86rem !important;
    border-radius: 12px !important;
    background: rgba(7, 11, 16, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3) !important;
    text-align: left;
    justify-content: flex-start;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-title {
    margin-bottom: 0.24rem;
    font-size: 0.9rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    line-height: 1.48;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step--hovered,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step--shift-left,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step--shift-right {
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    gap: 0.56rem !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-marker {
    width: 38px;
    height: 38px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    padding: 0.72rem 0.76rem !important;
    border-radius: 10px !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-title {
    font-size: 0.86rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    font-size: 0.72rem;
    line-height: 1.42;
  }
}

/* Final mobile flow layout: left = step index + title, right = description */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    counter-reset: custom-flow-step;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step {
    counter-increment: custom-flow-step;
    display: block !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-marker,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-icon {
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    display: grid !important;
    grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
    align-items: center;
    gap: 0.72rem;
    padding: 0.74rem 0.82rem !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-title {
    grid-column: 1;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.48rem;
    font-size: 0.84rem !important;
    line-height: 1.28;
    text-align: left !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-title::before {
    content: counter(custom-flow-step, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.3em;
    height: 1.7em;
    padding: 0 0.4em;
    border-radius: 0.42em;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.68em;
    line-height: 1;
    letter-spacing: 0.08em;
    flex-shrink: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    grid-column: 2;
    margin: 0 !important;
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
    text-align: left !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
    gap: 0.56rem;
    padding: 0.64rem 0.7rem !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-title {
    font-size: 0.82rem !important;
    gap: 0.42rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-title::before {
    min-width: 2.24em;
    height: 1.62em;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    font-size: 0.66rem !important;
    line-height: 1.34 !important;
  }
}

/* Final mobile modules: each section is an independent viewport-height container */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    --custom-module-height: calc(100svh - var(--nav-height, 64px));
    --custom-module-gap: clamp(0.72rem, 2.8vw, 1rem);
    --custom-module-pad-x: clamp(1rem, 4.5vw, 1.35rem);
  }

  @supports (height: 100dvh) {
    body[data-page="products"][data-subpage="custom"] {
      --custom-module-height: calc(100dvh - var(--nav-height, 64px));
    }
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll {
    overflow-y: auto !important;
    scroll-snap-type: y mandatory !important;
    scroll-snap-stop: always !important;
    scroll-padding-top: var(--nav-height, 64px);
  }

  body[data-page="products"][data-subpage="custom"] main.custom-main--flow {
    padding: var(--nav-height, 64px) var(--custom-module-pad-x) var(--custom-module-gap) !important;
  }

  body[data-page="products"][data-subpage="custom"] main.custom-main--stack {
    padding: 0 var(--custom-module-pad-x) calc(var(--custom-module-gap) * 1.5) !important;
    background: linear-gradient(168deg, rgba(36, 40, 48, 0.88) 0%, rgba(25, 29, 35, 0.86) 100%) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--team {
    box-sizing: border-box;
    width: 100% !important;
    margin: 0 0 var(--custom-module-gap) !important;
    min-height: var(--custom-module-height) !important;
    height: var(--custom-module-height) !important;
    max-height: var(--custom-module-height) !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    overscroll-behavior: auto;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    border-radius: 18px !important;
    border: none !important;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(5, 5, 5, 0.72)) !important;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3) !important;
    padding: var(--custom-module-pad-x) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors.is-visible,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors.is-visible {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors.is-internal-scrollable,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors.is-internal-scrollable,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--cases.is-internal-scrollable,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--team.is-internal-scrollable {
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow {
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main:last-of-type > .custom-section--team {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] {
    --custom-module-gap: 0.62rem;
    --custom-module-pad-x: clamp(1rem, 4.5vw, 1.35rem);
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--team {
    border-radius: 14px !important;
    padding: var(--custom-module-pad-x) !important;
  }
}

/* Mobile flow spacing: keep standard side paddings and standard gaps */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    padding: clamp(0.9rem, 3.2vw, 1.2rem) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__inner {
    height: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: var(--custom-module-gap, 0.72rem) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__content {
    flex: 0 0 auto !important;
    padding: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__media,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .process-timeline--horizontal {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .process-steps--horizontal {
    height: 100% !important;
    min-height: 0 !important;
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
    gap: var(--custom-module-gap, 0.72rem) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .process-step {
    height: auto !important;
    min-height: 0 !important;
    border-radius: 12px !important;
    overflow: hidden;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .step-content {
    height: 100% !important;
    border-radius: inherit !important;
    border-top: 0 !important;
    margin: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .process-step:first-child .step-content {
    border-top: 0 !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
    padding-top: 0.78rem !important;
  }
}

/* Final tweak: equal and larger spacing (title->desc == desc->steps) */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    --custom-flow-intro-gap: 1.9rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__inner {
    gap: var(--custom-flow-intro-gap) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__content.custom-section__content--centered {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--custom-flow-intro-gap) !important;
    margin-bottom: 0.35rem !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__content.custom-section__content--centered .section-header,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-flow-lede {
    margin: 0 !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] {
    --custom-flow-intro-gap: 1.55rem;
  }
}

/* Remove flow section background fill */
body[data-page="products"][data-subpage="custom"] .custom-snap-section.custom-service-flow.custom-section.custom-section--flow,
body[data-page="products"][data-subpage="custom"] .custom-snap-section.custom-service-flow.custom-section.custom-section--flow.is-visible {
  background: transparent !important;
  background-image: none !important;
}

/* Mobile: add top margin above the flow title block */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered {
    margin-top: clamp(0.55rem, 2.2vw, 0.9rem) !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered {
    margin-top: 0.52rem !important;
  }
}

/* Mobile flow fallback colors: use distinct backgrounds when no image is shown */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    --flow-copy-size-mobile: clamp(0.9rem, 3.2vw, 1.02rem);
    --flow-desc-right-mobile: 18px;
    --flow-desc-width-mobile: clamp(138px, 41vw, 182px);
    --flow-desc-size-mobile: clamp(0.76rem, 2.7vw, 0.86rem);
    --flow-desc-line-height-mobile: 1;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(66% 66% at 0% 0%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.86) 30%, rgba(3, 3, 3, 0.34) 52%, rgba(3, 3, 3, 0) 70%),
      radial-gradient(66% 66% at 100% 0%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.86) 30%, rgba(3, 3, 3, 0.34) 52%, rgba(3, 3, 3, 0) 70%),
      radial-gradient(66% 66% at 0% 100%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.86) 30%, rgba(3, 3, 3, 0.34) 52%, rgba(3, 3, 3, 0) 70%),
      radial-gradient(66% 66% at 100% 100%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.86) 30%, rgba(3, 3, 3, 0.34) 52%, rgba(3, 3, 3, 0) 70%);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content > * {
    position: relative;
    z-index: 1;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="1"] .step-content {
    background:
      radial-gradient(116% 152% at -10% 50%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 16%, rgba(3, 3, 3, 0.66) 26%, rgba(3, 3, 3, 0.3) 34%, rgba(3, 3, 3, 0.08) 40%, rgba(3, 3, 3, 0) 48%, rgba(3, 3, 3, 0) 100%),
      radial-gradient(116% 152% at 110% 50%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 16%, rgba(3, 3, 3, 0.66) 26%, rgba(3, 3, 3, 0.3) 34%, rgba(3, 3, 3, 0.08) 40%, rgba(3, 3, 3, 0) 48%, rgba(3, 3, 3, 0) 100%),
      url("../../images/custom/workflow-step-01.jpg") center / cover no-repeat !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="2"] .step-content {
    background:
      radial-gradient(116% 152% at -10% 50%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 16%, rgba(3, 3, 3, 0.66) 26%, rgba(3, 3, 3, 0.3) 34%, rgba(3, 3, 3, 0.08) 40%, rgba(3, 3, 3, 0) 48%, rgba(3, 3, 3, 0) 100%),
      radial-gradient(116% 152% at 110% 50%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 16%, rgba(3, 3, 3, 0.66) 26%, rgba(3, 3, 3, 0.3) 34%, rgba(3, 3, 3, 0.08) 40%, rgba(3, 3, 3, 0) 48%, rgba(3, 3, 3, 0) 100%),
      url("../../images/custom/workflow-step-02.jpg") center 62% / cover no-repeat !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="3"] .step-content {
    background:
      radial-gradient(116% 152% at -10% 50%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 16%, rgba(3, 3, 3, 0.66) 26%, rgba(3, 3, 3, 0.3) 34%, rgba(3, 3, 3, 0.08) 40%, rgba(3, 3, 3, 0) 48%, rgba(3, 3, 3, 0) 100%),
      radial-gradient(116% 152% at 110% 50%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 16%, rgba(3, 3, 3, 0.66) 26%, rgba(3, 3, 3, 0.3) 34%, rgba(3, 3, 3, 0.08) 40%, rgba(3, 3, 3, 0) 48%, rgba(3, 3, 3, 0) 100%),
      linear-gradient(135deg, #5b4a43, #372a24) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="4"] .step-content {
    background:
      radial-gradient(116% 152% at -10% 50%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 16%, rgba(3, 3, 3, 0.66) 26%, rgba(3, 3, 3, 0.3) 34%, rgba(3, 3, 3, 0.08) 40%, rgba(3, 3, 3, 0) 48%, rgba(3, 3, 3, 0) 100%),
      radial-gradient(116% 152% at 110% 50%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 16%, rgba(3, 3, 3, 0.66) 26%, rgba(3, 3, 3, 0.3) 34%, rgba(3, 3, 3, 0.08) 40%, rgba(3, 3, 3, 0) 48%, rgba(3, 3, 3, 0) 100%),
      url("../../images/custom/workflow-step-04.jpg") center / cover no-repeat !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="5"] .step-content {
    background:
      radial-gradient(116% 152% at -10% 50%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 16%, rgba(3, 3, 3, 0.66) 26%, rgba(3, 3, 3, 0.3) 34%, rgba(3, 3, 3, 0.08) 40%, rgba(3, 3, 3, 0) 48%, rgba(3, 3, 3, 0) 100%),
      radial-gradient(116% 152% at 110% 50%, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.94) 16%, rgba(3, 3, 3, 0.66) 26%, rgba(3, 3, 3, 0.3) 34%, rgba(3, 3, 3, 0.08) 40%, rgba(3, 3, 3, 0) 48%, rgba(3, 3, 3, 0) 100%),
      linear-gradient(135deg, #5a5643, #3a3626) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    text-align: right !important;
    justify-self: stretch;
    width: 100%;
    margin: 0 0 0 auto !important;
    font-size: var(--flow-desc-size-mobile) !important;
    color: #fff !important;
    line-height: var(--flow-desc-line-height-mobile) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
  }
}

/* Mobile flow numbering: orange round markers + vertical orange connector */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    --flow-marker-size-mobile: 30px;
    --flow-marker-left-mobile: 10px;
    --flow-marker-center-mobile: 15px;
    --flow-marker-line-color-mobile: #e25d1d;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    position: relative;
    isolation: isolate;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal::before {
    content: "";
    position: absolute;
    left: calc(var(--flow-marker-left-mobile) + var(--flow-marker-center-mobile));
    top: var(--flow-line-top-mobile, 0px);
    bottom: var(--flow-line-bottom-mobile, 0px);
    width: 1px;
    background: var(--flow-marker-line-color-mobile);
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transform: scaleY(0);
    transform-origin: top center;
    will-change: transform;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step {
    position: relative;
    padding-left: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    padding-left: calc(var(--flow-marker-left-mobile) + var(--flow-marker-size-mobile) + 10px) !important;
    position: relative;
    z-index: 1;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="5"] .step-content {
    border-radius: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-marker {
    display: flex !important;
    position: absolute;
    left: var(--flow-marker-left-mobile);
    top: 50%;
    width: var(--flow-marker-size-mobile);
    height: var(--flow-marker-size-mobile);
    margin: 0 !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    animation: none !important;
    z-index: 3;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-number {
    width: var(--flow-marker-size-mobile);
    height: var(--flow-marker-size-mobile);
    font-size: 0.62rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, #d94d15 100%);
    color: var(--black);
    box-shadow: 0 6px 16px rgba(226, 93, 29, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-title::before {
    content: none !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] {
    --flow-marker-size-mobile: 28px;
    --flow-marker-left-mobile: 9px;
    --flow-marker-center-mobile: 14px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step {
    padding-left: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    padding-left: calc(var(--flow-marker-left-mobile) + var(--flow-marker-size-mobile) + 8px) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-number {
    font-size: 0.58rem;
  }
}

/* Business custom: full inner container should be rectangular, not rounded */
body[data-page="products"][data-subpage="custom"] .custom-section__inner.custom-section__inner--full {
  border-radius: 0 !important;
}

/* Mobile flow sequence animation: marker chip and image card reveal in sync */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    --custom-flow-line-duration: 3.2s;
    --custom-flow-line-start-delay: 0.16s;
    --custom-flow-step-delay-1: 0.18s;
    --custom-flow-step-delay-2: 1.20s;
    --custom-flow-step-delay-3: 1.88s;
    --custom-flow-step-delay-4: 2.56s;
    --custom-flow-step-delay-5: 3.14s;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step .step-marker__content {
    animation: customFlowMobileChipShow 0.08s steps(1, end) both !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step {
    overflow: visible !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step .step-content {
    animation: customFlowMobileCardInFromLeft 0.62s cubic-bezier(0.22, 0.61, 0.36, 1) both !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="2"] .step-content,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="4"] .step-content {
    animation: customFlowMobileCardInFromRight 0.62s cubic-bezier(0.22, 0.61, 0.36, 1) both !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-steps--horizontal::before {
    animation: customFlowMobileLineSync var(--custom-flow-line-duration) linear both !important;
    animation-delay: var(--custom-flow-line-start-delay) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="1"] .step-marker__content,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="1"] .step-content {
    animation-delay: var(--custom-flow-step-delay-1) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="2"] .step-marker__content,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="2"] .step-content {
    animation-delay: var(--custom-flow-step-delay-2) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="3"] .step-marker__content,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="3"] .step-content {
    animation-delay: var(--custom-flow-step-delay-3) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="4"] .step-marker__content,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="4"] .step-content {
    animation-delay: var(--custom-flow-step-delay-4) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="5"] .step-marker__content,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step[data-step="5"] .step-content {
    animation-delay: var(--custom-flow-step-delay-5) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-steps--horizontal::before {
    animation: none !important;
    transform: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step .step-marker__content,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .process-step .step-content {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@keyframes customFlowMobileMarkerIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes customFlowMobileNumberPop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes customFlowMobileCardInFromLeft {
  0% {
    opacity: 0;
    transform: translate3d(-120vw, 0, 0);
    filter: saturate(0.96) brightness(0.95);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: saturate(1) brightness(1);
  }
}

@keyframes customFlowMobileCardInFromRight {
  0% {
    opacity: 0;
    transform: translate3d(120vw, 0, 0);
    filter: saturate(0.96) brightness(0.95);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: saturate(1) brightness(1);
  }
}

@keyframes customFlowMobileChipShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes customFlowMobileLineSync {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

/* zh-CN mobile flow marker: rounded rectangle number + title inside marker */
@media (max-width: 900px) {
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] {
    --flow-marker-left-mobile: 10px;
    --flow-marker-size-mobile: 36px;
    --flow-marker-number-width-mobile: 28px;
    --flow-marker-center-mobile: var(--flow-marker-number-width-mobile);
    --flow-marker-chip-bg-mobile: #e25d1d;
    --flow-marker-line-color-mobile: var(--flow-marker-chip-bg-mobile);
    --flow-marker-chip-radius-mobile: calc(var(--flow-marker-size-mobile) / 2);
    --flow-marker-chip-gap-mobile: 5px;
    --flow-marker-chip-padding-right-mobile: 12px;
    --flow-marker-icon-width-mobile: 1.65em;
    --flow-marker-chip-reserve-mobile: 106px;
    --flow-marker-chip-title-size-mobile: var(--flow-copy-size-mobile);
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal::before {
    left: calc(var(--flow-marker-left-mobile) + var(--flow-marker-center-mobile));
    z-index: 2;
    background: var(--flow-marker-line-color-mobile);
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-marker {
    display: inline-flex !important;
    align-items: center;
    width: auto;
    min-width: 0;
    height: var(--flow-marker-size-mobile);
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    z-index: 4;
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-marker__content {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--flow-marker-chip-gap-mobile);
    font-size: var(--flow-copy-size-mobile);
    height: 100%;
    padding: 0 var(--flow-marker-chip-padding-right-mobile) 0 0;
    border-radius: var(--flow-marker-chip-radius-mobile);
    background: var(--flow-marker-chip-bg-mobile);
    box-shadow: 0 6px 14px rgba(226, 93, 29, 0.34);
    overflow: hidden;
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-marker__label {
    display: inline-flex;
    align-items: center;
    height: 100%;
    color: var(--black);
    font-size: var(--flow-marker-chip-title-size-mobile);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-number {
    display: grid;
    place-items: center;
    width: var(--flow-marker-number-width-mobile);
    min-width: var(--flow-marker-number-width-mobile);
    height: 100%;
    border-radius: var(--flow-marker-chip-radius-mobile) 0 0 var(--flow-marker-chip-radius-mobile);
    background: var(--flow-marker-chip-bg-mobile);
    color: #1e120c;
    box-shadow: none;
    font-size: 0.68rem;
    line-height: 0;
    letter-spacing: 0.03em;
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-number__text {
    display: none;
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-number__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--flow-marker-icon-width-mobile);
    height: 100%;
    line-height: 1;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transform: translateX(1px);
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-number__icon svg {
    display: none;
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    display: block !important;
    padding-left: calc(var(--flow-marker-left-mobile) + var(--flow-marker-chip-reserve-mobile)) !important;
    position: relative;
    z-index: 1;
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-title {
    display: none !important;
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    position: absolute !important;
    top: 50% !important;
    right: var(--flow-desc-right-mobile);
    transform: translateY(-50%) !important;
    flex: 0 0 auto !important;
    width: var(--flow-desc-width-mobile) !important;
    max-width: var(--flow-desc-width-mobile) !important;
    height: auto !important;
    min-height: calc(var(--flow-desc-line-height-mobile) * 2em);
    display: grid !important;
    align-content: center;
    margin: 0 0 0 auto !important;
    align-self: auto !important;
    text-align: right !important;
    overflow: visible !important;
    font-size: var(--flow-desc-size-mobile) !important;
    line-height: var(--flow-desc-line-height-mobile) !important;
    white-space: normal;
    word-break: keep-all;
    color: #fff !important;
    z-index: 3;
    isolation: isolate;
    background: transparent;
    border-radius: 0;
    padding: 0.12rem 0.2rem;
    box-shadow: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.82), 0 0 18px rgba(0, 0, 0, 0.62);
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description::before,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description::before {
    content: none;
  }
}

@media (max-width: 640px) {
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] {
    --flow-marker-left-mobile: 9px;
    --flow-marker-size-mobile: 32px;
    --flow-marker-number-width-mobile: 25px;
    --flow-marker-center-mobile: var(--flow-marker-number-width-mobile);
    --flow-marker-chip-radius-mobile: calc(var(--flow-marker-size-mobile) / 2);
    --flow-marker-chip-gap-mobile: 4px;
    --flow-marker-chip-padding-right-mobile: 10px;
    --flow-marker-icon-width-mobile: 1.48em;
    --flow-marker-chip-reserve-mobile: 94px;
    --flow-marker-chip-title-size-mobile: var(--flow-copy-size-mobile);
  }

  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-number {
    font-size: 0.62rem;
  }
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"][data-ui-language="en"],
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"],
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"],
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] {
    --flow-marker-left-mobile: 10px;
    --flow-marker-size-mobile: 36px;
    --flow-marker-number-width-mobile: 28px;
    --flow-marker-center-mobile: var(--flow-marker-number-width-mobile);
    --flow-marker-chip-bg-mobile: #e25d1d;
    --flow-marker-chip-width-mobile: 116px;
    --flow-marker-chip-reserve-mobile: var(--flow-marker-chip-width-mobile);
    --flow-marker-line-color-mobile: var(--flow-marker-chip-bg-mobile);
    --flow-marker-chip-radius-mobile: calc(var(--flow-marker-size-mobile) / 2);
    --flow-marker-chip-gap-mobile: 5px;
    --flow-marker-chip-padding-right-mobile: 12px;
    --flow-marker-icon-width-mobile: 1.65em;
    --flow-marker-chip-title-size-mobile: 0.7rem;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .process-steps--horizontal::before,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .process-steps--horizontal::before,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .process-steps--horizontal::before,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .process-steps--horizontal::before {
    left: calc(var(--flow-marker-left-mobile) + var(--flow-marker-center-mobile));
    z-index: 2;
    background: var(--flow-marker-line-color-mobile);
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-marker,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-marker,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-marker,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-marker {
    display: inline-flex !important;
    align-items: center;
    width: auto;
    min-width: 0;
    height: var(--flow-marker-size-mobile);
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    z-index: 4;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-marker__content,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-marker__content,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-marker__content,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-marker__content {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--flow-marker-chip-gap-mobile);
    width: var(--flow-marker-chip-width-mobile);
    min-width: var(--flow-marker-chip-width-mobile);
    height: 100%;
    padding: 0 var(--flow-marker-chip-padding-right-mobile) 0 0;
    border-radius: var(--flow-marker-chip-radius-mobile);
    background: var(--flow-marker-chip-bg-mobile);
    box-shadow: 0 6px 14px rgba(226, 93, 29, 0.34);
    overflow: hidden;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-marker__label,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-marker__label,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-marker__label,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-marker__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    height: 100%;
    color: transparent;
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-marker__label::before,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-marker__label::before,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-marker__label::before,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-marker__label::before {
    content: attr(data-mobile-label);
    color: var(--black);
    font-size: var(--flow-marker-chip-title-size-mobile);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-number,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-number,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-number,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-number {
    display: grid;
    place-items: center;
    width: var(--flow-marker-number-width-mobile);
    min-width: var(--flow-marker-number-width-mobile);
    height: 100%;
    border-radius: var(--flow-marker-chip-radius-mobile) 0 0 var(--flow-marker-chip-radius-mobile);
    background: var(--flow-marker-chip-bg-mobile);
    color: #1e120c;
    box-shadow: none;
    font-size: 0.68rem;
    line-height: 0;
    letter-spacing: 0.03em;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-number__text,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-number__text,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-number__text,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-number__text {
    display: none;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-number__icon,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-number__icon,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-number__icon,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-number__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--flow-marker-icon-width-mobile);
    height: 100%;
    line-height: 1;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transform: translateX(1px);
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-number__icon svg,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-number__icon svg,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-number__icon svg,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-number__icon svg {
    display: none;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-content,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-content,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-content,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-content {
    display: block !important;
    padding-left: calc(var(--flow-marker-left-mobile) + var(--flow-marker-chip-reserve-mobile)) !important;
    position: relative;
    z-index: 1;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-title,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-title,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-title,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-title {
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow.is-visible .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow.is-visible .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow.is-visible .step-description {
    font-size: clamp(0.72rem, 2.7vw, 0.8rem) !important;
    line-height: 1.46 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"][data-ui-language="en"],
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"],
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"],
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] {
    --flow-marker-left-mobile: 9px;
    --flow-marker-size-mobile: 32px;
    --flow-marker-number-width-mobile: 25px;
    --flow-marker-center-mobile: var(--flow-marker-number-width-mobile);
    --flow-marker-chip-width-mobile: 104px;
    --flow-marker-chip-reserve-mobile: var(--flow-marker-chip-width-mobile);
    --flow-marker-chip-radius-mobile: calc(var(--flow-marker-size-mobile) / 2);
    --flow-marker-chip-gap-mobile: 4px;
    --flow-marker-chip-padding-right-mobile: 10px;
    --flow-marker-icon-width-mobile: 1.48em;
    --flow-marker-chip-title-size-mobile: 0.64rem;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-number,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-number,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-number,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-number {
    font-size: 0.62rem;
  }
}

@media (max-width: 380px) {
  body[data-page="products"][data-subpage="custom"] {
    --flow-copy-size-mobile: 0.84rem;
    --flow-desc-size-mobile: 0.74rem;
  }
}

/* Flow section container: remove internal padding */
body[data-page="products"][data-subpage="custom"] .custom-snap-section.custom-service-flow.custom-section.custom-section--flow,
body[data-page="products"][data-subpage="custom"] .custom-snap-section.custom-service-flow.custom-section.custom-section--flow.is-visible {
  padding: 0 !important;
}

/* Mobile preview: hide right description and remove image mask overlays */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered .section-header h2 {
    font-size: clamp(1.34rem, 6.9vw, 1.66rem) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__inner {
    gap: 2.08rem !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__content.custom-section__content--centered {
    gap: 0.16rem !important;
    margin-top: 0.42rem !important;
    margin-bottom: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-flow-lede {
    margin: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step + .process-step {
    margin-top: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
    border: none !important;
    outline: none !important;
    background-clip: padding-box !important;
    -webkit-background-clip: padding-box !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    display: block !important;
    position: absolute !important;
    left: auto !important;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    max-width: calc(100% - (var(--flow-marker-left-mobile) + var(--flow-marker-chip-reserve-mobile) + 40px)) !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    line-height: 1.62 !important;
    font-size: 0.86rem !important;
    color: #fff !important;
    white-space: normal !important;
    word-break: normal !important;
    text-overflow: clip !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 0, 0, 0.55);
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible !important;
    pointer-events: none !important;
    z-index: 3 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line {
    display: block;
    white-space: nowrap;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line + .step-description__line,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line + .step-description__line,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line + .step-description__line,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line + .step-description__line {
    margin-top: 0.52em;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line--top,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line--top,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line--top,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line--top {
    position: relative;
    left: -12px;
    transform: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line--bottom,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line--bottom,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line--bottom,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line--bottom {
    position: relative;
    left: 12px;
    transform: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content::before {
    content: none !important;
    background: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content > * {
    position: static;
    z-index: auto;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="1"] .step-content {
    background:
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.96) 0%,
        rgba(5, 5, 5, 0.82) 14%,
        rgba(5, 5, 5, 0.48) 28%,
        rgba(5, 5, 5, 0.12) 38%,
        rgba(5, 5, 5, 0) 46%,
        rgba(5, 5, 5, 0) 54%,
        rgba(5, 5, 5, 0.12) 62%,
        rgba(5, 5, 5, 0.48) 72%,
        rgba(5, 5, 5, 0.82) 86%,
        rgba(5, 5, 5, 0.96) 100%
      ),
      url("../../images/custom/workflow-step-01.jpg") center / cover no-repeat !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="2"] .step-content {
    background:
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.96) 0%,
        rgba(5, 5, 5, 0.82) 14%,
        rgba(5, 5, 5, 0.48) 28%,
        rgba(5, 5, 5, 0.12) 38%,
        rgba(5, 5, 5, 0) 46%,
        rgba(5, 5, 5, 0) 54%,
        rgba(5, 5, 5, 0.12) 62%,
        rgba(5, 5, 5, 0.48) 72%,
        rgba(5, 5, 5, 0.82) 86%,
        rgba(5, 5, 5, 0.96) 100%
      ),
      url("../../images/custom/workflow-step-02.jpg") center 62% / cover no-repeat !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="3"] .step-content {
    background:
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.9) 0%,
        rgba(5, 5, 5, 0.72) 16%,
        rgba(5, 5, 5, 0.4) 30%,
        rgba(5, 5, 5, 0.1) 40%,
        rgba(5, 5, 5, 0) 46%,
        rgba(5, 5, 5, 0) 54%,
        rgba(5, 5, 5, 0.1) 60%,
        rgba(5, 5, 5, 0.4) 70%,
        rgba(5, 5, 5, 0.72) 84%,
        rgba(5, 5, 5, 0.9) 100%
      ),
      url("../../images/custom/workflow-step-03.webp") center / cover no-repeat,
      linear-gradient(135deg, #5b4a43, #372a24) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="4"] .step-content {
    background:
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.96) 0%,
        rgba(5, 5, 5, 0.82) 14%,
        rgba(5, 5, 5, 0.48) 28%,
        rgba(5, 5, 5, 0.12) 38%,
        rgba(5, 5, 5, 0) 46%,
        rgba(5, 5, 5, 0) 54%,
        rgba(5, 5, 5, 0.12) 62%,
        rgba(5, 5, 5, 0.48) 72%,
        rgba(5, 5, 5, 0.82) 86%,
        rgba(5, 5, 5, 0.96) 100%
      ),
      url("../../images/custom/workflow-step-04.jpg") center / cover no-repeat !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step[data-step="5"] .step-content {
    background:
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.9) 0%,
        rgba(5, 5, 5, 0.72) 16%,
        rgba(5, 5, 5, 0.4) 30%,
        rgba(5, 5, 5, 0.1) 40%,
        rgba(5, 5, 5, 0) 46%,
        rgba(5, 5, 5, 0) 54%,
        rgba(5, 5, 5, 0.1) 60%,
        rgba(5, 5, 5, 0.4) 70%,
        rgba(5, 5, 5, 0.72) 84%,
        rgba(5, 5, 5, 0.9) 100%
      ),
      url("../../images/custom/workflow-step-05.webp") center / cover no-repeat,
      linear-gradient(135deg, #5a5643, #3a3626) !important;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-content,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-content,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-content,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-content {
    text-align: right !important;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-icon,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-icon,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-icon,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-icon {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow.is-visible .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow.is-visible .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow.is-visible .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow.is-visible .step-description {
    text-align: right !important;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-description .step-description__line,
  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow.is-visible .step-description .step-description__line,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-description .step-description__line,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow.is-visible .step-description .step-description__line,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-description .step-description__line,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow.is-visible .step-description .step-description__line,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-description .step-description__line,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow.is-visible .step-description .step-description__line {
    text-align: right !important;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-description .step-description__line--top,
  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow.is-visible .step-description .step-description__line--top,
  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow .step-description .step-description__line--bottom,
  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-section--flow.is-visible .step-description .step-description__line--bottom,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-description .step-description__line--top,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow.is-visible .step-description .step-description__line--top,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow .step-description .step-description__line--bottom,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-section--flow.is-visible .step-description .step-description__line--bottom,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-description .step-description__line--top,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow.is-visible .step-description .step-description__line--top,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow .step-description .step-description__line--bottom,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-section--flow.is-visible .step-description .step-description__line--bottom,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-description .step-description__line--top,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow.is-visible .step-description .step-description__line--top,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow .step-description .step-description__line--bottom,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-section--flow.is-visible .step-description .step-description__line--bottom {
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered .section-header h2 {
    font-size: clamp(1.28rem, 6.6vw, 1.56rem) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__inner {
    gap: 1.78rem !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__content.custom-section__content--centered {
    gap: 0.12rem !important;
    margin-top: 0.36rem !important;
    margin-bottom: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-flow-lede {
    margin: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step + .process-step {
    margin-top: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    margin-bottom: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description {
    top: 50% !important;
    right: 22px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    max-width: calc(100% - (var(--flow-marker-left-mobile) + var(--flow-marker-chip-reserve-mobile) + 34px)) !important;
    font-size: 0.82rem !important;
    line-height: 1.52 !important;
    white-space: normal !important;
    text-overflow: clip !important;
    overflow: visible !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line--top,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line--top,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line--top,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line--top {
    left: -9px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line--bottom,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line--bottom,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-description .step-description__line--bottom,
  html[lang="zh-CN"] body[data-page="products"][data-subpage="custom"] .custom-section--flow.is-visible .step-description .step-description__line--bottom {
    left: 9px;
  }
}

/* Final override: flow main container uses page background only */
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main.custom-main--flow,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow {
  background: transparent !important;
  background-image: none !important;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Mobile flow mask fix: remove bright corner edges on cards */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step {
    background: #050505 !important;
    overflow: hidden !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    position: relative !important;
    overflow: hidden !important;
    background-origin: border-box !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.94) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
    background:
      radial-gradient(58% 58% at 0% 0%, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.34) 38%, rgba(5, 5, 5, 0) 70%),
      radial-gradient(58% 58% at 100% 0%, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.34) 38%, rgba(5, 5, 5, 0) 70%),
      radial-gradient(58% 58% at 0% 100%, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.34) 38%, rgba(5, 5, 5, 0) 70%),
      radial-gradient(58% 58% at 100% 100%, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.34) 38%, rgba(5, 5, 5, 0) 70%);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content > * {
    position: relative;
    z-index: 3;
  }
}

/* Mobile factors section: white text, remove matrix card fills */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors * {
    color: var(--text-light) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors .custom-matrix,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors .custom-matrix.is-open,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors .custom-matrix.is-closing {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors .custom-matrix__pillars,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors .custom-matrix__sections section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors .custom-option {
    background: transparent !important;
    background-image: none !important;
    border-color: rgba(5, 5, 5, 0.26) !important;
  }
}

/* Mobile custom sections: unified section title size */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .section-header h2,
  body[data-page="products"][data-subpage="custom"] .custom-section--factors .section-header h2,
  body[data-page="products"][data-subpage="custom"] .custom-section--cases .section-header h2,
  body[data-page="products"][data-subpage="custom"] .custom-section--team .section-header h2 {
    font-size: clamp(1.34rem, 6.9vw, 1.66rem) !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .section-header h2,
  body[data-page="products"][data-subpage="custom"] .custom-section--factors .section-header h2,
  body[data-page="products"][data-subpage="custom"] .custom-section--cases .section-header h2,
  body[data-page="products"][data-subpage="custom"] .custom-section--team .section-header h2 {
    font-size: clamp(1.28rem, 6.6vw, 1.56rem) !important;
  }
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__inner {
    gap: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered {
    gap: 0 !important;
    padding: clamp(2.5rem, 10vw, 4rem) clamp(0.78rem, 2.5vw, 1rem) clamp(1.25rem, 5vw, 2rem) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered .section-header {
    display: flex;
    justify-content: center;
    align-items: center !important;
    width: 100%;
    margin: 0 auto !important;
    text-align: center !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered .section-header h2 {
    max-width: min(100%, 14em);
    font-size: clamp(1.36rem, 6vw, 1.78rem) !important;
    line-height: 1.14;
    text-align: center !important;
    margin: 0 !important;
  }
}

/* Final override: disable container scrolling for custom products page. */
body[data-page="products"][data-subpage="custom"] {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  scroll-snap-type: none !important;
  scroll-snap-stop: normal !important;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-snap-section {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
}

/* Hard stop: disable internal container scrolling on this page. */
body[data-page="products"][data-subpage="custom"] .custom-scroll * {
  overscroll-behavior: auto !important;
  -webkit-overflow-scrolling: auto !important;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-inquiry-modal,
body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-inquiry-modal__dialog,
body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-inquiry-modal__color-grid,
body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-inquiry-modal__color-grid[data-has-color-groups] .order-color-group__grid,
body[data-page="products"][data-subpage="custom"] .custom-scroll .order-color-group__grid,
body[data-page="products"][data-subpage="custom"] .custom-scroll .process-steps--horizontal,
body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-section--factors,
body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-section--cases,
body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-section--team,
body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-section--factors.is-internal-scrollable,
body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-section--cases.is-internal-scrollable,
body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-section--team.is-internal-scrollable {
  overflow-x: visible !important;
  overflow-y: visible !important;
  max-height: none !important;
}

/* Final mobile fix: avoid squeezed flow cards when container scrolling is disabled. */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__inner,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__media,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-timeline--horizontal,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    min-height: 0 !important;
    height: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    grid-template-rows: none !important;
    gap: 0.62rem !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-step,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .step-content {
    min-height: clamp(92px, 14vh, 140px) !important;
    height: auto !important;
  }
}

/* Mobile flow spacing sync: last card bottom space equals title-to-nav top space. */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    --custom-flow-nav-gap-mobile: clamp(0.55rem, 2.2vw, 0.9rem);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered {
    margin-top: var(--custom-flow-nav-gap-mobile) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    padding-bottom: var(--custom-flow-nav-gap-mobile) !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] {
    --custom-flow-nav-gap-mobile: 0.52rem;
  }
}

/* Mobile final lock: each module is at least one viewport (minus nav), no internal container scroll. */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    --custom-page-min-height: calc(100vh - var(--nav-height, 64px));
  }

  @supports (height: 100svh) {
    body[data-page="products"][data-subpage="custom"] {
      --custom-page-min-height: calc(100svh - var(--nav-height, 64px));
    }
  }

  @supports (height: 100dvh) {
    body[data-page="products"][data-subpage="custom"] {
      --custom-page-min-height: calc(100dvh - var(--nav-height, 64px));
    }
  }

  body[data-page="products"][data-subpage="custom"] {
    overflow-y: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll {
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
    scroll-snap-type: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--team,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--team {
    min-height: var(--custom-page-min-height) !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-section--factors.is-internal-scrollable,
  body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-section--cases.is-internal-scrollable,
  body[data-page="products"][data-subpage="custom"] .custom-scroll .custom-section--team.is-internal-scrollable {
    overflow: visible !important;
  }
}

/* Mobile factors redesign: six-grid cards, no expand/collapse. */
.custom-factors-module {
  width: 100%;
}

.custom-factors-mobile {
  display: none;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-stack-section.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--factors {
    --custom-factors-extra-pad: clamp(0.36rem, 1.4vw, 0.56rem);
    --custom-factors-page-pad: calc(var(--custom-module-pad-x, clamp(0.9rem, 3.2vw, 1.2rem)) + var(--custom-factors-extra-pad));
    padding-left: var(--custom-factors-extra-pad) !important;
    padding-right: var(--custom-factors-extra-pad) !important;
    padding-bottom: var(--custom-factors-page-pad) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__content.custom-section__content--centered,
  body[data-page="products"][data-subpage="custom"] .custom-section--factors .section-header {
    margin-top: var(--custom-flow-nav-gap-mobile, clamp(0.55rem, 2.2vw, 0.9rem)) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors .section-header {
    margin-bottom: var(--custom-flow-nav-gap-mobile, clamp(0.55rem, 2.2vw, 0.9rem)) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors .section-header h2 {
    font-size: clamp(1.34rem, 6.9vw, 1.66rem) !important;
    margin: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors .section-lede {
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0.4rem 0 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-matrix-grid,
  body[data-page="products"][data-subpage="custom"] .custom-mobile-inquiry-wrap {
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --custom-factors-col-gap: calc(var(--custom-factors-page-pad, clamp(0.9rem, 3.2vw, 1.2rem)) * 1.74);
    --custom-factors-row-gap: calc(var(--custom-factors-page-pad, clamp(0.9rem, 3.2vw, 1.2rem)) * 1.84);
    --custom-factors-center-line-bottom: 0;
    --custom-factors-line-color: rgba(176, 182, 191, 0.32);
    --custom-factors-line-glow: rgba(176, 182, 191, 0.08);
    column-gap: var(--custom-factors-col-gap);
    row-gap: var(--custom-factors-row-gap);
    --custom-factor-select-height: 1.42rem;
    --custom-factor-preview-radius: 14px;
    --custom-factors-card-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    --custom-factors-row-delay-1: 0.18s;
    --custom-factors-row-delay-2: 0.86s;
    --custom-factors-row-delay-3: 1.54s;
    position: relative;
    isolation: isolate;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: var(--custom-factors-center-line-bottom, 0);
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
      to bottom,
      transparent 0%,
      var(--custom-factors-line-color) 8%,
      var(--custom-factors-line-color) 92%,
      transparent 100%
    );
    box-shadow: 0 0 6px var(--custom-factors-line-glow);
    pointer-events: none;
    z-index: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile::after {
    content: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__column {
    display: contents;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__column-title {
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__column-body {
    display: contents;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card {
    --custom-factor-card-title-top: 0.36rem;
    --custom-factor-card-title-reserve: 1.02rem;
    --custom-factor-frame-width: 92%;
    --custom-factor-preview-width: var(--custom-factor-frame-width);
    --custom-factor-frame-side-gap: calc((100% - var(--custom-factor-frame-width, 100%)) / 2);
    --custom-factor-overlay-inset: 0.34rem;
    --custom-factor-select-inset: var(--custom-factor-overlay-inset);
    border-radius: 0;
    border: none;
    background: transparent;
    padding: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    align-self: start;
    min-height: 0;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 1;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card.is-select-open {
    z-index: 5000 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="size"] {
    grid-column: 2;
    grid-row: 3;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="form"] {
    grid-column: 2;
    grid-row: 1;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="material"] {
    grid-column: 1;
    grid-row: 2;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="color"] {
    grid-column: 2;
    grid-row: 2;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="hardware"] {
    grid-column: 1;
    grid-row: 3;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="fragrance"] {
    grid-column: 1;
    grid-row: 1;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card h3 {
    position: absolute;
    top: var(--custom-factor-card-title-top);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: calc(var(--custom-factor-preview-width, 100%) - 0.4rem);
    margin: 0;
    font-size: var(--flow-marker-chip-title-size-mobile, 0.9rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
    pointer-events: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card:not(.custom-factor-card--size) h3 {
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-mode-switch {
    --factor-mode-index: 0;
    --factor-mode-count: 2;
    --factor-mode-padding: 0.08rem;
    --factor-mode-slot: calc((100% - var(--factor-mode-padding) * 2) / var(--factor-mode-count));
    --_switch-inset: var(--custom-factor-overlay-inset, 0.34rem);
    position: absolute;
    top: var(--_switch-inset);
    right: var(--_switch-inset);
    width: 4.58rem;
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: var(--factor-mode-padding);
    border-radius: 999px;
    border: none !important;
    background: rgba(9, 12, 18, 0.52);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    isolation: isolate;
    z-index: 6;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-mode-switch::before {
    content: "";
    position: absolute;
    top: var(--factor-mode-padding);
    bottom: var(--factor-mode-padding);
    left: var(--factor-mode-padding);
    width: var(--factor-mode-slot);
    border-radius: 999px;
    background: var(--orange, #e25d1d);
    box-shadow: 0 10px 25px rgba(226, 93, 29, 0.45);
    transform: translateX(calc(var(--factor-mode-index, 0) * 100%));
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-mode-pill {
    flex: 1 1 50%;
    min-width: 0;
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--gray);
    font-size: 0.52rem;
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 700;
    padding: 0.26rem 0 0.24rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: color 0.24s ease;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-factor-mode-switch,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-factor-mode-switch,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-factor-mode-switch {
    width: 4.34rem;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-factor-mode-pill,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-factor-mode-pill,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-factor-mode-pill {
    font-size: 0.48rem;
    letter-spacing: 0.01em;
    padding: 0.24rem 0 0.22rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-mode-pill.is-active {
    color: #111 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-mode-pill[aria-pressed="true"],
  body[data-page="products"][data-subpage="custom"] .custom-factor-mode-switch[data-mode="default"] .custom-factor-mode-pill[data-mobile-factor-mode-button="default"],
  body[data-page="products"][data-subpage="custom"] .custom-factor-mode-switch[data-mode="custom"] .custom-factor-mode-pill[data-mobile-factor-mode-button="custom"] {
    color: #111 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-mode-pill[aria-pressed="false"] {
    color: var(--gray) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="size"] .custom-factor-mode-switch {
    top: var(--_switch-inset);
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-preview {
    --custom-factor-preview-ratio: 1 / 1;
    position: relative;
    width: var(--custom-factor-preview-width);
    max-width: none;
    min-height: 0;
    margin: 0 auto;
    aspect-ratio: var(--custom-factor-preview-ratio);
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-preview,
  body[data-page="products"][data-subpage="custom"] .custom-factor-preview.spec-preview,
  body[data-page="products"][data-subpage="custom"] .custom-factor-preview--color,
  body[data-page="products"][data-subpage="custom"] .custom-factor-preview .spec-preview__swatch {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-preview.spec-preview {
    padding: 0;
    border-radius: var(--custom-factor-preview-radius);
    overflow: visible;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-preview.spec-preview .spec-preview__swatch {
    width: 100%;
    aspect-ratio: var(--custom-factor-preview-ratio);
    min-height: 0;
    height: auto;
    border-radius: var(--custom-factor-preview-radius);
    margin: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-preview.spec-preview .spec-preview__meta {
    display: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-preview[data-style-preview],
  body[data-page="products"][data-subpage="custom"] .custom-factor-preview[data-spec-preview] {
    width: var(--custom-factor-preview-width) !important;
    max-width: var(--custom-factor-preview-width) !important;
    min-height: 0 !important;
    gap: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-preview[data-style-preview] .spec-preview__swatch,
  body[data-page="products"][data-subpage="custom"] .custom-factor-preview[data-spec-preview] .spec-preview__swatch {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: var(--custom-factor-preview-ratio) !important;
    padding-top: 0 !important;
    box-shadow: none !important;
  }

  /* Crop compensation: slightly zoom the source layer to avoid white seams on mobile. */
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="material"] .spec-preview__swatch,
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="fragrance"] .spec-preview__swatch {
    background-color: #090c12 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="material"] .spec-preview__swatch::before,
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="fragrance"] .spec-preview__swatch::before {
    transform: scale(1.04);
    transform-origin: center center;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card:not(.custom-factor-card--size) .custom-factor-preview,
  body[data-page="products"][data-subpage="custom"] .custom-factor-card:not(.custom-factor-card--size) .custom-factor-preview--color {
    width: var(--custom-factor-preview-width) !important;
    max-width: var(--custom-factor-preview-width) !important;
    aspect-ratio: var(--custom-factor-preview-ratio) !important;
    margin: 0 auto !important;
  }

  /* Unified surface rules: all factor tiles use the exact same size model. */
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor] > .custom-factor-preview,
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor] > .custom-factor-preview--color,
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor] > .custom-size-drawer {
    width: var(--custom-factor-preview-width) !important;
    max-width: var(--custom-factor-preview-width) !important;
    aspect-ratio: var(--custom-factor-preview-ratio) !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor] > .custom-size-drawer > .spec-preview__swatch {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    aspect-ratio: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor] > .custom-size-drawer > .spec-preview__swatch > .custom-size-drawer__trigger {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    aspect-ratio: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor] > .custom-size-drawer {
    display: block !important;
    min-height: 0 !important;
    margin: 0 auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="color"] > .custom-factor-preview--color {
    justify-self: center !important;
    align-self: center !important;
  }

  /* Remove cross dividers; use spacing + subtle elevation between cards. */
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor]::before,
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor]::after {
    content: none !important;
    display: none !important;
  }

  /* Restore horizontal separators between row1/row2 and row2/row3. */
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="fragrance"]::before,
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="material"]::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 0;
    width: calc(200% + var(--custom-factors-col-gap, 0.54rem));
    bottom: calc(-0.5 * var(--custom-factors-row-gap, 0.54rem));
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      var(--custom-factors-line-color) 8%,
      var(--custom-factors-line-color) 92%,
      transparent 100%
    );
    box-shadow: 0 0 6px var(--custom-factors-line-glow);
    transform: translateY(50%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
  }

  /* Intersection circle decorations where horizontal lines meet vertical center line. */
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="fragrance"]::after,
  body[data-page="products"][data-subpage="custom"] .custom-factor-card[data-mobile-factor="material"]::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    bottom: calc(-0.5 * var(--custom-factors-row-gap, 0.54rem));
    left: calc(100% + var(--custom-factors-col-gap, 0.54rem) / 2);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--custom-factors-line-color);
    border: none;
    box-shadow: 0 0 6px var(--custom-factors-line-glow);
    transform: translate(-50%, 50%);
    pointer-events: none;
    z-index: 1;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factors-mobile .custom-factor-card[data-mobile-factor] {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    filter: saturate(0.92) brightness(0.95);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor] {
    animation: customFactorsMobileCardReveal 0.48s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }

  /* ---- Line sequential reveal: initial hidden states ---- */
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factors-mobile::before {
    clip-path: inset(0 0 100% 0);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factor-card[data-mobile-factor="fragrance"]::before,
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factor-card[data-mobile-factor="material"]::before {
    clip-path: inset(0 50% 0 50%);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factor-card[data-mobile-factor="fragrance"]::after,
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factor-card[data-mobile-factor="material"]::after {
    transform: translate(-50%, 50%) scale(0);
    opacity: 0;
  }

  /* ---- Line sequential reveal: animated states ---- */
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile::before {
    animation: factorsVerticalReveal 2.2s ease-out both;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factor-card[data-mobile-factor="fragrance"]::before {
    animation: factorsHorizontalReveal 0.32s ease-out 0.66s both;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factor-card[data-mobile-factor="material"]::before {
    animation: factorsHorizontalReveal 0.32s ease-out 1.36s both;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factor-card[data-mobile-factor="fragrance"]::after {
    animation: factorsCircleReveal 0.28s ease-out 0.68s both;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factor-card[data-mobile-factor="material"]::after {
    animation: factorsCircleReveal 0.28s ease-out 1.38s both;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor]:nth-child(1),
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor]:nth-child(2) {
    animation-delay: var(--custom-factors-row-delay-1);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor]:nth-child(3),
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor]:nth-child(4) {
    animation-delay: var(--custom-factors-row-delay-2);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor]:nth-child(5),
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor]:nth-child(6) {
    animation-delay: var(--custom-factors-row-delay-3);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="fragrance"],
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="form"] {
    animation-delay: var(--custom-factors-row-delay-1) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="material"],
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="color"] {
    animation-delay: var(--custom-factors-row-delay-2) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="hardware"],
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="size"] {
    animation-delay: var(--custom-factors-row-delay-3) !important;
  }

  /* ---- Scroll-up direction overrides: bottom→top reveal ---- */
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up .custom-factors-mobile .custom-factor-card[data-mobile-factor] {
    transform: translate3d(0, -16px, 0);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor] {
    animation-name: factorsCardRevealUp;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up .custom-factors-mobile::before {
    clip-path: inset(100% 0 0 0);
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factors-mobile::before {
    animation: factorsVerticalRevealUp 2.2s ease-out both;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factor-card[data-mobile-factor="material"]::before {
    animation: factorsHorizontalReveal 0.32s ease-out 0.66s both;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factor-card[data-mobile-factor="fragrance"]::before {
    animation: factorsHorizontalReveal 0.32s ease-out 1.36s both;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factor-card[data-mobile-factor="material"]::after {
    animation: factorsCircleReveal 0.28s ease-out 0.68s both;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factor-card[data-mobile-factor="fragrance"]::after {
    animation: factorsCircleReveal 0.28s ease-out 1.38s both;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="hardware"],
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="size"] {
    animation-delay: var(--custom-factors-row-delay-1) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="material"],
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="color"] {
    animation-delay: var(--custom-factors-row-delay-2) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="fragrance"],
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.reveal-up.is-visible .custom-factors-mobile .custom-factor-card[data-mobile-factor="form"] {
    animation-delay: var(--custom-factors-row-delay-3) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-preview[data-style-preview],
  body[data-page="products"][data-subpage="custom"] .custom-factor-preview[data-spec-preview],
  body[data-page="products"][data-subpage="custom"] .custom-factor-preview--color {
    filter: drop-shadow(var(--custom-factors-card-shadow, 0 10px 24px rgba(0, 0, 0, 0.22)));
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-preview--color {
    width: var(--custom-factor-preview-width);
    aspect-ratio: var(--custom-factor-preview-ratio);
    min-height: 0;
    position: relative;
    overflow: visible;
    border-radius: var(--custom-factor-preview-radius);
    border: none;
    background: var(--factor-color, #000000);
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-select {
    position: absolute;
    left: var(--custom-factor-select-inset, var(--custom-factor-overlay-inset, 0.34rem));
    right: var(--custom-factor-select-inset, var(--custom-factor-overlay-inset, 0.34rem));
    bottom: var(--custom-factor-select-inset, var(--custom-factor-overlay-inset, 0.34rem));
    z-index: 2200;
    width: auto;
    margin-top: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-select.is-open {
    z-index: 2600;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-select .belt-hub-select__trigger {
    width: 100%;
    height: var(--custom-factor-select-height, 1.52rem);
    min-height: var(--custom-factor-select-height, 1.52rem);
    border-radius: calc(var(--custom-factor-select-height, 1.52rem) / 2);
    border: none !important;
    border-color: transparent !important;
    background: rgba(9, 12, 18, 0.52);
    backdrop-filter: blur(4px);
    padding-left: 0.96rem;
    padding-right: 0.96rem;
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    justify-content: center;
    text-align: center;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-select .belt-hub-select__trigger[data-mobile-label-prefix]::before {
    content: attr(data-mobile-label-prefix);
    position: absolute;
    left: 0.58rem;
    top: 50%;
    transform: translateY(-50%);
    max-width: 42%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(176, 182, 191, 0.95);
    letter-spacing: 0.02em;
    pointer-events: none;
    z-index: 1;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-select .belt-hub-select__label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: calc(100% - 2.9rem);
    max-width: calc(100% - 2.9rem);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9em;
    font-weight: inherit;
    text-align: center;
    line-height: 1;
    padding: 0;
    pointer-events: none;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-factor-select,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-factor-select,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-factor-select,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-factor-select {
    --custom-factor-prefix-reserve: 3rem;
    --custom-factor-arrow-reserve: 1.42rem;
    --custom-factor-side-reserve: 3.18rem;
    --custom-factor-value-font-size: 0.72rem;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-factor-select,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-factor-select {
    --custom-factor-prefix-reserve: 3.18rem;
    --custom-factor-side-reserve: 3.34rem;
    --custom-factor-value-font-size: 0.68rem;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-factor-select {
    --custom-factor-prefix-reserve: 2.72rem;
    --custom-factor-side-reserve: 2.9rem;
    --custom-factor-value-font-size: 0.7rem;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-factor-select .belt-hub-select__trigger,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-factor-select .belt-hub-select__trigger,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-factor-select .belt-hub-select__trigger,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-factor-select .belt-hub-select__trigger {
    padding-left: calc(var(--custom-factor-prefix-reserve) + 0.28rem);
    padding-right: var(--custom-factor-side-reserve);
    justify-content: center;
    text-align: center;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-factor-select .belt-hub-select__trigger[data-mobile-label-prefix]::before,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-factor-select .belt-hub-select__trigger[data-mobile-label-prefix]::before,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-factor-select .belt-hub-select__trigger[data-mobile-label-prefix]::before,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-factor-select .belt-hub-select__trigger[data-mobile-label-prefix]::before {
    left: 0.54rem;
    max-width: calc(var(--custom-factor-prefix-reserve) - 0.72rem);
    font-size: 0.54rem;
    letter-spacing: 0.01em;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-factor-select .belt-hub-select__label,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-factor-select .belt-hub-select__label,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-factor-select .belt-hub-select__label,
  body[data-page="products"][data-subpage="custom"][data-ui-language="ja"] .custom-factor-select .belt-hub-select__label {
    left: var(--custom-factor-side-reserve);
    right: var(--custom-factor-side-reserve);
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    max-width: none;
    font-size: clamp(0.56rem, 2vw, var(--custom-factor-value-font-size));
    text-align: center;
    letter-spacing: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-select .belt-hub-select__menu {
    top: calc(100% + 0.28rem);
    bottom: auto;
    max-height: var(--custom-factor-menu-max-height, 96px);
    border-radius: 8px;
    padding: 0.24rem;
    z-index: 2601 !important;
    border: none !important;
    background: #090c12 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-select .belt-hub-select__option {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.34rem 0.5rem;
    font-size: 0.62rem;
    border-radius: 7px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-select .belt-hub-select__option-thumb {
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 50%;
    flex: 0 0 0.56rem;
    background: var(--mobile-option-thumb-bg, linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14)));
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-select .belt-hub-select__option-text {
    display: inline-block;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-select .belt-hub-select__option[aria-selected="true"] .belt-hub-select__option-thumb {
    border-color: rgba(226, 93, 29, 0.72);
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-option {
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    padding: 0.28rem 0.56rem;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factor-option.is-active {
    border-color: rgba(226, 93, 29, 0.9);
    background: rgba(226, 93, 29, 0.2);
    color: #fff;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-drawer {
    display: block;
    width: var(--custom-factor-preview-width, 100%);
    max-width: var(--custom-factor-preview-width, 100%);
    aspect-ratio: var(--custom-factor-preview-ratio, 1 / 1);
    min-height: 0;
    margin: 0 auto;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-drawer > .spec-preview__swatch {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: var(--custom-factor-preview-radius) !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden;
    position: relative;
    display: block;
    padding-top: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-drawer > .spec-preview__swatch::before,
  body[data-page="products"][data-subpage="custom"] .custom-size-drawer > .spec-preview__swatch::after {
    content: none !important;
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-drawer__trigger {
    --_btn: clamp(1rem, 14.2%, 1.28rem);
    --_stack-gap: clamp(0.44rem, 2.1vw, 0.62rem);
    --_row-pad-y: clamp(0.04rem, 0.28vw, 0.07rem);
    --_row-pad-x: clamp(0.14rem, 0.8vw, 0.24rem);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
    padding: 0;
    border-radius: var(--custom-factor-preview-radius);
    border: none !important;
    background: linear-gradient(160deg, rgba(10, 13, 20, 0.98) 0%, rgba(8, 12, 18, 0.98) 100%);
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(var(--custom-factors-card-shadow, 0 10px 24px rgba(0, 0, 0, 0.22)));
    overflow: hidden;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--_stack-gap);
    padding: var(--_stack-gap);
    box-sizing: border-box;
    flex: 1 1 auto;
    height: 100%;
    max-height: none;
    justify-content: flex-start;
    min-height: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__row {
    display: grid;
    grid-template-columns: minmax(var(--_btn), max-content) minmax(0, 1fr) minmax(var(--_btn), max-content);
    align-items: center;
    gap: clamp(0.14rem, 0.8vw, 0.24rem);
    flex: 1 1 0%;
    min-height: calc(var(--_btn) + var(--_row-pad-y) * 2);
    height: auto;
    padding: var(--_row-pad-y) var(--_row-pad-x);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.065);
    box-shadow: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__adjust {
    width: auto;
    height: 90%;
    min-width: calc(var(--_btn) * 0.9);
    min-height: calc(var(--_btn) * 0.9);
    max-width: calc(var(--_btn) * 1.06);
    max-height: calc(var(--_btn) * 1.06);
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    justify-self: center;
    align-self: center;
    border: 1px solid transparent;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__adjust::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 1.5px;
    border-radius: 1px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__adjust[data-size-stepper-dir="increase"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5px;
    height: 35%;
    border-radius: 1px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__adjust[data-size-stepper-dir="decrease"] {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__adjust[data-size-stepper-dir="decrease"]::before {
    background: rgba(255, 255, 255, 0.5);
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__adjust[data-size-stepper-dir="increase"] {
    background: var(--orange, #e25d1d);
    border-color: rgba(226, 93, 29, 0.92);
    box-shadow: 0 2px 7px rgba(226, 93, 29, 0.28);
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__adjust[data-size-stepper-dir="increase"]::before,
  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__adjust[data-size-stepper-dir="increase"]::after {
    background: #111;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__adjust:active {
    transform: scale(0.92);
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__value-wrap {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.2rem, 1vw, 0.32rem);
    padding: 0 0.04rem;
    pointer-events: none;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__title {
    flex-shrink: 0;
    font-size: clamp(0.58rem, 2.4vw, 0.68rem);
    font-weight: 600;
    letter-spacing: 0.015em;
    color: rgba(176, 182, 191, 0.95) !important;
    -webkit-text-fill-color: rgba(176, 182, 191, 0.95) !important;
    white-space: nowrap;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__value {
    font-size: clamp(0.78rem, 3vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.015em;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    min-width: 0;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer.belt-filter-panel {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    top: var(--nav-bottom, var(--nav-height, 64px)) !important;
    height: min(var(--mobile-drawer-height, 50vh), calc(100vh - var(--nav-height, 64px) - var(--filter-fab-clear, 96px)));
    height: min(var(--mobile-drawer-height-dvh, 50dvh), calc(100dvh - var(--nav-height, 64px) - var(--filter-fab-clear, 96px)));
    max-height: 50vh;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
      opacity 0.2s ease,
      visibility 0s linear 0.4s;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 2003;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer.belt-filter-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
      opacity 0.2s ease,
      visibility 0s linear 0s;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer .belt-filter-panel__body {
    padding: 1.28rem 1.1rem 1rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer .filter-block {
    margin-bottom: 1.08rem;
    padding-bottom: 0.8rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer .filter-heading {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer .slider-display {
    margin: 0.6rem 0 0.58rem;
    min-height: 1.78rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer .slider-display-main {
    padding: 0.12rem 0.56rem;
    letter-spacing: 0.12em;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer .slider-display-value {
    font-size: 0.88rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer .slider-display-label,
  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer .slider-display-unit {
    font-size: 0.64rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer .slider-divider {
    margin: 0.84rem 0 0.45rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer .slider-scale {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.52rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer input[type="range"]::-webkit-slider-runnable-track {
    height: 5px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    margin-top: -6.5px;
    border-width: 2px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer input[type="range"]::-moz-range-track {
    height: 5px;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-nav-drawer input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  body[data-page="products"][data-subpage="custom"].filter-drawer-open {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    overflow: hidden !important;
  }

  body[data-page="products"][data-subpage="custom"].filter-drawer-open main::before {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 10, 10, 0.14) !important;
  }

  body[data-page="products"][data-subpage="custom"].filter-drawer-open .custom-scroll {
    overflow: hidden !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-drawer,
  body[data-page="products"][data-subpage="custom"] .custom-size-drawer__trigger {
    position: relative;
    z-index: 2004;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal,
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  body[data-page="products"][data-subpage="custom"].filter-drawer-open .custom-section--factors.reveal,
  body[data-page="products"][data-subpage="custom"].filter-drawer-open .custom-section--factors.reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors .section-header,
  body[data-page="products"][data-subpage="custom"] .custom-section--factors .section-lede {
    opacity: 1 !important;
    transform: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__cta {
    grid-column: 1 / -1;
    margin-top: 0.18rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.34rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__cta-note {
    margin: 0;
    color: rgba(176, 182, 191, 0.96);
    text-align: center;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__cta button.custom-mobile-inquiry-trigger.mobile-filter-trigger {
    width: 100%;
    background: var(--orange, #e25d1d) !important;
    color: #111 !important;
    border-color: rgba(226, 93, 29, 0.95) !important;
    box-shadow: 0 6px 16px rgba(226, 93, 29, 0.26);
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__cta button.custom-mobile-inquiry-trigger.mobile-filter-trigger,
  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__cta button.custom-mobile-inquiry-trigger.mobile-filter-trigger .badgem-filt,
  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__cta button.custom-mobile-inquiry-trigger.mobile-filter-trigger .filter-toggle,
  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__cta button.custom-mobile-inquiry-trigger.mobile-filter-trigger .filter-toggle span {
    color: #111 !important;
    fill: #111 !important;
    stroke: #111 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__cta button.custom-mobile-inquiry-trigger.mobile-filter-trigger:active,
  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__cta button.custom-mobile-inquiry-trigger.mobile-filter-trigger[aria-expanded="true"],
  body[data-page="products"][data-subpage="custom"] .custom-factors-mobile__cta button.custom-mobile-inquiry-trigger.mobile-filter-trigger.is-open {
    background: var(--orange, #e25d1d) !important;
    color: #111 !important;
    border-color: rgba(226, 93, 29, 0.95) !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] .custom-factor-select .belt-hub-select__trigger {
    font-size: 0.82rem;
  }

  body[data-page="products"][data-subpage="custom"] .custom-size-stepper__value {
    font-size: 0.78rem;
  }

}

/* Final mobile flow lock: at least one viewport plus nav, and clip lower-section bleed. */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
    min-height: 100vh !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
    position: relative;
    isolation: isolate;
    margin-bottom: 0 !important;
  }

  @supports (height: 100svh) {
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
      min-height: 100svh !important;
      height: 100svh !important;
      max-height: 100svh !important;
    }
  }

  @supports (height: 100dvh) {
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
      min-height: 100dvh !important;
      height: 100dvh !important;
      max-height: 100dvh !important;
    }
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__inner,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__media,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-timeline--horizontal,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    overflow: hidden !important;
  }
}

/* Stable common layout: use normal document-flow page scrolling on custom mobile page. */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    scroll-snap-stop: normal !important;
    scroll-padding-top: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > footer {
    position: relative;
    z-index: 1;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-snap-section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--team,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--team {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  /* Keep flow section non-scrollable internally while page itself scrolls. */
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
    min-height: 100vh !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
  }

  @supports (height: 100svh) {
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
      min-height: 100svh !important;
      height: 100svh !important;
      max-height: 100svh !important;
    }
  }

  @supports (height: 100dvh) {
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
      min-height: 100dvh !important;
      height: 100dvh !important;
      max-height: 100dvh !important;
    }
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__inner,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .custom-section__media,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-timeline--horizontal,
  body[data-page="products"][data-subpage="custom"] .custom-section--flow .process-steps--horizontal {
    overflow: hidden !important;
    min-height: 0 !important;
    height: auto !important;
  }
}

/* Final snap off: disable all scroll-snap behavior on custom products page. */
body[data-page="products"][data-subpage="custom"] .custom-scroll,
body[data-page="products"][data-subpage="custom"] .custom-scroll * {
  scroll-snap-type: none !important;
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
  scroll-padding-top: 0 !important;
}

/* Final factors lock: make six-factor section exactly one viewport tall on mobile. */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors {
    min-height: 100vh !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
  }

  @supports (height: 100svh) {
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--factors,
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors {
      min-height: 100svh !important;
      height: 100svh !important;
      max-height: 100svh !important;
    }
  }

  @supports (height: 100dvh) {
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--factors,
    body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors {
      min-height: 100dvh !important;
      height: 100dvh !important;
      max-height: 100dvh !important;
    }
  }
}

/* Final index-style full-page logic for custom page. */
body[data-page="products"][data-subpage="custom"] {
  overflow: hidden !important;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll {
  height: 100vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scroll-snap-type: y mandatory !important;
  scroll-snap-stop: always !important;
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-snap-section,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--cases,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--team,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--factors,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--cases,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--team {
  min-height: 100vh !important;
  height: 100vh !important;
  max-height: 100vh !important;
  scroll-snap-align: start !important;
  scroll-snap-stop: always !important;
  overflow: hidden !important;
}

@supports (height: 100svh) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll {
    height: 100svh !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-snap-section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--team,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--team {
    min-height: 100svh !important;
    height: 100svh !important;
    max-height: 100svh !important;
  }
}

@supports (height: 100dvh) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll {
    height: 100dvh !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-snap-section,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--team,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--team {
    min-height: 100dvh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
  }
}

body[data-page="products"][data-subpage="custom"] .custom-scroll > footer {
  scroll-snap-align: end !important;
  scroll-snap-stop: always !important;
}

/* Final factors CTA position: lock inquiry button to the bottom of factors section. */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors {
    position: relative !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors .custom-factors-mobile {
    --custom-factors-center-line-bottom: calc(var(--custom-module-pad-x, clamp(0.85rem, 3.6vw, 1.25rem)) + 4.6rem);
    padding-bottom: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors .custom-factors-mobile__cta {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: var(--custom-module-pad-x, clamp(0.85rem, 3.6vw, 1.25rem)) !important;
    margin-bottom: 0 !important;
    grid-column: 1 / -1 !important;
    z-index: auto !important;
  }
}


/* Mobile flow steps container: group 01-05 list and keep bottom breathing room. */
.custom-flow-steps-container {
  width: 100%;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    --custom-flow-section-min-height: calc(100vh - var(--nav-height, 64px));
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
  }

  @supports (height: 100svh) {
    body[data-page="products"][data-subpage="custom"] {
      --custom-flow-section-min-height: calc(100svh - var(--nav-height, 64px));
    }
  }

  @supports (height: 100dvh) {
    body[data-page="products"][data-subpage="custom"] {
      --custom-flow-section-min-height: calc(100dvh - var(--nav-height, 64px));
    }
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    scroll-snap-stop: normal !important;
    -webkit-overflow-scrolling: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow {
    padding-top: var(--nav-height, 64px) !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--stack {
    padding-top: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow {
    margin-top: 0 !important;
    min-height: var(--custom-flow-section-min-height) !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__inner {
    display: flex !important;
    flex-direction: column !important;
    min-height: var(--custom-flow-section-min-height) !important;
    height: auto !important;
    overflow: visible !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__content.custom-section__content--centered {
    flex: 0 0 auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__media,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .process-timeline--horizontal {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-flow-steps-container {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    width: 100%;
    min-height: 0 !important;
    height: 100% !important;
    max-height: none !important;
    margin-bottom: clamp(0.72rem, 2.8vw, 1.08rem) !important;
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-flow-steps-container .process-steps--horizontal {
    flex: 1 1 auto !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    grid-template-rows: repeat(5, minmax(min-content, 1fr)) !important;
    align-content: stretch !important;
    margin: 0 !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
    touch-action: pan-y !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .process-step,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .step-content {
    height: 100% !important;
  }
}

@keyframes customFactorsMobileCardReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    filter: saturate(0.92) brightness(0.95);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
  }
}

/* Line reveal keyframes: vertical grows top→bottom, pausing at each intersection. */
@keyframes factorsVerticalReveal {
  0%    { clip-path: inset(0 0 100% 0); }
  30%   { clip-path: inset(0 0 67% 0); }   /* first intersection */
  42%   { clip-path: inset(0 0 67% 0); }   /* pause while H1 extends */
  62%   { clip-path: inset(0 0 33% 0); }   /* second intersection */
  74%   { clip-path: inset(0 0 33% 0); }   /* pause while H2 extends */
  100%  { clip-path: inset(0 0 0% 0); }    /* complete */
}

/* Line reveal keyframes: vertical grows bottom→top, pausing at each intersection. */
@keyframes factorsVerticalRevealUp {
  0%    { clip-path: inset(100% 0 0 0); }
  30%   { clip-path: inset(67% 0 0 0); }   /* second intersection from bottom */
  42%   { clip-path: inset(67% 0 0 0); }   /* pause while H2 extends */
  62%   { clip-path: inset(33% 0 0 0); }   /* first intersection from bottom */
  74%   { clip-path: inset(33% 0 0 0); }   /* pause while H1 extends */
  100%  { clip-path: inset(0% 0 0 0); }    /* complete */
}

@keyframes factorsCardRevealUp {
  0% {
    opacity: 0;
    transform: translate3d(0, -16px, 0);
    filter: saturate(0.92) brightness(0.95);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
  }
}

@keyframes factorsHorizontalReveal {
  0%   { clip-path: inset(0 50% 0 50%); }
  100% { clip-path: inset(0 0 0 0); }
}

@keyframes productMapBadgeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes factorsCircleReveal {
  0%   { transform: translate(-50%, 50%) scale(0); opacity: 0; }
  60%  { transform: translate(-50%, 50%) scale(1.3); opacity: 1; }
  100% { transform: translate(-50%, 50%) scale(1); opacity: 1; }
}

@keyframes featureMetricsVerticalRevealFromCenter {
  0%   { clip-path: inset(50% 0 50% 0); }
  100% { clip-path: inset(0 0 0 0); }
}

@keyframes featureMetricsCenterDotReveal {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  60%  { transform: translate(-50%, -50%) scale(1.3); opacity: 0.88; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.82; }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  body[data-page="home"] .feature-reasons-section.reveal .feature-metrics-grid::before,
  body[data-page="home"] .feature-reasons-section.reveal .feature-metrics-grid::after {
    clip-path: none !important;
    animation: none !important;
  }

  body[data-page="home"] .feature-reasons-section.reveal .feature-metrics-center-dot {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
    animation: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factors-mobile .custom-factor-card[data-mobile-factor] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factors-mobile::before {
    clip-path: none !important;
    animation: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factor-card[data-mobile-factor="fragrance"]::before,
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factor-card[data-mobile-factor="material"]::before {
    clip-path: none !important;
    animation: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factor-card[data-mobile-factor="fragrance"]::after,
  body[data-page="products"][data-subpage="custom"] .custom-section--factors.reveal .custom-factor-card[data-mobile-factor="material"]::after {
    transform: translate(-50%, 50%) scale(1) !important;
    opacity: 1 !important;
    animation: none !important;
  }

}

/* Final factors container background reset */
body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section.custom-section--factors,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section.custom-section--factors.is-visible,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors,
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors.is-visible {
  background: transparent !important;
  background-image: none !important;
}

/* Final mobile flow/factors frame reset */
@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section.custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section.custom-section--flow.is-visible,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--flow,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-stack-section.custom-section--factors.is-visible,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main > .custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors.is-visible {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    outline: none !important;
  }
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll {
    display: flex;
    flex-direction: column;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main {
    width: 100%;
    flex: 0 0 auto;
    order: 10;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > footer {
    order: 99;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow {
    order: 1;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases {
    order: 2;
    background: #191d23 !important;
    background-image: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors {
    order: 3;
    background: transparent !important;
    background-image: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--team {
    order: 4;
    display: none !important;
  }

  /* Cases module: keep only solid main background on mobile. */
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases > .custom-snap-section.custom-section--cases {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases > .custom-section--cases::before,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases > .custom-snap-section.custom-section--cases::before {
    content: none !important;
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-section__content.custom-section__content--centered .section-header {
    margin-top: var(--custom-flow-nav-gap-mobile, clamp(0.55rem, 2.2vw, 0.9rem)) !important;
    margin-bottom: var(--custom-flow-nav-gap-mobile, clamp(0.55rem, 2.2vw, 0.9rem)) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-section__content.custom-section__content--centered .section-header h2 {
    font-size: clamp(1.34rem, 6.9vw, 1.66rem) !important;
    margin: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-section__content.custom-section__content--centered .section-lede.custom-cases-lede {
    margin: 0.4rem 0 0 !important;
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
  }

  /* Mobile order for cases: title + lede -> logos -> case copy */
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .custom-section__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-section__content.custom-section__content--centered {
    display: contents !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-section__content.custom-section__content--centered .section-header {
    order: 1;
    width: 100% !important;
    justify-items: start !important;
    text-align: left !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-section__content.custom-section__content--centered .section-lede.custom-cases-lede {
    order: 2;
    width: 100% !important;
    text-align: left !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-section__media {
    order: 3;
    margin-top: var(--custom-flow-nav-gap-mobile, clamp(0.55rem, 2.2vw, 0.9rem)) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .case-copy {
    order: 4;
    margin-top: var(--custom-flow-nav-gap-mobile, clamp(0.55rem, 2.2vw, 0.9rem)) !important;
    justify-items: center !important;
    text-align: center !important;
  }
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases > .custom-section--cases,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases > .custom-snap-section.custom-section--cases {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .custom-section__inner {
    height: auto !important;
    min-height: 0 !important;
  }

  /* Custom cases copy aligned with about brand-company-copy on mobile only */
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .custom-section__inner {
    align-items: stretch !important;
    min-height: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .case-copy,
  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
    color: rgba(232, 236, 241, 0.84);
    font-size: clamp(0.8rem, 3.15vw, 0.9rem);
    line-height: 1.78;
    letter-spacing: 0;
    text-align: left;
    padding: clamp(0.95rem, 4vw, 1.2rem);
    box-sizing: border-box;
    background: rgba(30, 34, 40, 0.82);
    border: 0;
    border-radius: clamp(0.9rem, 3.8vw, 1.15rem);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .case-copy p,
  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy p {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .case-copy .case-copy__sub,
  body[data-page="products"][data-subpage="custom"] .custom-success-section .case-copy .case-copy__sub {
    color: #fff;
    font-weight: 700;
    font-size: inherit;
    line-height: 1.2;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .custom-section__content.custom-section__content--centered .case-copy {
    order: 4 !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: calc(var(--custom-module-pad-x, clamp(0.85rem, 3.6vw, 1.25rem)) * 2) !important;
    align-items: stretch !important;
    text-align: left !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .custom-section__media {
    order: 3 !important;
    display: block !important;
    flex: 0 0 auto !important;
    align-self: stretch !important;
    min-height: 0 !important;
    height: auto !important;
    margin-top: var(--custom-flow-nav-gap-mobile, clamp(0.55rem, 2.2vw, 0.9rem)) !important;
    margin-bottom: var(--custom-module-pad-x, clamp(0.85rem, 3.6vw, 1.25rem)) !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .case-logos {
    height: auto !important;
    min-height: 0 !important;
    flex: none !important;
    grid-auto-rows: minmax(82px, auto) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .case-logo-slot {
    height: auto !important;
    min-height: 82px !important;
    --logo-base-scale: 1 !important;
    --logo-hover-scale: 1.08 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .custom-success-section .case-copy,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases .case-copy {
    order: 4 !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 1 !important;
    margin-top: 0 !important;
    margin-bottom: calc(var(--custom-module-pad-x, clamp(0.85rem, 3.6vw, 1.25rem)) * 2) !important;
    align-items: stretch !important;
    text-align: left !important;
  }
}

/* Normalized structure for custom cases module */
body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases {
  padding: 0;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section.custom-cases-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-cases-header {
  text-align: center !important;
  grid-column: 1;
  align-self: start;
  max-width: 520px;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
  gap: clamp(2rem, 3.5vw, 3rem);
  justify-content: flex-start;
  padding-top: 0;
  position: relative;
  background: transparent;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-cases-header .section-header {
  width: 100%;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin-top: clamp(7.5rem, 16vh, 9rem);
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-cases-header .section-lede.custom-cases-lede {
  text-align: center;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-cases-media {
  grid-column: 2;
  grid-row: 1 / span 2;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-cases-card {
  grid-column: 1;
  justify-items: start;
  text-align: justify;
  text-align-last: auto;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-cases-card p {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  overflow-wrap: break-word;
  word-break: normal;
}

body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-success-section .custom-cases-card p,
body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-success-section .custom-cases-card p,
body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-success-section .custom-cases-card p {
  hyphens: auto;
  -webkit-hyphens: auto;
}

body[data-page="products"][data-subpage="custom"] .custom-success-section .custom-cases-card__lead {
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(0.96rem, 3.9vw, 1.08rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: normal;
}

body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-success-section .custom-cases-card__lead,
body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-success-section .custom-cases-card__lead,
body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-success-section .custom-cases-card__lead {
  hyphens: auto;
  -webkit-hyphens: auto;
}

body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-success-section .custom-cases-card__lead {
  letter-spacing: 0;
  word-spacing: normal;
  text-align: left;
  text-align-last: auto;
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors.is-visible {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-top: calc(var(--custom-module-pad-x) * 2) !important;
    padding-bottom: calc(var(--custom-module-pad-x) * 2) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--factors.custom-section--factors.is-internal-scrollable {
    overflow: visible !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: #191d23 !important;
    background-image: none !important;
    padding-top: calc(var(--custom-module-pad-x) * 2) !important;
    padding-right: var(--custom-module-pad-x) !important;
    padding-bottom: calc(var(--custom-module-pad-x) * 2) !important;
    padding-left: var(--custom-module-pad-x) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases::before {
    content: none !important;
    display: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases.custom-cases-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-header.custom-section__content.custom-section__content--centered {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    background: transparent !important;
    gap: 0 !important;
    text-align: center !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-header .section-header {
    order: 1;
    margin-top: var(--custom-flow-nav-gap-mobile, clamp(0.55rem, 2.2vw, 0.9rem)) !important;
    margin-bottom: var(--custom-flow-nav-gap-mobile, clamp(0.55rem, 2.2vw, 0.9rem)) !important;
    justify-content: center !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-header .section-lede.custom-cases-lede {
    order: 2;
    width: 100% !important;
    margin: 0.4rem 0 0 !important;
    text-align: center !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-media {
    order: 3 !important;
    display: block !important;
    flex: 0 0 auto !important;
    align-self: stretch !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin-top: var(--custom-module-pad-x, clamp(0.85rem, 3.6vw, 1.25rem)) !important;
    margin-bottom: var(--custom-module-pad-x, clamp(0.85rem, 3.6vw, 1.25rem)) !important;
    overflow: hidden !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-media .case-logos {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    flex: none !important;
    grid-auto-rows: minmax(92px, auto) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-media .case-logo-slot {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    min-height: 92px !important;
    padding: 0.75rem !important;
    --logo-base-scale: 1 !important;
    --logo-hover-scale: 1 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-media .case-logo-slot img {
    width: auto !important;
    height: auto !important;
    max-width: 72% !important;
    max-height: 52px !important;
    object-fit: contain !important;
    transform: none !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card {
    order: 4 !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    gap: 0.75rem !important;
    justify-items: initial !important;
    text-align: justify !important;
    text-align-last: auto !important;
    color: rgba(232, 236, 241, 0.84) !important;
    font-size: clamp(0.8rem, 3.15vw, 0.9rem) !important;
    line-height: 1.78 !important;
    letter-spacing: 0 !important;
    padding: clamp(0.95rem, 4vw, 1.2rem) !important;
    box-sizing: border-box !important;
    background: rgba(30, 34, 40, 0.82) !important;
    border: 0 !important;
    border-radius: clamp(0.9rem, 3.8vw, 1.15rem) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card p {
    display: block !important;
    margin: 0 !important;
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card p,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card p,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card p {
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card .custom-cases-card__lead {
    color: var(--orange) !important;
    font-weight: 700 !important;
    font-size: clamp(0.96rem, 3.9vw, 1.08rem) !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card .custom-cases-card__lead,
  body[data-page="products"][data-subpage="custom"][data-ui-language="it"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card .custom-cases-card__lead,
  body[data-page="products"][data-subpage="custom"][data-ui-language="es"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card .custom-cases-card__lead {
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
  }

  body[data-page="products"][data-subpage="custom"][data-ui-language="en"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card .custom-cases-card__lead {
    letter-spacing: 0 !important;
    word-spacing: normal !important;
    text-align: left !important;
    text-align-last: auto !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases .custom-cases-card .case-copy__sub {
    color: #fff !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 640px) {
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--cases.custom-section--cases {
    padding-top: calc(var(--custom-module-pad-x) * 2) !important;
    padding-right: var(--custom-module-pad-x) !important;
    padding-bottom: calc(var(--custom-module-pad-x) * 2) !important;
    padding-left: var(--custom-module-pad-x) !important;
  }
}

@media (max-width: 900px) {
  body[data-page="products"][data-subpage="custom"] {
    --mobile-section-title-top-space: clamp(2.5rem, 10vw, 4rem);
    --mobile-section-title-bottom-space: clamp(1.25rem, 5vw, 2rem);
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__inner {
    gap: 0 !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__content.custom-section__content--centered {
    gap: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding:
      var(--mobile-section-title-top-space)
      clamp(0.78rem, 2.5vw, 1rem)
      var(--mobile-section-title-bottom-space) !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__content.custom-section__content--centered .section-header {
    display: flex;
    justify-content: center;
    align-items: center !important;
    width: 100%;
    margin: 0 auto !important;
    text-align: center !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__content.custom-section__content--centered .section-header h2 {
    max-width: min(100%, 14em);
    font-size: clamp(1.36rem, 6vw, 1.78rem) !important;
    line-height: 1.14;
    margin: 0 !important;
    text-align: center !important;
  }

  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .custom-section__media,
  body[data-page="products"][data-subpage="custom"] .custom-scroll > main.custom-main--flow > .custom-section--flow .process-timeline--horizontal {
    margin-top: 0 !important;
  }
}
