/* =========================================
   GLOBAL RESET (XPENG STYLE)
========================================= */

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-weight: 500;
  letter-spacing: -0.02em;
}

p {
  color: #111;
}

/* =========================================
   LINKS
========================================= */

a {
  color: #111;
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: pointer;
}

a:hover {
  color: #000;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
  font-family: inherit;
  border-radius: 0;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background-color: #000;
  border-color: #000;
}

.btn-outline {
  border: 1px solid #000;
  color: #000;
}

/* =========================================
   NAVBAR
========================================= */

.pdt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: 60px;
  display: none;
  background: transparent;
  color: #fff;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.pdt-nav.navbar-sticky,
.pdt-nav.is-mobile-menu-open {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: #111;
}
.pdt-nav__inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.pdt-nav__brand {
  display: inline-flex;
  align-items: center;
  height: 60px;
  margin: 0;
  padding: 0;
}
.pdt-nav__logo {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}
.pdt-nav.navbar-sticky .pdt-nav__logo,
.pdt-nav.is-mobile-menu-open .pdt-nav__logo {
  filter: none;
}
.pdt-nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
}
.pdt-nav__links p,
.pdt-mobile-menu__content p {
  margin: 0;
  padding: 0;
  display: contents;
}
.pdt-nav__links br,
.pdt-mobile-menu__content br {
  display: none;
}
.pdt-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 60px;
  padding: 0 0.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin: 0;
}
.pdt-nav.navbar-sticky .pdt-nav__link,
.pdt-nav.is-mobile-menu-open .pdt-nav__link {
  color: #111;
}
.pdt-nav__link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.pdt-nav.navbar-sticky .pdt-nav__link:hover,
.pdt-nav.is-mobile-menu-open .pdt-nav__link:hover {
  color: rgba(0, 0, 0, 0.65);
}
.pdt-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 2px;
  background-color: #96B414;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.pdt-nav__link:hover::after {
  transform: scaleX(1);
}
.pdt-nav__models {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 60px;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.pdt-nav__panel {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  height: 150px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1200;
}
.pdt-nav__models:hover .pdt-nav__panel,
.pdt-nav__models:focus-within .pdt-nav__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.pdt-nav__panel-inner {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem;
}
.pdt-nav__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 220px;
  text-decoration: none;
  color: #111;
}
.pdt-nav__card-label {
  font-size: 0.9rem;
  font-weight: 500;
}
.pdt-nav__card-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}
.pdt-nav__card:hover .pdt-nav__card-img {
  transform: scale(1.03);
  transition: transform 0.25s ease;
}

.pdt-nav--desktop {
  display: block;
}
.pdt-nav--mobile {
  display: none;
}

.pdt-nav__menu-btn {
  position: relative;
  height: 60px;
  width: 60px;
  border: 0;
  background: transparent;
  padding: 0;
}
.pdt-nav__menu-icon {
  width: 30px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}
.pdt-nav.navbar-sticky .pdt-nav__menu-icon,
.pdt-nav.is-mobile-menu-open .pdt-nav__menu-icon {
  filter: none;
}

.pdt-mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1300;
}
.pdt-mobile-menu.is-open {
  transform: translateX(0);
}
.pdt-mobile-menu__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 32px;
  line-height: 1;
}
.pdt-mobile-menu__content {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 4.5rem 1.25rem 1.25rem;
}
.pdt-mobile-menu__link {
  color: #111;
  font-size: 1.25rem;
  padding: 0.25rem 0;
}
.pdt-mobile-menu__link--cta {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .pdt-nav--desktop {
    display: none;
  }
  .pdt-nav--mobile {
    display: block;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #fff;
}

.navbar.fixed-top {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
}

.navbar.navbar-sticky {
  color: #111;
  height: 60px;
  min-height: 60px;
}

#main-nav {
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

#main-nav.navbar-sticky {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* NAV LINKS */

.nav-link,
.st-root-link {
  color: #fff;
  position: relative;
  font-weight: 500;
  transition: color 0.25s ease;
}

/* sticky override */
#main-nav.navbar-sticky .nav-link,
#main-nav.navbar-sticky .st-root-link {
  color: #111 !important;
}

.nav-link:hover,
.st-root-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

#main-nav.navbar-sticky .nav-link:hover,
#main-nav.navbar-sticky .st-root-link:hover {
  color: rgba(0, 0, 0, 0.6);
}

/* underline */

.nav-link::after,
.st-root-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 2px;
  background-color: #96B414;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.st-root-link:hover::after,
.nav-link.active::after,
.st-root-link.active::after {
  transform: scaleX(1);
}

/* =========================================
   LOGO
========================================= */

.logo {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

#main-nav .logo {
  position: relative;
  top: -3px;
  width: auto;
  height: 20px;
}

#main-nav .logo.m-3 {
  margin: 0 !important;
}

.navbar-sticky .logo {
  filter: none;
}

