/**
 * ======= sanxio store-front home hero start ===========
 */
body.sx-store-advanced--home .sca-hero {
  position: relative;
  margin-bottom: 0;
  border-radius: var(--md3-shape-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--md3-color-outline-variant);
  background: var(--md3-color-surface-container);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--md3-color-on-surface) 6%, transparent);
}
body.sx-store-advanced--home .sca-hero__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
body.sx-store-advanced--home .sca-hero__track::-webkit-scrollbar {
  display: none;
}
body.sx-store-advanced--home .sca-hero__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 21 / 9;
  max-height: min(56vw, 360px);
  min-height: 160px;
  background: var(--md3-color-surface-container-high);
}
@media (min-width: 768px) {
  body.sx-store-advanced--home .sca-hero__slide {
    aspect-ratio: 2.35 / 1;
    max-height: 300px;
    min-height: 200px;
  }
}
@media (max-width: 767px) {
  body.sx-store-advanced--home .sca-hero__slide {
    aspect-ratio: 16 / 9;
  }
}
body.sx-store-advanced--home .sca-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.sx-store-advanced--home .sca-hero__slide a {
  display: block;
  height: 100%;
}
body.sx-store-advanced--home .sca-hero__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 10px;
}
body.sx-store-advanced--home .sca-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--md3-color-outline-variant);
  cursor: pointer;
}
body.sx-store-advanced--home .sca-hero__dot.is-active {
  background: var(--md3-color-primary);
  width: 18px;
  border-radius: 999px;
}
/**
 * ======= sanxio store-front home hero end ===========
 */
