#onlineshop .selou-product-marquee-widget {
  overflow: hidden;
}

#onlineshop .selou-product-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}

#onlineshop .selou-product-marquee::before,
#onlineshop .selou-product-marquee::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 46px;
  pointer-events: none;
}

#onlineshop .selou-product-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 53, 96, 0.72), rgba(8, 53, 96, 0));
}

#onlineshop .selou-product-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 53, 96, 0.72), rgba(8, 53, 96, 0));
}

#onlineshop .selou-product-marquee-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: selouProductMarquee var(--selou-product-marquee-duration, 120s) linear infinite;
  will-change: transform;
}

#onlineshop .selou-product-marquee:hover .selou-product-marquee-track,
#onlineshop .selou-product-marquee:focus-within .selou-product-marquee-track {
  animation-play-state: paused;
}

#onlineshop .selou-home-product-set {
  display: flex !important;
  flex: 0 0 auto;
  align-items: stretch;
  gap: 16px;
  width: max-content !important;
  margin: 0 !important;
  padding: 0 16px 0 0 !important;
  list-style: none !important;
}

#onlineshop .selou-product-marquee .selou-home-product-card {
  flex: 0 0 286px !important;
  width: 286px !important;
  min-width: 286px !important;
  height: auto;
  margin: 0 !important;
}

#onlineshop .selou-product-marquee .selou-home-product-image {
  aspect-ratio: 4 / 3;
}

@keyframes selouProductMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 820px) {
  #onlineshop .selou-product-marquee::before,
  #onlineshop .selou-product-marquee::after {
    width: 24px;
  }

  #onlineshop .selou-home-product-set {
    gap: 14px;
    padding-right: 14px !important;
  }

  #onlineshop .selou-product-marquee .selou-home-product-card {
    flex-basis: min(78vw, 300px) !important;
    width: min(78vw, 300px) !important;
    min-width: min(78vw, 300px) !important;
  }

  #onlineshop .selou-product-marquee .selou-home-product-card:hover {
    transform: none !important;
  }
}

@media (max-width: 420px) {
  #onlineshop .selou-product-marquee .selou-home-product-card {
    flex-basis: min(82vw, 286px) !important;
    width: min(82vw, 286px) !important;
    min-width: min(82vw, 286px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #onlineshop .selou-product-marquee {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  #onlineshop .selou-product-marquee-track {
    animation: none !important;
    transform: none !important;
  }

  #onlineshop .selou-home-product-set[aria-hidden="true"] {
    display: none !important;
  }
}