@media (min-width: 992px) {
  #main-nav,
  #main-nav .container,
  #main-nav .st-nav-menu,
  #main-nav .st-nav-primary {
    height: 60px;
  }

  .st-nav-menu {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    width: 100%;
  }

  .st-nav-menu > .st-nav-section:first-child {
    justify-self: start;
    width: max-content;
  }

  .link-logo.navbar-brand {
    display: block;
    margin: 0;
    margin-right: 0;
    padding: 0;
    width: max-content;
  }

  .st-nav-primary {
    justify-self: center;
    margin-left: 0 !important;
    display: flex;
    align-items: stretch;
    gap: 0.625rem;
  }

  .st-nav-mobile {
    justify-self: end;
  }

  #main-nav .st-dropdown-root {
    display: none !important;
  }

  #main-nav .nav-models-menu {
    display: flex;
    align-items: center;
    align-self: stretch;
    position: relative;
    height: 60px;
    margin: 0;
    padding: 0;
    line-height: 1;
    vertical-align: middle;
  }

  #main-nav .st-nav-primary > .nav-link,
  #main-nav .nav-models-menu > .st-root-link {
    display: inline-flex;
    align-items: center;
    height: 60px;
    line-height: 1;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  #main-nav .nav-models-menu > .st-root-link {
    align-self: stretch;
  }

  #main-nav .st-nav-primary > .nav-link,
  #main-nav .st-nav-primary > .nav-models-menu {
    margin-right: 0.625rem;
  }

  #main-nav .st-nav-primary > :last-child {
    margin-right: 0;
  }

  #main-nav .nav-models-panel {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    height: 150px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1100;
  }

  #main-nav .nav-models-menu:hover .nav-models-panel,
  #main-nav .nav-models-menu:focus-within .nav-models-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  #main-nav:has(.nav-models-menu:hover),
  #main-nav:has(.nav-models-menu:focus-within) {
    background: #fff;
  }

  #main-nav:has(.nav-models-menu:hover) .logo,
  #main-nav:has(.nav-models-menu:focus-within) .logo {
    filter: none;
  }

  #main-nav:has(.nav-models-menu:hover) .nav-link,
  #main-nav:has(.nav-models-menu:hover) .st-root-link,
  #main-nav:has(.nav-models-menu:focus-within) .nav-link,
  #main-nav:has(.nav-models-menu:focus-within) .st-root-link {
    color: #111 !important;
  }

  #main-nav:has(.nav-models-menu:hover) .nav-link:hover,
  #main-nav:has(.nav-models-menu:hover) .st-root-link:hover,
  #main-nav:has(.nav-models-menu:focus-within) .nav-link:hover,
  #main-nav:has(.nav-models-menu:focus-within) .st-root-link:hover {
    color: rgba(0, 0, 0, 0.6) !important;
  }

  #main-nav .nav-dropdown-gallery {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    height: 100%;
    padding: 0 2rem;
  }

  #main-nav .nav-dropdown-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 168px;
    margin: 0;
    padding: 12px 0 0;
    color: #111;
    line-height: 1;
    text-align: left;
  }

  #main-nav .nav-dropdown-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  #main-nav .nav-dropdown-image {
    display: block;
    width: 168px;
    height: 70px;
    min-width: 168px;
    min-height: 70px;
    max-width: 168px;
    max-height: 70px;
    object-fit: cover;
    transition: transform 0.2s ease;
  }

  #main-nav .nav-dropdown-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: 168px;
    justify-content: flex-start;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 0.125rem;
  }

  #main-nav .nav-dropdown-label::before {
    content: "\2192";
    color: #111;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  #main-nav .nav-dropdown-card:hover .nav-dropdown-thumb {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
  }

  #main-nav .nav-dropdown-card:hover .nav-dropdown-image {
    transform: scale(1.03);
  }

  #main-nav .nav-dropdown-card:hover .nav-dropdown-label::before {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991.98px) {
  #main-nav-mobile {
    height: 60px;
    min-height: 60px;
    background: transparent;
    transition: background-color 0.25s ease;
  }

  #main-nav-mobile.navbar-sticky,
  #main-nav-mobile.is-mobile-menu-open {
    background: #fff;
  }

  #main-nav-mobile .mobile-nav-content {
    position: relative;
    width: 100vw;
    width: 100dvw;
    min-height: 60px;
    height: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    background: transparent;
  }

  #main-nav-mobile .st-nav-menu {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
    background: transparent;
  }

  #main-nav-mobile .st-nav-section.nav-item {
    width: auto;
  }

  #main-nav-mobile .st-nav-mobile {
    display: flex !important;
    align-items: center;
    margin-left: auto;
  }

  #main-nav-mobile .link-logo.navbar-brand {
    display: inline-flex;
    align-items: center;
    margin-right: 0;
  }

  #main-nav-mobile .nav-link::after,
  #main-nav-mobile .st-root-link::after,
  #main-nav-mobile .dropdown-item::after {
    display: none !important;
    content: none !important;
  }

  #main-nav-mobile .logo-mobile {
    position: relative;
    top: -3px;
    width: auto;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
  }

  #main-nav-mobile.navbar-sticky .logo-mobile,
  #main-nav-mobile.is-mobile-menu-open .logo-mobile {
    filter: none;
  }

  #main-nav-mobile .navbar-toggler {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 8px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
  }

  #main-nav-mobile .mobile-menu-icon {
    display: block;
    width: 30px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.25s ease;
  }

  #main-nav-mobile.navbar-sticky .navbar-toggler,
  #main-nav-mobile.is-mobile-menu-open .navbar-toggler {
    color: #111 !important;
  }

  #main-nav-mobile.navbar-sticky .mobile-menu-icon,
  #main-nav-mobile.is-mobile-menu-open .mobile-menu-icon {
    filter: none;
  }

  #main-nav-mobile .st-popup {
    position: fixed;
    inset: 0;
    display: block !important;
    width: 100vw !important;
    width: 100dvw !important;
    min-width: 100vw !important;
    min-width: 100dvw !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    max-height: none !important;
    margin: 0 !important;
    background: #fff !important;
    color: #111 !important;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1300;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
  }

  #main-nav-mobile .st-nav-mobile.st-popup-active .st-popup {
    transform: translateX(0);
    pointer-events: auto;
  }

  #main-nav-mobile .st-popup-container {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    padding: 4.75rem 1.25rem 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff !important;
    color: #111 !important;
    -webkit-overflow-scrolling: touch;
  }

  #main-nav-mobile .mobile-nav-content,
  #main-nav-mobile .st-popup,
  #main-nav-mobile .st-popup-container,
  #main-nav-mobile .st-dropdown-content-group {
    box-sizing: border-box;
  }

  #main-nav-mobile .st-popup-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 0;
    color: #111 !important;
    text-decoration: none !important;
  }

  #main-nav-mobile .st-popup-close-button::before,
  #main-nav-mobile .st-popup-close-button::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #111;
  }

  #main-nav-mobile .st-popup-close-button::before {
    transform: rotate(45deg);
  }

  #main-nav-mobile .st-popup-close-button::after {
    transform: rotate(-45deg);
  }

  #main-nav-mobile .st-dropdown-content-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  #main-nav-mobile .st-dropdown-content-group h4 {
    margin-bottom: 1.5rem;
    color: #111;
  }

  #main-nav-mobile .st-dropdown-content-group .dropdown-item {
    padding: 0.25rem 0;
    color: #111 !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }

  #main-nav-mobile .st-dropdown-content-group .dropdown-item:visited,
  #main-nav-mobile .st-dropdown-content-group .dropdown-item:hover,
  #main-nav-mobile .st-dropdown-content-group .dropdown-item:focus,
  #main-nav-mobile .st-dropdown-content-group .dropdown-item:active {
    color: #111 !important;
    text-decoration: none !important;
  }

  #main-nav-mobile .st-dropdown-content-group .dropdown-item + .dropdown-item {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  #main-nav-mobile .st-dropdown-content-group .dropdown-item.text-primary {
    color: #111 !important;
    font-weight: 500;
  }
}

