.sb_product_by_collection.sb_pdp_collection {
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.sb_product_by_collection .scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.sb_product_by_collection .products-scroll-container {
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  width: 100%;
}
.sb_product_by_collection .product-items {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}
.sb_product_by_collection .product-item {
  flex: 0 0 auto;
  width: 338px;
  scroll-snap-align: start;
  background: #fff;
  padding: 5px;
  border-radius: 4px;
  box-sizing: border-box;
}
.sb_product_by_collection .product-item .product-image-wrapper {
  position: relative;
}
.sb_product_by_collection .product-item .product-image-wrapper img.products-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.sb_product_by_collection .product-item .product-image-wrapper:hover img.products-image-hover {
  opacity: 1;
}
.sb_product_by_collection .product-item .product-item-info img.product-image-photo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.sb_product_by_collection .product-item .product-item-name a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.sb_product_by_collection .scroll-arrow {
  background-color: #fff;
  color: #333;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 60px;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sb_product_by_collection .scroll-arrow:hover {
  background-color: #26584f;
  color: #fff;
}
.sb_product_by_collection .scroll-arrow.left-arrow {
  left: -15px;
}
.sb_product_by_collection .scroll-arrow.left-arrow::after {
  content: "\f060";
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
}
.sb_product_by_collection .scroll-arrow.right-arrow {
  right: -15px;
}
.sb_product_by_collection .scroll-arrow.right-arrow::after {
  content: "\f061";
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
}
.sb_product_by_collection:hover .scroll-arrow {
  opacity: 1;
}
@media (max-width: 1024px) {
  .sb_product_by_collection .left-arrow,
  .sb_product_by_collection .right-arrow {
    display: none;
  }
  .sb_product_by_collection .products-scroll-container {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: grey transparent;
  }
  .sb_product_by_collection .product-item {
    flex: 0 0 calc(26%);
  }
}
@media (max-width: 768px) {
  .sb_product_by_collection .product-items {
    gap: 10px;
  }
  .sb_product_by_collection .product-item {
    flex: 0 0 calc(57%) !important;
  }
}
