/**

/* ==================== ARTICLE WRAPPER ==================== */
.evospirit-style-article-wrapper {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

@media (max-width: 992px) {
    .evospirit-style-article-wrapper {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .evospirit-style-article-wrapper {
        max-width: 95%;
        padding: 10px 0;
    }
}

 * ========================================
 * FICHE PRODUIT & BLOG EVO-SPIRIT
 * Préfixe : evospirit-style-*
 * Compatible PrestaShop
 * Version 1.0 - Décembre 2025
 * ========================================
 */

/* ==================== VARIABLES CSS ==================== */
:root {
    --evo-primary: #FF511C;
    --evo-primary-dark: #D53A0B;
    --evo-secondary: #ff9a52;
    --evo-dark: #232323;
    --evo-gray: #7a7a7a;
    --evo-light-bg: #f6f6f6;
    --evo-white: #ffffff;
    --evo-border: #ddd;
    --evo-shadow: 0 3px 10px rgba(35, 35, 35, 0.08);
    --evo-radius: 12px;
    --evo-success: #3a9a56;
    --evo-danger: #ff4c4c;
    --evo-warning: #ff9a52;
    --evo-info: #5bc0de;
    --evo-primary-light: #fff0eb;
}

/* ==================== RESET SCROLL HORIZONTAL ==================== */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ==================== CONTAINER PRINCIPAL ==================== */
#evospirit-style-fiche-produit,
#evospirit-style-article {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--evo-dark);
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.evospirit-style-container {
    width: 100%;
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.evospirit-style-section {
    margin: 60px 0;
}

/* ==================== TYPOGRAPHIE ==================== */
.evospirit-style-h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--evo-dark);
    line-height: 1.3;
}

.evospirit-style-h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 15px 0;
    color: var(--evo-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.evospirit-style-h3 {
    color: var(--evo-primary);
    font-size: 1.3em;
    margin: 1.5em 0 0.8em;
    font-weight: 600;
}

.evospirit-style-subtitle {
    text-align: center;
    color: var(--evo-primary);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.evospirit-style-desc-col h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--evo-primary);
    margin: 0 0 15px 0;
}

/* ==================== 1. INFORMATIONS CLÉS ==================== */
.evospirit-style-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: stretch;
}

.evospirit-style-info-grid > .evospirit-style-info-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.evospirit-style-info-grid > .evospirit-style-info-card .evospirit-style-card-content {
    flex: 1;
}

.evospirit-style-info-card {
    background: var(--evo-white);
    border-radius: var(--evo-radius);
    padding: 10px 14px;
    box-shadow: var(--evo-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evospirit-style-info-card.evospirit-style-full-width {
    grid-column: 1 / -1;
}

.evospirit-style-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 81, 28, 0.15);
}

.evospirit-style-card-header {
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--evo-primary);
}

.evospirit-style-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--evo-primary);
    margin: 0;
    line-height: 1.3;
}

.evospirit-style-card-content {
    font-size: 14px;
    line-height: 1.4;
    color: var(--evo-dark);
}

.evospirit-style-card-content ul {
    margin: 4px 0;
    padding-left: 18px;
}

.evospirit-style-card-content li {
    margin: 3px 0;
}

.evospirit-style-card-content strong {
    color: var(--evo-dark);
    font-weight: 700;
}

.evospirit-style-chip {
    display: inline-block;
    padding: 2px 8px;
    margin: 2px 4px 2px 0;
    background: var(--evo-light-bg);
    border: 1px solid var(--evo-border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--evo-dark);
    margin-left: 5px;
}

/* ==================== 2. CARD DE BASE ==================== */
.evospirit-style-card {
    background: var(--evo-white);
    border-radius: var(--evo-radius);
    box-shadow: var(--evo-shadow);
    overflow: hidden;
    margin: 25px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evospirit-style-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 81, 28, 0.15);
}

/* ==================== 3. TABLEAU TECHNIQUE ==================== */
.evospirit-style-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    background: var(--evo-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.evospirit-style-table th,
.evospirit-style-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.evospirit-style-table th {
    background: var(--evo-primary);
    color: white;
    font-weight: 600;
}

.evospirit-style-table tr:hover {
    background: #f5f5f5;
}

.evospirit-style-table tr:last-child td {
    border-bottom: none;
}

/* ==================== 4. FAQ ==================== */
.evospirit-style-faq-question {
    color: var(--evo-primary);
    font-size: 1.1em;
    margin-bottom: 0.5em;
    font-weight: 600;
    cursor: pointer;
}

.evospirit-style-faq-item {
    background: var(--evo-white);
    border-radius: var(--evo-radius);
    margin-bottom: 10px;
    box-shadow: var(--evo-shadow);
    overflow: hidden;
}

.evospirit-style-faq-item summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--evo-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.evospirit-style-faq-item summary::-webkit-details-marker {
    display: none;
}

.evospirit-style-faq-item summary::after {
    content: '+';
    font-size: 1.5em;
    color: var(--evo-primary);
    transition: transform 0.3s;
}

.evospirit-style-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.evospirit-style-faq-item .evospirit-style-faq-content {
    padding: 0 20px 20px;
    color: var(--evo-gray);
}

/* ==================== 5. NOTE/ENCADRÉ INFO ==================== */
.evospirit-style-note {
    background: var(--evo-primary-light);
    border-left: 4px solid var(--evo-primary);
    padding: 12px 16px;
    margin: 1em 0;
    border-radius: 4px;
}

.evospirit-style-note-success {
    background: #e8f5e9;
    border-left-color: var(--evo-success);
}

.evospirit-style-note-warning {
    background: #fff3e0;
    border-left-color: var(--evo-warning);
}

.evospirit-style-note-danger {
    background: #ffebee;
    border-left-color: var(--evo-danger);
}

/* ==================== 6. LISTE STYLISÉE ==================== */
.evospirit-style-list {
    padding-left: 1.5em;
    margin: 1em 0;
}

.evospirit-style-list li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

/* ==================== BLOG - CLASSES SPÉCIFIQUES ==================== */

/* Banner CTA */
.evospirit-style-blog-banner {
    background: linear-gradient(135deg, var(--evo-primary) 0%, var(--evo-primary-dark) 100%);
    padding: 25px 30px;
    border-radius: var(--evo-radius);
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.evospirit-style-blog-banner p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.evospirit-style-blog-btn {
    display: inline-block;
    background: #fff;
    color: var(--evo-primary);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.evospirit-style-blog-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: var(--evo-primary);
    text-decoration: none;
}

/* Cards status */
.evospirit-style-blog-card-large {
    padding: 35px;
    margin: 25px 0;
}

.evospirit-style-blog-card-success {
    background: #e8f5e9;
    border-left: 3px solid var(--evo-success);
    padding: 20px;
    border-radius: 8px;
}

.evospirit-style-blog-card-warning {
    background: #fff3e0;
    border-left: 3px solid var(--evo-warning);
    padding: 20px;
    border-radius: 8px;
}

.evospirit-style-blog-card-danger {
    background: #ffebee;
    border-left: 3px solid var(--evo-danger);
    padding: 20px;
    border-radius: 8px;
}

.evospirit-style-blog-card-success h5,
.evospirit-style-blog-card-warning h5,
.evospirit-style-blog-card-danger h5 {
    margin: 0 0 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.evospirit-style-blog-card-success h5 { color: #2e7d32; }
.evospirit-style-blog-card-warning h5 { color: #ef6c00; }
.evospirit-style-blog-card-danger h5 { color: #c62828; }

.evospirit-style-blog-card-success ul,
.evospirit-style-blog-card-warning ul,
.evospirit-style-blog-card-danger ul {
    margin: 0;
    padding-left: 18px;
}

.evospirit-style-blog-card-success li,
.evospirit-style-blog-card-warning li,
.evospirit-style-blog-card-danger li {
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Header avec flex */
.evospirit-style-blog-header-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.evospirit-style-blog-header-flex h4 {
    margin: 0;
    font-size: 20px;
    color: var(--evo-dark);
    font-weight: 700;
}

.evospirit-style-blog-header-flex span {
    color: var(--evo-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header gradient */
.evospirit-style-blog-header-gradient {
    background: linear-gradient(135deg, var(--evo-primary) 0%, var(--evo-primary-dark) 100%);
    padding: 20px 30px;
    margin-bottom: 0;
    border-bottom: none;
}

.evospirit-style-blog-header-gradient h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contenu large */
.evospirit-style-blog-content-large {
    padding: 30px;
}

.evospirit-style-blog-content-large p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--evo-dark);
}

/* Grid avec gap */
.evospirit-style-blog-grid-gap20 {
    gap: 20px;
    margin-top: 25px;
}

/* ==================== BLOG ARTICLE - HERO ==================== */
.evospirit-style-blog-hero {
    margin: 0 0 30px;
}

.evospirit-style-blog-hero img {
    width: 100%;
    height: auto;
    border-radius: var(--evo-radius);
}

.evospirit-style-blog-hero-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 30px;
    border-radius: var(--evo-radius);
    margin-bottom: 30px;
    text-align: center;
}

.evospirit-style-blog-hero-dark h1 {
    color: #fff;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.evospirit-style-blog-hero-dark .subtitle {
    color: var(--evo-primary);
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}

.evospirit-style-blog-hero-dark .desc {
    color: #ccc;
    font-size: 1.1em;
}

/* ==================== BLOG ARTICLE - INTRO CITABLE ==================== */
.evospirit-style-blog-intro-citable {
    font-size: 1.15em;
    line-height: 1.8;
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid var(--evo-primary);
    margin-bottom: 25px;
}

/* ==================== BLOG ARTICLE - SOMMAIRE ==================== */
.evospirit-style-blog-toc {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.evospirit-style-blog-toc h3 {
    margin-top: 0;
    color: var(--evo-dark);
}

.evospirit-style-blog-toc ul {
    columns: 2;
    column-gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.evospirit-style-blog-toc li {
    margin-bottom: 8px;
}

.evospirit-style-blog-toc a {
    color: var(--evo-primary);
    text-decoration: none;
}

.evospirit-style-blog-toc a:hover {
    text-decoration: underline;
}

/* ==================== BLOG ARTICLE - H2 STYLISÉ ==================== */
.evospirit-style-blog-h2 {
    color: #1a1a2e;
    border-bottom: 3px solid var(--evo-primary);
    padding-bottom: 10px;
    margin-top: 40px;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
}

/* ==================== BLOG ARTICLE - GRILLE COMPARATIF ==================== */
.evospirit-style-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.evospirit-style-compare-card {
    background: var(--evo-white);
    border-radius: var(--evo-radius);
    padding: 25px;
    box-shadow: var(--evo-shadow);
}

.evospirit-style-compare-card h4 {
    color: var(--evo-primary);
    margin-top: 0;
    font-size: 18px;
}

/* ==================== BLOG ARTICLE - CTA CONTACT ==================== */
.evospirit-style-blog-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--evo-primary) 0%, var(--evo-primary-dark) 100%);
    color: var(--evo-white);
    border-radius: var(--evo-radius);
    margin: 40px 0;
}

.evospirit-style-blog-cta h3 {
    margin: 0 0 15px;
    color: var(--evo-white);
}

.evospirit-style-blog-cta p {
    margin: 0 0 20px;
    color: var(--evo-white);
    opacity: 0.9;
}

.evospirit-style-blog-cta .evospirit-style-blog-btn {
    background: var(--evo-white);
    color: var(--evo-primary);
}

.evospirit-style-blog-cta .evospirit-style-blog-btn:hover {
    background: #f0f0f0;
}

/* ==================== BLOG ARTICLE - LISTE FEATURES ==================== */
.evospirit-style-blog-features {
    margin: 20px 0;
    padding-left: 20px;
}

.evospirit-style-blog-features li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.evospirit-style-blog-features strong {
    color: var(--evo-primary);
}

/* ==================== BLOG ARTICLE - GALERIE IMAGES ==================== */
.evospirit-style-blog-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.evospirit-style-blog-gallery figure {
    margin: 0;
}

.evospirit-style-blog-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--evo-radius);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.evospirit-style-blog-gallery img:hover {
    transform: scale(1.02);
}

/* ==================== ARTICLE RÉGLEMENTATION - SPÉCIFIQUE ==================== */

/* Header article */
.evospirit-style-article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--evo-light-bg);
}

.evospirit-style-article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 14px;
    color: var(--evo-gray);
}

.evospirit-style-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Résumé exécutif - 3 colonnes */
.evospirit-style-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.evospirit-style-summary-card {
    background: var(--evo-white);
    border-radius: var(--evo-radius);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--evo-shadow);
    transition: transform 0.3s ease;
}

.evospirit-style-summary-card:hover {
    transform: translateY(-5px);
}

.evospirit-style-summary-card.legal {
    border-top: 4px solid var(--evo-success);
}

.evospirit-style-summary-card.illegal {
    border-top: 4px solid var(--evo-danger);
}

.evospirit-style-summary-card.unclear {
    border-top: 4px solid var(--evo-warning);
}

.evospirit-style-summary-card .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.evospirit-style-summary-card.legal .icon { color: var(--evo-success); }
.evospirit-style-summary-card.illegal .icon { color: var(--evo-danger); }
.evospirit-style-summary-card.unclear .icon { color: var(--evo-warning); }

