.sps-scrolling-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Reduced vertical padding from 20px to 10px for more compact design */
  padding: 10px 0;
  box-sizing: border-box;
  /* Updated desktop min-height to 115px to match user's working console changes */
  min-height: 115px;
}

.sps-scrolling-content {
  display: flex;
  align-items: flex-start;
  animation: scroll-left linear infinite;
  width: fit-content;
  /* Added will-change for better performance */
  will-change: transform;
}

.sps-product-item {
  flex-shrink: 0;
  /* Reduced horizontal margin from 20px to 12px for tighter spacing between products */
  margin: 0 12px;
  text-align: center;
  transition: transform 0.3s ease;
  /* Removed fixed width to allow dynamic sizing based on text length */
  min-width: 80px;
  max-width: 150px;
  width: auto;
}

.sps-product-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  /* Reduced bottom margin from 10px to 6px for tighter spacing between image and text */
  margin: 0 auto 6px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sps-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sps-product-name {
  color: black;
  font-size: 12px;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.4;
  /* Reduced top margin from 8px to 4px for tighter text spacing */
  margin-top: 4px;
  height: auto;
  /* Reduced bottom padding from 10px to 5px for more compact design */
  padding: 0 5px 5px 5px;
  white-space: normal;
  display: block;
}

/* Updated keyframes for smoother infinite scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .sps-scrolling-container {
    /* Updated mobile min-height from 130px to 115px to match desktop */
    min-height: 115px;
  }

  .sps-product-item {
    /* Reduced horizontal margin from 15px to 10px for mobile */
    margin: 0 10px;
    min-width: 60px;
    max-width: 120px;
    width: auto;
  }

  .sps-product-image {
    width: 60px;
    height: 60px;
  }

  .sps-product-name {
    font-size: 11px;
    height: auto;
    /* Reduced bottom padding from 8px to 4px for mobile */
    padding: 0 3px 4px 3px;
  }
}

@media (max-width: 480px) {
  .sps-scrolling-container {
    /* Reduced min-height from 160px to 115px for small mobile */
    min-height: 115px;
    contain-intrinsic-block-size: auto 100px;
  }

  .sps-product-item {
    /* Reduced horizontal margin from 10px to 8px for small mobile */
    margin: 0 8px;
    min-width: 50px;
    max-width: 100px;
    width: auto;
  }

  .sps-product-image {
    width: 50px;
    height: 50px;
  }

  .sps-product-name {
    font-size: 10px;
    height: auto;
    /* Reduced bottom padding from 6px to 3px for small mobile */
    padding: 0 2px 3px 2px;
  }
}
