/* --------------------------------------------------------------------------
 * 2026-07-28 首页视觉原型回填
 * 以下规则以静态 index.html 的 28px 通知栏、61px 导航、覆盖式首屏和
 * 11 模块顺序为基准；后台特色图片仍可覆盖主题兜底素材。
 * -------------------------------------------------------------------------- */

:root {
  --xs-notice-height: 28px;
  --xs-nav-height: 61px;
  --xs-shell-height: 89px;
  --xs-home-hero-height: calc(100vh - var(--xs-shell-height));
  --xs-home-gap: 10px;
}

html {
  scroll-behavior: smooth;
}

body.xs-site {
  margin: 0;
  padding-top: var(--xs-shell-height);
  color: #090909;
  background: #fff;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.xs-site *,
.xs-site *::before,
.xs-site *::after {
  box-sizing: border-box;
}

.xs-site a {
  color: inherit;
  text-decoration: none;
}

.xs-notice {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--xs-notice-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  background: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.xs-header {
  position: fixed;
  z-index: 1000;
  top: var(--xs-notice-height);
  left: 0;
  width: 100%;
  height: var(--xs-nav-height);
  color: #000;
  background: rgba(255, 255, 255, 0.98);
  border: 0;
}

.xs-header__inner {
  width: 100%;
  max-width: none;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 170px minmax(580px, 1fr) 420px;
  gap: 0;
  align-items: center;
}

.xs-brand {
  width: 34px;
  height: 34px;
  display: block;
}

.xs-brand__logo {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.xs-nav {
  justify-self: start;
}

.xs-menu,
.xs-menu ul,
.xs-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xs-menu {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 44px);
}

.xs-menu > li {
  margin: 0;
  position: relative;
}

.xs-menu > li > a {
  display: flex;
  min-height: var(--xs-nav-height);
  align-items: center;
  padding: 0;
  font-size: 14px;
  white-space: nowrap;
}

.xs-menu > li.current-menu-item > a,
.xs-menu > li > a:hover {
  font-weight: 600;
}

.xs-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 190px;
  padding: 14px 0;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.xs-menu li:hover > .sub-menu,
.xs-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.xs-menu .sub-menu a {
  display: block;
  padding: 9px 22px;
  font-size: 13px;
}

.xs-header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.xs-header-tools__mall {
  white-space: nowrap;
}

.xs-header-search {
  width: 260px;
  height: 36px;
  display: flex;
  border: 1px solid #eee;
  background: #fff;
}

.xs-site .xs-header-search input[type="search"] {
  width: auto;
  height: 34px !important;
  min-height: 0 !important;
  min-width: 0;
  flex: 1;
  padding: 0 12px !important;
  border: 0 !important;
  outline: 0;
  box-shadow: none !important;
  color: #222;
  background: transparent;
  font-size: 12px !important;
  line-height: 34px;
}

.xs-header-search button {
  position: relative;
  width: 42px;
  height: 34px;
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.xs-header-search button span {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 19px;
  height: 19px;
  border: 1.5px solid #111;
  border-radius: 50%;
}

.xs-header-search button span::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 1.5px;
  background: #111;
  transform: rotate(48deg);
}

.xs-tool-icon {
  position: relative;
  width: 22px;
  height: 24px;
  display: block;
}

.xs-tool-icon--bag {
  border: 1.3px solid #111;
  border-radius: 4px 4px 6px 6px;
  margin-top: 4px;
}

.xs-tool-icon--bag::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 5px;
  width: 9px;
  height: 8px;
  border: 1.3px solid #111;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.xs-tool-icon--account {
  border: 1.2px solid #111;
  border-radius: 8px;
}

.xs-tool-icon--account::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 8px;
  height: 8px;
  border: 1.2px solid #111;
  border-radius: 50%;
}

.xs-tool-icon--account::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 3px;
  width: 12px;
  height: 7px;
  border: 1.2px solid #111;
  border-radius: 10px 10px 4px 4px;
}