/* =========================================
   HERO
========================================= */

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 6s ease;
}

.splide__slide.is-active .hero-slide:not(.hero-slide--content) .hero-img {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.4));
  z-index: 2;
}

.hero-slide .container,
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 640px;
}

.hero-content h1,
.hero-content p {
  color: #fff;
}

/* =========================================
   HERO BUTTON (PREMIUM)
========================================= */

.hero-content .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #fff;
  border: 1px solid #fff;
  background: transparent;

  border-radius: 4px;
  padding: 8px 18px;

  overflow: hidden;
  z-index: 1;

  transition: color 0.3s ease, border-color 0.3s ease;
}

/* fill animation */
.hero-content .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #96B414;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  z-index: -1;
}

/* arrow */
.hero-content .btn::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 6px;

  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExLjU1NSA4LjAwNEw2LjQyMyAyLjY2N0g0LjQ0NGw1LjEyNCA1LjMzNy01LjEyNCA1LjMzaDEuOTkzbDUuMTE4LTUuMzN6IiBmaWxsPSIjZmZmIi8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  transform: translateY(1px);
  transition: transform 0.3s ease;
}

/* hover */
.hero-content .btn:hover {
  border-color: #96B414;
}

.hero-content .btn:hover::before {
  transform: scaleX(1);
}

.hero-content .btn:hover::after {
  transform: translateX(4px);
}

.hero-content .btn:hover {
  box-shadow: 0 4px 20px rgba(248, 199, 60, 0.3);
}

/* =========================================
   HERO BUTTON VARIANT (FILLED)
========================================= */

.hero-btn--filled {
  border-radius: 4px;
  color: #111;
  background: #fff;
  border: 1px solid #fff;
}

/* arrow should follow text color */
.hero-btn--filled::after {
  filter: invert(0); /* dark arrow */
}

/* hover → green fill */
.hero-btn--filled:hover {
  color: #fff;
  border-color: #96B414;
}

/* use SAME animation layer */
.hero-btn--filled::before {
  background: #96B414;
}

/* arrow stays visible on green */
.hero-btn--filled:hover::after {
  filter: invert(1);
}

/* arrow */
.hero-btn--filled::after {
  color: #8C73C;
}


/* =========================================
   SPLIDE PAGINATION
========================================= */

.splide__pagination {
  bottom: 30px;
  display: flex;
  gap: 12px;
}

.splide__pagination__page {
  width: 40px;
  height: 3px;
  background-color: rgba(255,255,255,0.3);
  transform: skewX(-30deg);
  border-radius: 0;
  opacity: 1;
  transition: all 0.3s ease;
}

