.custom-matrix__sections--specs section {
  min-height: 100%;
}
:root {
  --black: #050505;
  --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;
}

* {
  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(--black);
  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: "";
  position: fixed;
  inset: 0;
  background: url("../../images/communicate.png") center/cover no-repeat;
  z-index: -1;
}

body[data-page="contact"] .contact-scroll {
  height: 100vh;
  height: 100svh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
  scroll-padding-top: 0;
}

body[data-page="contact"] .contact-scroll.contact-scroll--free {
  scroll-snap-type: none;
}

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: start;
  scroll-snap-stop: always;
}

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;
}

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;
}

.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;
}

.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: inline-flex;
  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(-1.65rem, -2.6vw, -0.85rem);
}

.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;
}

.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-copy p {
  color: var(--gray);
}

.hero-lede {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
}

.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="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"] {
  overflow: hidden;
}

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/cutting.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;
}

.about-scroll {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
}

body[data-page="about"] .about-scroll > * {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.about-scroll footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  scroll-snap-align: start;
  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-lede {
  max-width: 640px;
  color: var(--gray);
  margin-top: 1rem;
}

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 {
  justify-content: flex-start;
  padding-top: clamp(6rem, 14vw, 7.5rem);
  padding-bottom: clamp(2rem, 5vh, 3rem);
}

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;
}

@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-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;
}
  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/bucks.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/smell.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 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-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) {
  .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) {
  .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-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="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;
}

.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.5rem;
  flex: 1 1 auto;
  min-width: 0;
}

.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;
  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);
  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.4rem;
}

.belt-detail-modal__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.belt-detail-modal__dots button.is-active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.2);
  box-shadow: 0 0 0 2px rgba(226, 93, 29, 0.25);
}

.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;
  justify-content: space-between;
  font-size: 0.86rem;
  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 {
  letter-spacing: 0.08em;
}

.belt-detail-modal__meta strong {
  color: var(--text-light);
  font-weight: 600;
}

.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__dialog {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .belt-detail-modal__close {
    position: static;
    align-self: flex-end;
    margin-bottom: 0.35rem;
    padding: 0.2rem 0.3rem;
  }

  .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__dots {
    margin-top: 0.4rem;
  }
}


.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.35);
  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;
}

.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-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);
}

.hero-indicators {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-indicators button.is-active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.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: rgba(0, 0, 0, 0.5);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 100%;
}

.current-drop-panel__eyebrow {
  margin: 0;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--orange);
  text-transform: uppercase;
}

.current-drop-panel h4 {
  margin: 0;
  font-size: 1.35rem;
}

.current-drop-panel p:not(.current-drop-panel__eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.current-drop-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.current-drop-actions .belt-detail-modal__cta--primary {
  padding: 0.65rem 1.6rem;
  font-size: 0.85rem;
}
.current-drop-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.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.35);
  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;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.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;
}

.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 h4 {
  grid-column: 2;
  margin: 0;
  font-size: 1rem;
}

.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-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 {
  background: var(--dark-gray);
  border-radius: 24px;
  padding: 3rem;
}

.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);
}

.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);
}

.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) {
  .belt-intro {
    padding-top: 0;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    text-align: center;
  }

  .belt-intro .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4svh;
  }

  .belt-intro .section-header p:first-child {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin-top: 0;
    margin-bottom: 0;
  }

  .belt-intro .section-header h2 {
    font-size: clamp(32px, 8vw, 40px);
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .belt-intro .section-lede {
    display: none;
  }

  .footer {
    position: relative;
    padding: 3.5rem 2rem 2.5rem;
    background: #000;
    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/bulls.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/bulls.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/spain1.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-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;
}

.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(5%);
  transition: opacity 1.2s ease, transform 1.2s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hero-dot {
  width: 46px;
  height: 2px;
  border: none;
  padding: 0;
  appearance: none;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--orange);
}

.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-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-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.75rem;
.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;
  }
} margin-bottom: 2rem;
}