.xs-nav-toggle {
  display: none;
}

.xs-main {
  position: relative;
  z-index: 2;
}

.xs-home-main {
  min-height: 100vh;
}

.xs-home-hero {
  position: fixed;
  z-index: 0;
  top: var(--xs-shell-height);
  left: 0;
  width: 100%;
  height: var(--xs-home-hero-height);
  overflow: hidden;
  background: #d7e9f2;
}

.xs-home-hero__track,
.xs-home-hero__slide,
.xs-home-hero__slide picture,
.xs-home-hero__slide img {
  width: 100%;
  height: 100%;
}

.xs-home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}

.xs-home-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.xs-home-hero__slide picture {
  display: block;
}

.xs-home-hero__slide img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.xs-home-hero__shade {
  position: absolute;
  inset: 54% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.xs-home-hero__content {
  position: absolute;
  right: 15.5%;
  bottom: 24px;
  width: min(360px, 30vw);
  color: #fff;
  text-align: center;
}

.xs-home-hero__content p {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
}

.xs-home-hero__content h1,
.xs-home-hero__content h2 {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(26px, 2vw, 36px);
  font-weight: 600;
  line-height: 1.3;
}

.xs-home-hero__content a,
.xs-home-film a,
.xs-image-card__button {
  min-width: 238px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  color: #111;
  background: #fff;
  border: 1px solid #fff;
  font-size: 14px;
  line-height: 1;
  transition: 0.2s ease;
}

.xs-home-hero__content a:hover,
.xs-home-film a:hover,
.xs-image-card:hover .xs-image-card__button {
  color: #fff;
  background: #000;
  border-color: #000;
}

.xs-home-hero__controls {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 24px;
  display: flex;
  gap: 12px;
}

.xs-home-hero__controls button,
.xs-carousel-controls button {
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.xs-home-hero__controls button {
  color: #fff;
}

.xs-home-cms {
  position: relative;
  z-index: 3;
  padding-top: var(--xs-home-hero-height);
  background: transparent;
  pointer-events: none;
}

.xs-home-cms > * {
  pointer-events: auto;
}

.xs-home-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--xs-home-gap);
  padding: 40px 24px;
  background: #fff;
}

.xs-image-card {
  position: relative;
  min-width: 0;
  display: block;
  overflow: hidden;
  color: #fff;
  background-color: #edf4f3;
  background-image: var(--xs-image);
  background-position: var(--xs-position, center);
  background-repeat: no-repeat;
  background-size: cover;
}

.xs-image-card--tall {
  height: var(--xs-home-hero-height);
}

.xs-home-suites .xs-image-card {
  background-size: cover;
}

.xs-image-card__shade {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.62));
}

.xs-image-card__content {
  position: absolute;
  z-index: 2;
  right: 12%;
  bottom: 24px;
  left: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
}

.xs-image-card__content small {
  margin-bottom: 7px;
  font-size: 15px;
}

.xs-image-card__content strong {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.3;
}

.xs-home-film {
  position: relative;
  height: var(--xs-home-hero-height);
  overflow: hidden;
  color: #fff;
  background: #152832;
}

.xs-home-film video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.xs-home-film__shade {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.62));
}

.xs-home-film > div {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  color: #fff;
  text-align: center;
}

.xs-home-film small {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
}

.xs-home-film h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 600;
}

.xs-home-section {
  padding: 70px 24px 56px;
  overflow: hidden;
  background: #fff;
}

.xs-home-section__heading {
  margin-bottom: 24px;
}

.xs-home-section__heading h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.25;
}

.xs-carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.xs-product-track,
.xs-topic-track {
  display: flex;
  gap: 10px;
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s ease;
}

.xs-product-track .xs-product-card {
  flex: 0 0 calc((100% - 30px) / 4);
  min-width: 0;
  background: #fff;
}

.xs-product-track .xs-product-card__link {
  display: block;
}

.xs-product-track .xs-product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f7f6f3;
  border: 1px solid #eee;
}