.evospirit-style-summary-card h3 {
    font-size: 16px;
    margin: 0 0 10px;
    color: var(--evo-dark);
}

.evospirit-style-summary-card .count {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.evospirit-style-summary-card.legal .count { color: var(--evo-success); }
.evospirit-style-summary-card.illegal .count { color: var(--evo-danger); }
.evospirit-style-summary-card.unclear .count { color: var(--evo-warning); }

.evospirit-style-summary-card .countries {
    font-size: 12px;
    color: var(--evo-gray);
    line-height: 1.4;
}

/* Tableau synthétique */
.evospirit-style-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: var(--evo-radius);
    box-shadow: var(--evo-shadow);
}

.evospirit-style-table-synth {
    width: 100%;
    border-collapse: collapse;
    background: var(--evo-white);
    font-size: 14px;
}

.evospirit-style-table-synth th {
    background: var(--evo-dark);
    color: var(--evo-white);
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.evospirit-style-table-synth td {
    padding: 12px;
    border-bottom: 1px solid var(--evo-light-bg);
    vertical-align: middle;
}

.evospirit-style-table-synth tr:hover {
    background: var(--evo-light-bg);
}

.evospirit-style-table-synth tr:last-child td {
    border-bottom: none;
}

.evospirit-style-table-synth .country-link {
    color: var(--evo-primary);
    text-decoration: none;
    font-weight: 600;
}

.evospirit-style-table-synth .country-link:hover {
    text-decoration: underline;
}

/* Badges status */
.evospirit-style-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.evospirit-style-badge-legal {
    background: #e8f5e9;
    color: #2e7d32;
}

.evospirit-style-badge-illegal {
    background: #ffebee;
    color: #c62828;
}

.evospirit-style-badge-unclear {
    background: #fff3e0;
    color: #ef6c00;
}

/* Section pays détaillée */
.evospirit-style-country-section {
    margin: 50px 0;
}

.evospirit-style-country-section h2 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--evo-primary);
}

.evospirit-style-country-card {
    background: var(--evo-white);
    border-radius: var(--evo-radius);
    margin-bottom: 25px;
    box-shadow: var(--evo-shadow);
    overflow: hidden;
    scroll-margin-top: 80px;
}

.evospirit-style-country-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--evo-light-bg);
    border-bottom: 1px solid var(--evo-border);
}

.evospirit-style-country-header .flag {
    font-size: 32px;
}

.evospirit-style-country-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--evo-dark);
    flex: 1;
}

.evospirit-style-country-content {
    padding: 25px;
}

.evospirit-style-country-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.evospirit-style-spec-item {
    text-align: center;
    padding: 15px;
    background: var(--evo-light-bg);
    border-radius: 8px;
}

.evospirit-style-spec-item .label {
    font-size: 12px;
    color: var(--evo-gray);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.evospirit-style-spec-item .value {
    font-size: 16px;
    font-weight: 700;
    color: var(--evo-dark);
}

.evospirit-style-country-details {
    color: var(--evo-gray);
    line-height: 1.7;
}

.evospirit-style-country-details p {
    margin-bottom: 15px;
}

/* ==================== RESPONSIVE - TABLETTE ==================== */
@media (max-width: 992px) {
    .evospirit-style-summary-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .evospirit-style-compare-grid {
        grid-template-columns: 1fr;
    }
    
    .evospirit-style-blog-toc ul {
        columns: 1;
    }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 768px) {
    .evospirit-style-h1 {
        font-size: 24px;
    }
    
    .evospirit-style-h2 {
        font-size: 22px;
    }
    
    .evospirit-style-summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .evospirit-style-summary-card {
        padding: 20px 15px;
    }
    
    .evospirit-style-summary-card .count {
        font-size: 24px;
    }
    
    .evospirit-style-info-grid {
        grid-template-columns: 1fr;
    }
    
    .evospirit-style-blog-banner {
        flex-direction: column;
        text-align: center;
        padding: 12px 10px;
        margin: 10px 0;
    }
    
    .evospirit-style-blog-card-large {
        padding: 12px 10px;
        margin: 10px 0;
    }
    
    .evospirit-style-blog-card-success,
    .evospirit-style-blog-card-warning,
    .evospirit-style-blog-card-danger {
        padding: 12px 10px;
    }
    
    .evospirit-style-blog-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .evospirit-style-blog-header-flex {
        gap: 8px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .evospirit-style-blog-grid-gap20 {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 10px 0;
    }
    
    .evospirit-style-blog-header-gradient {
        padding: 12px 10px;
    }
    
    .evospirit-style-blog-content-large {
        padding: 12px 10px;
    }
    
    .evospirit-style-blog-cta {
        padding: 25px 20px;
    }
    
    .evospirit-style-blog-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .evospirit-style-blog-gallery img {
        height: 180px;
    }
    
    .evospirit-style-table-synth {
        font-size: 12px;
    }
    
    .evospirit-style-table-synth th,
    .evospirit-style-table-synth td {
        padding: 10px 8px;
    }
    
    .evospirit-style-country-header {
        padding: 15px;
    }
    
    .evospirit-style-country-content {
        padding: 15px;
    }
    
    .evospirit-style-country-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .evospirit-style-article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==================== RESPONSIVE - PETIT MOBILE ==================== */
@media (max-width: 480px) {
    .evospirit-style-container {
        padding: 0 15px;
    }
    
    .evospirit-style-blog-gallery {
        grid-template-columns: 1fr;
    }
    
    .evospirit-style-blog-gallery img {
        height: 200px;
    }
    
    .evospirit-style-country-specs {
        grid-template-columns: 1fr;
    }
    
    .evospirit-style-spec-item {
        padding: 12px;
    }
}


/* ==================== CLASSES MANQUANTES ARTICLE REGLEMENTATION ==================== */

/* Bouton CTA */
.evospirit-style-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.evospirit-style-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

/* Summary Card - éléments internes */
.evospirit-style-card-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.evospirit-style-card-count {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.evospirit-style-card-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.evospirit-style-summary-card.legal .evospirit-style-card-count { color: #27ae60; }
.evospirit-style-summary-card.illegal .evospirit-style-card-count { color: #e74c3c; }
.evospirit-style-summary-card.unclear .evospirit-style-card-count { color: #f39c12; }

.evospirit-style-country-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.evospirit-style-country-list li {
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Country Card - éléments internes */
.evospirit-style-flag {
    font-size: 2rem;
    margin-right: 12px;
}

.evospirit-style-country-name {
    font-size: 1.5rem;
    font-weight: 700;
    flex-grow: 1;
}

.evospirit-style-country-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.evospirit-style-country-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}

/* Specs grid */
.evospirit-style-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.evospirit-style-spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #7f8c8d;
    margin-bottom: 4px;
    font-weight: 600;
}

.evospirit-style-spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Table - section header row */
.evospirit-style-section-header td {
    background: #34495e !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 16px !important;
    text-align: left;
}

/* Table note */
.evospirit-style-table-note {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

/* Responsive pour les nouvelles classes */
@media (max-width: 768px) {
    .evospirit-style-card-count {
        font-size: 2.5rem;
    }
    
    .evospirit-style-card-icon {
        font-size: 2rem;
    }
    
    .evospirit-style-flag {
        font-size: 1.5rem;
    }
    
    .evospirit-style-country-name {
        font-size: 1.2rem;
    }
    
    .evospirit-style-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}


/* ==================== MODIFICATEURS RACCOURCIS ==================== */
/* Permet d'utiliser .note-success au lieu de .evospirit-style-note-success */

.evospirit-style-note.note-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
}

.evospirit-style-note.note-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border-left: 4px solid #ffc107;
}

.evospirit-style-note.note-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
}

/* Badges dans le tableau */
.evospirit-style-badge.badge-legal {
    background: #d4edda;
    color: #155724;
}

.evospirit-style-badge.badge-illegal {
    background: #f8d7da;
    color: #721c24;
}

.evospirit-style-badge.badge-unclear {
    background: #fff3cd;
    color: #856404;
}



/* ==================== FIX SUMMARY CARDS ==================== */
.evospirit-style-summary-grid .evospirit-style-summary-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 25px 20px !important;
    text-align: center;
    box-shadow: 0 3px 10px rgba(35, 35, 35, 0.08) !important;
    transition: transform 0.3s ease;
}

.evospirit-style-summary-grid .evospirit-style-summary-card.legal {
    border-top: 4px solid #3a9a56 !important;
}

.evospirit-style-summary-grid .evospirit-style-summary-card.illegal {
    border-top: 4px solid #ff4c4c !important;
}

.evospirit-style-summary-grid .evospirit-style-summary-card.unclear {
    border-top: 4px solid #ff9a52 !important;
}



/* ==================== FIX TABLE CONTAINER ==================== */
.evospirit-style-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px !important;
    box-shadow: 0 3px 10px rgba(35, 35, 35, 0.08) !important;
    background: #ffffff !important;
}

.evospirit-style-table-synth {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff !important;
}



/* ==================== FIX GLOBAL - TOUTES LES CARTES ==================== */

/* Country Card */
.evospirit-style-country-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(35, 35, 35, 0.08) !important;
    overflow: hidden;
}

/* Country Header */
.evospirit-style-country-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 10px;
}

/* Country Specs */
.evospirit-style-country-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

/* Country Details */
.evospirit-style-country-details {
    padding: 20px;
}

/* Info Card (conclusion) */
.evospirit-style-info-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 3px 10px rgba(35, 35, 35, 0.08) !important;
    overflow: hidden;
    margin: 30px 0;
}

.evospirit-style-info-card .evospirit-style-card-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.evospirit-style-info-card .evospirit-style-card-content {
    padding: 20px;
}

/* Note/Encadré */
.evospirit-style-note {
    background: #fff0eb !important;
    border-left: 4px solid #FF511C !important;
    padding: 12px 16px;
    margin: 1em 0;
    border-radius: 4px;
}

/* Summary Grid */
.evospirit-style-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

/* Blog CTA */
.evospirit-style-blog-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .evospirit-style-country-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .evospirit-style-summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .evospirit-style-country-header {
        padding: 15px;
    }
    
    .evospirit-style-country-specs {
        grid-template-columns: 1fr 1fr;
        padding: 15px;
    }
    
    .evospirit-style-country-details {
        padding: 15px;
    }
}


/* ==================== PRINT ==================== */
@media print {
    .evospirit-style-blog-banner,
    .evospirit-style-blog-cta {
        display: none;
    }
    
    .evospirit-style-card,
    .evospirit-style-country-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .evospirit-style-summary-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   HOMEPAGE - Reset containers pleine largeur
   Ajouté le 2025-01-07
   ======================================== */

/* Reset des containers Bootstrap/PrestaShop pour la homepage */
body.page-index #wrapper > .container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.page-index #content-wrapper,
body.page-index #main,
body.page-index .row,
body.page-index #content.page-home {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

body.page-index .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Masquer le breadcrumb et notifications sur la homepage */
body.page-index .breadcrumb,
body.page-index nav.breadcrumb,
body.page-index #notifications {
  display: none !important;
}


