.vv-brand-slider-container {
    width: 100%;
    position: relative;
    padding: 0px;
}

.vv-brand-header {
    margin-bottom: 25px;
}

.vv-brand-title {
    color: #a1041b;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vv-brand-slider {
    position: relative;
    padding: 0 60px;
    max-width: 1100px;
    margin: 70px auto 0;
}

.vv-brand-viewport {
    overflow: hidden;
}

.vv-brand-track {
    display: flex;
    transition: transform .5s cubic-bezier(0.25, 1, 0.5, 1);
    align-items: stretch;
}

.vv-brand-card {
    flex: 0 0 calc(100% / 6);
    padding: 0 10px;
    box-sizing: border-box;
}

.vv-brand-card a {
    background: #100E34;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.vv-brand-card a:hover {
    background: #a1041b;
}

.vv-brand-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    margin-bottom: 15px;
    width: 100%;
}

.vv-brand-card img {
    filter: brightness(0) invert(1);
    margin: 0 !important;
    max-height: 45px;
    max-width: 85px !important;
    object-fit: contain;
}

.vv-brand-placeholder {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.8;
}

body .vv-brand-card h3 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: normal !important;
}

.vv-brand-card span {
    color: #a5a6b2;
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
    display: block;
    transition: color 0.25s ease;
}

.vv-brand-card a:hover span {
    color: #ffb8c2;
}

/* Arrows Design */
.vv-brand-arrow {
       position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    background: #100E34;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
    outline: none;
}

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

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

.vv-brand-arrow:hover {
    background: #a1041b;
}

.vv-brand-arrow svg {
    width: 10px;
}

/* Dots Indicator */
.vv-brand-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.vv-brand-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd3dc;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.vv-brand-dots span.active {
    background: #a1041b;
    transform: scale(1.2);
}

/* Responsive Breakpoints */
@media(max-width: 1100px) {
    .vv-brand-card {
        flex: 0 0 calc(100% / 4);
    }
}

@media(max-width: 768px) {
    .vv-brand-card {
        flex: 0 0 calc(100% / 2);
    }

    .vv-brand-slider {
        padding: 0 45px;
    }
}

@media(max-width: 480px) {
    .vv-brand-card {
        flex: 0 0 100%;
    }
}