@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-600.woff2") format("woff2");
  font-weight: 600 950;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #df1c25;
  --red-dark: #9f1018;
  --ink: #080808;
  --dark: #101010;
  --muted: #757575;
  --line: #e7e7e7;
  --paper: #f4f4f4;
  --container: 1600px;
  --font-main: Roboto, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-main);
  font-size: 14px;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

.container-xxl {
  max-width: var(--container);
}

/* 顶部导航 */
.site-header {
  position: relative;
  top: 0;
  z-index: 50;
}

.mobile-deal-bar,
.mobile-toolbar,
.mobile-drawer {
  display: none;
}

.search-overlay {
  position: fixed;
  inset: 0;
  display: block;
  background: rgba(0,0,0,.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 140;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-panel {
  background: #070707;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transform: translateY(-100%);
  transition: transform .26s ease;
}

.search-overlay.is-open .search-panel {
  transform: translateY(0);
}

.search-form {
  max-width: var(--container);
  min-height: 92px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto 38px;
  gap: 14px;
  align-items: center;
}

.search-form input {
  width: 100%;
  height: 52px;
  color: #fff;
  background: #151515;
  border: 1px solid #2b2b2b;
  outline: 0;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
}

.search-submit {
  height: 52px;
  padding: 0 24px;
  color: #fff;
  background: var(--red);
  border: 0;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.search-close {
  position: relative;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
}

.search-close::before,
.search-close::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 23px;
  height: 2px;
  background: #fff;
}

.search-close::before {
  transform: rotate(45deg);
}

.search-close::after {
  transform: rotate(-45deg);
}

body.search-open {
  overflow: hidden;
}

/* 顶部促销滚动条 */
.promo-strip {
  min-height: 31px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #050505 0%, #090909 24%, #c80000 50%, #090909 76%, #050505 100%);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.promo-track {
  display: flex;
  width: max-content;
  gap: 54px;
  white-space: nowrap;
  animation: promo-scroll 26s linear infinite;
}

.promo-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.promo-track img {
  width: 34px;
  height: 10px;
  object-fit: contain;
  flex: 0 0 auto;
}

.promo-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

@keyframes promo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.main-nav {
  min-height: 48px;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0;
}

.navbar-brand img {
  width: 112px;
  max-height: 30px;
  object-fit: contain;
}

.navbar-nav {
  gap: 30px;
}

.dropdown-nav {
  position: relative;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 17px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.nav-has-menu::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 250px;
  padding: 22px 34px;
  background: #101010;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  box-shadow: 0 18px 34px rgba(0,0,0,.34);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 80;
}

.nav-dropdown.small {
  min-width: 210px;
}

.dropdown-nav:hover .nav-dropdown,
.dropdown-nav:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  color: rgba(255,255,255,.72);
  padding: 10px 0;
  font-size: 16px;
  font-style: italic;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: #fff;
}

.sale-link span {
  display: inline-block;
  margin-right: 6px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  padding: 2px 5px;
  font-size: 9px;
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  transform: rotate(-12deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.language-selector {
  position: relative;
}

.language-current {
  min-width: 54px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-current img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.language-current::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 170px;
  padding: 10px;
  background: #101010;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  box-shadow: 0 16px 30px rgba(0,0,0,.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 90;
}

.language-selector:hover .language-menu,
.language-selector:focus-within .language-menu,
.language-selector.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.75);
  padding: 8px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.language-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,.07);
}

