/* Brands Carousel Styles */
.caffia-brands-carousel-wrapper {
    width: 100%;
    padding: 30px 0;
    position: relative;
    overflow: hidden; /* This prevents general overflow */
}

.caffia-brands-carousel {
    width: 100%;
    clip-path: inset(-100vw -100vw -100vw -17px);

}

.caffia-brands-carousel .swiper-container {
    width: 100%;
    overflow: visible; /* Allow slides to be visible */
}

.caffia-brands-carousel .swiper-wrapper {
    display: flex;
    align-items: center;
}

.caffia-brands-carousel .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 500px ) {
    .caffia-brands-carousel .swiper-slide {
        max-width: 50px;
    }
    
}


.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.3s ease;
    padding: 10px;
}

.brand-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.brand-logo img {
    max-width: 120px;
    height: auto;
    transition: opacity 0.3s ease, filter 0.3s ease;
    object-fit: contain;
    max-height: 70px;
}

/* Grayscale effect */
.grayscale-effect .brand-logo img {
    filter: grayscale(100%);
}

.grayscale-effect .brand-logo:hover img {
    filter: grayscale(0%);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .caffia-brands-carousel-wrapper {
        padding: 20px 0;
    }
}