.xs-product-track .xs-product-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: var(--xs-position, center);
}

.xs-product-track .xs-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  color: #fff;
  background: #000;
  font-size: 12px;
}

.xs-product-track .xs-product-card__body {
  padding: 18px 0 0;
}

.xs-product-track .xs-product-card__eyebrow,
.xs-product-track .xs-product-card__price {
  margin: 0 0 8px;
  font-size: 14px;
}

.xs-product-track .xs-product-card h3 {
  margin: 0 0 14px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
}

.xs-carousel-controls {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.xs-carousel-controls span {
  min-width: 42px;
  text-align: center;
  font-size: 13px;
}

.xs-topic-track .xs-image-card {
  flex: 0 0 calc((100% - 20px) / 3);
  height: 380px;
}

.xs-topic-track .xs-image-card__content strong,
.xs-pillar-grid .xs-image-card__content strong {
  font-size: clamp(22px, 2vw, 32px);
}

.xs-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.xs-pillar-grid .xs-image-card {
  height: 380px;
}

.xs-advantages {
  position: relative;
  z-index: 4;
  padding: 29px 8vw 0;
  color: #fff;
  background: #000;
  text-align: center;
}

.xs-advantages h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 2.25px;
}

.xs-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
}

.xs-advantages article {
  padding: 33px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.xs-advantages h3 {
  margin: 17px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

.xs-advantages p {
  max-width: 270px;
  margin: 10px auto 0;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

.xs-advantage-icon {
  width: 50px;
  height: 50px;
  display: inline-block;
}

.xs-advantage-icon img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
}

.xs-footer {
  position: relative;
  z-index: 4;
  color: #111;
  background: #f4f4f4;
}

.xs-footer__inner {
  max-width: 1120px;
  height: 292px;
  min-height: 292px;
  margin: 0 auto;
  padding: 28px 24px 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
}

.xs-footer__inner h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}

.xs-footer__inner h2::after {
  content: "";
  width: 50px;
  height: 1px;
  display: block;
  margin-top: 16px;
  background: #111;
}

.xs-footer__inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xs-footer__inner li,
.xs-footer__inner p {
  margin: 0 0 10px;
  color: #111;
  font-size: 14px;
  line-height: 1.45;
}

.xs-footer__contacts li {
  white-space: nowrap;
}

.xs-footer__locale {
  position: absolute;
  z-index: 1;
  bottom: 90px;
  left: 40px;
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.xs-footer__locale span {
  margin-left: 4px;
  color: #888;
}

.xs-footer__legal {
  width: 100% !important;
  max-width: none !important;
  min-height: 67px;
  margin: 0 !important;
  padding: 0 6.4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  background: #000;
  font-size: 11px;
}

.xs-footer__legal-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  white-space: nowrap;
}

.xs-footer__copyright {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .xs-header__inner {
    grid-template-columns: 70px 1fr 310px;
    padding: 0 18px;
  }

  .xs-menu {
    gap: 20px;
  }

  .xs-header-search {
    width: 165px;
  }

  .xs-header-tools {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .xs-image-card {
    background-image: var(--xs-mobile-image, var(--xs-image));
  }

  :root {
    --xs-notice-height: 28px;
    --xs-nav-height: 58px;
    --xs-shell-height: 86px;
    /* Give the mobile hero the same immersive, full-bleed treatment as desktop. */
    --xs-home-hero-height: clamp(430px, 68svh, 620px);
  }

  .xs-home-hero__slide img {
    object-fit: cover;
    object-position: center;
  }

  .xs-header__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
  }

  .xs-brand,
  .xs-brand__logo {
    width: 32px;
    height: 32px;
  }

  .xs-nav-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .xs-nav-toggle > span:not(.screen-reader-text) {
    width: 23px;
    height: 1px;
    display: block;
    background: #111;
  }

  .xs-nav {
    position: fixed;
    top: var(--xs-shell-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--xs-shell-height));
    overflow: auto;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .xs-header.is-nav-open .xs-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .xs-menu {
    display: block;
    padding: 14px 20px 22px;
  }

  .xs-menu > li > a {
    min-height: 46px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
  }

  .xs-menu .sub-menu {
    position: static;
    display: block;
    padding: 0 0 8px 14px;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .xs-header-tools {
    margin-left: auto;
    margin-right: 14px;
  }

  .xs-header-search,
  .xs-tool-icon--bag,
  .xs-tool-icon--account {
    display: none;
  }

  .xs-home-hero__content {
    right: 20px;
    bottom: 24px;
    left: 20px;
    width: auto;
    max-width: 320px;
    margin: 0 auto;
  }

  .xs-home-hero__content p {
    margin-bottom: 6px;
    font-size: clamp(12px, 3vw, 14px);
  }

  .xs-home-hero__content h1,
  .xs-home-hero__content h2 {
    margin-bottom: 16px;
    font-size: clamp(21px, 5.6vw, 26px);
    line-height: 1.22;
  }

  .xs-home-hero__content a {
    min-width: 176px;
    min-height: 40px;
    padding: 8px 20px;
    font-size: 13px;
  }

  .xs-home-hero__controls {
    top: 12px;
    right: 12px;
    gap: 8px;
  }

  .xs-home-hero__controls button {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .xs-home-two-up {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .xs-image-card--tall {
    height: min(76svh, 680px);
  }

  .xs-home-film {
    height: min(72svh, 680px);
  }

  .xs-product-track .xs-product-card {
    flex-basis: calc((100% - 10px) / 2);
  }

  .xs-topic-track .xs-image-card {
    flex-basis: calc((100% - 10px) / 2);
  }

  .xs-pillar-grid {
    gap: 10px;
  }

  .xs-footer__inner {
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .xs-footer__locale {
    position: static;
    padding: 0 24px 24px;
  }

  .xs-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .xs-footer__legal-links {
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .xs-notice {
    padding: 0 10px;
    overflow: hidden;
    font-size: 10px;
    white-space: nowrap;
  }

  .xs-home-hero__content h1,
  .xs-home-hero__content h2 {
    margin-bottom: 14px;
    font-size: clamp(19px, 5.4vw, 22px);
  }

  .xs-home-hero__content a {
    min-width: 168px;
    min-height: 38px;
  }

  .xs-home-film a,
  .xs-image-card__button {
    min-width: 210px;
  }

  .xs-home-section {
    padding: 52px 14px 42px;
  }

  .xs-home-section__heading h2 {
    font-size: 26px;
  }

  .xs-product-track .xs-product-card {
    flex-basis: 78%;
  }

  .xs-topic-track .xs-image-card {
    flex-basis: 84%;
    height: 430px;
  }

  .xs-pillar-grid {
    grid-template-columns: 1fr;
  }

  .xs-pillar-grid .xs-image-card {
    height: 430px;
  }

  .xs-advantages {
    padding-right: 24px;
    padding-left: 24px;
  }

  .xs-advantages__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .xs-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .xs-footer__contacts li {
    white-space: normal;
  }

  .xs-footer__locale {
    padding-right: 24px;
    padding-left: 24px;
  }
}


/* Mobile navigation drawer: visible hamburger, overlay and accordion submenus. */
@media (max-width: 900px) {
  body.xs-nav-lock { overflow: hidden; }
  .xs-header__inner { position: relative; }
  .xs-brand { order: 1; }
  .xs-header-tools { order: 2; margin-right: 4px; margin-left: auto; }
  .xs-nav-toggle {
    position: relative; z-index: 1003; order: 3; flex: 0 0 44px;
    width: 44px; height: 44px; margin-right: -10px; padding: 10px; cursor: pointer;
  }
  .xs-nav-toggle > span:not(.screen-reader-text) {
    position: absolute; top: 50%; left: 10px; width: 24px; height: 2px; margin: 0;
    background: #111; transform-origin: center;
    transition: transform .2s ease, opacity .2s ease;
  }
  .xs-nav-toggle > span:nth-child(1) { transform: translateY(-7px); }
  .xs-nav-toggle > span:nth-child(3) { transform: translateY(7px); }
  .xs-header.is-nav-open .xs-nav-toggle > span:nth-child(1) { transform: rotate(45deg); }
  .xs-header.is-nav-open .xs-nav-toggle > span:nth-child(2) { opacity: 0; }
  .xs-header.is-nav-open .xs-nav-toggle > span:nth-child(3) { transform: rotate(-45deg); }
  .xs-nav {
    position: fixed; z-index: 1002; top: var(--xs-mobile-nav-top, var(--xs-shell-height));
    right: 0; bottom: auto; left: auto; display: block; width: min(88vw, 390px);
    height: calc(100dvh - var(--xs-mobile-nav-top, var(--xs-shell-height)));
    max-height: none; padding: 0; overflow-x: hidden; overflow-y: auto;
    background: #fff; border-top: 1px solid #e8e8e8;
    box-shadow: -18px 24px 45px rgba(0, 0, 0, .18);
    opacity: 0; visibility: hidden; transform: translateX(100%);
    transition: transform .24s ease, opacity .2s ease, visibility .2s ease;
  }
  .xs-header.is-nav-open .xs-nav {
    display: block; opacity: 1; visibility: visible; transform: translateX(0);
  }
  .xs-menu, .xs-nav .menu { display: block; margin: 0; padding: 12px 0 28px; }
  .xs-menu > li, .xs-nav .menu > li { position: relative; border-bottom: 1px solid #ececec; }
  .xs-menu > li > a, .xs-nav .menu > li > a {
    display: flex; min-height: 58px; align-items: center; padding: 16px 62px 16px 24px;
    border: 0; font-size: 16px; font-weight: 500; letter-spacing: .03em;
  }
  .xs-submenu-toggle {
    position: absolute; z-index: 1; top: 7px; right: 12px; width: 44px; height: 44px;
    padding: 0; border: 0; background: transparent; cursor: pointer;
  }
  .xs-submenu-toggle::before, .xs-submenu-toggle::after {
    position: absolute; top: 50%; left: 50%; width: 14px; height: 1px;
    background: #111; content: ''; transform: translate(-50%, -50%);
    transition: transform .2s ease;
  }
  .xs-submenu-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
  .is-submenu-open > .xs-submenu-toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
  .xs-menu .sub-menu, .xs-nav .menu .sub-menu {
    position: static; display: none; margin: 0; padding: 2px 0 12px;
    background: #f7f7f5; box-shadow: none; opacity: 1; visibility: visible; transform: none;
  }
  .xs-menu .is-submenu-open > .sub-menu, .xs-nav .menu .is-submenu-open > .sub-menu { display: block; }
  .xs-menu .sub-menu a, .xs-nav .sub-menu a {
    min-height: 46px; padding: 13px 24px 13px 42px; border: 0; font-size: 14px;
  }
  .xs-nav-toggle:focus-visible, .xs-submenu-toggle:focus-visible, .xs-nav a:focus-visible {
    outline: 2px solid #111; outline-offset: -2px;
  }
  .xs-nav-backdrop {
    position: fixed; z-index: 999; inset: var(--xs-mobile-nav-top, var(--xs-shell-height)) 0 0;
    display: block; padding: 0; border: 0; background: rgba(0, 0, 0, .42);
    opacity: 0; visibility: hidden; cursor: pointer;
    transition: opacity .2s ease, visibility .2s ease;
  }
  body.xs-nav-lock .xs-nav-backdrop { opacity: 1; visibility: visible; }
}
@media (min-width: 901px) { .xs-nav-backdrop, .xs-submenu-toggle { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .xs-nav, .xs-nav-toggle > span:not(.screen-reader-text), .xs-nav-backdrop { transition: none; }
}