.language-menu img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.nav-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.nav-search::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.nav-search::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 6px;
  height: 1.8px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.nav-account::before {
  content: "";
  position: absolute;
  top: 1px;
  width: 7px;
  height: 7px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.nav-account::after {
  content: "";
  position: absolute;
  bottom: 1px;
  width: 13px;
  height: 7px;
  border: 1.7px solid currentColor;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 0;
}

.nav-cart::before {
  content: "";
  width: 13px;
  height: 11px;
  border: 1.7px solid currentColor;
  border-top: 0;
  transform: translateY(1px);
}

.nav-cart::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  width: 10px;
  height: 6px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.nav-cart span {
  position: absolute;
  top: -8px;
  right: -9px;
  min-width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

/* 首页 Banner */
.hero-section {
  position: relative;
  min-height: clamp(420px, 41.65vw, 800px);
  isolation: isolate;
  overflow: hidden;
  background: #130606;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-slide,
.hero-link,
.hero-slide picture {
  min-height: inherit;
  height: 100%;
}

.hero-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.hero-slide picture {
  display: block;
}

.hero-swiper {
  width: 100%;
}

.hero-slide {
  overflow: hidden;
  background: #130606;
}

.hero-slide img {
  display: block;
  width: 100%;
  min-height: inherit;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-pagination {
  bottom: 20px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--red);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  transform: translateY(-50%) scale(.96);
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.hero-section:hover .hero-nav,
.hero-section:focus-within .hero-nav {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.hero-nav:hover {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.hero-nav img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.hero-prev {
  left: max(24px, calc((100vw - 1440px) / 2 + 24px));
}

.hero-prev img {
  transform: rotate(180deg);
}

.hero-next {
  right: max(24px, calc((100vw - 1440px) / 2 + 24px));
}

.section-kicker {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(58px, 5.1vw, 98px) 0;
}

.section-heading {
  margin-bottom: 44px;
  text-align: center;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 1.85vw, 36px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.section-heading.light h2 {
  color: #fff;
}

.section-heading.light p {
  color: rgba(255,255,255,.68);
}

/* 推荐商品与新闻公共背景 */
.featured-section,
.news-section {
  background: #fff;
}

.news-section .section-heading h2 {
  text-transform: none;
}

/* Banner 下方推荐商品 */
.featured-section {
  padding-top: clamp(70px, 5.5vw, 104px);
  padding-bottom: clamp(72px, 5.2vw, 100px);
}

.featured-heading {
  display: none;
}

.featured-carousel-wrap {
  position: relative;
  padding-bottom: 48px;
}

.featured-swiper {
  overflow: hidden;
}

.featured-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  z-index: 4;
}

.featured-nav img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-nav.swiper-button-disabled {
  cursor: not-allowed;
  opacity: .35;
  filter: grayscale(1);
  pointer-events: none;
}

.featured-progress {
  display: none;
}

.featured-prev {
  right: 52px;
  transform: rotate(180deg);
}

.featured-product-card {
  position: relative;
  height: 100%;
  padding: 44px 34px 36px;
  overflow: hidden;
  text-align: center;
  background: #f3f3f3 url("../images/yozmasport/061-product-card-backdrop.jpg") center/cover no-repeat;
}

.featured-hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 1;
}

.featured-product-card:hover .featured-hover-video {
  opacity: .92;
}

.featured-product-card:hover .featured-bike img {
  opacity: 0;
}

.featured-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #040404;
  z-index: 3;
}

.featured-product-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 7px;
  color: #080808;
  font-size: clamp(28px, 2.1vw, 38px);
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transition: color .22s ease, text-shadow .22s ease;
}

.featured-product-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #222;
  font-size: 12px;
  line-height: 1.25;
  transition: color .22s ease, text-shadow .22s ease;
}

.featured-product-card:hover h3,
.featured-product-card:hover p,
.featured-product-card:hover .featured-spec strong,
.featured-product-card:hover .featured-spec span {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

.featured-bike {
  position: relative;
  z-index: 2;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px 0 20px;
}

.featured-bike img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  transition: opacity .2s ease;
}

.featured-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 34px;
}

.featured-action {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(0);
  transition: transform .22s ease, filter .22s ease, color .22s ease;
}

.featured-action img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: filter .22s ease, opacity .22s ease;
}

.featured-action span {
  position: relative;
  z-index: 1;
}

.featured-action.cart {
  color: #fff;
}

.featured-action:hover,
.featured-action:focus-visible {
  color: #fff;
  transform: translateY(-3px);
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.22));
}

.featured-action:hover img,
.featured-action:focus-visible img {
  filter: brightness(1.08) contrast(1.08);
}

.featured-action.shop:hover span,
.featured-action.shop:focus-visible span {
  color: var(--red);
  text-shadow: 0 0 12px rgba(255,255,255,.72);
}

