.product-info__siblings-carousel::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.product-info__siblings-carousel::-webkit-scrollbar-track {
    background: #f0f0f0;
}
  
.product-info__siblings-carousel::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}
.product-info__siblings-carousel::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
.product-info__siblings { display: flex; }
.product-info__siblings-inner {
    display: block !important;
    width: 40px;
    height: 40px;
    border: 1px solid #b1b1b1;
    border-radius: 50%;
    background-clip: content-box;
    background-color: white;
    position: relative;
    box-sizing: border-box;
    margin-right: 5px;
    padding: 3px;
}
.product-info__siblings-carousel {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 3px;
}
.product-info__siblings-chosen {
    border: 2px solid black !important;
}
.product-info__siblings-inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.sibling_image::before { background: var(--sibling-bg-url) no-repeat center / 40px; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }