.brand-carousel-container {
    position: relative;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.brand-carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
}

.brand-carousel-item {
    flex: 0 0 auto;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-carousel-item img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.brand-carousel-item img:hover {
    transform: scale(1.1);
    opacity: 0.9;
    position: relative;
    z-index: 10;
}

.brand-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.brand-carousel-arrow.prev {
    left: 0;
}

.brand-carousel-arrow.next {
    right: 0;
}