.featured-action.cart:hover,
.featured-action.cart:focus-visible {
  color: #050505;
}

.featured-action.cart:hover img,
.featured-action.cart:focus-visible img {
  filter: brightness(1.12) saturate(1.15);
}

.featured-action:active {
  transform: translateY(-1px) scale(.99);
}

.featured-specs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.featured-spec {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.featured-spec img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.featured-spec strong {
  color: #050505;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  transition: color .22s ease, text-shadow .22s ease;
}

.featured-spec span {
  color: #777;
  font-size: 10px;
  line-height: 1;
  transition: color .22s ease, text-shadow .22s ease;
}

.news-card,
.news-list-item {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-card:hover,
.news-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(0,0,0,.12);
}

.link-arrow {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

/* Adventure 视频区 */
.adventure-section {
  background: #fff;
  padding-top: clamp(60px, 4.2vw, 80px);
  padding-bottom: clamp(70px, 5.2vw, 100px);
}

.adventure-heading {
  margin-bottom: 34px;
}

.adventure-heading h2 {
  color: var(--red);
  font-size: clamp(24px, 1.75vw, 34px);
  font-style: italic;
  text-transform: none;
}

.adventure-heading p {
  margin-top: 6px;
  color: #343434;
  font-size: 11px;
}

.adventure-media-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  align-items: stretch;
  gap: 0;
}

.adventure-player-wrap {
  position: relative;
  min-width: 0;
  padding: 20px;
  background: #000;
}

.adventure-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.adventure-main-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adventure-play-toggle {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 1;
  transition: opacity .2s ease;
}

.adventure-play-toggle img {
  width: clamp(68px, 5.4vw, 104px);
  height: clamp(68px, 5.4vw, 104px);
  object-fit: contain;
}

.adventure-player.is-playing .adventure-play-toggle {
  opacity: 0;
  pointer-events: none;
}

.adventure-tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  background: #fff;
}

.adventure-tab {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 0 0 0 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.adventure-tab.is-active {
  padding-left: 0;
}

.adventure-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background: #000;
  opacity: 0;
  transition: opacity .18s ease;
}

.adventure-tab.is-active::before {
  opacity: 1;
}

.adventure-tab-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
  object-position: center;
}

.adventure-tab.is-active .adventure-tab-image {
  opacity: 0;
}

.adventure-tab-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 24px 22px;
}

.adventure-tab.is-active .adventure-tab-info {
  display: flex;
}

.adventure-mobile-copy {
  display: none;
}

.adventure-title {
  display: block;
  margin: 0;
  color: var(--red);
  font-size: clamp(16px, 1.05vw, 20px);
  font-style: italic;
  font-weight: 950;
  line-height: 1.2;
}

.adventure-text {
  display: block;
  margin: 0;
  padding-top: 12px;
  color: #fff;
  font-size: clamp(13px, .84vw, 16px);
  font-weight: 700;
  line-height: 1.2;
}

/* Best Sellers 商品区 */
.best-section {
  background: #fff;
  padding-top: clamp(56px, 4.8vw, 92px);
}

.best-section .section-heading {
  margin-bottom: 34px;
}

.best-sellers-wrap {
  overflow: hidden;
}

.best-sellers-swiper {
  overflow: visible;
}

.best-sellers-swiper .swiper-wrapper {
  align-items: stretch;
}

.best-sellers-swiper .swiper-slide {
  height: auto;
}

@media (min-width: 992px) {
  .best-sellers-swiper .swiper-wrapper {
    row-gap: 34px;
  }
}

.best-seller-card {
  height: 100%;
  padding: 10px 12px 58px;
  text-align: center;
  background: #fff;
}

.best-seller-media {
  height: 265px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 36px;
}

.best-seller-media img {
  width: min(100%, 360px);
  max-height: 225px;
  object-fit: contain;
}

.best-seller-card h3 {
  margin: 0 0 20px;
  color: #030303;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.best-price {
  margin-bottom: 44px;
  color: #777b84;
  font-size: 14px;
  font-weight: 900;
}

.best-detail-btn {
  position: relative;
  display: inline-flex;
  width: min(210px, 82%);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #020202;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  z-index: 0;
}

