.elementor-644 .elementor-element.elementor-element-3a09bb21{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:stretch;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--border-radius:25px 25px 25px 25px;box-shadow:0px 10px 25px 0px rgba(0, 0, 0, 0.1);--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--z-index:999;}.elementor-644 .elementor-element.elementor-element-3a09bb21:not(.elementor-motion-effects-element-type-background), .elementor-644 .elementor-element.elementor-element-3a09bb21 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-644 .elementor-element.elementor-element-c4c4930{margin:0px 23px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:31px 38px 31px 30px;}@media(min-width:768px){.elementor-644 .elementor-element.elementor-element-3a09bb21{--width:88%;}}/* Start custom CSS for shortcode, class: .elementor-element-c4c4930 *//* ===== CORE BRAND LIST STYLING ===== */
.brands-list {
    /* Reset & Base */
    list-style: none;
    margin: 0;
    padding: 0;
    
    /* Grid System Fixé - Version Corrigée */
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    
    /* Performance Optimization */
    will-change: transform;
}

/* ===== BRAND ITEM MASTERPIECE ===== */
.brands-list li {
    /* Flexbox Perfection */
    display: flex;
    align-items: center;
    gap: 15px;
    
    /* Visual Excellence */
    padding: 18px 22px;
    background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
    border-radius: 12px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.03),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    
    /* Transform Magic */
    transform: perspective(500px) translateZ(0);
    transition: 
        transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.35s ease-out,
        background 0.4s ease;
    
    /* 3D Depth Effect */
    position: relative;
    overflow: hidden;
}

/* Subtle Glow Effect */
.brands-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient( #7AAD39 );
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ===== BRAND LOGO PERFECTION ===== */
.brands-list img {
    /* Dimensions */
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    
    /* Visual Polish */
    border-radius: 10px !important;
    object-fit: contain;
    filter: grayscale(20%) contrast(1.1);
    transition: 
        filter 0.4s ease,
        transform 0.3s ease;
    
    /* Subtle Texture */
    background: rgba(255, 255, 255, 0.7);
    padding: 5px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* ===== BRAND NAME TYPOGRAPHY ===== */
.brands-list a {
    /* Typographic Excellence */
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a2b49;
    letter-spacing: 0.02em;
    text-decoration: none;
    
    /* Smooth Transition */
    transition: 
        color 0.25s ease,
        transform 0.25s ease;
    
    /* Text Shadow for Depth */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* ===== INTERACTION MASTERPIECE ===== */
.brands-list li:hover {
    /* Elevation Effect */
    transform: perspective(500px) translateZ(20px) translateY(-6px);
    
    /* Shadow Enhancement */
    box-shadow:;
        0 12px 24px rgba(0, 98, 204, 0.12),
        0 6px 12px rgba(0, 98, 204, 0.08);
    
    /* Background Glow */
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
    
    /* Border Accent */
    border-color: rgba(0, 119, 204, 0.15);
}

.brands-list li:hover::before {
    opacity: 1;
}

.brands-list li:hover img {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1.05);
}

.brands-list li:hover a {
    color: #0066cc;
    transform: translateX(2px);
}

/* ===== RESPONSIVE CORRIGÉ ===== */
@media (max-width: 1400px) {
    .brands-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .brands-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .brands-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .brands-list li {
        padding: 16px 20px;
    }
    
    .brands-list img {
        width: 44px !important;
        height: 44px !important;
    }
}

@media (max-width: 768px) {
    .brands-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brands-list li {
        padding: 14px 18px;
        border-radius: 10px;
    }
    
    .brands-list a {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .brands-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .brands-list li {
        padding: 15px 20px;
    }
    
    .brands-list img {
        width: 40px !important;
        height: 40px !important;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .brands-list li,
    .brands-list img,
    .brands-list a {
        transition: none !important;
        transform: none !important;
    }
}/* End custom CSS */