.elementor-598 .elementor-element.elementor-element-3bdcf9f{--display:flex;}.elementor-598 .elementor-element.elementor-element-18a0471{--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;--margin-top:100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-dad8a43 *//* --- 1. CONFIGURATION GÉNÉRALE & FONTE --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Force le fond de page */
body, .elementor-widget-shortcode {
    background-color: #F3F2ED !important;
}

/* Force la police Inter partout */
.woocommerce, .woocommerce h2, .woocommerce h3, .woocommerce nav, .woocommerce a, .woocommerce p {
    font-family: 'Inter', sans-serif !important;
}

/* --- 2. STRUCTURE PRINCIPALE (LAYOUT) --- */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    align-items: flex-start;
}

/* --- 3. MENU LATÉRAL (NAVIGATION) --- */
.woocommerce-MyAccount-navigation {
    width: 280px; /* Largeur fixe */
    background: #FFFFFF;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.02);
}

/* Titre du menu (Ajout visuel "Mon Espace") */
.woocommerce-MyAccount-navigation::before {
    content: "MON ESPACE";
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #9CA3AF;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-left: 15px;
}

/* Liste des liens */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 8px;
    border: none !important;
}

/* Style des liens */
.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Effet Survol */
.woocommerce-MyAccount-navigation li a:hover {
    background-color: #F9F9F9;
    color: #000;
    transform: translateX(5px);
}

/* Lien Actif (La page où on est) */
.woocommerce-MyAccount-navigation li.is-active a {
    background-color: #000000;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Lien Déconnexion (Rouge discret) */
.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #EF4444;
    margin-top: 20px;
    border-top: 1px solid #F3F2ED;
    border-radius: 0;
    padding-top: 20px;
}
.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background-color: transparent;
    color: #DC2626;
}

/* --- 4. CONTENU PRINCIPAL (DROITE) --- */
.woocommerce-MyAccount-content {
    flex-grow: 1;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    min-height: 400px;
}

/* Message de bienvenue */
.woocommerce-MyAccount-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 20px;
}

/* Mise en gras du nom */
.woocommerce-MyAccount-content strong {
    color: #000;
    font-weight: 700;
}

/* Liens dans le texte */
.woocommerce-MyAccount-content a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #E5E5E5;
    text-underline-offset: 4px;
    transition: 0.2s;
}
.woocommerce-MyAccount-content a:hover {
    text-decoration-color: #000;
}

/* --- 5. STYLE DES TABLEAUX (Commandes, Adresses) --- */
/* Pour quand le client cliquera sur "Commandes" */
.woocommerce-MyAccount-content table.shop_table {
    border: none !important;
    border-radius: 20px;
    overflow: hidden;
    background: #F9F9F9;
}
.woocommerce-MyAccount-content th {
    background: #F3F3F3;
    padding: 15px 20px;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    border: none !important;
}
.woocommerce-MyAccount-content td {
    padding: 20px;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #FFF !important;
}
.woocommerce-MyAccount-content .button {
    background: #000 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    font-size: 12px !important;
    font-weight: 600;
}

/* --- 6. MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }
    
    .woocommerce-MyAccount-navigation {
        width: 100%;
        padding: 20px;
        overflow-x: auto; /* Permet de scroller si besoin */
    }
    
    /* Menu horizontal sur mobile style "App" */
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .woocommerce-MyAccount-navigation li {
        margin-bottom: 0;
        flex-grow: 1;
    }
    
    .woocommerce-MyAccount-navigation li a {
        text-align: center;
        padding: 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .woocommerce-MyAccount-content {
        padding: 30px 20px;
        width: 100%;
    }
    
    .woocommerce-MyAccount-navigation-link--customer-logout a {
        border-top: none;
        margin-top: 0;
        padding-top: 12px;
    }
}/* End custom CSS */