.bic-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.bic-carousel {
    display: flex;
    width: max-content; /* Extends naturally */
    gap: 20px; /* Space between images */
    transform: translateX(0);
    will-change: transform;
}

.bic-carousel-item {
    flex: 0 0 auto;
    padding: 10px;
}

.bic-carousel-item img {
    max-height: 80px;
    width: auto;
    display: block;
}



@keyframes bic-scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}