/* Reset colonnes Bootstrap */
body.page-index .col-xs-12,
body.page-index [class*="col-"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* ========================================
   HOMEPAGE - Styles complets
   Migré depuis index.tpl le 2025-01-07
   ======================================== */

:root {
  --evo-orange: #FF511C;
  --evo-orange-hover: #D53A0B;
  --evo-dark: #261104;
  --evo-bg: #F7F8F9;
  --evo-card-bg: #EBE7E6;
  --evo-white: #FFFFFF;
  --evo-radius: 12px;
  --evo-radius-lg: 30px;
  --evo-radius-xl: 40px;
  --evo-shadow: 0 4px 20px rgba(38, 17, 4, 0.08);
  --evo-shadow-lg: 0 10px 40px rgba(38, 17, 4, 0.12);
  --evo-shadow-hover: 0 20px 60px rgba(38, 17, 4, 0.15);
}

/* Reset & Base */
.evo-homepage * { box-sizing: border-box; margin: 0; padding: 0; }
.evo-homepage { font-family: 'Satoshi_Complete', sans-serif; color: var(--evo-dark); background-color: var(--evo-bg); line-height: 1.6; font-size: 17px; overflow-x: hidden; }
.evo-homepage img { max-width: 100%; height: auto; display: block; }
.evo-homepage a { text-decoration: none; color: inherit; }


.evo-container { width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons - Modern style */
.evo-btn { 
  display: inline-flex; 
  align-items: center;
  gap: 8px;
  font-family: 'GeneralSans_bold', sans-serif; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 1.2px; 
  padding: 14px 28px; 
  border-radius: 50px; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  cursor: pointer; 
  border: 2px solid var(--evo-orange); 
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.evo-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}
.evo-btn:hover::after {
  transform: translateX(4px);
}
.evo-btn-primary { 
  background: linear-gradient(135deg, var(--evo-orange) 0%, var(--evo-orange-hover) 100%); 
  color: var(--evo-white); 
  border: none;
  box-shadow: 0 4px 15px rgba(255, 81, 28, 0.3);
}
.evo-btn-primary:hover { 
  box-shadow: 0 6px 25px rgba(255, 81, 28, 0.4);
  transform: translateY(-2px);
}
.evo-btn-secondary { 
  background-color: transparent; 
  color: var(--evo-orange); 
}
.evo-btn-secondary:hover { 
  background-color: var(--evo-orange); 
  color: var(--evo-white); 
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 81, 28, 0.25);
}
.evo-btn-small { 
  padding: 10px 20px; 
  font-size: 11px; 
}
.evo-btn-small::after {
  content: '';
}

/* Typography */
.evo-title-xl { 
  font-family: 'GeneralSans_bold', sans-serif; 
  font-size: clamp(42px, 6vw, 72px); 
  font-weight: 700; 
  text-transform: uppercase; 
  color: var(--evo-orange); 
  line-height: 1.0;
  letter-spacing: -1px;
}
.evo-title-lg { 
  font-family: 'GeneralSans_bold', sans-serif; 
  font-size: clamp(28px, 4vw, 48px); 
  font-weight: 700; 
  text-transform: uppercase; 
  color: var(--evo-orange); 
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.evo-title-md {
  font-family: 'GeneralSans_bold', sans-serif; 
  font-size: clamp(20px, 3vw, 28px); 
  font-weight: 700; 
  color: var(--evo-dark); 
  line-height: 1.2;
}
.evo-subtitle { 
  font-family: 'Satoshi_Complete', sans-serif; 
  font-size: clamp(13px, 1.5vw, 15px); 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  color: var(--evo-dark);
  opacity: 0.7;
}

/* ========== HERO - Modern Asymmetric ========== */
.evo-hero { 
  position: relative;
  min-height: 70vh;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.evo-hero-content { 
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 600px;
  display: flex; 
  flex-direction: column; 
  gap: 20px;
  padding: 60px;
  z-index: 2;
}
.evo-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--evo-white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.evo-hero-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--evo-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.evo-hero .evo-title-xl {
  color: var(--evo-white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.4);
}

.evo-hero-tagline { 
  font-size: clamp(18px, 2.5vw, 24px); 
  color: #FFFFFF !important;
  line-height: 1.5;
  max-width: 400px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.5);
  font-weight: 600;
}
.evo-hero-image { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.evo-hero-image img { 
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  object-position: center;
}


/* ========== INTRO ========== */
.evo-intro { 
  padding: 60px 0 40px; 
}
.evo-intro-text { 
  font-size: clamp(20px, 3vw, 32px); 
  font-weight: 700; 
  color: var(--evo-dark); 
  line-height: 1.4; 
  max-width: 800px;
}
.evo-intro-text span {
  color: var(--evo-orange);
}

/* ========== PRODUCTS ========== */
.evo-products { 
  padding: 40px 0 60px; 
}
.evo-product-featured { 
  margin-bottom: 30px; 
  position: relative;
}
.evo-product-card { 
  position: relative; 
  display: block; 
  border-radius: var(--evo-radius-xl); 
  overflow: hidden; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--evo-shadow);
}
.evo-product-card:hover { 
  transform: translateY(-8px);
  box-shadow: var(--evo-shadow-hover);
}
.evo-product-card img { 
  width: 100%; 
  height: 420px; 
  object-fit: cover; 
  object-position: center;
  transition: transform 0.5s ease;
}
.evo-product-card:hover img {
  transform: scale(1.05);
}
/* Product Overlay */
.evo-product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  transition: background 0.4s ease;
}
.evo-product-card:hover .evo-product-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}
.evo-product-name { 
  font-family: 'GeneralSans_bold', sans-serif; 
  font-size: 36px; 
  color: #FFFFFF !important;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.evo-product-desc { 
  font-size: 18px; 
  color: #FFFFFF !important;
  opacity: 0.95;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  max-width: 350px;
  line-height: 1.4;
}
.evo-product-overlay .evo-btn {
  align-self: flex-start;
  margin-top: 5px;
}
/* Xplorer V2 - image remontée */
.evo-product-featured .evo-product-card img {
  object-position: center bottom;
}
.evo-promo-badge { 
  position: absolute; 
  top: 20px; 
  left: 20px; 
  background: linear-gradient(135deg, #000 0%, #222 100%);
  color: var(--evo-white); 
  font-family: 'GeneralSans_bold', sans-serif; 
  font-size: 12px; 
  font-weight: 600; 
  letter-spacing: 1px; 
  padding: 10px 16px; 
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 10; 
}
.evo-products-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 30px; 
}

/* ========== SAV SECTION ========== */
.evo-sav { 
  padding: 50px 0;
}
.evo-sav-header { 
  margin-bottom: 40px; 
  text-align: center;
}
.evo-sav-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px;
  align-items: center;
}
.evo-sav-image { 
  border-radius: var(--evo-radius-xl); 
  overflow: hidden;
  box-shadow: var(--evo-shadow-lg);
}
.evo-sav-image img { 
  width: 100%; 
  height: 100%; 
  min-height: 480px; 
  object-fit: cover;
  transition: transform 0.5s ease;
}
.evo-sav-image:hover img {
  transform: scale(1.03);
}
.evo-sav-cards { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
}
.evo-card { 
  background: var(--evo-card-bg);
  border-radius: 24px; 
  padding: 28px 24px; 
  text-align: center; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 12px;
  box-shadow: var(--evo-shadow);
  transition: all 0.3s ease;
  
}
.evo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--evo-shadow-lg);
}
.evo-card-icon { 
  width: 60px; 
  height: 60px;
  margin-bottom: 5px;
}
.evo-card-icon img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain;
  filter: brightness(0);
}
.evo-card-title { 
  font-family: 'GeneralSans_bold', sans-serif; 
  font-size: 15px; 
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--evo-dark); 
}
.evo-card-text { 
  font-size: 14px; 
  color: var(--evo-dark);
  opacity: 0.7;
  line-height: 1.5;
  flex-grow: 1;
}

/* ========== CTA SECTION ========== */
.evo-cta { 
  padding: 60px 0 80px;
  text-align: center;
}
.evo-cta-inner {
  background: var(--evo-white);
  border-radius: var(--evo-radius-xl);
  padding: 60px 40px;
  box-shadow: var(--evo-shadow);
  max-width: 700px;
  margin: 0 auto;
}
.evo-cta-title {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--evo-dark);
  margin-bottom: 16px;
}
.evo-cta-text {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 28px;
}

/* ========== RIDERS SECTION ========== */
.evo-riders { 
  padding: 50px 0;
  background: var(--evo-bg);
}
.evo-riders-header { 
  margin-bottom: 40px;
  text-align: center;
}
.evo-riders-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px; 
  align-items: center; 
}
.evo-riders-cards { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
}
.evo-riders-image { 
  border-radius: var(--evo-radius-xl); 
  overflow: hidden;
  box-shadow: var(--evo-shadow-lg);
}
.evo-riders-image img { 
  width: 100%; 
  height: 100%; 
  min-height: 520px; 
  object-fit: cover;
  transition: transform 0.5s ease;
}
.evo-riders-image:hover img {
  transform: scale(1.03);
}

/* ========== COMMUNITY ========== */
.evo-community { 
  padding: 80px 0 100px;
}
.evo-community-header { 
  margin-bottom: 40px;
  text-align: center;
}
.evo-carousel { 
  display: flex; 
  gap: 20px; 
  overflow-x: auto; 
  scroll-snap-type: x mandatory; 
  -webkit-overflow-scrolling: touch; 
  padding: 20px 0; 
  margin-bottom: 50px;
  scrollbar-width: none;
}
.evo-carousel::-webkit-scrollbar { display: none; }
.evo-carousel-item { 
  flex: 0 0 300px; 
  scroll-snap-align: start; 
  border-radius: var(--evo-radius-xl); 
  overflow: hidden;
  box-shadow: var(--evo-shadow);
  transition: all 0.3s ease;
}
.evo-carousel-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--evo-shadow-lg);
}
.evo-carousel-item img { 
  width: 100%; 
  height: 360px; 
  object-fit: cover;
  transition: transform 0.5s ease;
}
.evo-carousel-item:hover img {
  transform: scale(1.05);
}
.evo-social { 
  display: flex; 
  justify-content: center; 
  flex-wrap: wrap; 
  gap: 16px; 
}
.evo-social-btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
}

/* Utilities */
.evo-mb-10 { margin-bottom: 10px; }
.evo-mb-20 { margin-bottom: 20px; }
.evo-mt-10 { margin-top: 10px; }
.evo-mt-20 { margin-top: 20px; }
.evo-text-center { text-align: center; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .evo-hero { 
    min-height: 60vh;
  }
  .evo-hero-content { 
    max-width: 100%;
    padding: 40px 30px;
    bottom: 20px;
  }
  .evo-sav-grid, .evo-riders-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .evo-hero { min-height: 65vh; }
  .evo-hero-content { 
    padding: 20px 15px;
    bottom: 10px;
    gap: 12px;
  }
  .evo-hero .evo-title-xl {
    font-size: clamp(28px, 7vw, 38px);
  }
  .evo-hero-tagline {
    font-size: 14px;
    max-width: 100%;
    color: #FFFFFF !important;
  }
  .evo-hero-label {
    font-size: 10px;
    color: #FFFFFF !important;
  }
  .evo-products-grid { grid-template-columns: 1fr; gap: 24px; }
  .evo-product-card img { height: 220px; }
  .evo-product-featured .evo-product-card img { height: 260px; }
  .evo-sav-image img { min-height: 250px; }
  .evo-sav-cards, .evo-riders-cards { gap: 12px; }
  .evo-card { padding: 20px 16px; border-radius: 20px; }
  .evo-card-icon { width: 40px; height: 40px; }
  .evo-card-title { font-size: 13px; }
  .evo-card-text { font-size: 12px; }
  .evo-riders-image img { min-height: 320px; }
  .evo-carousel-item { flex: 0 0 200px; }
  .evo-carousel-item img { height: 240px; }
  .evo-container { padding: 0 16px; }
  .evo-btn { padding: 12px 20px; font-size: 12px; }
  .evo-btn-small { padding: 8px 16px; font-size: 10px; }
  .evo-sav, .evo-riders, .evo-community { padding: 50px 0; }
  .evo-cta-inner { padding: 40px 24px; }
  .evo-intro { padding: 40px 0 30px; }
  .evo-products { padding: 20px 0 40px; }
}/* ============================================
   EVO-SPIRIT HOMEPAGE V6c
   Hero 80vh overlay très léger, largeurs uniformes
   ============================================ */

:root {
  --evo-orange: #FF511C;
  --evo-orange-soft: #FF6B3D;
  --evo-text: #1a1a1a;
  --evo-text-soft: #555;
  --evo-bg: #FFFFFF;
  --evo-bg-warm: #FAF8F6;
  --evo-bg-soft: #F3F1EF;
  --evo-border: #E8E4E0;
  --evo-container: 1200px;
}

.evo-hp {
  font-family: 'Satoshi_Complete', 'Manrope', sans-serif;
  color: var(--evo-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   HERO - adapte espace sous header+bandeau TRÈS léger
   ============================================ */
.evo-hero-full {
  position: relative;
  height: calc(100vh - 110px);
  min-height: 500px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.evo-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.evo-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay très léger */
.evo-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.4) 100%
  );
}

.evo-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 30px;
  width: 100%;
  max-width: 1200px;
}

/* ============================================
   HERO - CORRECTIONS V6e
   Badge centré, sous-titre plus gros, ombres fortes
   ============================================ */

.evo-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 35px;
  color: #fff;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.evo-hero-content h1 {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.1;
  margin: 0 0 30px;
  color: #fff;
  text-shadow: 
    0 2px 10px rgba(0,0,0,0.5),
    0 4px 30px rgba(0,0,0,0.4),
    0 8px 60px rgba(0,0,0,0.3);
}

.evo-hero-content h1 strong {
  color: var(--evo-orange);
  text-shadow: 
    0 2px 10px rgba(0,0,0,0.6),
    0 4px 30px rgba(0,0,0,0.5),
    0 8px 60px rgba(0,0,0,0.4),
    2px 2px 20px rgba(0,0,0,0.7);
}

/* Sous-titre plus gros et plus gras */
.evo-hero-content > p {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.5;
  margin: 0 0 40px;
  color: #fff !important;
  font-weight: 600;
  text-shadow: 
    0 2px 10px rgba(0,0,0,0.6),
    0 4px 25px rgba(0,0,0,0.5),
    0 6px 40px rgba(0,0,0,0.4);
}

.evo-hero-content p strong {
  color: #fff;
  font-weight: 700;
}



/* Texte hero - BLANC forcé */
.evo-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.evo-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.evo-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  margin-top: 8px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================
   BUTTONS
   ============================================ */
.evo-btn-main {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: var(--evo-orange);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.evo-btn-main:hover {
  background: var(--evo-orange-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255,81,28,0.3);
}

.evo-btn-lg {
  padding: 20px 42px;
  font-size: 18px;
}

.evo-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.evo-btn-ghost:hover {
  background: rgba(255,255,255,0.3);
  border-color: #fff;
}

.evo-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--evo-text);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.evo-btn-secondary:hover {
  background: #333;
}

.evo-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: transparent;
  color: var(--evo-text);
  text-decoration: none;
  border: 2px solid var(--evo-border);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.evo-btn-outline:hover {
  border-color: var(--evo-text);
  background: var(--evo-bg-soft);
}