.splide__pagination__page::before {
  display: none;
}

.splide__pagination__page.is-active {
  background-color: #96B414;
  transform: skewX(-30deg);
}

/* slider content */
/* =========================================
   NON-HERO SLIDE (CONTENT MODE)
========================================= */

.hero-slide--content {
  background: #fff;
  height: auto;
  min-height: 500px;
  padding: 100px 0;

  align-items: center;
}

/* remove image/overlay if present */
.hero-slide--content .hero-img,
.hero-slide--content .hero-overlay {
  display: none;
}

/* darker text */
.hero-content--dark h1 {
  color: #111;
}

.hero-content--dark p {
  color: #555;
}

/* =========================================
   FULL BLEED SECTIONS INSIDE PAGE CONTAINERS
========================================= */

.section--full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section--full-bleed .splide,
.section--full-bleed .splide__track,
.section--full-bleed .splide__list,
.section--full-bleed .splide__slide {
  width: 100%;
}

.section--full-bleed .hero-slide {
  width: 100vw;
}
/* =========================================
   XP HOME INTRO (SCOPED)
========================================= */

.xp-home-intro {
  background: linear-gradient(
    to bottom,
    #f5f5f5 0%,
    #ffffff 60%
  );
}

.width-70 {
  max-width: 70%;
}

.width-80 {
  max-width: 80%;
}

@media (max-width: 768px) {
  .width-70 {
    width: 90%;
    max-width: 100%;
  }
}

/* TEXT */
.xp-home-intro .xp-title {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.xp-home-intro .xp-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.xp-home-intro .xp-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

/* IMAGES */
.xp-home-intro .xp-img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

/* =========================================
   XP BUTTON - WIPE GREEN LEFT → RIGHT
========================================= */

.xp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 10px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  height: 32px;
}

/* green fill layer */
.xp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #96B414;
  transition: width 0.4s ease;
  z-index: -1;
}

/* hover effect */
.xp-btn:hover::before {
  width: 100%;
}

.xp-btn:hover {
  color: #fff;
  border-color: #96B414;
}

.xp-news-section .xp-btn {
  height: 36px;
  padding: 0 18px;
}

/* =========================================
   PRODUCT SPECS TABS
========================================= */

.pdt-specs-section .container {
  max-width: 1180px;
}

@media (min-width: 768px) {
  .g6-specs-section .pdt-specs-panel > .row {
    align-items: flex-start !important;
  }

  .g6-specs-section .pdt-specs-image-wrap {
    padding-top: 3.7rem;
  }

  .g6-specs-section .pdt-specs-variant-tabs + .tab-content {
    position: relative;
    min-height: 205px;
  }

  .g6-specs-section .pdt-specs-variant-tabs + .tab-content > .pdt-specs-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .x9-specs-section .container {
    width: 90vw !important;
    max-width: 1440px;
  }

  .x9-specs-section .x9-shared-title {
    margin-bottom: 0.5rem;
  }

  .x9-specs-section .pdt-specs-tabs {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
  }

  .x9-specs-section .pdt-specs-panel .row {
    --bs-gutter-x: 5rem;
  }

  .x9-specs-section .pdt-specs-image-wrap {
    min-height: 240px;
    overflow: hidden;
  }

  .x9-specs-section .pdt-specs-actions {
    margin-top: 1.5rem;
  }

  .x9-specs-section .pdt-specs-grid {
    column-gap: 1.2rem;
  }
}

.pdt-specs-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem auto 2.5rem;
}

