.elementor-3733 .elementor-element.elementor-element-10db3d2{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-3c4bdba *//* ==========================================================================
   INTRODUCTION ARTICLE / BLOG - LIGHT BENTO 2026
   ========================================================================== */

:root {
    --wine: #9A2A5B;
    --amethyst: #8E44AD;
    --bg-main: #FBF8FF;           
    --text-dark: #2D1E40;         
    --text-muted: #564D65;        
}

.ux-article-intro-section {
    position: relative;
    background-color: var(--bg-main);
    padding: 100px 20px 60px; /* Padding ajusté pour un début de page */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

/* --- Halos d'ambiance --- */
.article-glow-left,
.article-glow-right {
    position: absolute;
    pointer-events: none;
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
    z-index: 0;
}

.article-glow-left {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.08), transparent 70%); /* Améthyste */
    top: -10%; left: -20%;
}

.article-glow-right {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(154, 42, 91, 0.05), transparent 70%); /* Wine */
    top: 20%; right: -15%;
}

.ux-article-container {
    position: relative;
    z-index: 1;
    max-width: 850px; /* Un peu plus étroit pour un confort de lecture optimal (typique des blogs premium) */
    margin: 0 auto;
}

/* --- En-tête (H1) --- */
.text-center { text-align: center; }

.ux-overline-glass {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amethyst);
    margin-bottom: 25px;
    background: rgba(243, 235, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.05);
}

.ux-article-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 50px 0;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

/* --- La Boîte de Définition (Ex-Bandeau Bleu) --- */
.ux-definition-glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(45, 30, 64, 0.03), inset 0 1px 0 rgba(255, 255, 255, 1);
    /* Ligne latérale subtile remplaçant l'ancienne bordure bleue massive */
    border-left: 4px solid var(--amethyst);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ux-definition-glass-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 25px 50px rgba(142, 68, 173, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.card-icon-glass {
    flex-shrink: 0;
    width: 60px; height: 60px;
    border-radius: 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 15px rgba(142, 68, 173, 0.05);
}

.orb-amethyst {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.08) 0%, rgba(255, 255, 255, 0.5) 100%);
    color: var(--amethyst);
}

.definition-content {
    display: flex;
    flex-direction: column;
}

.definition-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--amethyst);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.ux-definition-text {
    font-size: 1.15rem;
    color: var(--text-dark); /* Plus foncé que le texte normal pour marquer l'importance */
    line-height: 1.7;
    margin: 0;
}

/* --- Corps du texte --- */
.ux-article-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ux-article-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* --- Style des Liens Hypertextes (Élégant et animé) --- */
.ux-text-link {
    color: var(--wine);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(154, 42, 91, 0.2); /* Soulignement discret */
    transition: all 0.3s ease;
    padding-bottom: 1px;
}

.ux-text-link:hover {
    color: var(--amethyst);
    border-bottom-color: var(--amethyst);
    background: rgba(142, 68, 173, 0.05); /* Léger fond au survol */
}

/* --- Accents de texte --- */
.text-wine-accent { color: var(--wine); }
.text-amethyst-accent { color: var(--amethyst); }
.text-dark-bold { color: var(--text-dark); font-weight: 800; }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .ux-article-intro-section { padding: 80px 15px 40px; }
    .ux-article-title { font-size: 2.2rem; margin-bottom: 40px; }
    
    .ux-definition-glass-card { 
        padding: 30px 25px; 
        flex-direction: column; 
        gap: 20px; 
        border-radius: 24px;
    }
    
    .card-icon-glass { width: 50px; height: 50px; font-size: 1.4rem; }
    .ux-article-text, .ux-definition-text { font-size: 1.05rem; }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-0c57753 *//* ==========================================================================
   ANATOMIE DU FLASH (ARTICLE) - LIGHT BENTO 2026
   ========================================================================== */

:root {
    --wine: #9A2A5B;
    --amethyst: #8E44AD;
    --bg-main: #FBF8FF;           
    --text-dark: #2D1E40;         
    --text-muted: #564D65;        
}

