.elementor-722 .elementor-element.elementor-element-eee4996{--display:flex;}.elementor-722 .elementor-element.elementor-element-74c78cf{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:20px 20px 20px 20px;}/* Start custom CSS for shortcode, class: .elementor-element-74c78cf */.brands-list {
    /* Reset */
    list-style: none !important;
    margin: 0 !important;
    padding: 10px !important;

    /* Grille */
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 45px !important;
}

/* === 2. ÉLÉMENTS DE MARQUE === */
.brands-list li {
    /* Flexbox pour l'alignement */
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    /* Style visuel */
    padding: 12px 15px !important;
    background-color: #f8f9fa !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;

    /* Animation */
    transition: transform 0.25s ease, background-color 0.3s ease !important;
}

.brands-list img {
    /* Dimensions */
    width: 40px !important;
    height: auto !important;

    /* Style */
    border-radius: 6px !important;
    object-fit: contain !important;
}

.brands-list a {
    /* Typographie */
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #2c3e50 !important;

    /* Décoration */
    text-decoration: none !important;

    /* Animation */
    transition: color 0.2s ease !important;
}

/* === 3. ÉLÉMENTS INTERACTIFS === */
.brands-list li:hover {
    background-color: #e9f2ff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.1) !important;
}

.brands-list li:hover a {
    color: #0066cc !important;
}

/* === 4. RESPONSIVE === */
@media (max-width: 1024px) {
    .brands-list {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .brands-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .brands-list li {
        padding: 10px 12px !important;
    }
}

@media (max-width: 480px) {
    .brands-list {
        grid-template-columns: 1fr !important;
    }

    .brands-list img {
        width: 35px !important;
    }
}/* End custom CSS */