.elementor-2183 .elementor-element.elementor-element-0d1f701{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-d07ddb0 *//* --- VARIABLES & BASE --- */
:root {
    --bg-footer: #0F172A;      /* Bleu Nuit */
    --text-footer: #94A3B8;    /* Gris Doux */
    --white: #FFFFFF;
    --teal: #009BA6;           /* Couleur Vestige */
    --border-footer: rgba(255,255,255,0.1);
}

.site-footer-minimal {
    background-color: var(--bg-footer);
    color: var(--text-footer);
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 60px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- STRUCTURE GRID --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-footer); 
}

/* --- LOGO & IDENTITÉ (TAILLE AJUSTÉE) --- */
.footer-logo-box {
    background-color: var(--white);
    padding: 6px 10px; 
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
}

.logo-img { 
    height: 30px;
    max-width: 150px;  /* 🔥 limite la largeur du logo */
    width: auto; 
    display: block; 
}

/* Texte */
.brand-desc { max-width: 300px; margin-bottom: 15px; }

/* --- TITRES & TYPOGRAPHIE --- */
h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 25px;
}

/* --- MENUS & LIENS --- */
.footer-menu { list-style: none; padding: 0; }
.footer-menu li { margin-bottom: 10px; }

.footer-menu a {
    color: var(--text-footer);
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu a:hover,
.contact-item a:hover {
    color: var(--teal);
    padding-left: 3px;
}

.contact-item a { color: var(--white); text-decoration: none; }
.contact-item { margin-bottom: 10px; }

/* --- LIENS SOCIAUX --- */
.social-icons a {
    color: var(--white);
    text-decoration: none;
    margin-right: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}
.social-icons a:hover { color: var(--teal); }

/* --- PAIEMENT --- */
.payment-title { display: block; font-size: 0.8rem; margin-bottom: 10px; color: var(--white); }

.payment-img-footer {
    width: 100%;
    max-width: 250px;
    height: auto;
    filter: brightness(0.9) saturate(1.1);
    display: block;
}

/* --- BARRE BASSE (COPYRIGHT & CRÉDIT) --- */
.footer-bottom-bar {
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid var(--border-footer);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.designer-credit a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-menu { text-align: center; }
    .payment-img-footer { margin: 0 auto; }
    .bottom-flex { flex-direction: column; gap: 10px; }

    /* 🔥 LOGO encore plus contrôlé en petit écran */
    .logo-img {
        height: 26px;       /* légèrement réduit */
        max-width: 120px;   /* limite encore stricte */
    }

    .footer-logo-box {
        padding: 5px 8px;   /* conteneur compact */
    }
}/* End custom CSS */