.evo-btn-text {
  color: var(--evo-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: color 0.3s ease;
}

.evo-btn-text:hover {
  color: var(--evo-orange-soft);
}

/* ============================================
   TRUST BAR
   ============================================ */
.evo-trust-hp {
  background: var(--evo-bg-soft);
  padding: 22px 30px;
}

.evo-trust-inner {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-trust-inner span {
  font-size: 15px;
  color: var(--evo-text-soft);
  font-weight: 500;
}

/* ============================================
   SECTIONS - Largeur uniformisée 1200px
   ============================================ */
.evo-section-hp {
  padding: 100px 40px;
}

.evo-bg-warm {
  background: var(--evo-bg-warm);
}

.evo-bg-soft {
  background: var(--evo-bg-soft);
}

.evo-section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.evo-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--evo-orange);
  margin-bottom: 18px;
}

.evo-section-hp h2,
.evo-video-section h2 {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  margin: 0;
  color: var(--evo-text);
}

.evo-section-hp h2 strong,
.evo-video-section h2 strong {
  color: var(--evo-orange);
}

.evo-section-cta {
  text-align: center;
  margin-top: 60px;
}

/* ============================================
   FLOW BLOCKS - max-width 1200px
   ============================================ */
.evo-flow-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-flow-left .evo-flow-media {
  order: -1;
}

.evo-flow-right .evo-flow-media {
  order: 1;
}

.evo-flow-content {
  max-width: 520px;
}

.evo-flow-content h2 {
  margin-bottom: 25px;
}

.evo-flow-content > p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--evo-text-soft);
  margin: 0 0 35px;
}

.evo-flow-content p strong {
  color: var(--evo-text);
}

/* Media shapes */
.evo-media-shape {
  position: relative;
  border-radius: 30px 80px 30px 80px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.evo-media-shape img {
  width: 100%;
  height: auto;
  display: block;
}

.evo-shape-alt {
  border-radius: 80px 30px 80px 30px;
}

/* Stats */
.evo-stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--evo-border);
}

.evo-stat {
  text-align: center;
}

.evo-stat span {
  display: block;
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: 52px;
  color: var(--evo-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.evo-stat {
  font-size: 16px;
  color: var(--evo-text-soft);
}

/* Checklist */
.evo-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.evo-checklist li {
  position: relative;
  padding: 12px 0 12px 35px;
  font-size: 18px;
  color: var(--evo-text-soft);
}

.evo-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--evo-orange);
  font-weight: bold;
  font-size: 18px;
}

/* ============================================
   PRODUCTS - max-width 1200px
   ============================================ */
.evo-products-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-card-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: var(--evo-bg);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: var(--evo-text);
  transition: all 0.4s ease;
  border: 1px solid var(--evo-border);
  margin-bottom: 30px;
}

.evo-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  border-color: transparent;
}

.evo-card-featured .evo-card-visual {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.evo-card-featured .evo-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.evo-card-featured:hover .evo-card-visual img {
  transform: scale(1.05);
}

.evo-card-featured .evo-card-info {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.evo-card-featured h3 {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: 36px;
  margin: 0 0 15px;
}

.evo-card-featured p {
  font-size: 19px;
  color: var(--evo-text-soft);
  margin: 0 0 25px;
  line-height: 1.6;
}

.evo-card-featured .evo-price strong {
  font-size: 32px;
}

/* Row of 2 cards */
.evo-products-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.evo-card-product {
  position: relative;
  background: var(--evo-bg);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: var(--evo-text);
  transition: all 0.4s ease;
  border: 1px solid var(--evo-border);
}

.evo-card-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  border-color: transparent;
}

.evo-card-product .evo-card-visual {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.evo-card-product .evo-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.evo-card-product:hover .evo-card-visual img {
  transform: scale(1.05);
}

.evo-card-info {
  padding: 30px 35px 35px;
}

.evo-tag {
  display: inline-block;
  background: var(--evo-orange);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.evo-card-product h3 {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: 28px;
  margin: 0 0 12px;
}

.evo-card-product p {
  font-size: 17px;
  color: var(--evo-text-soft);
  margin: 0 0 20px;
  line-height: 1.5;
}

.evo-price {
  font-size: 16px;
  color: var(--evo-text-soft);
}

.evo-price strong {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: 28px;
  color: var(--evo-text);
}

.evo-promo {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--evo-orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  z-index: 2;
}

/* ============================================
   VIDEO SECTION - max-width 1200px
   ============================================ */
.evo-video-section {
  background: linear-gradient(135deg, var(--evo-bg-soft) 0%, var(--evo-bg-warm) 100%);
  padding: 100px 40px;
}

.evo-video-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-video-left {
  grid-template-columns: 1.2fr 0.8fr;
}

.evo-video-left .evo-video-frame {
  order: -1;
}

.evo-video-text {
  max-width: 400px;
}

.evo-video-text h2 {
  margin-bottom: 20px;
}

.evo-video-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--evo-text-soft);
  margin: 0;
}

.evo-video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.evo-video-frame img,
.evo-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evo-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--evo-orange);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(255,81,28,0.4);
}

.evo-play-btn svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  margin-left: 5px;
}

.evo-video-frame:hover .evo-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   AVANTAGES - max-width 1200px
   ============================================ */
.evo-advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-advantage-card {
  background: var(--evo-bg);
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--evo-border);
  transition: all 0.3s ease;
}

.evo-advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.evo-advantage-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.evo-advantage-card h3 {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--evo-text);
}

.evo-advantage-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--evo-text-soft);
  margin: 0;
}

/* ============================================
   TESTIMONIALS - max-width 1200px
   ============================================ */
.evo-testimonials-hp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-testimonial-card {
  background: var(--evo-bg-soft);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--evo-border);
}

.evo-testimonial-card p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 30px;
  color: var(--evo-text-soft);
}

.evo-testimonial-card p strong {
  color: var(--evo-text);
}

.evo-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.evo-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--evo-orange), var(--evo-orange-soft));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.evo-testimonial-footer strong {
  display: block;
  font-size: 16px;
}

.evo-testimonial-footer span {
  font-size: 14px;
  color: var(--evo-orange);
}

/* ============================================
   MOSAIC GALLERY - max-width 1200px
   ============================================ */
.evo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 15px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.evo-mosaic-item {
  border-radius: 16px;
  overflow: hidden;
}

.evo-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.evo-mosaic-item:hover img {
  transform: scale(1.08);
}

.evo-mosaic-tall {
  grid-row: span 2;
}

.evo-mosaic-wide {
  grid-column: span 2;
}

.evo-social-hp {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.evo-social-hp a {
  padding: 14px 28px;
  background: var(--evo-bg);
  color: var(--evo-text);
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--evo-border);
}

.evo-social-hp a:hover {
  background: var(--evo-orange);
  color: #fff;
  border-color: var(--evo-orange);
}

/* ============================================
   FAQ - max-width 1200px
   ============================================ */
.evo-faq-hp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-faq-item {
  background: var(--evo-bg-soft);
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--evo-border);
  transition: all 0.3s ease;
}

.evo-faq-item:hover {
  border-color: var(--evo-orange);
  box-shadow: 0 15px 40px rgba(255,81,28,0.08);
}

.evo-faq-item h3 {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: 18px;
  margin: 0 0 15px;
  color: var(--evo-text);
}

.evo-faq-item p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: var(--evo-text-soft);
}

.evo-faq-item p strong {
  color: var(--evo-text);
}

/* ============================================
   FINAL CTA
   ============================================ */
.evo-cta-hp {
  padding: 120px 40px;
  background: var(--evo-bg-warm);
}

.evo-cta-inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.evo-cta-hp h2 {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: clamp(40px, 5.5vw, 60px);
  margin: 0 0 20px;
  color: var(--evo-text);
}

.evo-cta-hp h2 strong {
  color: var(--evo-orange);
}

.evo-cta-hp > .evo-cta-inner > p {
  font-size: 20px;
  color: var(--evo-text-soft);
  margin: 0 0 40px;
}