.ux-flash-anatomy-section {
    position: relative;
    background-color: #fff;
    padding: 20px 20px 80px; /* Padding réduit en haut pour la continuité du texte */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Halo d'ambiance --- */
.flash-glow-center {
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.05) 0%, rgba(154, 42, 91, 0.03) 50%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
}

.ux-flash-container {
    position: relative;
    z-index: 1;
    max-width: 950px;
    margin: 0 auto;
}

/* Utilitaires pour l'en-tête */
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.mx-auto { margin-left: auto; margin-right: auto; max-width: 800px; }

/* --- Grille Bento --- */
.ux-flash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    align-items: stretch;
}

/* --- Cartes Bento Glass --- */
.ux-bento-glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 45px 40px;
    box-shadow: 0 15px 35px rgba(45, 30, 64, 0.03), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.ux-bento-glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
}

.card-glow-wine { border-top: 4px solid var(--wine); }
.card-glow-wine:hover {
    border-color: rgba(154, 42, 91, 0.3);
    border-top: 4px solid var(--wine);
    box-shadow: 0 25px 50px rgba(154, 42, 91, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.card-glow-amethyst { border-top: 4px solid var(--amethyst); }
.card-glow-amethyst:hover {
    border-color: rgba(142, 68, 173, 0.3);
    border-top: 4px solid var(--amethyst);
    box-shadow: 0 25px 50px rgba(142, 68, 173, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* --- L'Élégance de la Liste à Puces --- */
.ux-glass-list {
    list-style: none; /* Supprime les gros points noirs par défaut */
    padding: 0;
    margin: 25px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ux-glass-list li {
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* La petite étoile/losange (✦) qui remplace la puce */
.ux-glass-list li::before {
    content: '✦'; 
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
}

.card-glow-wine .ux-glass-list li::before { color: var(--wine); }
.card-glow-amethyst .ux-glass-list li::before { color: var(--amethyst); }

/* --- Marges Image --- */
.image-margin-top {
    margin-top: 50px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .ux-flash-anatomy-section { padding: 40px 15px 60px; }
    
    .ux-flash-grid { grid-template-columns: 1fr; gap: 25px; }
    
    .ux-bento-glass-card { 
        padding: 30px 25px; 
        border-radius: 28px;
    }
    
    .ux-h2-title { font-size: 1.8rem; margin: 30px 0 20px 0; }
    .ux-h3-title { font-size: 1.3rem; }
    .ux-article-text { font-size: 1.05rem; }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-615f8a7 *//* ==========================================================================
   CORPS D'ARTICLE & ENCARTS - LIGHT BENTO 2026
   ========================================================================== */

:root {
    --wine: #9A2A5B;
    --amethyst: #8E44AD;
    --text-dark: #2D1E40;         
    --text-muted: #564D65;        
}

.ux-article-content-block {
    margin-bottom: 60px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-main);
}

/* --- Titres H2 et H3 --- */
.ux-h2-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--text-dark);
    margin: 60px 0 30px 0;
    letter-spacing: -1px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.title-number {
    color: var(--amethyst); /* Le numéro ressort en Améthyste */
    background: rgba(142, 68, 173, 0.1);
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.9em;
    border: 1px solid rgba(142, 68, 173, 0.2);
}

.ux-h3-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.text-muted-accent {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.9em;
}

/* --- Typographie du texte --- */
.ux-article-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.ux-article-text:last-of-type {
    margin-bottom: 0;
}

/* Accents de texte pour les "strong" */
.text-wine-accent { color: var(--wine); font-weight: 800; }
.text-amethyst-accent { color: var(--amethyst); font-weight: 800; }

/* --- Encart "Deep Dive" (Glassmorphism) --- */
.ux-deepdive-glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 45px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(45, 30, 64, 0.03), inset 0 1px 0 rgba(255, 255, 255, 1);
    /* Liseré discret sur le côté pour marquer l'encart */
    border-left: 4px solid var(--amethyst);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ux-deepdive-glass-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 45px rgba(142, 68, 173, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* --- Image intégrée --- */
.ux-article-image-wrap {
    margin-top: 35px;
    border-radius: 20px;
    overflow: hidden; /* Empêche l'image de déborder des coins arrondis */
    box-shadow: 0 10px 30px rgba(45, 30, 64, 0.1);
    /* Petit effet de cadre blanc */
    border: 4px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.ux-bento-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Adoucit très légèrement l'image pour qu'elle s'intègre au style pastel/doux */
    filter: contrast(1.05) saturate(1.1); 
    transition: transform 0.5s ease;
}

/* Léger zoom de l'image au survol de la carte (Très Premium) */
.ux-deepdive-glass-card:hover .ux-bento-image {
    transform: scale(1.03);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .ux-h2-title { font-size: 1.8rem; margin: 40px 0 25px 0; }
    
    .ux-deepdive-glass-card { 
        padding: 30px 20px; 
        border-radius: 24px;
        margin-top: 30px;
    }
    
    .ux-h3-title { font-size: 1.3rem; }
    .ux-article-text { font-size: 1.05rem; }
    
    .ux-article-image-wrap {
        margin-top: 25px;
        border-width: 2px;
        border-radius: 16px;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-0e6e4ea *//* ==========================================================================
   PARTIE 3 : LA VOIX (ARTICLE) - LIGHT BENTO 2026
   ========================================================================== */

:root {
    --wine: #9A2A5B;
    --amethyst: #8E44AD;
    --text-dark: #2D1E40;         
    --text-muted: #564D65;        
}

/* (Rappel : Les classes .ux-article-content-block, .ux-h2-title, .title-number, 
   .ux-article-text, et .ux-article-image-wrap sont déjà gérées par ton CSS précédent) */

/* --- Variantes pour le bloc Citation (L'ex-bordure verte) --- */
.ux-inline-quote {
    margin: 35px 0; /* Aère bien la citation par rapport aux paragraphes */
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(243, 235, 255, 0.4) 100%);
    border-radius: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(45, 30, 64, 0.02), inset 0 2px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.ux-inline-quote:hover {
    transform: translateX(5px); /* Petit effet de glissement au survol */
}

/* La variante Améthyste */
.quote-glow-amethyst {
    border-left: 4px solid var(--amethyst);
}

.quote-glow-amethyst .quote-mark {
    color: var(--amethyst);
}

.quote-mark {
    font-size: 2.5rem;
    font-family: Georgia, serif; /* Le serif donne un côté authentique à la citation */
    line-height: 0.8;
    opacity: 0.4;
    padding-top: 5px;
}

.ux-inline-quote p {
    margin: 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark); /* Sombre pour une lisibilité parfaite */
    font-weight: 500;
    line-height: 1.6;
}

/* Accents de texte */
.text-wine-accent { color: var(--wine); font-weight: 800; }
.text-amethyst-accent { color: var(--amethyst); font-weight: 800; }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .ux-inline-quote { 
        padding: 20px; 
        flex-direction: column; 
        gap: 10px; 
        border-radius: 16px;
    }
    
    .quote-mark { 
        font-size: 2rem; 
        margin-bottom: -10px; 
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-66d7f29 *//* ==========================================================================
   PARTIE 4 : TABLEAU COMPARATIF - LIGHT BENTO 2026 (RESPONSIVE)
   ========================================================================== */

:root {
    --wine: #9A2A5B;
    --amethyst: #8E44AD;
    --text-dark: #2D1E40;         
    --text-muted: #564D65;        
}

.ux-table-glass-container {
    background: #ffffff;
    border-radius: 24px;
    margin: 40px 0 50px 0;
    box-shadow: 0 15px 35px rgba(45, 30, 64, 0.05), inset 0 0 0 1px rgba(142, 68, 173, 0.15);
    overflow: hidden; /* Changé de overflow-x: auto à hidden car le responsive gère la largeur */
}

.ux-bento-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    table-layout: fixed; /* Aide à la régularité des colonnes sur desktop */
}

/* --- En-têtes --- */
.ux-bento-table th {
    padding: 25px 30px;
    font-size: 1.25rem;
    font-weight: 800;
    border-bottom: 2px solid rgba(142, 68, 173, 0.1);
}

.icon-th {
    margin-right: 8px;
    font-size: 1.4rem;
    vertical-align: middle;
}

.th-authentic {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    color: var(--amethyst);
}

.th-fake {
    background: rgba(86, 77, 101, 0.03);
    color: var(--text-muted);
}

/* --- Cellules --- */
.ux-bento-table td {
    padding: 20px 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(86, 77, 101, 0.08);
    vertical-align: top;
}

.td-authentic { color: var(--text-dark); }
.td-fake { 
    color: var(--text-muted); 
    background: rgba(86, 77, 101, 0.02); 
}

/* Typographie spécifique */
.text-dark-bold { color: var(--text-dark); font-weight: 800; }
.text-muted-bold { color: var(--text-muted); font-weight: 700; }

/* --- Ligne de Conclusion --- */
.table-summary-row td {
    border-bottom: none;
    padding: 30px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-authentic {
    color: var(--wine);
    background: linear-gradient(135deg, rgba(154, 42, 91, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.summary-fake {
    color: var(--text-muted);
    opacity: 0.7;
    background: rgba(86, 77, 101, 0.04);
}

/* ==========================================================================
   RESPONSIVE DESIGN (L'approche Mobile-Stack)
   ========================================================================== */

@media (max-width: 768px) {
    /* Désactivation du mode tableau classique */
    .ux-bento-table, 
    .ux-bento-table thead, 
    .ux-bento-table tbody, 
    .ux-bento-table tr, 
    .ux-bento-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* On cache l'en-tête original car on va l'injecter via data-label */
    .ux-bento-table thead {
        display: none;
    }

    .ux-bento-table tr {
        border-bottom: 4px solid rgba(142, 68, 173, 0.1); /* Séparateur entre les groupes */
        padding: 10px 0;
    }

    .ux-bento-table td {
        border-bottom: none;
        padding: 15px 20px;
        position: relative;
    }

    /* Injection du titre de la colonne au-dessus du contenu */
    .ux-bento-table td::before {
        content: attr(data-label); /* Utilise l'attribut HTML data-label */
        display: block;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
        opacity: 0.6;
    }

    /* Style spécifique pour différencier les deux colonnes empilées */
    .td-authentic::before { color: var(--amethyst); }
    .td-fake::before { color: var(--text-muted); }

    .td-fake {
        background: rgba(86, 77, 101, 0.04); /* Accentue le contraste sur mobile */
        border-radius: 0 0 12px 12px;
    }

    /* Ajustement de la ligne de résumé sur mobile */
    .table-summary-row {
        border-bottom: none;
        margin-top: 10px;
    }
    
    .table-summary-row td::before {
        content: "Verdict"; /* Libellé pour la ligne finale */
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-6dfa29d *//* ==========================================================================
   PARTIE 5 : LES SUPPORTS (ARTICLE) - LIGHT BENTO 2026
   ========================================================================== */

:root {
    --wine: #9A2A5B;
    --amethyst: #8E44AD;
    --text-dark: #2D1E40;         
    --text-muted: #564D65;        
}

/* (Les classes .ux-article-content-block, .ux-h2-title, .title-number, 
   .ux-article-text, .ux-text-link, .text-wine-accent sont déjà gérées) */

/* --- Carte "Highlight" (Glassmorphism léger) --- */
.ux-highlight-glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 35px 40px;
    margin: 35px 0;
    box-shadow: 0 10px 30px rgba(45, 30, 64, 0.03), inset 0 1px 0 rgba(255, 255, 255, 1);
    /* Liseré latéral pour marquer l'encart */
    border-left: 4px solid var(--amethyst);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2), box-shadow 0.4s ease;
}

.ux-highlight-glass-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 40px rgba(142, 68, 173, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* --- Liste à flèches stylisées --- */
.ux-arrow-list {
    list-style: none; /* Supprime les puces par défaut */
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Bel espacement entre les arguments */
}

.ux-arrow-list li {
    position: relative;
    padding-left: 35px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* La flèche (→) injectée en CSS */
.ux-arrow-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3rem;
    color: var(--amethyst); /* La flèche prend ta couleur d'accent */
    font-weight: 900;
}

.ux-arrow-list strong {
    color: var(--text-dark); /* Les mots mis en gras ressortent en sombre */
    font-weight: 800;
}

/* --- Phrase Punchline de conclusion --- */
.ux-article-punchline {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 40px 0;
    padding: 20px;
    text-align: center;
    /* Petit fond dégradé très subtil derrière le texte */
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.05) 0%, rgba(154, 42, 91, 0.03) 100%);
    border-radius: 16px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .ux-highlight-glass-card {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .ux-arrow-list li {
        font-size: 1.05rem;
        padding-left: 30px;
    }
    
    .ux-article-punchline {
        font-size: 1.15rem;
        padding: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-093ec45 *//* ==========================================================================
   CTA FINAL ARTICLE - LIGHT BENTO 2026
   ========================================================================== */

:root {
    --wine: #9A2A5B;
    --amethyst: #8E44AD;
    --text-dark: #2D1E40;         
    --text-muted: #564D65;        
}

/* (La classe .ux-article-content-block est déjà gérée dans ton CSS global) */

/* --- L'encart CTA en verre (Bento Style) --- */
.ux-article-cta-glass {
    /* Un fond très légèrement teinté vers l'Améthyste pour marquer la conclusion */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 235, 255, 0.6) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(142, 68, 173, 0.2);
    border-radius: 32px;
    padding: 50px 40px;
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(45, 30, 64, 0.04), inset 0 2px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ux-article-cta-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(142, 68, 173, 0.08), inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

/* --- Typographie de conclusion --- */
.ux-article-cta-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.text-wine-accent {
    color: var(--wine);
    font-weight: 800;
    /* Petit effet dégradé dynamique sur le mot de la fin */
    background: linear-gradient(90deg, var(--wine), var(--amethyst));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ux-article-cta-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 700px;
}

/* --- Le Bouton Radiant (Rappel du style global) --- */
.ux-btn-wine-radiant {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--wine) 0%, #B8336A 100%);
    color: #ffffff;
    padding: 20px 45px;
    border-radius: 100px; /* Style pilule moderne */
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(154, 42, 91, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.ux-btn-wine-radiant:hover {
    transform: translateY(-4px) scale(1.02);
    /* Le dégradé s'inverse au survol */
    background: linear-gradient(135deg, #B8336A 0%, var(--wine) 100%);
    box-shadow: 0 20px 45px rgba(154, 42, 91, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Animation douce pour le petit téléphone */
.pulse-sparkle {
    font-size: 1.4rem;
    display: inline-block;
    animation: sparkle-pulse 2s infinite ease-in-out;
}

@keyframes sparkle-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
    50% { transform: scale(1.15) rotate(15deg); opacity: 1; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)); }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .ux-article-cta-glass {
        padding: 40px 25px;
        border-radius: 28px;
        margin-top: 40px;
    }
    
    .ux-article-cta-text {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .ux-btn-wine-radiant {
        width: 100%;
        justify-content: center;
        padding: 18px 20px;
        font-size: 1.1rem;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-810e3d6 */.ux-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.ux-faq-item {
    background: var(--bg-soft);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ux-faq-item[open] {
    background: #ffffff;
    border-color: var(--trust-blue);
    box-shadow: 0 10px 30px rgba(36, 123, 190, 0.08);
}

.ux-faq-question {
    padding: 22px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ux-faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--trust-blue);
    transition: transform 0.3s ease;
}

.ux-faq-item[open] .ux-faq-question::after {
    content: '−';
    color: var(--mystic-purple);
    transform: rotate(180deg);
}

.ux-faq-answer {
    padding: 0 25px 25px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    border-top: 1px solid transparent;
}

.ux-faq-item[open] .ux-faq-answer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}/* End custom CSS */