/* Carousel Swipe & Auto Slide - tambahan style */
.brand-carousel-wrapper {
    margin: 30px 0;
    overflow: hidden;
}
.brand-carousel-title {
    text-align: center;
    margin-bottom: 20px;
}
.brand-carousel-title h3 {
    font-size: 18px;
    color: #333;
}
.brand-carousel-title h3 i {
    color: #e67e22;
    margin-right: 8px;
}
.brand-carousel-title p {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}
.brand-carousel-container {
    overflow: hidden;
    width: 100%;
}
.brand-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.brand-carousel-slide {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    padding: 10px;
    justify-content: center;
}
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    cursor: pointer;
    background: transparent;
}
.brand-logo img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
}
.brand-logo span {
    font-size: 12px;
    color: #333;
    text-align: center;
}
@media (max-width: 480px) {
    .brand-logo { min-width: 70px; }
    .brand-logo img { width: 60px; height: 45px; }
    .brand-logo span { font-size: 10px; }
}