.evo-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .evo-hero-full {
    height: calc(100vh - 110px);
    min-height: 450px;
  }
  
  .evo-flow-block {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .evo-flow-left .evo-flow-media,
  .evo-flow-right .evo-flow-media {
    order: -1;
  }
  
  .evo-flow-content {
    max-width: 100%;
    text-align: center;
  }
  
  .evo-stats {
    justify-content: center;
  }
  
  .evo-checklist {
    text-align: left;
    display: inline-block;
  }
  
  .evo-card-featured {
    grid-template-columns: 1fr;
  }
  
  .evo-card-featured .evo-card-info {
    padding: 35px;
  }
  
  .evo-card-featured h3 {
    font-size: 30px;
  }
  
  .evo-video-wrapper,
  .evo-video-left {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .evo-video-left .evo-video-frame {
    order: -1;
  }
  
  .evo-video-text {
    text-align: center;
    max-width: 100%;
  }
  
  .evo-advantages {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .evo-testimonials-hp {
    grid-template-columns: 1fr;
    max-width: 550px;
  }
  
  .evo-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
  }
  
  .evo-faq-hp {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .evo-hero-full {
    height: calc(100vh - 100px);
    min-height: 420px;
  }
  
  .evo-scroll-hint {
    display: none;
  }
  
  .evo-section-hp,
  .evo-video-section {
    padding: 70px 25px;
  }
  
  .evo-section-head {
    margin-bottom: 50px;
  }
  
  .evo-trust-inner {
    gap: 25px;
  }
  
  .evo-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .evo-stats {
    gap: 30px;
  }
  
  .evo-stat span {
    font-size: 42px;
  }
  
  .evo-products-row {
    grid-template-columns: 1fr;
  }
  
  .evo-play-btn {
    width: 70px;
    height: 70px;
  }
  
  .evo-play-btn svg {
    width: 28px;
    height: 28px;
  }
  
  .evo-advantages {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .evo-advantage-card {
    padding: 25px 20px;
  }
  
  .evo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 150px);
  }
  
  .evo-mosaic-tall,
  .evo-mosaic-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  
  .evo-faq-hp {
    grid-template-columns: 1fr;
  }
  
  .evo-cta-hp {
    padding: 80px 25px;
  }
  
  .evo-cta-actions {
    flex-direction: column;
  }
  
  .evo-btn-main,
  .evo-btn-outline,
  .evo-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .evo-trust-inner {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .evo-stats {
    flex-direction: column;
    gap: 25px;
  }
  
  .evo-media-shape,
  .evo-shape-alt {
    border-radius: 20px;
  }
  
  .evo-card-info {
    padding: 25px;
  }
  
  .evo-advantages {
    grid-template-columns: 1fr;
  }
}

/* CTA Cards produits */
.evo-card-cta {
  display: inline-block;
  margin-top: 20px;
  color: var(--evo-orange);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.evo-card-featured .evo-card-cta {
  font-size: 18px;
}

.evo-card-product:hover .evo-card-cta,
.evo-card-featured:hover .evo-card-cta {
  color: var(--evo-orange-soft);
  transform: translateX(5px);
}

/* ============================================
   TAILLES POLICES V6f - TOUT PLUS GROS
   ============================================ */

/* HERO */
.evo-badge-light {
  font-size: 16px;
  padding: 14px 28px;
}

.evo-hero-content h1 {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: clamp(52px, 8vw, 86px);
  line-height: 1.05;
  margin: 0 0 35px;
  color: #fff;
  text-shadow: 
    0 2px 10px rgba(0,0,0,0.5),
    0 4px 30px rgba(0,0,0,0.4),
    0 8px 60px rgba(0,0,0,0.3);
}

.evo-hero-content h1 strong {
  color: var(--evo-orange);
  text-shadow: 
    0 2px 10px rgba(0,0,0,0.6),
    0 4px 30px rgba(0,0,0,0.5),
    0 8px 60px rgba(0,0,0,0.4),
    2px 2px 20px rgba(0,0,0,0.7);
}

.evo-hero-content > p {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  margin: 0 0 45px;
  color: #fff !important;
  font-weight: 600;
  text-shadow: 
    0 2px 10px rgba(0,0,0,0.6),
    0 4px 25px rgba(0,0,0,0.5),
    0 6px 40px rgba(0,0,0,0.4);
}

/* TRUST BAR */
.evo-trust-inner span {
  font-size: 17px;
  font-weight: 500;
}

/* LABELS */
.evo-label {
  font-size: 15px;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}

/* TITRES H2 SECTIONS */
.evo-section-hp h2,
.evo-video-section h2 {
  font-family: 'GeneralSans_bold', sans-serif;
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.1;
}

/* TEXTES BODY SECTIONS */
.evo-flow-content > p {
  font-size: 22px;
  line-height: 1.75;
}

.evo-video-text p {
  font-size: 20px;
  line-height: 1.7;
}

/* STATS */
.evo-stat span {
  font-size: 60px;
}

.evo-stat {
  font-size: 18px;
}

/* CHECKLIST */
.evo-checklist li {
  font-size: 20px;
  padding: 14px 0 14px 40px;
}

.evo-checklist li::before {
  font-size: 20px;
}

/* CARDS PRODUITS */
.evo-card-featured h3 {
  font-size: 42px;
  margin-bottom: 18px;
}

.evo-card-featured p {
  font-size: 21px;
  margin-bottom: 28px;
}

.evo-card-featured .evo-price {
  font-size: 18px;
}

.evo-card-featured .evo-price strong {
  font-size: 38px;
}

.evo-card-featured .evo-card-cta {
  font-size: 20px;
}

.evo-card-product h3 {
  font-size: 32px;
  margin-bottom: 14px;
}

.evo-card-product p {
  font-size: 18px;
  margin-bottom: 22px;
}

.evo-price {
  font-size: 17px;
}

.evo-price strong {
  font-size: 32px;
}

.evo-card-cta {
  font-size: 17px;
  margin-top: 22px;
}

.evo-tag {
  font-size: 14px;
  padding: 7px 18px;
}

.evo-promo {
  font-size: 16px;
  padding: 12px 20px;
}

/* AVANTAGES */
.evo-advantage-icon {
  font-size: 48px;
  margin-bottom: 22px;
}

.evo-advantage-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.evo-advantage-card p {
  font-size: 16px;
}

/* TESTIMONIALS */
.evo-testimonial-card p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.evo-testimonial-footer strong {
  font-size: 18px;
}

.evo-testimonial-footer span {
  font-size: 15px;
}

/* FAQ */
.evo-faq-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.evo-faq-item p {
  font-size: 17px;
  line-height: 1.65;
}

/* CTA FINAL */
.evo-cta-hp h2 {
  font-size: clamp(46px, 6.5vw, 72px);
  margin-bottom: 25px;
}

.evo-cta-hp > .evo-cta-inner > p {
  font-size: 22px;
  margin-bottom: 45px;
}

/* BUTTONS */
.evo-btn-main {
  font-size: 17px;
  padding: 20px 40px;
}

.evo-btn-lg {
  font-size: 19px;
  padding: 22px 46px;
}

.evo-btn-ghost {
  font-size: 17px;
  padding: 20px 40px;
}

.evo-btn-secondary {
  font-size: 17px;
  padding: 18px 36px;
}

.evo-btn-outline {
  font-size: 17px;
  padding: 20px 40px;
}

.evo-btn-text {
  font-size: 18px;
}

/* SOCIAL */
.evo-social-hp a {
  font-size: 16px;
  padding: 16px 30px;
}

/* RESPONSIVE - Ajustements mobile */
@media (max-width: 768px) {
  .evo-badge-light {
    font-size: 14px;
    padding: 12px 22px;
  }
  
  .evo-trust-inner span {
    font-size: 15px;
  }
  
  .evo-flow-content > p {
    font-size: 18px;
  }
  
  .evo-stat span {
    font-size: 48px;
  }
  
  .evo-checklist li {
    font-size: 17px;
  }
  
  .evo-card-featured h3 {
    font-size: 32px;
  }
  
  .evo-card-featured p {
    font-size: 18px;
  }
  
  .evo-card-featured .evo-price strong {
    font-size: 30px;
  }
  
  .evo-card-product h3 {
    font-size: 26px;
  }
  
  .evo-testimonial-card p {
    font-size: 17px;
  }
  
  .evo-faq-item h3 {
    font-size: 18px;
  }
  
  .evo-faq-item p {
    font-size: 15px;
  }
  
  .evo-advantage-card h3 {
    font-size: 18px;
  }
  
  .evo-advantage-card p {
    font-size: 15px;
  }
}

/* ============================================
   LARGEURS V6g - 80% jusqu'à 1600px, hero 1800px
   ============================================ */

:root {
  --evo-container: 1600px;
  --evo-hero-width: 1800px;
}

/* HERO - 1800px max */
.evo-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 30px;
  width: 85%;
  max-width: var(--evo-hero-width);
  margin: 0 auto;
}

/* TRUST BAR */
.evo-trust-inner {
  width: 80%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* SECTIONS - 80% jusqu'à 1600px */
.evo-flow-block {
  width: 80%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-products-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 80%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-video-wrapper {
  width: 80%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-advantages {
  width: 80%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-testimonials-hp {
  width: 80%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-mosaic {
  width: 80%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.evo-faq-hp {
  width: 80%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.evo-section-head {
  width: 80%;
  max-width: 900px;
  margin: 0 auto 70px;
}

.evo-cta-inner {
  width: 80%;
  max-width: 750px;
  margin: 0 auto;
}

/* RESPONSIVE - Sur tablette et mobile, 100% avec padding */
@media (max-width: 1024px) {
  .evo-hero-content,
  .evo-trust-inner,
  .evo-flow-block,
  .evo-products-stack,
  .evo-video-wrapper,
  .evo-advantages,
  .evo-testimonials-hp,
  .evo-mosaic,
  .evo-faq-hp,
  .evo-section-head,
  .evo-cta-inner {
    width: 100%;
  }
}

/* ============================================
   V6h - Titres x2, liserés orange, espaces /2
   ============================================ */

/* ESPACES RÉDUITS DE MOITIÉ */
.evo-section-hp {
  padding: 50px 40px;
}

.evo-video-section {
  padding: 50px 40px;
}

.evo-cta-hp {
  padding: 60px 40px;
}

.evo-section-head {
  margin-bottom: 35px;
}

.evo-section-cta {
  margin-top: 30px;
}

.evo-flow-block {
  gap: 60px;
}

.evo-video-wrapper {
  gap: 50px;
}

/* TITRES DEUX FOIS PLUS GROS */
.evo-hero-content h1 {
  font-size: clamp(72px, 12vw, 140px);
  line-height: 1;
  margin-bottom: 40px;
}

.evo-hero-content > p {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 50px;
}

.evo-section-hp h2,
.evo-video-section h2 {
  font-size: clamp(52px, 8vw, 100px);
  line-height: 1.05;
}

.evo-cta-hp h2 {
  font-size: clamp(60px, 10vw, 120px);
  line-height: 1;
  margin-bottom: 30px;
}

.evo-cta-hp > .evo-cta-inner > p {
  font-size: 24px;
  margin-bottom: 40px;
}

/* LISERÉS ORANGE SUR LES CARDS */
.evo-card-featured {
  border-top: 5px solid var(--evo-orange);
}

.evo-card-product {
  border-top: 5px solid var(--evo-orange);
}

.evo-advantage-card {
  border-top: 4px solid var(--evo-orange);
}

.evo-testimonial-card {
  border-top: 4px solid var(--evo-orange);
}

.evo-faq-item {
  border-top: 4px solid var(--evo-orange);
}

/* Ajuster les border-radius pour le liseré */
.evo-card-featured,
.evo-card-product {
  border-radius: 0 0 24px 24px;
}

.evo-advantage-card,
.evo-testimonial-card {
  border-radius: 0 0 20px 20px;
}

.evo-faq-item {
  border-radius: 0 0 18px 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .evo-section-hp,
  .evo-video-section {
    padding: 40px 30px;
  }
  
  .evo-cta-hp {
    padding: 50px 30px;
  }
  
  .evo-flow-block {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .evo-section-hp,
  .evo-video-section {
    padding: 35px 25px;
  }
  
  .evo-cta-hp {
    padding: 40px 25px;
  }
  
  .evo-hero-content h1 {
    font-size: clamp(48px, 10vw, 72px);
  }
  
  .evo-hero-content > p {
    font-size: clamp(20px, 4vw, 28px);
  }
  
  .evo-section-hp h2,
  .evo-video-section h2 {
    font-size: clamp(36px, 7vw, 52px);
  }
  
  .evo-cta-hp h2 {
    font-size: clamp(40px, 8vw, 60px);
  }
}

/* ============================================
   V6i - Liserés gauche style Evolve, H2 x2 forcé
   ============================================ */

/* RETIRER les liserés en haut des cards produits */
.evo-card-featured {
  border-top: none !important;
  border-radius: 24px !important;
}

.evo-card-product {
  border-top: none !important;
  border-radius: 24px !important;
}

/* LISERÉS GAUCHE style Evolve - seulement avantages, témoignages, FAQ */
.evo-advantage-card {
  border-top: none !important;
  border-left: 4px solid var(--evo-orange) !important;
  border-radius: 0 20px 20px 0 !important;
  padding-left: 28px;
}

.evo-testimonial-card {
  border-top: none !important;
  border-left: 4px solid var(--evo-orange) !important;
  border-radius: 0 20px 20px 0 !important;
  padding-left: 36px;
}

.evo-faq-item {
  border-top: none !important;
  border-left: 4px solid var(--evo-orange) !important;
  border-radius: 0 18px 18px 0 !important;
  padding-left: 28px;
}

/* H2 VRAIMENT DEUX FOIS PLUS GROS */
.evo-section-hp h2,
.evo-video-section h2,
.evo-video-text h2 {
  font-family: 'GeneralSans_bold', sans-serif !important;
  font-size: clamp(56px, 9vw, 110px) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.02em;
}

.evo-flow-content h2 {
  font-family: 'GeneralSans_bold', sans-serif !important;
  font-size: clamp(56px, 9vw, 110px) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.02em;
}

/* Texte body légèrement plus gros aussi */
.evo-flow-content > p {
  font-size: 24px !important;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .evo-section-hp h2,
  .evo-video-section h2,
  .evo-video-text h2,
  .evo-flow-content h2 {
    font-size: clamp(42px, 7vw, 70px) !important;
  }
}

@media (max-width: 768px) {
  .evo-section-hp h2,
  .evo-video-section h2,
  .evo-video-text h2,
  .evo-flow-content h2 {
    font-size: clamp(36px, 8vw, 52px) !important;
  }
  
  .evo-flow-content > p {
    font-size: 18px !important;
  }
  
  .evo-advantage-card,
  .evo-testimonial-card,
  .evo-faq-item {
    padding-left: 20px;
  }
}

/* ============================================
   V6j - Polices réduites, tailles équilibrées
   ============================================ */

/* HERO - tailles réduites */
.evo-hero-content h1 {
  font-size: clamp(42px, 6vw, 72px) !important;
  line-height: 1.1 !important;
  margin-bottom: 25px !important;
}

.evo-hero-content > p {
  font-size: clamp(18px, 2.2vw, 26px) !important;
  margin-bottom: 35px !important;
}

.evo-badge-light {
  font-size: 14px !important;
  padding: 10px 20px !important;
}

/* H2 SECTIONS - tailles raisonnables */
.evo-section-hp h2,
.evo-video-section h2,
.evo-video-text h2,
.evo-flow-content h2 {
  font-size: clamp(32px, 5vw, 56px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em !important;
}

/* CTA FINAL */
.evo-cta-hp h2 {
  font-size: clamp(36px, 5.5vw, 64px) !important;
  margin-bottom: 20px !important;
}

.evo-cta-hp > .evo-cta-inner > p {
  font-size: 18px !important;
  margin-bottom: 35px !important;
}

/* TEXTES BODY */
.evo-flow-content > p {
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.evo-video-text p {
  font-size: 17px !important;
}

/* TRUST BAR */
.evo-trust-inner span {
  font-size: 14px !important;
}

/* LABELS */
.evo-label {
  font-size: 13px !important;
  margin-bottom: 15px !important;
}

/* STATS */
.evo-stat span {
  font-size: 48px !important;
}

.evo-stat {
  font-size: 15px !important;
}

/* CHECKLIST */
.evo-checklist li {
  font-size: 16px !important;
  padding: 10px 0 10px 30px !important;
}

/* CARDS PRODUITS */
.evo-card-featured h3 {
  font-size: 32px !important;
}

.evo-card-featured p {
  font-size: 17px !important;
}

.evo-card-featured .evo-price strong {
  font-size: 28px !important;
}

.evo-card-featured .evo-card-cta {
  font-size: 16px !important;
}

.evo-card-product h3 {
  font-size: 26px !important;
}

.evo-card-product p {
  font-size: 15px !important;
}

.evo-price strong {
  font-size: 24px !important;
}

.evo-card-cta {
  font-size: 15px !important;
}

/* AVANTAGES */
.evo-advantage-icon {
  font-size: 36px !important;
  margin-bottom: 18px !important;
}

.evo-advantage-card h3 {
  font-size: 17px !important;
}

.evo-advantage-card p {
  font-size: 14px !important;
}

/* TESTIMONIALS */
.evo-testimonial-card p {
  font-size: 16px !important;
}

.evo-testimonial-footer strong {
  font-size: 15px !important;
}

.evo-testimonial-footer span {
  font-size: 13px !important;
}

/* FAQ */
.evo-faq-item h3 {
  font-size: 17px !important;
}

.evo-faq-item p {
  font-size: 15px !important;
}

/* BUTTONS */
.evo-btn-main {
  font-size: 15px !important;
  padding: 16px 32px !important;
}

.evo-btn-lg {
  font-size: 16px !important;
  padding: 18px 38px !important;
}

.evo-btn-ghost,
.evo-btn-secondary,
.evo-btn-outline {
  font-size: 15px !important;
  padding: 16px 32px !important;
}

.evo-btn-text {
  font-size: 15px !important;
}

/* SOCIAL */
.evo-social-hp a {
  font-size: 14px !important;
  padding: 12px 24px !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .evo-hero-content h1 {
    font-size: clamp(32px, 8vw, 48px) !important;
  }
  
  .evo-hero-content > p {
    font-size: clamp(16px, 4vw, 20px) !important;
  }
  
  .evo-section-hp h2,
  .evo-video-section h2,
  .evo-flow-content h2 {
    font-size: clamp(28px, 6vw, 38px) !important;
  }
  
  .evo-cta-hp h2 {
    font-size: clamp(30px, 7vw, 42px) !important;
  }
  
  .evo-stat span {
    font-size: 38px !important;
  }
  
  .evo-card-featured h3 {
    font-size: 26px !important;
  }
  
  .evo-card-product h3 {
    font-size: 22px !important;
  }
}

/* ============================================
   V6k - Polices augmentées équilibrées
   ============================================ */

/* HERO */
.evo-hero-content h1 {
  font-size: clamp(48px, 7vw, 82px) !important;
  line-height: 1.08 !important;
  margin-bottom: 30px !important;
}

.evo-hero-content > p {
  font-size: clamp(20px, 2.5vw, 30px) !important;
  margin-bottom: 40px !important;
}

.evo-badge-light {
  font-size: 16px !important;
  padding: 12px 24px !important;
}

/* H2 SECTIONS */
.evo-section-hp h2,
.evo-video-section h2,
.evo-video-text h2,
.evo-flow-content h2 {
  font-size: clamp(36px, 5.5vw, 64px) !important;
  line-height: 1.12 !important;
}

/* CTA FINAL */
.evo-cta-hp h2 {
  font-size: clamp(42px, 6vw, 76px) !important;
  margin-bottom: 25px !important;
}

.evo-cta-hp > .evo-cta-inner > p {
  font-size: 22px !important;
  margin-bottom: 40px !important;
}

/* TEXTES BODY */
.evo-flow-content > p {
  font-size: 21px !important;
  line-height: 1.7 !important;
}

.evo-video-text p {
  font-size: 20px !important;
}

/* TRUST BAR */
.evo-trust-inner span {
  font-size: 16px !important;
}

/* LABELS */
.evo-label {
  font-size: 15px !important;
  margin-bottom: 18px !important;
}

/* STATS */
.evo-stat span {
  font-size: 56px !important;
}

.evo-stat {
  font-size: 17px !important;
}

/* CHECKLIST */
.evo-checklist li {
  font-size: 19px !important;
  padding: 12px 0 12px 35px !important;
}

.evo-checklist li::before {
  font-size: 19px !important;
}

/* CARDS PRODUITS */
.evo-card-featured h3 {
  font-size: 38px !important;
}

.evo-card-featured p {
  font-size: 20px !important;
  margin-bottom: 25px !important;
}

.evo-card-featured .evo-price {
  font-size: 18px !important;
}

.evo-card-featured .evo-price strong {
  font-size: 34px !important;
}

.evo-card-featured .evo-card-cta {
  font-size: 18px !important;
}

.evo-card-product h3 {
  font-size: 30px !important;
}

.evo-card-product p {
  font-size: 17px !important;
  margin-bottom: 20px !important;
}

.evo-price {
  font-size: 16px !important;
}

.evo-price strong {
  font-size: 28px !important;
}

.evo-card-cta {
  font-size: 17px !important;
  margin-top: 20px !important;
}

.evo-tag {
  font-size: 14px !important;
  padding: 8px 18px !important;
}

.evo-promo {
  font-size: 16px !important;
  padding: 12px 20px !important;
}

/* AVANTAGES */
.evo-advantage-icon {
  font-size: 44px !important;
  margin-bottom: 20px !important;
}

.evo-advantage-card h3 {
  font-size: 19px !important;
  margin-bottom: 12px !important;
}

.evo-advantage-card p {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* TESTIMONIALS */
.evo-testimonial-card p {
  font-size: 19px !important;
  line-height: 1.7 !important;
  margin-bottom: 28px !important;
}

.evo-testimonial-footer strong {
  font-size: 17px !important;
}

.evo-testimonial-footer span {
  font-size: 15px !important;
}

.evo-avatar {
  width: 54px !important;
  height: 54px !important;
  font-size: 16px !important;
}

/* FAQ */
.evo-faq-item h3 {
  font-size: 19px !important;
  margin-bottom: 14px !important;
}

.evo-faq-item p {
  font-size: 17px !important;
  line-height: 1.65 !important;
}

/* BUTTONS */
.evo-btn-main {
  font-size: 17px !important;
  padding: 18px 36px !important;
}

.evo-btn-lg {
  font-size: 18px !important;
  padding: 20px 42px !important;
}

.evo-btn-ghost,
.evo-btn-secondary,
.evo-btn-outline {
  font-size: 17px !important;
  padding: 18px 36px !important;
}

.evo-btn-text {
  font-size: 17px !important;
}

/* SOCIAL */
.evo-social-hp a {
  font-size: 16px !important;
  padding: 14px 28px !important;
}

/* SECTION HEAD */
.evo-section-head p {
  font-size: 19px !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .evo-hero-content h1 {
    font-size: clamp(36px, 9vw, 52px) !important;
  }
  
  .evo-hero-content > p {
    font-size: clamp(17px, 4.5vw, 22px) !important;
  }
  
  .evo-badge-light {
    font-size: 14px !important;
  }
  
  .evo-section-hp h2,
  .evo-video-section h2,
  .evo-flow-content h2 {
    font-size: clamp(30px, 7vw, 42px) !important;
  }
  
  .evo-cta-hp h2 {
    font-size: clamp(34px, 8vw, 48px) !important;
  }
  
  .evo-flow-content > p {
    font-size: 18px !important;
  }
  
  .evo-stat span {
    font-size: 44px !important;
  }
  
  .evo-card-featured h3 {
    font-size: 30px !important;
  }
  
  .evo-card-featured p {
    font-size: 17px !important;
  }
  
  .evo-card-product h3 {
    font-size: 24px !important;
  }
  
  .evo-testimonial-card p {
    font-size: 17px !important;
  }
  
  .evo-checklist li {
    font-size: 17px !important;
  }
}

/* ============================================
   V6l - Liseré haut style Evolve, H2 réduits, H1 blanc
   ============================================ */

/* H1 HERO EN BLANC (pas orange) */
.evo-hero-content h1 {
  color: #fff !important;
}

.evo-hero-content h1 strong {
  color: #fff !important;
  text-shadow: 
    0 2px 10px rgba(0,0,0,0.5),
    0 4px 30px rgba(0,0,0,0.4),
    0 8px 60px rgba(0,0,0,0.3) !important;
}

/* H2 RÉDUITS */
.evo-section-hp h2,
.evo-video-section h2,
.evo-video-text h2,
.evo-flow-content h2 {
  font-size: clamp(32px, 4.5vw, 52px) !important;
  line-height: 1.15 !important;
}

.evo-cta-hp h2 {
  font-size: clamp(36px, 5vw, 60px) !important;
}

/* LISERÉS EN HAUT - style Evolve moderne */
.evo-advantage-card {
  border-left: none !important;
  border-top: 3px solid var(--evo-orange) !important;
  border-radius: 0 0 20px 20px !important;
  padding-left: 30px !important;
  padding-top: 28px !important;
}

.evo-testimonial-card {
  border-left: none !important;
  border-top: 3px solid var(--evo-orange) !important;
  border-radius: 0 0 20px 20px !important;
  padding-left: 40px !important;
  padding-top: 35px !important;
}

.evo-faq-item {
  border-left: none !important;
  border-top: 3px solid var(--evo-orange) !important;
  border-radius: 0 0 18px 18px !important;
  padding-left: 32px !important;
  padding-top: 28px !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .evo-section-hp h2,
  .evo-video-section h2,
  .evo-flow-content h2 {
    font-size: clamp(26px, 6vw, 36px) !important;
  }
  
  .evo-cta-hp h2 {
    font-size: clamp(30px, 7vw, 42px) !important;
  }
  
  .evo-advantage-card,
  .evo-testimonial-card,
  .evo-faq-item {
    padding-left: 25px !important;
    padding-top: 22px !important;
  }
}

/* ============================================
   V6m - Liserés avec coins arrondis partout
   ============================================ */

/* LISERÉS EN HAUT avec coins arrondis */
.evo-advantage-card {
  border-left: none !important;
  border-top: 4px solid var(--evo-orange) !important;
  border-radius: 20px !important;
  padding: 30px !important;
}

.evo-testimonial-card {
  border-left: none !important;
  border-top: 4px solid var(--evo-orange) !important;
  border-radius: 20px !important;
  padding: 40px !important;
}

.evo-faq-item {
  border-left: none !important;
  border-top: 4px solid var(--evo-orange) !important;
  border-radius: 18px !important;
  padding: 32px !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .evo-advantage-card {
    padding: 22px !important;
  }
  
  .evo-testimonial-card {
    padding: 28px !important;
  }
  
  .evo-faq-item {
    padding: 24px !important;
  }
}

/* ============================================
   HIÉRARCHIE BOUTONS V6m
   Primary > Secondary > Card > Link
   ============================================ */

/* RESET des anciens styles */
.evo-btn-main,
.evo-btn-ghost,
.evo-btn-outline,
.evo-btn-text,
.evo-card-cta {
  all: unset;
}

/* ========== PRIMARY - Orange plein ========== */
.evo-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: var(--evo-orange);
  color: #fff !important;
  text-decoration: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  border: 2px solid var(--evo-orange);
  cursor: pointer;
  transition: all 0.3s ease;
}

.evo-btn-primary:hover {
  background: var(--evo-orange-soft);
  border-color: var(--evo-orange-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255,81,28,0.3);
}

/* Large variant */
.evo-btn-primary.evo-btn-lg {
  padding: 22px 46px;
  font-size: 19px;
}

/* ========== SECONDARY - Fond sombre ========== */
.evo-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: var(--evo-text);
  color: #fff !important;
  text-decoration: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 500;
  border: 2px solid var(--evo-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.evo-btn-secondary:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
}

/* ========== SECONDARY LIGHT - Pour hero (transparent) ========== */
.evo-btn-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: rgba(255,255,255,0.15);
  color: #fff !important;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.evo-btn-secondary-light:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

/* ========== CARD BUTTON - Bouton sur cards produits ========== */
.evo-btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--evo-orange) !important;
  text-decoration: none;
  border: 2px solid var(--evo-orange);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.evo-btn-card:hover,
.evo-card-featured:hover .evo-btn-card,
.evo-card-product:hover .evo-btn-card {
  background: var(--evo-orange);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Featured card - bouton plus grand */
.evo-card-featured .evo-btn-card {
  padding: 16px 32px;
  font-size: 17px;
}

/* ========== LINK - Texte simple ========== */
.evo-btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--evo-orange) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.evo-btn-link:hover {
  color: var(--evo-orange-soft) !important;
  text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .evo-btn-primary,
  .evo-btn-secondary,
  .evo-btn-secondary-light {
    padding: 16px 32px;
    font-size: 16px;
  }
  
  .evo-btn-primary.evo-btn-lg {
    padding: 18px 38px;
    font-size: 17px;
  }
  
  .evo-btn-card {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .evo-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .evo-hero-actions .evo-btn-primary,
  .evo-hero-actions .evo-btn-secondary-light {
    width: 100%;
    max-width: 300px;
  }
  
  .evo-cta-actions {
    flex-direction: column;
  }
  
  .evo-cta-actions .evo-btn-primary,
  .evo-cta-actions .evo-btn-secondary {
    width: 100%;
  }
}

/* ============================================
   V6v - Pas de fond blanc pur, teintes légères
   ============================================ */

/* TEINTES */
:root {
  --evo-bg-warm: #F5F0EB;
  --evo-bg-soft: #EBE6E1;
  --evo-bg-light: #FAFAFA;
  --evo-bg-cream: #FAF9F7;    /* Crème très léger au lieu de blanc */
}

/* SECTIONS padding */
.evo-section-hp {
  padding: 80px 40px !important;
  position: relative;
}

.evo-video-section {
  padding: 80px 40px !important;
}

/* SUPPRIMER les lignes orange */
.evo-section-hp::before {
  display: none !important;
}

/* TRUST BAR */
.evo-trust-hp {
  background: var(--evo-bg-soft) !important;
  padding: 28px 30px !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* INTRO - fond warm */
.evo-section-hp.evo-bg-warm {
  background: var(--evo-bg-warm) !important;
}

/* PRODUITS - fond crème (pas blanc pur) */
.evo-section-hp:not(.evo-bg-warm):not(.evo-bg-soft) {
  background: var(--evo-bg-cream) !important;
}

/* SAV - fond soft */
.evo-section-hp.evo-bg-soft {
  background: var(--evo-bg-soft) !important;
}

/* VIDÉO - fond crème (pas blanc pur) */
.evo-video-section {
  background: var(--evo-bg-cream) !important;
}

/* FAQ - fond light */
.evo-section-hp[itemscope] {
  background: var(--evo-bg-light) !important;
}

/* CTA FINAL */
.evo-cta-hp {
  background: linear-gradient(180deg, var(--evo-bg-warm) 0%, #EDE5DC 100%) !important;
  padding: 100px 40px !important;
}

/* MASQUER carrousel Google sur homepage */
body#index #googleReviewsContainer,
body#index #googleReviewsGlobal,
body.page-index #googleReviewsContainer,
body.page-index #googleReviewsGlobal {
  display: none !important;
}

/* MOSAÏQUE */
.evo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 15px;
  width: 80% !important;
  max-width: var(--evo-container) !important;
  margin: 0 auto 50px !important;
}

.evo-mosaic-item {
  border-radius: 16px;
  overflow: hidden;
  background: var(--evo-bg-soft);
}

.evo-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.evo-mosaic-item:hover img {
  transform: scale(1.08);
}

.evo-mosaic-item.evo-mosaic-tall {
  grid-column: 1;
  grid-row: 1 / 3;
}

.evo-mosaic-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.evo-mosaic-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.evo-mosaic-item.evo-mosaic-wide {
  grid-column: 2 / 4;
  grid-row: 2;
}

@media (max-width: 1024px) {
  .evo-section-hp,
  .evo-video-section {
    padding: 60px 30px !important;
  }
  
  .evo-cta-hp {
    padding: 70px 30px !important;
  }
  
  .evo-mosaic {
    width: 100% !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
  }
  
  .evo-mosaic-item.evo-mosaic-tall {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  
  .evo-mosaic-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  
  .evo-mosaic-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  
  .evo-mosaic-item.evo-mosaic-wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }
}

@media (max-width: 768px) {
  .evo-section-hp,
  .evo-video-section {
    padding: 50px 25px !important;
  }
  
  .evo-cta-hp {
    padding: 60px 25px !important;
  }
  
  .evo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 150px);
    gap: 10px;
  }
  
  .evo-mosaic-item.evo-mosaic-tall,
  .evo-mosaic-item.evo-mosaic-wide,
  .evo-mosaic-item:nth-child(2),
  .evo-mosaic-item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* === FIN DU CSS V6v === */


/* === SVG ICONS AVANTAGES === */
.evo-advantage-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--evo-orange, #FF511C);
  stroke-width: 1.5;
}
@media (max-width: 768px) {
  .evo-advantage-icon svg {
    width: 40px;
    height: 40px;
  }
}


/* ============================================
   V6x - Corrections grands écrans + scroll
   ============================================ */

/* Supprimer le scroll hint sur tous les écrans */
.evo-scroll-hint {
  display: none !important;
}

/* Corrections pour très grands écrans (TV, moniteurs 4K) */
@media (min-width: 2000px) {
  .evo-hero-full {
    height: calc(100vh - 110px);
    min-height: 550px;
    max-height: 1000px;
  }
  
  .evo-hero-content h1 {
    font-size: clamp(48px, 3.5vw, 64px) !important;
    margin-bottom: 25px !important;
  }
  
  .evo-hero-content > p {
    font-size: clamp(18px, 1.3vw, 24px) !important;
    margin-bottom: 35px !important;
  }
  
  .evo-badge-light {
    font-size: 14px !important;
    padding: 10px 20px !important;
    margin-bottom: 28px !important;
  }
  
  .evo-hero-actions {
    gap: 15px;
  }
  
  .evo-btn-primary,
  .evo-btn-secondary-light {
    padding: 14px 28px !important;
    font-size: 16px !important;
  }
}

/* Écrans ultra-larges (TV 4K+) */
@media (min-width: 3000px) {
  .evo-hero-content h1 {
    font-size: clamp(48px, 2.5vw, 58px) !important;
  }
  
  .evo-hero-content > p {
    font-size: clamp(18px, 1vw, 22px) !important;
  }
}
/* ============================================
   PAGE PRODUIT EVOSPIRIT - CSS COMPLET
   À ajouter à custom_evospirit.css
   ============================================ */

/* === VARIABLES (déjà définies dans homepage, rappel) === */
/*
:root {
  --evo-orange: #FF511C;
  --evo-orange-hover: #D53A0B;
  --evo-dark: #261104;
  --evo-bg-warm: #F5F0EB;
  --evo-bg-soft: #EBE6E1;
  --evo-bg-cream: #FAF9F7;
  --evo-bg-light: #FAFAFA;
  --evo-white: #FFFFFF;
  --evo-radius: 12px;
  --evo-radius-lg: 20px;
  --evo-shadow: 0 4px 20px rgba(38,17,4,0.08);
  --evo-shadow-lg: 0 10px 40px rgba(38,17,4,0.12);
}
*/

/* === CONTAINER PAGE PRODUIT === */
.evo-product-page {
  width: 100%;
  overflow-x: hidden;
  color: #261104;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
}

.evo-product-page .evo-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HERO PRODUIT === */
.evo-product-page .evo-hero-product {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.evo-product-page .evo-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.evo-product-page .evo-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evo-product-page .evo-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(38,17,4,0.3) 0%, rgba(38,17,4,0.7) 100%);
}

.evo-product-page .evo-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  max-width: 800px;
}

.evo-product-page .evo-badge-light {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
}

.evo-product-page .evo-hero-content h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.evo-product-page .evo-hero-content h1 strong {
  color: #FF511C;
}

.evo-product-page .evo-hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

/* === SECTION STATS === */
.evo-product-page .evo-stats-section {
  
  background: #FAF9F7;
  padding: 50px 20px;
}

.evo-product-page .evo-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.evo-product-page .evo-stat-item {
  text-align: center;
  color: #261104;
}

.evo-product-page .evo-stat-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(0);
  opacity: 0.9;
}

.evo-product-page .evo-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #FF511C;
  margin-bottom: 4px;
}

.evo-product-page .evo-stat-label {
  font-size: 14px;
  color: #261104;
}

/* === SECTIONS CONTENU (alternées) === */
.evo-product-page .evo-content-section {
  padding: 80px 20px;
}

.evo-product-page .evo-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.evo-product-page .evo-content-grid--reverse .evo-content-media {
  order: 1;
}

.evo-product-page .evo-content-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(38,17,4,0.12);
}

.evo-product-page .evo-content-text {
  max-width: 500px;
}

.evo-product-page .evo-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FF511C;
  margin-bottom: 12px;
}

.evo-product-page .evo-content-text h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #261104;
}

.evo-product-page .evo-content-text h2 strong {
  color: #FF511C;
}

.evo-product-page .evo-content-text p {
  font-size: 17px;
  color: #555;
  margin-bottom: 24px;
}

/* Checklist (réutilisée de homepage) */
.evo-product-page .evo-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.evo-product-page .evo-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.evo-product-page .evo-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF511C;
  font-weight: 700;
}

/* === SPECS INLINE === */
.evo-product-page .evo-specs-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 24px;
}

.evo-product-page .evo-spec-item {
  text-align: center;
  padding: 16px 8px;
  background: rgba(255,81,28,0.08);
  border-radius: 12px;
}

.evo-product-page .evo-spec-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #FF511C;
  margin-bottom: 4px;
}

