/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 113:0 Unexpected "<"

**/
<style>
  .custom-infinite-slider-wrapper {
    width: 100%;
    padding: 20px 0;
  }

  /* Title */
  .custom-slider-heading {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
  }
  .text-left { text-align: left; }
  .text-center { text-align: center; }
  .text-right { text-align: right; }

  /* Slider core */
  .custom-infinite-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .custom-infinite-slider .slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    animation: marquee var(--scroll-speed, 30s) linear infinite !important;
    animation-direction: var(--scroll-direction, normal) !important;
    will-change: transform !important;
  }

  .custom-infinite-slider .slider-item {
    flex: 0 0 auto;
    text-align: center;
    padding: 10px;
  }

  .custom-infinite-slider .slider-img img {
    max-width: 80px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
  }

  .custom-infinite-slider .slider-title {
    font-size: 13px;
    margin-top: 6px;
    line-height: 1.2;
    white-space: normal;
  }

  /* ✅ Infinite loop animation */
  @keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ✅ Desktop: show 8 when scrolling */
@media (min-width: 1025px) {
  .custom-infinite-slider .slider-item {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
  .custom-infinite-slider .slider-img img {
    max-width: 120px; /* bigger desktop image */
  }
  .custom-infinite-slider .slider-title {
    font-size: 15px; /* slightly larger text */
  }
}


  /* ✅ Tablet: show 4 when scrolling */
  @media (min-width: 769px) and (max-width: 1024px) {
    .custom-infinite-slider .slider-item {
      flex: 0 0 calc(100% / 4);
      max-width: calc(100% / 4);
    }
  }

  /* ✅ Mobile: show 6 when scrolling */
  @media (max-width: 768px) {
    .custom-infinite-slider .slider-item {
      flex: 0 0 calc(100% / 6);
      max-width: calc(100% / 6);
    }
    .custom-infinite-slider .slider-img img {
      max-width: 55px;
    }
    .custom-infinite-slider .slider-title {
      font-size: 11px;
    }
  }

  /* ✅ Disabled infinite scroll: show exactly 6 items, no animation */
  .custom-infinite-slider.infinite-disabled .slider-track {
    justify-content: center !important;
    flex-wrap: wrap !important;
    animation: none !important;
    transform: none !important;
  }

  .custom-infinite-slider.infinite-disabled .slider-item {
    flex: 0 0 calc(100% / 6) !important;
    max-width: calc(100% / 6) !important;
  }
</style>