.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-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);
}

.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: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 5, 5, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.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-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: center;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  margin-left: 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-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;
}

.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: 8svh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 1.5rem;
    transition: none;
    overflow: visible;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    left: 1.1rem;
    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 1.5rem;
  }

  .nav .logo {
    justify-content: center;
    margin-left: 0;
  }

  .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;
    gap: 0.45rem;
  }

  .nav .logo img {
    height: clamp(11px, 2.4vw, 14px);
  }

  .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: 1.5rem 1.8rem 2.5rem;
    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-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 {
    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;
    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;
    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.4rem 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: 0.75rem;
    letter-spacing: 0.1em;
    width: 100%;
  }

  .nav-utility {
    margin-left: 0;
    width: 100%;
    display: block;
    justify-content: flex-start;
    align-items: stretch;
    border-bottom: none;
  }

  .language-switch {
    justify-content: flex-start;
    margin-left: 0;
    width: 100%;
  }

  .nav-drawer .nav-utility .language-switch {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .language-switch__toggle {
    justify-content: flex-start;
    width: 100%;
    padding: 0.6rem 0;
  }

  .language-switch__toggle--icon {
    min-height: auto;
    padding: 0.6rem 0;
    line-height: 1.2;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    letter-spacing: 0.08em;
    gap: 0.35rem;
    transition: color 0.2s ease;
  }

  .language-switch__toggle--icon::after {
    position: static;
    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;
  }

  .language-switch.is-open .language-switch__toggle--icon::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .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;
    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.4rem 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__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;
}

.contact-hero__scroll-cue,
.contact-section__scroll-cue {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(6px, 1.2vw, 10px);
  align-self: center;
}

.contact-hero__scroll-cue .scroll-cue__chevron,
.contact-section__scroll-cue .scroll-cue__chevron {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  animation: scrollCueFlow 2.6s ease-in-out infinite;
}

.contact-hero__scroll-cue .scroll-cue__chevron:last-child,
.contact-section__scroll-cue .scroll-cue__chevron:last-child {
  opacity: 0.5;
  margin-top: -1px;
  animation-delay: 0.25s;
}

@keyframes scrollCueFlow {
  0% {
    opacity: 0.15;
    transform: translateY(-2px) rotate(45deg);
    border-right-color: rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(255, 255, 255, 0.4);
  }
  40% {
    opacity: 1;
    border-right-color: var(--orange);
    border-bottom-color: var(--orange);
  }
  100% {
    opacity: 0.2;
    transform: translateY(4px) rotate(45deg);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }
}

.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: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  text-transform: none;
  letter-spacing: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: var(--orange);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

@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;
  }

  .contact-hero__scroll-cue,
  .contact-section__scroll-cue {
    display: flex;
    order: 5;
    position: absolute;
    left: 50%;
    bottom: clamp(10px, 2.4svh, 22px);
    margin-top: 0;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
  }

  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) {
  :root {
    --page-pad-x: clamp(20px, 5vw, 52px);
  }

  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);
  }
}

/* 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;
  }
  
  /* Add padding to body so content isn't covered by bottom nav */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }
}

.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,
.belt-filter-panel__header-mobile {
  display: none;
}