.evo-product-page .evo-spec-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
}

/* === MODES DE CONDUITE === */
.evo-product-page .evo-modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.evo-product-page .evo-mode-item {
  text-align: center;
  padding: 16px 8px;
  background: #f5f5f5;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.evo-product-page .evo-mode-item--active {
  background: rgba(255,81,28,0.1);
  border-color: #FF511C;
}

.evo-product-page .evo-mode-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #261104;
  margin-bottom: 2px;
}

.evo-product-page .evo-mode-item--active .evo-mode-name {
  color: #FF511C;
}

.evo-product-page .evo-mode-desc {
  font-size: 12px;
  color: #888;
}

/* === SECTION ROUES === */
.evo-product-page .evo-wheels-section {
  padding: 80px 20px;
}

.evo-product-page .evo-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.evo-product-page .evo-section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #261104;
  margin-bottom: 12px;
}

.evo-product-page .evo-section-head h2 strong {
  color: #FF511C;
}

.evo-product-page .evo-section-head p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.evo-product-page .evo-wheels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.evo-product-page .evo-wheel-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(38,17,4,0.08);
  transition: all 0.3s ease;
}

.evo-product-page .evo-wheel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(38,17,4,0.15);
}

.evo-product-page .evo-wheel-card--featured {
  border: 2px solid #FF511C;
}