.best-detail-btn::after {
  content: "";
  position: absolute;
  inset: 7px -7px -7px 7px;
  border: 2px solid var(--red);
  z-index: -1;
}

.best-detail-btn:hover {
  color: #fff;
  background: var(--red);
}

.best-sellers-progress {
  display: none;
  position: static;
  width: min(240px, 72vw);
  height: 3px;
  margin: 8px auto 0;
  background: #e2e2e2;
}

.best-sellers-progress .swiper-pagination-progressbar-fill {
  background: var(--red);
}

/* 用户评价区 */
.testimonial-section {
  min-height: 430px;
  padding: 78px 0;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.56)), url("../images/yozmasport/162-trust-backdrop.jpg") center/cover no-repeat;
}

.testimonial-heading {
  display: none;
}

.testimonial-swiper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 54px;
  overflow: visible;
  text-align: center;
}

.testimonial-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 6px 24px 0;
}

.testimonial-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.testimonial-slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #ffcf25;
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.testimonial-slide blockquote {
  margin: 22px auto 28px;
  max-width: 820px;
  font-size: clamp(14px, 1.1vw, 20px);
  line-height: 1.35;
  font-weight: 900;
}

.testimonial-user {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.testimonial-user img {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user cite {
  display: block;
  color: #fff;
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-user span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 800;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  transform: translateY(-50%) scale(.96);
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.testimonial-section:hover .testimonial-nav,
.testimonial-section:focus-within .testimonial-nav {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.testimonial-nav:hover {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.testimonial-nav img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.testimonial-prev {
  left: max(24px, calc(50% - 50vw + 32px));
}

.testimonial-prev img {
  transform: rotate(180deg);
}

.testimonial-next {
  right: max(24px, calc(50% - 50vw + 32px));
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: .55;
}

.swiper-pagination-bullet-active {
  background: var(--red);
  opacity: 1;
}

.news-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.news-body {
  padding: 25px;
}

.news-date {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-body h3 {
  margin: 10px 0;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.12;
}

.news-body p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-list-item {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 22px;
  align-items: center;
  padding: 18px;
}

.news-list-item h3 {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
}

.news-list-item img {
  width: 180px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
}

.news-mobile-wrap {
  display: none;
  overflow: hidden;
}

.news-mobile-swiper {
  overflow: visible;
}

.news-mobile-swiper .swiper-slide {
  height: auto;
}

.news-mobile-card {
  height: 100%;
}

.news-mobile-progress {
  position: static;
  width: min(240px, 72vw);
  height: 3px;
  margin: 18px auto 0;
  background: #e2e2e2;
}

.news-mobile-progress .swiper-pagination-progressbar-fill {
  background: var(--red);
}

/* 骑手瞬间轮播 */
.moments-section {
  padding: 70px 0 0;
  background: #fff;
  overflow: hidden;
}

.moments-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 42px;
  text-align: center;
}

.moments-title h2 {
  margin: 8px 0 0;
  color: #111;
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 950;
  line-height: 1;
  text-transform: none;
}

.moments-swiper {
  position: relative;
  width: 100%;
  padding-bottom: 34px;
}

.moment-card {
  height: 388px;
  overflow: hidden;
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moments-nav {
  position: absolute;
  top: calc(50% - 17px);
  z-index: 5;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  transform: translateY(-50%) scale(.96);
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.moments-swiper:hover .moments-nav,
.moments-swiper:focus-within .moments-nav {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.moments-nav:hover {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.moments-nav img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.moments-prev {
  left: 24px;
}

.moments-prev img {
  transform: rotate(180deg);
}

.moments-next {
  right: 24px;
}

.moments-progress {
  position: static;
  width: min(320px, 72vw);
  height: 3px;
  margin: 22px auto 0;
  background: #e2e2e2;
}

.moments-progress .swiper-pagination-progressbar-fill {
  background: var(--red);
}

/* 合作品牌 Logo */
.brand-section {
  padding: 52px 0;
  background: #fff;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  align-items: center;
}

.brand-logo {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none;
  opacity: 1;
  transition: filter .2s ease, opacity .2s ease;
}

.brand-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.brand-logo img {
  max-width: 150px;
  max-height: 88px;
  object-fit: contain;
}

.site-footer {
  color: #c7d0da;
  background: #1d1d1d;
}

/* 页脚区域 */
.footer-advantage {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-advantage-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.advantage-item {
  min-height: 84px;
  display: inline-grid;
  grid-template-columns: 26px auto;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  color: #fff;
  min-width: 0;
  line-height: 1;
}

.advantage-item img {
  width: 26px;
  height: 27px;
  object-fit: contain;
}

.advantage-item h3 {
  min-width: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr .75fr .75fr 1fr;
  min-height: 340px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand,
.footer-links,
.footer-contact {
  padding: 68px 44px 54px;
}

.footer-brand {
  border-right: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  width: 210px;
  margin-bottom: 24px;
}

.site-footer p {
  max-width: 330px;
  margin: 0 0 26px;
  color: #9da8b4;
  font-size: 15px;
  line-height: 1.55;
}

.footer-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 28px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 950;
}

.footer-accordion-icon {
  display: none;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.footer-accordion-panel {
  display: block;
}

.footer-main h3 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.site-footer a {
  display: block;
  margin-bottom: 18px;
  color: #aeb8c4;
  font-size: 15px;
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 46px;
}

.footer-social a {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #9da8b4;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

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

.footer-contact p {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.footer-contact p img {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  object-fit: contain;
}

.footer-bottom-wrap {
  background: #030303;
}

.footer-bottom {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #7f8b96;
  font-size: 13px;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.payment-icon {
  min-width: 42px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  color: #1e252d;
  background: #b9c0c8;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.payment-icon.gpay {
  color: #202124;
  background: #f1f3f4;
}

.payment-icon.paypal {
  color: #003087;
  background: #e7eef8;
  font-style: italic;
}

.payment-icon.visa {
  color: #1434cb;
  background: #fff;
  font-size: 11px;
  letter-spacing: .04em;
}

.payment-icon.mastercard {
  position: relative;
  min-width: 44px;
  background: #f5f5f5;
}

.payment-icon.mastercard i,
.payment-icon.mastercard b {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
}

.payment-icon.mastercard i {
  background: #eb001b;
  transform: translateX(3px);
}

.payment-icon.mastercard b {
  background: #f79e1b;
  transform: translateX(-3px);
  opacity: .92;
}

.payment-icon.discover {
  color: #111;
  background: linear-gradient(90deg, #fff 0 58%, #f58220 58% 100%);
  font-size: 8px;
}

.payment-icon.amex {
  color: #fff;
  background: #2e77bb;
  font-size: 10px;
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    gap: 10px;
  }

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

@media (max-width: 991.98px) {
  .site-header {
    position: relative;
  }

  .promo-strip,
  .main-nav {
    display: none;
  }

  .mobile-deal-bar {
    min-height: 40px;
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    color: #020202;
    background: var(--red);
  }

  .mobile-deal-bar img {
    width: 62px;
    max-height: 25px;
    object-fit: contain;
  }

  .mobile-deal-bar a {
    color: #050505;
    font-size: 14px;
    font-weight: 950;
    text-align: center;
  }

  .mobile-toolbar {
    min-height: 58px;
    display: grid;
    grid-template-columns: 34px 34px 1fr 42px 34px;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    background: #050505;
  }

  .mobile-menu-btn {
    width: 30px;
    height: 30px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mobile-menu-btn span {
    width: 23px;
    height: 2px;
    background: #fff;
  }

  .mobile-search,
  .mobile-cart {
    position: relative;
    width: 28px;
    height: 28px;
    color: #fff;
  }

  .mobile-search::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 3px;
    width: 17px;
    height: 17px;
    border: 3px solid currentColor;
    border-radius: 50%;
  }

  .mobile-search::after {
    content: "";
    position: absolute;
    right: 3px;
    bottom: 5px;
    width: 9px;
    height: 3px;
    background: currentColor;
    transform: rotate(45deg);
  }

  .mobile-logo {
    justify-self: center;
  }

  .mobile-logo img {
    width: 102px;
    max-height: 34px;
    object-fit: contain;
  }

  .mobile-language {
    justify-self: end;
  }

  .mobile-language .language-current {
    min-width: 40px;
  }

  .mobile-language .language-current span {
    display: none;
  }

  .mobile-language .language-menu {
    top: calc(100% + 14px);
    right: -28px;
  }

  .mobile-cart::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    width: 18px;
    height: 13px;
    border: 3px solid #fff;
    border-top: 0;
  }

  .mobile-cart::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 3px;
    width: 12px;
    height: 8px;
    border: 3px solid #fff;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .mobile-drawer {
    position: fixed;
    inset: 0;
    display: block;
    background: rgba(0,0,0,.64);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
    z-index: 120;
  }

  .mobile-drawer.is-open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-drawer-panel {
    width: min(86vw, 360px);
    height: 100%;
    overflow-y: auto;
    color: #fff;
    background: #080808;
    transform: translateX(-100%);
    transition: transform .24s ease;
  }

  .mobile-drawer.is-open .mobile-drawer-panel {
    transform: translateX(0);
  }

  .mobile-drawer-head {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .mobile-drawer-head img {
    width: 118px;
    max-height: 34px;
    object-fit: contain;
  }

  .mobile-drawer-close {
    position: relative;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
  }

  .mobile-drawer-close::before,
  .mobile-drawer-close::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 6px;
    width: 21px;
    height: 2px;
    background: #fff;
  }

  .mobile-drawer-close::before {
    transform: rotate(45deg);
  }

  .mobile-drawer-close::after {
    transform: rotate(-45deg);
  }

  .mobile-drawer-nav {
    padding: 10px 20px 22px;
  }

  .mobile-menu-group,
  .mobile-main-link {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .mobile-menu-group > button,
  .mobile-main-link {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 15px;
    font-style: italic;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-menu-group > button::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
    transition: transform .2s ease;
  }

  .mobile-menu-group.open > button::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .mobile-submenu {
    display: none;
    padding: 0 0 12px 14px;
  }

  .mobile-menu-group.open .mobile-submenu {
    display: block;
  }

  .mobile-submenu a {
    display: block;
    color: rgba(255,255,255,.72);
    padding: 8px 0;
    font-size: 13px;
    font-style: italic;
    font-weight: 850;
    text-transform: uppercase;
  }

  .mobile-main-link.hot {
    justify-content: flex-start;
    gap: 8px;
  }

  .mobile-main-link.hot span {
    color: #fff;
    background: var(--red);
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 10px;
    transform: rotate(-12deg);
  }

  .mobile-drawer-foot {
    display: grid;
    gap: 10px;
    padding: 18px 20px 28px;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .mobile-drawer-foot a {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .search-form {
    min-height: 82px;
    padding: 16px;
    grid-template-columns: 1fr 34px;
    gap: 10px;
  }

  .search-form input {
    height: 48px;
    font-size: 13px;
  }

  .search-submit {
    grid-column: 1 / -1;
    order: 3;
    height: 44px;
  }

  .search-close {
    width: 34px;
    height: 34px;
  }

  .navbar-collapse {
    padding: 18px 0 10px;
  }

  .navbar-nav {
    gap: 0;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 4px 0 8px 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-nav:hover .nav-dropdown,
  .dropdown-nav:focus-within .nav-dropdown {
    transform: none;
  }

  .nav-dropdown a {
    padding: 6px 0;
    font-size: 12px;
  }

  .nav-actions {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .hero-section {
    min-height: 0;
    height: auto;
    max-height: none;
    aspect-ratio: 750 / 1090;
  }

  .hero-nav {
    display: none;
  }

  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-slide,
  .hero-slide picture {
    min-height: 0;
  }

  .hero-slide img {
    min-height: 0;
    object-fit: contain;
    object-position: center top;
  }

  .adventure-media-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .adventure-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: -1px;
  }

  .adventure-tab {
    padding-left: 0;
  }

  .adventure-tab::before {
    inset: 0;
    width: 100%;
  }

  .adventure-tab-info {
    padding: 18px;
  }
}

@media (max-width: 767.98px) {
  .promo-strip {
    font-size: 10px;
  }

  .promo-track {
    gap: 34px;
  }

  .navbar-brand img {
    width: 126px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .featured-product-card {
    padding: 36px 22px 28px;
  }

  .featured-carousel-wrap {
    padding-bottom: 0;
  }

  .featured-nav {
    display: none;
  }

  .featured-progress {
    display: block;
    position: relative;
    margin: 20px 16px 0;
    width: auto;
    height: 4px;
    background: #ededed;
  }

  .featured-progress .swiper-pagination-progressbar-fill {
    background: var(--red);
  }

  .featured-bike {
    min-height: 260px;
    margin: 18px 0;
  }

  .featured-bike img {
    max-height: 250px;
  }

  .featured-actions {
    gap: 10px;
    margin-bottom: 28px;
  }

  .featured-action {
    min-height: 50px;
    font-size: 11px;
  }

  .featured-specs {
    gap: 10px;
  }

  .best-seller-card {
    padding-bottom: 34px;
  }

  .best-seller-media {
    height: 230px;
    margin-bottom: 24px;
  }

  .best-seller-media img {
    max-height: 205px;
  }

  .best-price {
    margin-bottom: 30px;
  }

  .best-detail-btn {
    min-height: 62px;
  }

  .best-sellers-progress {
    display: block;
  }

  .adventure-player-wrap {
    padding: 6px;
  }

  .adventure-player {
    aspect-ratio: 1.69;
  }

  .adventure-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #000;
  }

  .adventure-tab,
  .adventure-tab.is-active {
    padding: 4px;
    background: #000;
  }

  .adventure-tab::before {
    display: none;
  }

  .adventure-tab-image {
    aspect-ratio: 1.7;
    opacity: 1;
  }

  .adventure-tab.is-active .adventure-tab-image {
    opacity: 1;
  }

  .adventure-tab-info,
  .adventure-tab.is-active .adventure-tab-info {
    display: none;
  }

  .adventure-mobile-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 118px;
    margin-top: -1px;
    padding: 8px 14px 12px;
    background: #000;
  }

  .adventure-title {
    font-size: 16px;
  }

  .adventure-text {
    padding-top: 5px;
    font-size: 14px;
  }

  .testimonial-section {
    min-height: 480px;
    padding: 72px 0;
  }

  .testimonial-nav {
    display: none;
  }

  .news-desktop {
    display: none;
  }

  .news-mobile-wrap {
    display: block;
  }

  .news-mobile-card img {
    height: 220px;
  }

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

  .news-list-item img {
    width: 100%;
    height: 160px;
  }

  .moment-card {
    height: 300px;
  }

  .moments-nav {
    display: none;
  }

  .brand-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .brand-logo {
    min-height: 86px;
  }

  .brand-logo img {
    max-width: 124px;
    max-height: 66px;
  }

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

  .advantage-item {
    justify-content: start;
    min-height: 72px;
    padding: 0 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    padding: 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .footer-brand {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .footer-accordion-trigger {
    min-height: 56px;
    margin: 0;
    font-size: 16px;
  }

  .footer-accordion-icon {
    display: block;
  }

  .footer-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .24s ease, padding-bottom .24s ease;
  }

  .footer-accordion.is-open .footer-accordion-panel {
    max-height: 260px;
    padding-bottom: 18px;
  }

  .footer-accordion.is-open .footer-accordion-icon {
    transform: rotate(45deg);
  }

  .footer-links a {
    margin-bottom: 12px;
  }

  .footer-logo {
    width: 170px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    min-height: 120px;
    padding: 26px 0;
    text-align: center;
  }

  .footer-payments {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .brand-row {
    grid-template-columns: 1fr;
  }

  .mobile-deal-bar {
    grid-template-columns: 58px 1fr;
    gap: 8px;
    padding: 0 12px;
  }

  .mobile-deal-bar img {
    width: 52px;
  }

  .mobile-deal-bar a {
    font-size: 13px;
  }

  .mobile-toolbar {
    grid-template-columns: 28px 28px 1fr 38px 28px;
    gap: 9px;
    padding: 0 16px;
  }

  .mobile-logo img {
    width: 98px;
  }

  .news-body h3,
  .news-list-item h3 {
    font-size: 16px;
  }
}