.pdt-specs-tab {
  border: 0;
  min-width: 145px;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 0 0.75rem 0.6rem;
  color: #777;
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pdt-specs-tab.active,
.pdt-specs-tab.is-active {
  color: #111;
  font-weight: 600;
  border-bottom-color: #96B414;
}

.pdt-specs-model-tabs {
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pdt-specs-model-tabs .pdt-specs-tab {
  min-width: 72px;
  height: 34px;
  border: 1px solid #111;
  border-radius: 4px;
  padding: 0 0.75rem;
  color: #111;
  font-size: 0.85rem;
  font-weight: 400;
}

.pdt-specs-model-tabs .pdt-specs-tab.active,
.pdt-specs-model-tabs .pdt-specs-tab.is-active {
  background: #000;
  color: #fff;
  border-color: #000;
  font-weight: 400;
}

.pdt-specs-variant-tabs {
  justify-content: flex-start;
  gap: 2.25rem;
  width: 100%;
  margin: 0 0 1rem;
}

.pdt-specs-variant-tabs .pdt-specs-tab {
  flex: 0 0 auto;
  min-width: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1rem;
}

.pdt-specs-panel {
  display: none;
}

.pdt-specs-panel.active,
.pdt-specs-panel.show {
  display: block;
}

.pdt-specs-image-wrap {
  min-height: 300px;
  display: flex;
  align-items: center;
}

.pdt-specs-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.x9-specs-section .pdt-specs-image {
  width: 83.2%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  transform: none;
}

.pdt-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 2.25rem;
}

.pdt-specs-item {
  min-height: 34px;
}

.pdt-specs-item-title {
  margin-bottom: 0.05rem;
  color: #777;
  font-size: 0.62rem;
  line-height: 1.15;
}

.pdt-specs-item-value {
  margin: 0;
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
}

.pdt-specs-actions {
  justify-content: center;
  margin-top: 3rem;
}

.pdt-specs-actions .xp-btn {
  min-width: 150px;
  height: 34px;
  padding: 0 1rem;
  font-size: 0.78rem;
}

/* =========================================
   PRODUCT FULL-WIDTH HERO MEDIA
========================================= */

.pdt-image-hero {
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.pdt-image-hero-picture {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pdt-image-hero .hero-img {
  height: 100%;
  object-fit: cover;
}

.pdt-image-hero .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
  z-index: 3;
}

.pdt-image-hero-content {
  width: 100%;
  max-width: none;
}

.pdt-image-hero-content h1 {
  color: #fff;
  font-weight: 500;
}

.pdt-compact-title-hero-section .pdt-image-hero-content h1 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.pdt-compact-title-hero-section .pdt-image-hero-content .lead {
  font-size: 0.76rem;
  line-height: 1.45;
}

.pdt-image-hero-content .display-4.hero-animate,
.pdt-first-hero-title .display-4.hero-animate {
  font-size: 2rem;
}

.pdt-first-hero-title,
.x9-first-hero-title {
  opacity: 1;
}

.pdt-first-hero-title h1 {
  font-size: 4.4rem;
  line-height: 1.08;
}

@media (min-width: 768px) {
  .pdt-first-hero-title h1,
  .x9-first-hero-title h1 {
    font-size: clamp(3.2rem, 4.15vw, 4.4rem) !important;
    line-height: 1.08 !important;
  }

  .g6-page .pdt-first-hero-title h1 {
    font-size: clamp(3rem, 3.55vw, 3.74rem) !important;
  }

  .pdt-first-hero-title .lead,
  .x9-first-hero-title .lead {
    font-size: clamp(1.18rem, 1.45vw, 1.55rem) !important;
    line-height: 1.35 !important;
  }

  .pdt-first-hero-stat h4,
  .x9-first-hero-stat h4 {
    font-size: clamp(1rem, 1.12vw, 1.2rem) !important;
    line-height: 1.2 !important;
  }

  .pdt-first-hero-stat p,
  .x9-first-hero-stat p {
    font-size: clamp(0.68rem, 0.72vw, 0.78rem) !important;
    line-height: 1.3 !important;
  }

  .pdt-first-hero-actions .xp-btn,
  .x9-first-hero-actions .xp-btn {
    font-size: 0.92rem !important;
    line-height: 1.1 !important;
  }
}

.pdt-first-hero-title .lead {
  font-size: 1.55rem;
  line-height: 1.35;
  margin-top: 0.75rem;
}

.pdt-first-hero-stats-wrap,
.x9-first-hero-stats-wrap {
  z-index: 3;
}

.pdt-first-hero-stats,
.x9-first-hero-stats {
  align-items: flex-start;
}

.pdt-first-hero-stat h4,
.pdt-first-hero-stat p,
.x9-first-hero-stat h4,
.x9-first-hero-stat p {
  margin-bottom: 0;
}

.pdt-first-hero-actions .xp-btn {
  min-width: 150px;
  height: 34px;
  border-color: #fff;
  color: #fff;
  background: transparent !important;
}

.pdt-first-hero-actions .xp-btn:hover {
  color: #fff;
  background: transparent !important;
}

.x9-first-hero-actions .xp-btn {
  min-width: 150px;
  height: 34px;
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.pdt-first-hero.is-ready .pdt-first-hero-heading-row,
.pdt-first-hero.is-ready .pdt-first-hero-title .lead,
.pdt-first-hero.is-ready .pdt-first-hero-actions {
  opacity: 0;
  transform: translateY(28px);
  transition: transform 0.7s ease-out, opacity 0.7s ease-out;
}

.pdt-first-hero.is-visible .pdt-first-hero-heading-row,
.pdt-first-hero.is-visible .pdt-first-hero-title .lead,
.pdt-first-hero.is-visible .pdt-first-hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.pdt-first-hero.is-visible .pdt-first-hero-title .lead {
  transition-delay: 0.12s;
}

.pdt-first-hero.is-visible .pdt-first-hero-actions {
  transition-delay: 0.28s;
}

.pdt-video-hero {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.pdt-video-shell {
  position: relative;
}

.pdt-video-shell .pdt-video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdt-video-play {
  display: none;
}

.pdt-mobile-video-modal {
  display: none;
}

.pdt-contained-video-section {
  background: #fff;
}

.pdt-contained-video-copy {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pdt-contained-video-shell {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  background: transparent;
}

.pdt-contained-video-el {
  display: block;
  width: 100%;
  height: auto;
}

.pdt-feature-stack-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pdt-feature-stack-section + .pdt-feature-stack-section {
  margin-top: 0;
  padding-top: 0.5rem !important;
}

.pdt-feature-stack-section .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 0;
  align-items: flex-start !important;
}

.pdt-feature-stack-section .xp-title {
  margin-bottom: 0.75rem;
}

.pdt-feature-stack-section .xp-news-text {
  margin-bottom: 0.75rem;
}

.pdt-feature-image-col {
  overflow: hidden;
  border-radius: 6px;
  height: clamp(300px, 28vw, 430px);
}

.pdt-feature-stack-section .xp-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center;
  border-radius: inherit;
}

@media (min-width: 768px) {
  .g6-page .pdt-feature-image-col {
    height: auto;
    overflow: visible;
  }

  .g6-page .pdt-feature-stack-section .xp-news-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }
}

/* =========================================
   PRODUCT TABBED MEDIA
========================================= */

.pdt-tabbed-media-section {
  background: #fff;
}

.pdt-tabbed-media-display {
  text-align: center;
}

.pdt-tabbed-media-frame {
  width: 80%;
  max-height: 72vh;
  aspect-ratio: 1484 / 742;
  object-fit: cover;
  background: #000;
}

.pdt-tabbed-media-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.pdt-tabbed-media-tab {
  border: 0;
  border-bottom: 1px solid #d9d9d9;
  background: transparent;
  color: #777;
  padding: 0 0.25rem 0.75rem;
  font-size: 0.78rem;
  line-height: 1.3;
  transition: color 0.2s ease;
  flex: 1 1 0;
  width: 0;
  max-width: none;
  text-align: center;
}

.pdt-tabbed-media-tab.active,
.pdt-tabbed-media-tab.is-active {
  color: #111;
  font-weight: 600;
  border-bottom-color: #96B414;
  border-bottom-width: 2px;
}

.pdt-tabbed-media-copy {
  width: 80%;
  margin: 1.25rem auto 0;
  text-align: center;
  color: #111;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pdt-feature-carousel {
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
}

.pdt-feature-carousel .splide {
  width: 100%;
  height: 100%;
}

.pdt-feature-carousel .splide__track {
  height: 100%;
  padding: 0;
}

.pdt-feature-carousel .splide__list,
.pdt-feature-carousel .splide__slide {
  height: 100%;
  align-items: center;
}

.pdt-feature-carousel .splide__slide {
  opacity: 1;
  transform: none;
  transition: none;
  display: flex;
  justify-content: center;
}

.pdt-feature-carousel .splide__slide.is-active,
.pdt-feature-carousel .splide__slide.is-target {
  opacity: 1;
  transform: none;
}

.pdt-feature-carousel .splide__arrows {
  pointer-events: none;
}

.pdt-feature-carousel .splide__arrow {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 17, 17, 0.7);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdt-feature-carousel .splide__arrow svg {
  display: none;
}

.pdt-feature-carousel .splide__arrow--prev::before {
  content: "‹";
}

.pdt-feature-carousel .splide__arrow--next::before {
  content: "›";
}

.pdt-feature-carousel .text-center {
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.pdt-feature-carousel .xp-img {
  max-height: 70vh;
  object-fit: contain;
}

.pdt-home-product-section,
.pdt-home-values-section {
  background: #fff;
}

.pdt-home-product-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pdt-home-product-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pdt-home-product-tab {
  border: 0;
  background: transparent;
  color: #777;
  min-width: 0;
  padding: 0 0.25rem;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.pdt-home-product-tab.is-active {
  color: #111;
  font-weight: 600;
}

.pdt-home-product-card {
  position: relative;
  overflow: hidden;
  min-height: 64vh;
  background: #fff;
}

.pdt-home-product-image-crop {
  position: relative;
  overflow: hidden;
  height: 54vh;
}

.pdt-home-value-slide {
  position: relative;
  overflow: hidden;
  height: 56vh;
  background: #fff;
  transform: scale(0.92);
  transition: transform 0.22s ease;
}

.pdt-home-value-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.68);
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.pdt-home-values-section .splide__track {
  overflow: hidden;
  padding: 4.5rem 0;
}

.pdt-home-values-section .splide__list {
  align-items: center;
}

.pdt-home-values-section .splide__slide {
  padding: 0 0.75rem;
}

.pdt-home-values-section .splide__slide.is-active .pdt-home-value-slide,
.pdt-home-values-section .splide__slide.is-visible.is-active .pdt-home-value-slide {
  transform: scale(1.2);
}

.pdt-home-values-section .splide__slide.is-active .pdt-home-value-slide::after,
.pdt-home-values-section .splide__slide.is-visible.is-active .pdt-home-value-slide::after {
  opacity: 0;
}

.pdt-home-product-img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 980px);
  height: 100%;
  margin: 2rem auto 0;
  object-fit: contain;
  transform: scale(1.8);
  transform-origin: center center;
}

.pdt-home-product-img--x9 {
  max-height: 100vh;
  transform: scale(1.71);
}

.pdt-home-product-img--g6 {
  transform: scale(1);
}

.pdt-home-product-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  transform: translate(5vw, -8vh) scale(0.5);
  transform-origin: center center;
}