.evo-product-page .evo-wheel-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #FF511C;
  border-radius: 20px;
}

.evo-product-page .evo-wheel-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
}

.evo-product-page .evo-wheel-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #261104;
  margin-bottom: 8px;
}

.evo-product-page .evo-wheel-card p {
  font-size: 14px;
  color: #666;
}

/* Roues mini */
.evo-product-page .evo-wheels-mini {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.evo-product-page .evo-wheel-mini {
  text-align: center;
  padding: 15px 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(38,17,4,0.05);
}

.evo-product-page .evo-wheel-mini img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.evo-product-page .evo-wheel-mini span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #555;
}

/* === SECTION REVIEWS === */
.evo-product-page .evo-reviews-section {
  padding: 80px 20px;
  background: #FAF9F7;
}

.evo-product-page .evo-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.evo-product-page .evo-review-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(38,17,4,0.08);
}

.evo-product-page .evo-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.evo-product-page .evo-review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.evo-product-page .evo-review-header strong {
  display: block;
  font-size: 16px;
  color: #261104;
}

.evo-product-page .evo-review-header span {
  font-size: 13px;
  color: #888;
}

.evo-product-page .evo-review-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.evo-product-page .evo-review-card p strong {
  color: #261104;
}

.evo-product-page .evo-review-stars {
  color: #FFB800;
  font-size: 18px;
  letter-spacing: 2px;
}

/* === SECTION FAQ === */
.evo-product-page .evo-faq-section {
  padding: 80px 20px;
}

.evo-product-page .evo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.evo-product-page .evo-faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 15px rgba(38,17,4,0.06);
}

.evo-product-page .evo-faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #261104;
  margin-bottom: 12px;
  line-height: 1.4;
}

.evo-product-page .evo-faq-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.evo-product-page .evo-faq-item p strong {
  color: #261104;
}

/* === GALERIE CAROUSEL === */
.evo-product-page .evo-gallery-section {
  padding: 80px 0;
  overflow: hidden;
}

.evo-product-page .evo-gallery-section .evo-section-head {
  padding: 0 20px;
  margin-bottom: 40px;
}

.evo-product-page .evo-carousel {
  position: relative;
  padding: 0 60px;
}

.evo-product-page .evo-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(38,17,4,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.evo-product-page .evo-carousel-btn:hover {
  background: #FF511C;
  color: #fff;
}

.evo-product-page .evo-carousel-btn--prev {
  left: 10px;
}

.evo-product-page .evo-carousel-btn--next {
  right: 10px;
}

.evo-product-page .evo-gallery-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 20px 0;
}

.evo-product-page .evo-gallery-track::-webkit-scrollbar {
  display: none;
}

.evo-product-page .evo-gallery-item {
  flex: 0 0 350px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  scroll-snap-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  -webkit-clip-path: inset(0 round 12px);
  clip-path: inset(0 round 12px);
}

.evo-product-page .evo-gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
}

/* === BACKGROUNDS (réutilisés homepage) === */
.evo-product-page .evo-bg-warm {
  background: #F5F0EB;
}

.evo-product-page .evo-bg-soft {
  background: #EBE6E1;
}

.evo-product-page .evo-bg-cream {
  background: #FAF9F7;
}

/* ============================================
   RESPONSIVE MOBILE
   ============================================ */

@media (max-width: 991px) {
  .evo-product-page .evo-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .evo-product-page .evo-content-grid--reverse .evo-content-media {
    order: 0;
  }
  
  .evo-product-page .evo-content-text {
    max-width: 100%;
  }
  
  .evo-product-page .evo-wheels-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .evo-product-page .evo-wheels-mini {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .evo-product-page .evo-reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .evo-product-page .evo-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .evo-product-page .evo-hero-product {
    min-height: 60vh;
  }
  
  .evo-product-page .evo-hero-content {
    padding: 30px 15px;
  }
  
  .evo-product-page .evo-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .evo-product-page .evo-stat-item img {
    width: 50px;
    height: 50px;
  }
  
  .evo-product-page .evo-stat-value {
    font-size: 22px;
  }
  
  .evo-product-page .evo-content-section {
    padding: 50px 15px;
  }
  
  .evo-product-page .evo-specs-inline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .evo-product-page .evo-modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .evo-product-page .evo-wheels-section,
  .evo-product-page .evo-reviews-section,
  .evo-product-page .evo-faq-section,
  .evo-product-page .evo-gallery-section {
    padding: 50px 15px;
  }
  
  .evo-product-page .evo-carousel {
    padding: 0 50px;
  }
  
  .evo-product-page .evo-carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .evo-product-page .evo-gallery-item {
    flex: 0 0 250px;
  }
}

@media (max-width: 480px) {
  .evo-product-page .evo-wheels-mini {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .evo-product-page .evo-carousel {
    padding: 0 40px;
  }
  
  .evo-product-page .evo-carousel-btn--prev {
    left: 5px;
  }
  
  .evo-product-page .evo-carousel-btn--next {
    right: 5px;
  }
}

/* === BOUTON PLAY HERO === */
.evo-product-page .evo-play-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.evo-product-page .evo-play-btn-hero:hover {
  background: #FF511C;
  border-color: #FF511C;
  transform: scale(1.05);
}

.evo-product-page .evo-play-btn-hero svg {
  width: 24px;
  height: 24px;
}

/* === MODAL VIDÉO === */
.evo-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.evo-video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.evo-video-modal-content iframe {
  width: 100%;
  height: 100%;
}

.evo-video-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.evo-video-close:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .evo-product-page .evo-play-btn-hero {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .evo-video-close {
    top: -40px;
    font-size: 30px;
  }
}

/* === FIX BOUTON PLAY HERO - Plus compact === */
.evo-product-page .evo-play-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.evo-product-page .evo-play-btn-hero:hover {
  background: #FF511C;
  border-color: #FF511C;
  transform: scale(1.05);
}

.evo-product-page .evo-play-btn-hero svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .evo-product-page .evo-play-btn-hero {
    padding: 8px 16px;
    font-size: 13px;
    gap: 6px;
  }
  
  .evo-product-page .evo-play-btn-hero svg {
    width: 16px;
    height: 16px;
  }
}

/* === BOUTON PLAY - Ultra compact === */
.evo-product-page .evo-play-btn-hero {
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 25px;
}

.evo-product-page .evo-play-btn-hero svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .evo-product-page .evo-play-btn-hero {
    padding: 6px 12px;
    font-size: 12px;
  }
  .evo-product-page .evo-play-btn-hero svg {
    width: 12px;
    height: 12px;
  }
}