@media (max-width: 900px) {
  body[data-page="products"] {
    overflow-x: hidden;
  }

  body[data-page="products"] {
    --filter-fab-bottom: 32px;
    --filter-fab-clear: 96px;
  }

  body[data-page="products"]:not(.has-belt-modal):not(.belt-lightbox-open):not(.nav-drawer-open):not(.filter-drawer-open) {
    overflow-y: visible !important;
    height: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.filter-drawer-open {
    height: 100%;
  }

  /* 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%;
    
    /* 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 */
  }

  /* Filter Trigger Button - Floating until pagination */
  .mobile-filter-anchor {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0.25rem 0 0;
    min-height: 56px;
  }

  .mobile-filter-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
    --filter-toggle-offset: -0.08em;
    
    /* Floating placement */
    position: fixed;
    bottom: var(--filter-fab-bottom, 32px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 950;
    margin: 0;
    
    /* Layout */
    width: min(90%, 320px);
    
    /* Premium Black Gold Style */
    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-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: translateX(-50%) scale(0.96);
    background: rgba(18, 18, 18, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .mobile-filter-anchor.is-stopped .mobile-filter-trigger {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(16px);
  }
  
  .mobile-filter-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-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;
  }

  .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;
  }

  /* Filter Panel Drawer */
  .belt-filter-panel {
    position: fixed;
    top: var(--nav-height, 64px);
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height, 64px) - var(--filter-fab-clear, 96px));
    height: calc(100dvh - var(--nav-height, 64px) - var(--filter-fab-clear, 96px));
    max-height: none;
    border-radius: 0 0 24px 24px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1500;
    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: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .belt-filter-panel.is-open {
    transform: translateY(0);
  }
  
  .belt-filter-panel__header-mobile {
    display: none;
  }
  
  .belt-filter-panel__header-mobile h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  
  .belt-filter-panel__close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.8rem;
    line-height: 1;
    padding: 0.5rem;
    margin-right: -0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .belt-filter-panel__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 1.5rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }

  .belt-filter-panel::after {
    border-radius: 0 0 22px 22px;
  }
  
  /* Hide the "Smart Filter" badge inside body & other elements */
  .belt-filter-panel__body > .badge {
    display: none;
  }
  
  /* Adjust Filter Block spacing for mobile */
  .filter-block {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
  }
  
  /* Flatten belt browser wrapper on mobile */
  .belt-browser {
    display: contents;
  }
}

@media (max-width: 900px) {
  /* Product Grid Mobile Optimization */
  .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%;
  }

  /* Adaptive Card Height */
  .belt-card__media {
    aspect-ratio: 1 / 1;
    background-size: cover;
  }
  
  .belt-card {
    border-radius: 0;
    background: transparent;
    border: none;
    overflow: visible;
  }

  .belt-card__body,
  .belt-card__footer {
    display: none !important;
  }

  .belt-card__media {
    height: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    border-radius: 0;
  }
  
  /* Pagination Mobile - Premium Design */
  .belt-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin: 0.75rem 0 0 0;
    padding: 0 2.2rem 1.5rem;
    width: calc(100vw - 20px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    position: relative;
  }
  
  .belt-pagination button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.2rem 0.35rem;
    line-height: 1;
    min-width: 0;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .belt-pagination button:not(:disabled):active {
    transform: scale(0.92);
  }

  .belt-pagination button.is-active {
    background: transparent;
    border-color: transparent;
    color: #fff;
    font-weight: 600;
    transform: none;
  }

  /* Directional buttons (Prev/Next) */
  .belt-pagination button[aria-label="上一页"],
  .belt-pagination button[aria-label="下一页"] {
    border-radius: 0;
    width: auto;
    position: absolute;
    top: 0.1rem;
  }

  .belt-pagination button[aria-label="上一页"] {
    left: 0;
  }

  .belt-pagination button[aria-label="下一页"] {
    right: 0;
  }
  
  .pagination-ellipsis {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .belt-pagination button:disabled {
    opacity: 0.2;
    cursor: default;
    border-color: transparent;
    background: transparent;
  }

  /* Filter Meta - Top Position Mobile */
  .belt-hub-meta {
    position: static;
    margin: 0; /* Remove vertical margin, rely on parent gap */
    padding: 0; /* Align perfectly with grid edge */
    justify-content: space-between;
    text-align: left;
    width: 100%;
  }

  #belt-count {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-right: auto;
  }

  .belt-filter-chip {
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
  }

  /* Hide badge on mobile if needed, or adjust it */
  .belt-card__badge {
    top: 6px;
    left: 6px;
    font-size: 0.6rem;
    padding: 2px 6px;
  }
}