.pdt-home-product-bg--x9 {
  left: -30%;
}

.pdt-home-value-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdt-home-product-copy {
  position: relative;
  z-index: 2;
  width: min(420px, 84%);
  margin: 1.25rem auto 0;
  color: #111;
  text-align: center;
  clear: both;
}

.pdt-home-product-copy > * {
  opacity: 0;
  transform: translateY(18px);
}

.pdt-home-product-section .splide__slide.is-active .pdt-home-product-copy > * {
  animation: pdtHomeProductCopyUp 0.5s ease forwards;
}

.pdt-home-product-section .splide__slide.is-active .pdt-home-product-copy .xp-btn {
  animation-delay: 0.08s;
}

.pdt-home-value-copy {
  position: absolute;
  left: 8%;
  bottom: 10%;
  z-index: 2;
  width: min(420px, 84%);
  color: #fff;
}

.pdt-home-value-copy .xp-title,
.pdt-home-value-copy .xp-news-text {
  color: #fff;
}

.pdt-home-product-copy .xp-title,
.pdt-home-value-copy .xp-title {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.pdt-home-product-copy .xp-btn {
  margin-top: 0.25rem;
  border-color: #111;
  color: #111;
  background: transparent;
}

.pdt-home-product-copy .xp-news-text {
  margin-bottom: 0.25rem;
}

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

@media (max-width: 767px) {
  .pdt-specs-section .pdt-shared-title,
  .pdt-specs-section .x9-shared-title {
    text-align: center !important;
  }

  .pdt-specs-tabs {
    gap: 0.75rem;
    margin: 1rem auto 1.5rem;
  }

  .pdt-specs-tab {
    min-width: 0;
    flex: 1 1 0;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    font-size: 0.74rem;
  }

  .pdt-specs-model-tabs {
    margin-bottom: 1.25rem;
  }

  .pdt-specs-model-tabs .pdt-specs-tab {
    height: 34px;
    font-size: 0.78rem;
  }

  .g6-specs-section .pdt-specs-model-tabs {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .g6-specs-section .pdt-specs-model-tabs .pdt-specs-tab {
    flex: 0 0 auto;
    min-width: 52px;
    height: 28px;
    padding: 0 0.45rem;
    font-size: 0.72rem;
  }

  .pdt-specs-variant-tabs {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .pdt-specs-variant-tabs .pdt-specs-tab {
    flex: 1 1 0;
    font-size: 0.78rem;
  }

  .g6-specs-section .pdt-specs-variant-tabs {
    width: 70vw;
    max-width: 70vw;
    margin-right: auto;
    margin-left: auto;
  }

  .g6-specs-section .pdt-specs-variant-tabs .pdt-specs-tab {
    padding-right: 0;
    padding-left: 0;
  }

  .g6-specs-section .pdt-specs-grid {
    width: 70vw;
    max-width: 70vw;
    margin-right: auto;
    margin-left: auto;
  }

  .pdt-specs-image-wrap {
    min-height: auto;
    margin-bottom: 1.5rem;
  }

  .x9-specs-section .pdt-specs-image-wrap {
    margin-bottom: 0.5rem;
  }

  .pdt-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 1.1rem;
  }

  .pdt-specs-item-title {
    font-size: 0.6rem;
  }

  .pdt-specs-item-value {
    font-size: 0.72rem;
  }

  .x9-specs-section .pdt-specs-item-title,
  .x9-specs-section .pdt-specs-item-value {
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .pdt-video-hero {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .pdt-image-hero {
    height: 100svh;
    min-height: 100svh;
  }

  .pdt-image-hero-content {
    padding: 0 1.25rem;
  }

  .pdt-image-hero .container {
    padding-top: 12vh;
  }

  .pdt-image-hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .pdt-compact-title-hero-section .pdt-image-hero-content h1 {
    font-size: 1.08rem;
  }

  .pdt-compact-title-hero-section .pdt-image-hero-content .lead {
    font-size: 0.62rem;
  }

  .g6-page .pdt-compact-title-hero-section .pdt-image-hero-content h1 {
    font-size: 2rem;
    line-height: 1.22;
    font-weight: 500;
  }

  .g6-page .pdt-compact-title-hero-section .pdt-image-hero-content .lead {
    max-width: 86vw;
    margin: 0.5rem auto 0;
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .g6-page .g6-starship-hero-img {
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    object-fit: scale-down;
    object-position: top center;
    transform: translateX(-50%);
  }

  .g6-page .pdt-image-hero:has(.g6-starship-hero-content) {
    height: auto;
    min-height: 0;
    aspect-ratio: 390 / 520;
  }

  .g6-page .pdt-image-hero .container:has(.g6-starship-hero-content) {
    padding-top: 4vh;
  }

  .g6-page .g6-storage-hero-img,
  .g6-page .g6-range-hero-img {
    object-fit: contain;
    transform: scale(0.85);
    background: #000;
  }

  .g6-page .pdt-feature-stack-section .xp-title,
  .g6-page .pdt-contained-video-section .xp-title,
  .g6-page .pdt-feature-carousel .text-center .xp-title {
    font-size: 2rem;
    line-height: 1.24;
  }

  .g6-page .pdt-feature-stack-section .xp-news-text,
  .g6-page .pdt-contained-video-copy,
  .g6-page .pdt-feature-carousel .text-center .xp-news-text {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .pdt-first-hero-title {
    left: 7% !important;
    top: 10% !important;
    width: 86% !important;
    padding: 0 1rem;
  }

  .pdt-first-hero-title h1 {
    font-size: 2rem;
  }

  .pdt-first-hero-title .lead {
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }

  .pdt-first-hero-stats-wrap {
    bottom: 4% !important;
    padding: 0 1rem;
  }

  .pdt-first-hero-stats {
    --bs-gutter-y: 0.65rem;
  }

  .pdt-first-hero-stat {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .pdt-first-hero-actions {
    gap: 0.5rem !important;
    margin-top: 0.75rem !important;
  }

  .x9-first-hero-actions {
    gap: 0.5rem !important;
    margin-top: 0.75rem !important;
  }

  .pdt-first-hero-actions .xp-btn,
  .x9-first-hero-actions .xp-btn {
    min-width: 132px;
    height: 32px;
    font-size: 0.72rem;
  }

  .pdt-contained-video-shell {
    margin-top: 1.25rem;
  }

  .pdt-mobile-video-modal.is-open {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.92);
  }

  .pdt-mobile-video-modal-dialog {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pdt-mobile-video-modal-player {
    width: 100%;
    max-height: calc(100vh - 5rem);
    object-fit: contain;
    background: #000;
  }

  .pdt-mobile-video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pdt-video-shell,
  .pdt-contained-video-shell {
    overflow: hidden;
  }

  .pdt-video-shell.is-overlay-visible .pdt-video-play,
  .pdt-contained-video-shell.is-overlay-visible .pdt-video-play {
    display: flex;
  }

  .pdt-video-play {
    position: absolute;
    inset: 0;
    z-index: 4;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.18);
    align-items: center;
    justify-content: center;
  }

  .pdt-video-play::before {
    content: "";
    width: 64px;
    height: 64px;
    background: #fff;
    -webkit-mask: url('/wp-content/themes/dashcore/assets/img/xpeng_play_icon.svg') center / contain no-repeat;
    mask: url('/wp-content/themes/dashcore/assets/img/xpeng_play_icon.svg') center / contain no-repeat;
  }

  .pdt-feature-stack-section {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .pdt-feature-stack-section + .pdt-feature-stack-section {
    padding-top: 0.5rem !important;
  }

  .pdt-feature-stack-section .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0.75rem;
  }

  .pdt-feature-image-col {
    height: auto;
  }

  .pdt-feature-stack-section .xp-news-img {
    height: auto;
    object-fit: initial;
  }

  .pdt-tabbed-media-frame,
  .pdt-tabbed-media-tabs,
  .pdt-tabbed-media-copy {
    width: 100%;
  }

  .pdt-tabbed-media-tab {
    flex: 1 1 50%;
    width: auto;
    font-size: 0.72rem;
  }

  .pdt-tabbed-media-copy {
    font-size: 0.82rem;
  }

  .pdt-feature-carousel {
    min-height: auto;
    max-height: none;
    display: block;
  }

  .pdt-feature-carousel .splide,
  .pdt-feature-carousel .splide__track,
  .pdt-feature-carousel .splide__list,
  .pdt-feature-carousel .splide__slide {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }

  .pdt-feature-carousel .splide__track {
    padding: 0;
  }

  .pdt-feature-carousel .splide__list,
  .pdt-feature-carousel .splide__slide {
    align-items: flex-start !important;
  }

  .pdt-feature-carousel .text-center {
    width: 100%;
    min-height: auto;
    max-height: none;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pdt-feature-carousel .text-center .xp-img {
    order: 1;
    width: 100%;
    max-height: none;
    margin-top: 0 !important;
    margin-bottom: 1rem;
  }

  .pdt-feature-carousel .text-center .xp-title {
    order: 2;
    margin-bottom: 0.5rem;
  }

  .pdt-feature-carousel .text-center .xp-news-text {
    order: 3;
  }

  #g6DesignMobileSplide {
    padding-bottom: 2.5rem;
  }

  #g6DesignMobileSplide .splide__pagination {
    right: 0;
    bottom: 0.5rem;
    left: 0;
    justify-content: center;
  }

  #g6DesignMobileSplide .splide__pagination__page {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background-color: rgba(17, 17, 17, 0.24);
  }

  #g6DesignMobileSplide .splide__pagination__page.is-active {
    background-color: #96B414;
    transform: none;
  }

  .pdt-home-product-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .pdt-home-product-tabs {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .pdt-home-product-tab {
    font-size: 0.82rem;
  }

  .pdt-home-product-card {
    min-height: 58vh;
  }

  .pdt-home-product-image-crop {
    height: 40vh;
  }

  .pdt-home-value-slide {
    height: 56vh;
    transform: scale(0.94);
  }

  .pdt-home-product-img {
    margin-top: 1rem;
  }

  .pdt-home-product-img--x9 {
    transform: scale(1.2);
  }

  .pdt-home-product-bg {
    transform: translate(5vw, -8vh) scale(0.5);
  }

  .pdt-home-value-img {
    height: 100%;
  }

  .pdt-home-value-copy {
    left: 1.25rem;
    bottom: 1.5rem;
    width: calc(100% - 2.5rem);
  }

  .pdt-home-product-copy .xp-title,
  .pdt-home-value-copy .xp-title {
    font-size: 1.35rem;
  }

}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  color: #111;
}

/* =========================================
   MOBILE
========================================= */

.mobile-submenu {
  display: none;
  padding-left: 15px;
}

.mobile-menu-toggle {
  font-weight: 600;
  cursor: pointer;
}