/* === STATS - Polices plus grasses et grandes === */
.evo-product-page .evo-stat-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.evo-product-page .evo-stat-label {
  font-size: 16px;
  font-weight: 600;
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.evo-product-page .evo-stat-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .evo-product-page .evo-stat-value {
    font-size: 28px;
  }
  .evo-product-page .evo-stat-label {
    font-size: 13px;
  }
  .evo-product-page .evo-stat-item img {
    width: 55px;
    height: 55px;
  }
}

/* === BOUTON PLAY - FORCE COMPACT === */
.evo-product-page .evo-play-btn-hero {
  gap: 6px !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  border-radius: 25px !important;
  margin-top: 20px !important;
  border-width: 1px !important;
}

.evo-product-page .evo-play-btn-hero svg {
  width: 14px !important;
  height: 14px !important;
}

@media (max-width: 768px) {
  .evo-product-page .evo-play-btn-hero {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
  .evo-product-page .evo-play-btn-hero svg {
    width: 12px !important;
    height: 12px !important;
  }
}

/* === BOUTON PLAY - FORCE WIDTH AUTO === */
.evo-product-page .evo-play-btn-hero {
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}

/* === FIX HERO CONTENT - RESET FLEX HOMEPAGE === */
.evo-product-page .evo-hero-content {
  display: block !important;
  flex-direction: unset !important;
}

/* === FIX BOUTON - ALIGN CENTER === */
.evo-product-page .evo-play-btn-hero {
  display: inline-flex !important;
  width: auto !important;
  max-width: fit-content !important;
  align-self: center !important;
}

/* === GRILLE ROUES 3 COLONNES === */
.evo-product-page .evo-wheels-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 1000px !important;
}

@media (max-width: 900px) {
  .evo-product-page .evo-wheels-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 600px !important;
  }
}

@media (max-width: 600px) {
  .evo-product-page .evo-wheels-grid {
    grid-template-columns: 1fr !important;
    max-width: 350px !important;
  }
}

/* === ROUES MINI - 6 ITEMS CENTRÉS === */
.evo-product-page .evo-wheels-mini {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 20px !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

.evo-product-page .evo-wheel-mini {
  flex: 0 0 auto !important;
  width: 120px !important;
}

@media (max-width: 768px) {
  .evo-product-page .evo-wheels-mini {
    gap: 15px !important;
  }
  .evo-product-page .evo-wheel-mini {
    width: 100px !important;
  }
}

/* === SECTION ROUES - NOUVEAU DESIGN === */

/* Reset des anciennes règles */
.evo-product-page .evo-wheels-grid,
.evo-product-page .evo-wheels-mini {
  display: none !important;
}

/* 3 Roues principales */
.evo-product-page .evo-wheels-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.evo-product-page .evo-wheels-main .evo-wheel-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(38,17,4,0.08);
  transition: all 0.3s ease;
}

.evo-product-page .evo-wheels-main .evo-wheel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(38,17,4,0.12);
}

.evo-product-page .evo-wheels-main .evo-wheel-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 15px;
}

.evo-product-page .evo-wheels-main .evo-wheel-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #261104;
  margin-bottom: 8px;
}

.evo-product-page .evo-wheels-main .evo-wheel-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* Zone détail roue sélectionnée */
.evo-product-page .evo-wheel-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin-bottom: 0;
}

.evo-product-page .evo-wheel-detail.active {
  max-height: 300px;
  opacity: 1;
  margin-bottom: 30px;
}

.evo-product-page .evo-wheel-detail-content {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #fff 0%, #f8f6f5 100%);
  border-radius: 20px;
  padding: 30px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(255,81,28,0.15);
  border: 2px solid #FF511C;
  position: relative;
}

.evo-product-page .evo-wheel-detail-img {
  flex-shrink: 0;
}

.evo-product-page .evo-wheel-detail-img img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  animation: wheelPop 0.4s ease;
}

@keyframes wheelPop {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.evo-product-page .evo-wheel-detail-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #FF511C;
  margin-bottom: 10px;
}

.evo-product-page .evo-wheel-detail-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.evo-product-page .evo-wheel-detail-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: color 0.2s;
}

.evo-product-page .evo-wheel-detail-close:hover {
  color: #FF511C;
}

/* 6 Roues secondaires - sélectionnables */
.evo-product-page .evo-wheels-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.evo-product-page .evo-wheel-select {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 15px;
  width: 120px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.evo-product-page .evo-wheel-select:hover {
  border-color: #FF511C;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,81,28,0.15);
}

.evo-product-page .evo-wheel-select.active {
  border-color: #FF511C;
  background: #fff8f6;
}

.evo-product-page .evo-wheel-select img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.evo-product-page .evo-wheel-select:hover img {
  transform: scale(1.1);
}

.evo-product-page .evo-wheel-select span {
  font-size: 13px;
  font-weight: 600;
  color: #261104;
  text-align: center;
}

/* SEO text - caché visuellement mais accessible */
.evo-product-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .evo-product-page .evo-wheels-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
  }
  
  .evo-product-page .evo-wheels-main .evo-wheel-card:last-child {
    grid-column: span 2;
    max-width: 250px;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .evo-product-page .evo-wheels-main {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  
  .evo-product-page .evo-wheels-main .evo-wheel-card:last-child {
    grid-column: span 1;
    max-width: none;
  }
  
  .evo-product-page .evo-wheels-main .evo-wheel-card img {
    width: 120px;
    height: 120px;
  }
  
  .evo-product-page .evo-wheel-detail-content {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 20px;
  }
  
  .evo-product-page .evo-wheel-detail-img img {
    width: 120px;
    height: 120px;
  }
  
  .evo-product-page .evo-wheel-detail-text h3 {
    font-size: 20px;
  }
  
  .evo-product-page .evo-wheel-detail-text p {
    font-size: 15px;
  }
  
  .evo-product-page .evo-wheels-secondary {
    gap: 12px;
  }
  
  .evo-product-page .evo-wheel-select {
    width: 100px;
    padding: 12px 10px;
  }
  
  .evo-product-page .evo-wheel-select img {
    width: 65px;
    height: 65px;
  }
  
  .evo-product-page .evo-wheel-select span {
    font-size: 11px;
  }
}

/* === FIX ROUES - 3 COLONNES TOUJOURS === */
.evo-product-page .evo-wheels-main {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  max-width: 900px !important;
  margin: 0 auto 40px !important;
}

.evo-product-page .evo-wheels-main .evo-wheel-card:last-child {
  grid-column: auto !important;
  max-width: none !important;
  justify-self: auto !important;
}

@media (max-width: 768px) {
  .evo-product-page .evo-wheels-main {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    max-width: 100% !important;
    padding: 0 10px !important;
  }
  
  .evo-product-page .evo-wheels-main .evo-wheel-card {
    padding: 15px 10px !important;
  }
  
  .evo-product-page .evo-wheels-main .evo-wheel-card img {
    width: 80px !important;
    height: 80px !important;
  }
  
  .evo-product-page .evo-wheels-main .evo-wheel-card h3 {
    font-size: 13px !important;
  }
  
  .evo-product-page .evo-wheels-main .evo-wheel-card p {
    font-size: 11px !important;
    display: none !important;
  }
}

/* === FIX ROUES SECONDAIRES - 6 SUR UNE LIGNE === */
.evo-product-page .evo-wheels-secondary {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 15px !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

.evo-product-page .evo-wheel-select {
  width: auto !important;
}

@media (max-width: 768px) {
  .evo-product-page .evo-wheels-secondary {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 8px !important;
    max-width: 100% !important;
    padding: 0 5px !important;
  }
  
  .evo-product-page .evo-wheel-select {
    padding: 8px 5px !important;
  }
  
  .evo-product-page .evo-wheel-select img {
    width: 45px !important;
    height: 45px !important;
  }
  
  .evo-product-page .evo-wheel-select span {
    font-size: 9px !important;
  }
}

/* === HERO TITLE (remplace H1) === */
.evo-product-page .evo-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.evo-product-page .evo-hero-title .evo-hero-h1 {
  display: block;
  font-size: inherit;
  font-weight: inherit;
}

@media (max-width: 768px) {
  .evo-product-page .evo-hero-title {
    font-size: 32px;
  }
}

/* === STATS SECTION - RESPONSIVE - 22 Jan 2026 === */
.evo-stats-section {
  background: #FAF9F7;
  padding: 3rem 1rem;
}
.evo-stats-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.evo-stat-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  filter: brightness(0);
}
.evo-stat-value {
  color: #FF511C;
  font-size: 2rem;
  font-weight: bold;
}
.evo-stat-label {
  color: #261104;
  font-size: 14px;
}
@media (max-width: 768px) {
  .evo-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .evo-stat-item img {
    width: 50px;
    height: 50px;
  }
  .evo-stat-value {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .evo-stats-section {
    padding: 2rem 1rem;
  }
  .evo-stats-grid {
    gap: 1rem;
  }
  .evo-stat-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }
  .evo-stat-value {
    font-size: 1.3rem;
  }
  .evo-stat-label {
    font-size: 12px;
  }
}


/* === HERO TITLE FLEXBOX - 22 Jan 2026 === */
.evo-product-page .evo-hero-title {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: baseline !important;
  gap: 0.3em !important;
}
.evo-product-page .evo-hero-title br {
  display: none !important;
}





/* ============================================
   EVENT BANNER - Week-end E-Skate V2
   ============================================ */

.evo-event-banner {
  padding: 60px 40px;
}

.evo-event-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #261104;
  box-shadow: 0 10px 40px rgba(38, 17, 4, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #FF511C;
}

.evo-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(38, 17, 4, 0.18);
}

.evo-event-image {
  position: relative;
  flex: 0 0 320px;
  min-height: 220px;
}

.evo-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evo-event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #FF511C;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.evo-event-day {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.evo-event-month {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.evo-event-content {
  flex: 1;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.evo-event-badge {
  display: inline-block;
  background: #FF511C;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.evo-event-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: #261104;
}

.evo-event-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #555;
}

.evo-btn-event {
  display: inline-block;
  background: #FF511C;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  width: fit-content;
  margin-top: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.evo-event-card:hover .evo-btn-event {
  background: #D53A0B;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .evo-event-banner {
    padding: 20px 15px;
  }
  
  .evo-event-card {
    flex-direction: column;
    border-radius: 16px;
  }
  
  .evo-event-image {
    flex: none;
    height: 180px;
  }
  
  .evo-event-date {
    top: 15px;
    left: 15px;
    padding: 10px 14px;
  }
  
  .evo-event-day {
    font-size: 24px;
  }
  
  .evo-event-month {
    font-size: 11px;
  }
  
  .evo-event-content {
    padding: 20px;
    gap: 10px;
  }
  
  .evo-event-content h3 {
    font-size: 20px;
  }
  
  .evo-event-content p {
    font-size: 14px;
  }
  
  .evo-btn-event {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ============================================
   SNIPPET GEO - Section définition citable
   ============================================ */
.evo-snippet-section {
  padding: 0 40px 20px;
  background: var(--evo-bg-soft);
}

.evo-snippet {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--evo-text-soft);
  text-align: center;
  padding: 25px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(38, 17, 4, 0.06);
}

.evo-snippet strong {
  color: var(--evo-text);
}

@media (max-width: 768px) {
  .evo-snippet-section {
    padding: 0 15px 15px;
  }
  
  .evo-snippet {
    font-size: 14px;
    padding: 20px;
  }
}

/* ============================================
   TRUST - Icônes SVG
   ============================================ */
.evo-trust-icon {
  vertical-align: middle;
  margin-right: 8px;
  color: var(--evo-orange);
}
/* Fix pour Creative Elements qui force fill:currentColor sur tous les SVG */
.evo-trust-icon svg,
.evo-advantage-icon svg {
  fill: none !important;
}


.evo-trust-inner span {
  display: inline-flex;
  align-items: center;
}

/* ============================================
   EVENT BANNER - H2 Title styling
   ============================================ */
.evo-event-content h2.evo-event-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: #261104;
}

@media (max-width: 768px) {
  .evo-event-content h2.evo-event-title {
    font-size: 20px;
  }
}



/* ============================================
   HERO - FIX DIMENSIONS (boutons visibles)
   Reduit les marges pour que tout le contenu
   rentre dans calc(100vh - 110px)
   ============================================ */
.evo-hero-content h1 {
  font-size: clamp(40px, 5.5vw, 68px) !important;
  margin-bottom: 20px !important;
}

.evo-hero-content > p {
  margin-bottom: 25px !important;
}

.evo-badge-light {
  margin-bottom: 20px !important;
}

.evo-hero-actions {
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .evo-hero-content h1 {
    font-size: clamp(28px, 7vw, 40px) !important;
    margin-bottom: 15px !important;
  }
  
  .evo-hero-content > p {
    margin-bottom: 20px !important;
  }
  
  .evo-badge-light {
    margin-bottom: 15px !important;
  }
}
