/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.1.1773500088
Updated: 2026-03-14 14:54:48

*/

/* Suppression des marges du thème parent GeneratePress */

#content {
    margin: 0 !important;
    width: 100% !important;
}


.bulletins-page-wrapper{
    width: 100% !important;
}

.separate-containers .site-main {
    margin: 0 !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --color-bg: #F8FAFC;
    --color-surface: #FFFFFF;
    --color-primary: #365E8A;
    --color-secondary: #F4EC6C;
    --color-text-main: #0F172A;
    --color-text-muted: #64748B;
    --color-border: #E2E8F0;
    --color-success: #10B981;
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.header-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.02) 0%, rgba(244, 236, 108, 0.02) 100%);
    pointer-events: none;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.site-branding {
    display: flex;
    align-items: center;
    z-index: 10;
}

.site-title-link {
    text-decoration: none;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-logo-link img {
    max-height: 80px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.menu-toggle-icon {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: all 0.3s ease;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--color-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-account {
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
}

.btn-account {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-account:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg);
    border-color: var(--color-primary);
}

.site-footer {
    background: linear-gradient(135deg, #2A4A6E 0%, #1E3652 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(244, 236, 108, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(54, 94, 138, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    padding: 4rem 0 3rem;
    position: relative;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-about {
    max-width: 350px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo .custom-logo-link img,
.footer-logo a img {
    max-height: 90px;
    width: auto;
}

.footer-logo .departement-logo {
    max-height: 70px;
}

.footer-site-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 1rem;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: white;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: white;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.footer-newsletter-form {
    margin-top: auto;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
    font-family: var(--font-family);
    transition: all 0.2s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.fiatlux-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.fiatlux-link:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(54, 94, 138, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu-wrapper.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-account {
        width: 100%;
        text-align: center;
    }
    
    .login-link {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        padding: 3rem 0 2rem;
    }
}

.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

.auth-gradient-bg-1,
.auth-gradient-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.auth-gradient-bg-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    top: -10%;
    right: -10%;
}

.auth-gradient-bg-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    bottom: -10%;
    left: -10%;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.auth-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.auth-branding {
    text-align: center;
}

.auth-logo .custom-logo-link img {
    max-height: 100px;
    margin-bottom: 1.5rem;
}

.auth-site-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.auth-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.auth-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    border: 1px solid var(--color-border);
}

.auth-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.auth-message svg {
    flex-shrink: 0;
}

.auth-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.auth-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: var(--color-text-muted);
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3.25rem !important;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-family: var(--font-family);
    color: var(--color-text-main);
    background: white;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(54, 94, 138, 0.1);
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
}

.form-group-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-main);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.checkbox-required {
    align-items: flex-start;
}

.checkbox-required input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-link {
    font-size: 0.875rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.form-link:hover {
    color: var(--color-text-main);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-border);
}

.auth-divider span {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
    background: white;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.auth-footer {
    text-align: center;
}

.auth-footer p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.auth-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: var(--color-text-main);
    text-decoration: underline;
}

.auth-info {
    text-align: center;
    padding: 0 1rem;
}

.auth-info p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.auth-info a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-info a:hover {
    text-decoration: underline;
}

.logout-link {
    display: none;
}

@media (max-width: 768px) {
    .logout-link {
        display: inline-block;
    }
}

@media (max-width: 640px) {
    .auth-page-wrapper {
        padding: 1.5rem 1rem;
    }

    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .auth-subtitle {
        font-size: 0.9375rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-gradient-bg-1,
    .auth-gradient-bg-2 {
        width: 300px;
        height: 300px;
    }
}

.adhesions-page-wrapper {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.adhesions-gradient-bg-1,
.adhesions-gradient-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    pointer-events: none;
}

.adhesions-gradient-bg-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    top: 10%;
    right: -15%;
}

.adhesions-gradient-bg-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    bottom: 20%;
    left: -10%;
}

.adhesions-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.adhesions-hero {
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
}

.adhesions-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.adhesions-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0 0 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.adhesions-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    text-align: center;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0 0 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.adhesions-benefits {
    padding: 4rem 0;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(54, 94, 138, 0.15);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0 0 0.75rem;
}

.benefit-description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.adhesions-pricing {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(54, 94, 138, 0.02) 100%);
    position: relative;
}

.woocommerce-subscriptions-wrapper {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-closed-notice {
    background: white;
    border: 2px solid #d63638;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px -5px rgba(214, 54, 56, 0.2);
}

.subscription-closed-notice .closed-icon {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    color: #d63638;
}

.subscription-closed-notice h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0 0 1rem;
}

.subscription-closed-notice p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.subscription-product-card {
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px -5px rgba(54, 94, 138, 0.2);
    position: relative;
}

.subscription-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 1.5rem 1.5rem 0 0;
}

.subscription-header {
    text-align: center;
    margin-bottom: 2rem;
}

.subscription-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0 0 1rem;
}

.subscription-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.subscription-price {
    text-align: center;
    margin: 2rem 0;
}

.subscription-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.subscription-price .woocommerce-Price-amount {
    font-size: inherit;
}

.subscription-form {
    margin: 2rem 0;
}

.subscription-form form.cart {
    margin: 0;
}

.subscription-form .quantity {
    display: none;
}

.subscription-form .single_add_to_cart_button {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.subscription-form .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
}

.subscription-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.subscription-details ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.subscription-details ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.subscription-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.adhesions-faq {
    padding: 4rem 0;
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px -2px rgba(54, 94, 138, 0.1);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.75rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

.adhesions-cta {
    padding: 4rem 0 5rem;
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(244, 236, 108, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem;
    position: relative;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--color-primary);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
    position: relative;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.3);
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(54, 94, 138, 0.15);
    border-color: var(--color-primary);
}

.woocommerce ul.products li.product.featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 25px -5px rgba(54, 94, 138, 0.2);
}

.woocommerce ul.products li.product.featured::before {
    content: 'Populaire';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.woocommerce ul.products li.product img {
    display: none;
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0 0 1rem;
}

.woocommerce ul.products li.product .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 1.5rem 0;
    display: block;
}

.woocommerce ul.products li.product .price .woocommerce-Price-amount {
    font-size: inherit;
}

.woocommerce ul.products li.product .price .subscription-details {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    text-decoration: none;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
}

.woocommerce ul.products li.product .woocommerce-loop-product__desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 1.5rem 0;
}

.woocommerce-product-details__short-description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 1.5rem 0;
}

.woocommerce div.product form.cart {
    margin: 2rem 0;
}

.woocommerce div.product form.cart .button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.woocommerce div.product form.cart .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.woocommerce-message {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-left: 4px solid #059669;
}

.woocommerce-info {
    background: rgba(54, 94, 138, 0.1);
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
}

.woocommerce-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    display: none;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .adhesions-title {
        font-size: 2.25rem;
    }

    .adhesions-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .adhesions-hero {
        padding: 3rem 0 2rem;
    }

    .adhesions-benefits,
    .adhesions-pricing,
    .adhesions-faq {
        padding: 3rem 0;
    }

    .adhesions-gradient-bg-1,
    .adhesions-gradient-bg-2 {
        width: 400px;
        height: 400px;
    }
}

.wp-block-woocommerce-checkout {
    background: var(--color-bg);
    position: relative;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.wc-block-checkout {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.wc-block-checkout__main {
    flex: 1;
    min-width: 0;
}

.wc-block-checkout__sidebar {
    flex: 0 0 400px;
    width: 400px;
}

@media (max-width: 1024px) {
    .wc-block-checkout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .wc-block-checkout__sidebar {
        flex: 1;
        width: 100%;
    }
}

.wp-block-woocommerce-checkout::before,
.wp-block-woocommerce-checkout::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.wp-block-woocommerce-checkout::before {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    top: 10%;
    right: 5%;
}

.wp-block-woocommerce-checkout::after {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    bottom: 20%;
    left: 5%;
}

.wc-block-checkout__main {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.08);
    margin-bottom: 2rem;
}

.wc-block-checkout__sidebar {
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px -5px rgba(54, 94, 138, 0.2);
    position: sticky;
    top: 2rem;
}

.wc-block-components-checkout-step__heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.wc-block-components-checkout-step__container {
    padding: 1.5rem 0;
}

.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox input,
.wc-block-components-combobox-control input,
.wc-block-components-textarea textarea,
.wc-block-components-select select {
    width: 100% !important;
    padding: 0.875rem 1rem !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 0.75rem !important;
    font-size: 0.9375rem !important;
    font-family: var(--font-family) !important;
    color: var(--color-text-main) !important;
    background: white !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus,
.wc-block-components-combobox input:focus,
.wc-block-components-combobox-control input:focus,
.wc-block-components-textarea textarea:focus,
.wc-block-components-select select:focus {
    outline: none !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(54, 94, 138, 0.1) !important;
}

.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-textarea label,
.wc-block-components-select label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.wc-block-components-text-input,
.wc-block-components-combobox,
.wc-block-components-textarea,
.wc-block-components-select {
    margin-bottom: 1.5rem;
}

.wc-block-components-totals-wrapper {
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.03) 0%, rgba(244, 236, 108, 0.03) 100%);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.wc-block-components-totals-item__label {
    font-weight: 600;
    color: var(--color-text-main);
}

.wc-block-components-totals-item__value {
    font-weight: 700;
    color: var(--color-primary);
}

.wc-block-components-totals-footer-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0 0;
    margin-top: 1rem;
    border-top: 2px solid var(--color-border);
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 1.125rem;
    font-weight: 800;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 1.5rem;
    font-weight: 800;
}

.wc-block-components-checkout-place-order-button,
.wc-block-components-button {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
}

.wc-block-components-radio-control__option {
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wc-block-components-radio-control__option:hover {
    border-color: var(--color-primary);
    background: rgba(54, 94, 138, 0.02);
}

.wc-block-components-radio-control__option.wc-block-components-radio-control__option--checked {
    border-color: var(--color-primary);
    background: rgba(54, 94, 138, 0.05);
}

.wc-block-components-radio-control input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}

.wc-block-components-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wc-block-components-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}

.wc-block-components-notice-banner {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border: none;
}

.wc-block-components-notice-banner.is-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.wc-block-components-notice-banner.is-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-left: 4px solid #059669;
}

.wc-block-components-notice-banner.is-info {
    background: rgba(54, 94, 138, 0.1);
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
}

.wc-block-checkout__form {
    max-width: 100%;
    margin: 0;
}

.woocommerce-page .entry-header,
.woocommerce-checkout .entry-header,
.wp-block-woocommerce-checkout .entry-title,
body.woocommerce-checkout h1.entry-title {
    display: none !important;
}

.wc-block-components-form-row {
    margin-bottom: 1.5rem;
}

.wc-block-components-address-form {
    display: grid;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .wp-block-woocommerce-checkout {
        padding: 2rem 1rem;
    }

    .wc-block-checkout__main,
    .wc-block-checkout__sidebar {
        padding: 1.5rem;
    }

    .wc-block-checkout__sidebar {
        position: static;
        margin-top: 2rem;
    }

    .wp-block-woocommerce-checkout::before,
    .wp-block-woocommerce-checkout::after {
        width: 300px;
        height: 300px;
    }
}

/* ============================================
   PAGE MON COMPTE - WOOCOMMERCE MY ACCOUNT
   ============================================ */

.woocommerce-account {
    background: var(--color-bg);
    position: relative;
    padding:  0;
}

@media (max-width: 768px) {
    .woocommerce-account {
        padding: 1.5rem 0;
    }
}

.woocommerce-account::before,
.woocommerce-account::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.woocommerce-account::before {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    top: 10%;
    right: 5%;
}

.woocommerce-account::after {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    bottom: 20%;
    left: 5%;
}

.woocommerce-account .woocommerce {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
    }
}

/* Navigation latérale */
.woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 0 0 300px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px -4px rgba(54, 94, 138, 0.12);
    position: sticky;
    top: 2rem;
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-navigation {
        position: relative;
        top: 0;
        width: 100%;
    }
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
    padding: 0;
}

/* Masquer l'onglet Téléchargements */
.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--downloads {
    display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--color-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: rgba(54, 94, 138, 0.08);
    color: var(--color-primary);
    transform: translateX(6px);
    box-shadow: 0 2px 8px rgba(54, 94, 138, 0.1);
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover::before {
    transform: scaleY(1);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.25);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a::before {
    transform: scaleY(1);
    background: white;
}

/* Contenu principal */
.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 8px 30px -4px rgba(54, 94, 138, 0.12);
    min-width: 0;
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 1.5rem;
    }
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    color: var(--color-text-main);
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 3px solid transparent;
    background: linear-gradient(to right, var(--color-border) 0%, transparent 100%) bottom/100% 3px no-repeat;
    position: relative;
}

.woocommerce-account .woocommerce-MyAccount-content h2::after,
.woocommerce-account .woocommerce-MyAccount-content h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 3px;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: 1.75rem;
}

.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-size: 1.25rem;
}

/* Messages et notifications */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border: none;
}

.woocommerce-account .woocommerce-message {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-left: 4px solid #059669;
}

.woocommerce-account .woocommerce-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.woocommerce-account .woocommerce-info {
    background: rgba(54, 94, 138, 0.1);
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
}

/* Formulaires */
.woocommerce-account form.woocommerce-EditAccountForm {
    display: block;
}

.woocommerce-account .woocommerce-form-row {
    margin-bottom: 2rem;
    display: block;
    width: 100%;
}

.woocommerce-account .woocommerce-form-row:last-child {
    margin-bottom: 0;
}

/* Grille pour les champs côte à côte */
.woocommerce-account .woocommerce-form__label-for-checkbox,
.woocommerce-account fieldset {
    display: block;
    width: 100%;
}

.woocommerce-account .woocommerce-form-row--first,
.woocommerce-account .woocommerce-form-row--last {
    display: inline-block;
    width: calc(50% - 0.75rem);
    vertical-align: top;
}

.woocommerce-account .woocommerce-form-row--first {
    margin-right: 1.5rem;
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce-form-row--first,
    .woocommerce-account .woocommerce-form-row--last {
        width: 100%;
        margin-right: 0;
    }
}

.woocommerce-account .woocommerce-form-row label {
    display: block !important;
    width: 100% !important;
    float: none !important;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
    text-align: left;
}

.woocommerce-account .woocommerce-form-row label .required {
    color: #dc2626;
    margin-left: 0.25rem;
}

.woocommerce-account .woocommerce-form-row .description {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.woocommerce-account .woocommerce-Input,
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"],
.woocommerce-account input[type="tel"],
.woocommerce-account textarea,
.woocommerce-account select {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    float: none !important;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--color-text-main);
    background: #FAFBFC;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.woocommerce-account textarea {
    min-height: 120px;
    resize: vertical;
}

.woocommerce-account .woocommerce-Input:focus,
.woocommerce-account input[type="text"]:focus,
.woocommerce-account input[type="email"]:focus,
.woocommerce-account input[type="password"]:focus,
.woocommerce-account input[type="tel"]:focus,
.woocommerce-account textarea:focus,
.woocommerce-account select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(54, 94, 138, 0.12), 0 2px 8px rgba(54, 94, 138, 0.08);
    transform: translateY(-1px);
}

/* Boutons */
.woocommerce-account .woocommerce-Button,
.woocommerce-account button[type="submit"],
.woocommerce-account .button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white !important;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
    text-decoration: none;
    display: inline-block;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.woocommerce-account .woocommerce-Button::before,
.woocommerce-account button[type="submit"]::before,
.woocommerce-account .button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.woocommerce-account .woocommerce-Button:hover::before,
.woocommerce-account button[type="submit"]:hover::before,
.woocommerce-account .button:hover::before {
    width: 300px;
    height: 300px;
}

.woocommerce-account .woocommerce-Button:hover,
.woocommerce-account button[type="submit"]:hover,
.woocommerce-account .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px 0 rgba(54, 94, 138, 0.45);
}

.woocommerce-account .woocommerce-Button:active,
.woocommerce-account button[type="submit"]:active,
.woocommerce-account .button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px 0 rgba(54, 94, 138, 0.35);
}

/* Bouton pour afficher le changement de mot de passe */
.woocommerce-account .toggle-password-section {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 0.75rem;
    color: var(--color-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem 0 1rem 0;
}

.woocommerce-account .toggle-password-section:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.25);
}

.woocommerce-account .toggle-password-section svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.woocommerce-account .toggle-password-section.active svg {
    transform: rotate(180deg);
}

/* Section de changement de mot de passe */
.woocommerce-account fieldset {
    border: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}

.woocommerce-account fieldset.show {
    max-height: 1000px;
    opacity: 1;
    margin: 1.5rem 0 0 0;
    padding: 2rem;
    background: #FAFBFC;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
}

.woocommerce-account fieldset legend {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-border);
    position: relative;
    width: 100%;
}

.woocommerce-account fieldset legend::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 2px;
}

/* Bouton de visibilité du mot de passe */
.woocommerce-account .show-password-input {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

.woocommerce-account .show-password-input:hover {
    color: var(--color-primary);
}

.woocommerce-account .password-input {
    position: relative;
}

/* Tableaux (commandes, abonnements) */
.woocommerce-account table.woocommerce-orders-table,
.woocommerce-account table.my_account_orders {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.woocommerce-account table.woocommerce-orders-table thead,
.woocommerce-account table.my_account_orders thead {
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
}

.woocommerce-account table.woocommerce-orders-table th,
.woocommerce-account table.my_account_orders th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    color: #365E8A;
    border-bottom: 2px solid #e5e5e5;
    font-size: 0.875rem;
}

.woocommerce-account table.woocommerce-orders-table td,
.woocommerce-account table.my_account_orders td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e5e5;
    color: #0F172A;
    font-size: 0.9375rem;
    vertical-align: middle;
}

.woocommerce-account table.woocommerce-orders-table tr:last-child td,
.woocommerce-account table.my_account_orders tr:last-child td {
    border-bottom: none;
}

.woocommerce-account table.woocommerce-orders-table tr:hover,
.woocommerce-account table.my_account_orders tr:hover {
    background: rgba(54, 94, 138, 0.02);
}

/* Badges de statut */
.woocommerce-account .woocommerce-orders-table__cell-order-status mark,
.woocommerce-account .order-status {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border-radius: 2rem;
    display: inline-block;
    border: none;
    background: none;
}

.woocommerce-account .order-status.processing,
.woocommerce-account mark.processing {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.woocommerce-account .order-status.completed,
.woocommerce-account mark.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.woocommerce-account .order-status.on-hold,
.woocommerce-account mark.on-hold {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.woocommerce-account .order-status.cancelled,
.woocommerce-account mark.cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.woocommerce-account .order-status.checkout-draft,
.woocommerce-account mark.checkout-draft {
    background: rgba(148, 163, 184, 0.15);
    color: #475569;
    font-weight: 600;
}

.woocommerce-account .order-status.pending,
.woocommerce-account mark.pending {
    background: rgba(251, 191, 36, 0.1);
    color: #f59e0b;
}

.woocommerce-account .order-status.failed,
.woocommerce-account mark.failed {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.woocommerce-account .order-status.refunded,
.woocommerce-account mark.refunded {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

/* Amélioration des liens de numéro de commande */
.woocommerce-account table.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a,
.woocommerce-account table.my_account_orders .order-number a {
    color: #365E8A !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.woocommerce-account table.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a:hover,
.woocommerce-account table.my_account_orders .order-number a:hover {
    color: #2A4A6E !important;
    text-decoration: underline !important;
}

/* Amélioration de l'affichage des prix */
.woocommerce-account table.woocommerce-orders-table .woocommerce-orders-table__cell-order-total,
.woocommerce-account table.my_account_orders .order-total {
    font-weight: 600;
    color: #365E8A;
    font-size: 1rem;
}

/* Amélioration des boutons d'action */
.woocommerce-account table.woocommerce-orders-table .woocommerce-button,
.woocommerce-account table.my_account_orders .button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #365E8A 0%, #2A4A6E 100%);
    color: white;
    border: none;
    transition: all 0.2s;
}

.woocommerce-account table.woocommerce-orders-table .woocommerce-button:hover,
.woocommerce-account table.my_account_orders .button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.3);
}

/* Styles spécifiques pour le tableau des abonnements */
.woocommerce-account table.my_account_subscriptions {
    width: 100% !important;
    border-collapse: collapse !important;
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.woocommerce-account table.my_account_subscriptions thead {
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%) !important;
}

.woocommerce-account table.my_account_subscriptions th {
    padding: 1rem 1.25rem !important;
    text-align: left !important;
    font-weight: 700 !important;
    color: #365E8A !important;
    border-bottom: 2px solid #e5e5e5 !important;
    font-size: 0.875rem !important;
}

.woocommerce-account table.my_account_subscriptions td {
    padding: 1rem 1.25rem !important;
    border-bottom: 1px solid #e5e5e5 !important;
    color: #0F172A !important;
    font-size: 0.9375rem !important;
    vertical-align: middle !important;
}

.woocommerce-account table.my_account_subscriptions tr:hover {
    background: rgba(54, 94, 138, 0.02) !important;
}

.woocommerce-account table.my_account_subscriptions tr:last-child td {
    border-bottom: none !important;
}

/* Liens de numéro d'abonnement */
.woocommerce-account table.my_account_subscriptions .subscription-id a {
    color: #365E8A !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.woocommerce-account table.my_account_subscriptions .subscription-id a:hover {
    color: #2A4A6E !important;
    text-decoration: underline !important;
}

/* Colonne Total */
.woocommerce-account table.my_account_subscriptions .subscription-total {
    font-weight: 600 !important;
    color: #365E8A !important;
    font-size: 1rem !important;
}

/* Boutons d'action dans les abonnements */
.woocommerce-account table.my_account_subscriptions .subscription-actions {
    text-align: right !important;
    white-space: nowrap !important;
}

.woocommerce-account table.my_account_subscriptions .subscription-actions .button {
    display: inline-block !important;
    margin: 0 0.25rem !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    border-radius: 0.5rem !important;
    background: linear-gradient(135deg, #365E8A 0%, #2A4A6E 100%) !important;
    color: white !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    vertical-align: middle !important;
}

.woocommerce-account table.my_account_subscriptions .subscription-actions .button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.3) !important;
}

.woocommerce-account table.my_account_subscriptions .subscription-actions .button.view {
    background: linear-gradient(135deg, #365E8A 0%, #2A4A6E 100%) !important;
}

.woocommerce-account table.my_account_subscriptions .subscription-actions .button.cancel {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    margin-left: 0.5rem !important;
}

.woocommerce-account table.my_account_subscriptions .subscription-actions .button.cancel:hover {
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3) !important;
}

/* Adresses */
.woocommerce-account .woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.woocommerce-account .woocommerce-Address {
    padding: 1.5rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.75rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.woocommerce-account .woocommerce-Address:hover {
    border-color: #365E8A;
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.15);
}

.woocommerce-account .woocommerce-Address-title h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #365E8A !important;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e5e5;
}

.woocommerce-account .woocommerce-Address address {
    font-style: normal;
    line-height: 1.6;
    color: #0F172A !important;
    font-size: 0.9375rem;
}

.woocommerce-account .woocommerce-Address .button,
.woocommerce-account .woocommerce-Address a.edit {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #365E8A 0%, #2A4A6E 100%);
    color: white !important;
    border: none;
    text-decoration: none !important;
    transition: all 0.2s;
}

.woocommerce-account .woocommerce-Address .button:hover,
.woocommerce-account .woocommerce-Address a.edit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.3);
}

/* Dashboard */
.woocommerce-account .woocommerce-MyAccount-content p {
    line-height: 1.7;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

/* Dashboard personnalisé */
.woocommerce-dashboard-wrapper {
    width: 100%;
}

.dashboard-welcome {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-border);
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.dashboard-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Grille de widgets */
.dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.dashboard-widget {
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.02) 0%, rgba(244, 236, 108, 0.02) 100%);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.dashboard-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px -5px rgba(54, 94, 138, 0.15);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.widget-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.widget-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
    padding: 0;
    border: none;
}

.widget-content {
    color: var(--color-text-main);
}

/* Widget Abonnement */
.subscription-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subscription-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    width: fit-content;
}

.subscription-status.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.subscription-status.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.subscription-detail {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.no-subscription {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.btn-primary-small {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(54, 94, 138, 0.3);
}

/* Widget Commandes */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.order-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(54, 94, 138, 0.1);
}

.order-number {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-date {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.order-total {
    font-weight: 700;
    color: var(--color-primary);
}

.no-orders {
    color: var(--color-text-muted);
}

/* Widget Informations */
.account-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.info-value {
    font-size: 0.9375rem;
    color: var(--color-text-main);
}

/* Widget Adresses */
.address-preview {
    margin-bottom: 1rem;
}

.address-preview strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.address-preview p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.no-address {
    color: var(--color-text-muted);
}

/* Lien widget */
.widget-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.widget-link:hover {
    gap: 0.75rem;
    text-decoration: underline;
}

.widget-link svg {
    transition: transform 0.2s ease;
}

.widget-link:hover svg {
    transform: translateX(2px);
}

/* Liens rapides */
.dashboard-quick-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-border);
}

.dashboard-quick-links h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 0.75rem;
    color: var(--color-text-main) !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-name a {
        color: var(--color-text-main) !important;

}

.order-number a{
        color: var(--color-text-main) !important;

}

.quick-link:hover {
    border-color: var(--color-primary);
    background: rgba(54, 94, 138, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.1);
}

.quick-link svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        padding: 0 1rem;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        flex: 1;
        width: 100%;
        position: static;
        margin-bottom: 2rem;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 1.5rem;
    }

    .dashboard-widgets {
        grid-template-columns: 1fr;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .woocommerce-account {
        padding: 2rem 0;
    }

    .woocommerce-account .woocommerce-MyAccount-content h2 {
        font-size: 1.5rem;
    }

    .woocommerce-account table.woocommerce-orders-table,
    .woocommerce-account table.my_account_orders {
        font-size: 0.875rem;
    }

    .woocommerce-account table.woocommerce-orders-table th,
    .woocommerce-account table.my_account_orders th,
    .woocommerce-account table.woocommerce-orders-table td,
    .woocommerce-account table.my_account_orders td {
        padding: 0.75rem;
    }

    .woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE D'ACCUEIL
   ============================================ */

.homepage-wrapper {
    background: var(--color-bg);
    overflow-x: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.section-link:hover {
    gap: 0.75rem;
}

.section-link svg {
    transition: transform 0.2s ease;
}

.section-link:hover svg {
    transform: translateX(2px);
}

/* Section Hero */
.hero-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-gradient-bg-1,
.hero-gradient-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
}

.hero-gradient-bg-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    top: -10%;
    right: -10%;
}

.hero-gradient-bg-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    bottom: -15%;
    left: -10%;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-main);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
    background: var(--color-primary);
    color: white;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    height: 100%;
}

.hero-video-wrapper {
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 80px -15px rgba(54, 94, 138, 0.4);
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.hero-video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 100px -20px rgba(54, 94, 138, 0.5);
}

.hero-video-embed {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-video-embed.loaded {
    opacity: 1;
}

/* Section Articles (Slider) */
.latest-posts-section {
    padding: 5rem 0;
}

.posts-filter-bar {
    display: inline-flex;
    gap: 0.5rem;
    margin: 0 auto 3rem;
    padding: 0.5rem;
    background: white;
    border-radius: 3rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    border: 1px solid var(--color-border);
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    background: transparent;
    border: none;
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.filter-btn:hover {
    color: var(--color-primary);
    background: rgba(54, 94, 138, 0.05);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(54, 94, 138, 0.25);
}

.filter-btn.active:hover {
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.35);
}

.posts-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.posts-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.post-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -5px rgba(54, 94, 138, 0.2);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.post-category {
    padding: 0.25rem 0.75rem;
    background: rgba(54, 94, 138, 0.1);
    color: var(--color-primary);
    border-radius: 2rem;
    font-weight: 600;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.post-title a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: var(--color-primary);
}

.post-excerpt {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.post-link:hover {
    gap: 0.75rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.slider-nav:hover:not(:disabled) {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.wc-block-components-form .wc-block-components-text-input input:autofill + label, .wc-block-components-form .wc-block-components-text-input.is-active label, .wc-block-components-text-input input:autofill + label, .wc-block-components-text-input.is-active label {
  top: 0px !important;
  transform: scale(.82) !important;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label {
  align-items: center;
  border-width: 0;
  display: flex;
  justify-content: flex-start;
  padding-left: 25px !important;
}

.slider-prev {
    left: -24px;
}

.slider-next {
    right: -24px;
}

/* Section Renouvellement */
.renewal-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    overflow: hidden;
}

.renewal-gradient-bg {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(244, 236, 108, 0.2) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    border-radius: 50%;
    filter: blur(100px);
}

.renewal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.renewal-content {
    text-align: left;
}

.renewal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 2rem;
    color: white;
    backdrop-filter: blur(10px);
}

.renewal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.renewal-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.renewal-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.renewal-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.renewal-benefits li svg {
    flex-shrink: 0;
    color: var(--color-secondary);
    filter: drop-shadow(0 0 8px rgba(244, 236, 108, 0.5));
}

.btn-renewal {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--color-primary);
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
}

.btn-renewal:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.3);
    background: var(--color-secondary);
    color: var(--color-primary);
}

.renewal-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.renewal-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 25px 80px -15px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.3s ease;
}

.renewal-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 30px 100px -20px rgba(0, 0, 0, 0.5);
}

/* Section Héraldique */
.heraldry-section {
    padding: 5rem 0;
}

.heraldry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.heraldry-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.heraldry-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.btn-heraldry {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.btn-heraldry:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
}

.heraldry-image img {
    width: 100%;
    height: auto;
}

.heraldry-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
    border-radius: 1rem;
    border: 2px dashed var(--color-border);
}

.heraldry-placeholder svg {
    color: var(--color-primary);
    opacity: 0.3;
}

/* Section Forum */
.forum-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.02) 0%, rgba(244, 236, 108, 0.02) 100%);
}

.forum-content-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.forum-lottie-container {
    position: sticky;
    top: 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.forum-lottie-container lottie-player {
    width: 100%;
    height: 300px;
    margin-bottom: 1.5rem;
}

.forum-lottie-text {
    text-align: center;
}

.forum-lottie-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
}

.forum-lottie-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

.forum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.forum-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.forum-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -5px rgba(54, 94, 138, 0.2);
}

.forum-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.forum-icon svg {
    color: var(--color-primary);
}

.forum-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.forum-title a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.forum-title a:hover {
    color: var(--color-primary);
}

.forum-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.forum-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.forum-stat svg {
    color: var(--color-primary);
}

.forum-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.forum-link:hover {
    gap: 0.75rem;
}

/* Section Facebook */
.facebook-section {
    padding: 5rem 0;
}

.facebook-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.facebook-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    transition: all 0.3s ease;
}

.facebook-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -5px rgba(54, 94, 138, 0.2);
}

.facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    border-radius: 50%;
    margin-bottom: 2rem;
    color: white;
}

.facebook-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.facebook-card-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.facebook-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
    border-radius: 1rem;
}

.facebook-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.facebook-stat-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    color: white;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(24, 119, 242, 0.4);
}

.facebook-lottie-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
}

.facebook-lottie-container lottie-player {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        padding: 5rem 0;
    }

    .hero-container,
    .heraldry-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 1200px;
    }

    .hero-image,
    .heraldry-image {
        order: -1;
    }

    .hero-video-wrapper {
        transform: none;
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-video-wrapper:hover {
        transform: scale(1.02);
    }

    .posts-filter-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.375rem;
        padding: 0.375rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .post-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }

    .forum-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .forum-lottie-container {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .forum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-video-wrapper {
        border-radius: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .latest-posts-section,
    .heraldry-section,
    .forum-section,
    .facebook-section {
        padding: 3rem 0;
    }

    .renewal-section {
        padding: 4rem 0;
    }

    .renewal-title {
        font-size: 2rem;
    }

    .renewal-text {
        font-size: 1rem;
    }

    .post-card {
        flex: 0 0 100%;
    }

    .slider-prev {
        left: 0;
    }

    .slider-next {
        right: 0;
    }

    .forum-grid {
        grid-template-columns: 1fr;
    }

    .renewal-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .renewal-content {
        text-align: center;
    }

    .renewal-image {
        order: -1;
    }

    .renewal-image img {
        transform: none;
        max-width: 400px;
    }

    .renewal-image img:hover {
        transform: scale(1.05);
    }

    .heraldry-title {
        font-size: 1.75rem;
    }

    .heraldry-description {
        font-size: 1rem;
    }

    .facebook-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .facebook-card {
        padding: 2rem;
    }

    .facebook-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .facebook-lottie-container {
        height: 400px;
        order: -1;
    }
}

.checkout-page-wrapper {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 3rem 0;
}

.checkout-gradient-bg-1,
.checkout-gradient-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.checkout-gradient-bg-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    top: 5%;
    right: -10%;
}

.checkout-gradient-bg-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    bottom: 10%;
    left: -5%;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0 0 1rem;
    line-height: 1.1;
}

.checkout-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin: 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-section {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.08);
}

.checkout-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.section-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 800;
    flex-shrink: 0;
}

.checkout-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
    text-align: left;
}

.checkout-sidebar {
    position: sticky;
    top: 2rem;
}

.order-review-section {
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.03) 0%, rgba(244, 236, 108, 0.03) 100%);
    border: 2px solid var(--color-primary);
}

.woocommerce form .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce form .form-row label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.woocommerce form .form-row label .required {
    color: #dc2626;
    font-weight: 700;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-family: var(--font-family);
    color: var(--color-text-main);
    background: white;
    transition: all 0.2s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(54, 94, 138, 0.1);
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
    width: 48%;
    float: left;
}

.woocommerce form .form-row-last {
    float: right;
}

.woocommerce-checkout-review-order {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout-review-order-table thead th {
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-checkout-review-order-table tbody td {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-checkout-review-order-table .product-name {
    font-weight: 600;
    color: var(--color-text-main);
}

.woocommerce-checkout-review-order-table .product-total {
    text-align: right;
    font-weight: 700;
    color: var(--color-primary);
}

.woocommerce-checkout-review-order-table tfoot tr {
    border-top: 2px solid var(--color-border);
}

.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
    padding: 1rem 0;
    font-size: 1rem;
}

.woocommerce-checkout-review-order-table .order-total th {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.woocommerce-checkout-review-order-table .order-total td {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-align: right;
}

.woocommerce-checkout-payment {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.woocommerce-checkout-payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.woocommerce-checkout-payment .payment_method {
    margin-bottom: 1rem;
}

.woocommerce-checkout-payment .payment_method label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.woocommerce-checkout-payment .payment_method label:hover {
    border-color: var(--color-primary);
    background: rgba(54, 94, 138, 0.02);
}

.woocommerce-checkout-payment .payment_method input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}

.woocommerce-checkout-payment .payment_method input[type="radio"]:checked + label {
    border-color: var(--color-primary);
    background: rgba(54, 94, 138, 0.05);
}

.woocommerce-checkout-payment .payment_box {
    background: rgba(54, 94, 138, 0.03);
    padding: 1rem;
    border-radius: 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.woocommerce-terms-and-conditions-wrapper {
    margin: 1.5rem 0;
}

.woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.woocommerce-form__label-for-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}

.woocommerce-form__label-for-checkbox span {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

#place_order {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

#place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
}

.woocommerce-NoticeGroup {
    margin-bottom: 2rem;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.woocommerce-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.woocommerce-message {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-left: 4px solid #059669;
}

.woocommerce-info {
    background: rgba(54, 94, 138, 0.1);
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
}

.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before {
    display: none;
}

.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
    list-style: none;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    height: auto;
    padding: 0.875rem 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--color-text-main);
    line-height: normal;
    padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 1rem;
}

.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(54, 94, 138, 0.1);
}

.select2-dropdown {
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.15);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
    }

    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last {
        width: 100%;
        float: none;
    }
}

@media (max-width: 768px) {
    .checkout-page-wrapper {
        padding: 2rem 0;
    }

    .checkout-title {
        font-size: 2rem;
    }

    .checkout-subtitle {
        font-size: 1rem;
    }

    .checkout-section {
        padding: 1.5rem;
    }

    .checkout-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .checkout-section .section-title {
        font-size: 1.25rem;
    }

    .checkout-gradient-bg-1,
    .checkout-gradient-bg-2 {
        width: 300px;
        height: 300px;
    }
}

/* ========================================
   PAGE DE CONTACT
   ======================================== */

/* Wrapper global pour isoler la page de contact */
.agam-contact-page-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.agam-contact-page-wrapper > * {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
}

/* Hero Section */
.contact-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    width: 100%;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contact-hero-bg-1,
.contact-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.contact-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.contact-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Content Section */
.contact-content-section {
    padding: 5rem 0;
    width: 100% !important;
    max-width: 100% !important;
    grid-column: 1 / -1 !important;
    display: block !important;
    clear: both;
}

.contact-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 5rem;
    align-items: start;
    width: 100%;
}

.contact-grid > * {
    width: 100%;
    max-width: 100%;
}

/* Contact Info */
.contact-info-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -5px rgba(54, 94, 138, 0.2);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1rem;
    color: var(--color-primary);
}

.contact-info-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    text-decoration: none;
}

.contact-info-content a:hover {
    color: var(--color-primary);
}

.contact-info-note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

/* Styles Contact Form 7 */
.contact-form-wrapper .wpcf7 {
    margin: 0;
}

.contact-form-wrapper .wpcf7-form {
    margin: 0;
}

.contact-form-wrapper .wpcf7-form p {
    margin-bottom: 1.5rem;
}

.contact-form-wrapper .wpcf7-form label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper .wpcf7-form label br {
    display: none;
}

.contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-wrapper .wpcf7-text,
.contact-form-wrapper .wpcf7-email,
.contact-form-wrapper .wpcf7-textarea {
    width: 100% !important;
    padding: 0.875rem 1.25rem;
    background: var(--color-background);
    border: 2px solid var(--color-border);
    border-radius: 0.75rem;
    font-size: 1rem;
    color: var(--color-text-main);
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form-wrapper .wpcf7-text:focus,
.contact-form-wrapper .wpcf7-email:focus,
.contact-form-wrapper .wpcf7-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(54, 94, 138, 0.1);
}

.contact-form-wrapper .wpcf7-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-wrapper .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
    width: auto;
}

.contact-form-wrapper .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
}

/* Messages de validation CF7 */
.contact-form-wrapper .wpcf7-response-output {
    margin: 1.5rem 0 0;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10B981;
    color: #059669;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ng {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #EF4444;
    color: #DC2626;
}

.contact-form-wrapper .wpcf7-spinner {
    margin-left: 1rem;
}

/* Erreurs de validation inline */
.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

/* Map Section */
.contact-map-section {
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    grid-column: 1 / -1 !important;
    display: block !important;
    clear: both;
}

.contact-map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.contact-map-container:hover iframe {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 5rem 0 3rem;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.125rem;
    }

    .contact-content-section {
        padding: 3rem 0;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.75rem;
    }

    .contact-info-item {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form-wrapper .wpcf7-submit {
        width: 100%;
    }

    .contact-map-container {
        height: 350px;
    }
}

/* ========================================
   PAGE QUI SOMMES-NOUS
   ======================================== */

/* Wrapper global */
.agam-about-page-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.agam-about-page-wrapper > * {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
}

/* Hero Section */
.about-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    width: 100%;
}

.about-hero-bg-1,
.about-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.about-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.about-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Container */
.about-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Section Titles */
.section-title-center {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Introduction Section */
.about-intro-section {
    padding: 3rem 0;
}

.about-intro-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.about-intro-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1.5rem;
    color: var(--color-primary);
}

.about-intro-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
}

.about-intro-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Objectives Section */
.about-objectives-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.objective-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.2);
}

.objective-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    border-radius: 1rem;
    color: white;
    margin-bottom: 1.5rem;
}

.objective-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.objective-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Benefits Section */
.about-benefits-section {
    padding: 5rem 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px -5px rgba(54, 94, 138, 0.15);
}

.benefit-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    border-radius: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Statuts Section */
.about-statuts-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
}

.statuts-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.statuts-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1.5rem;
    color: var(--color-primary);
}

.statuts-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.statuts-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.btn-statuts {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.btn-statuts:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(54, 94, 138, 0.4);
    color: white;
}

.btn-statuts svg {
    transition: transform 0.2s ease;
}

.btn-statuts:hover svg {
    transform: translateY(2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .objectives-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 5rem 0 3rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title-center {
        font-size: 2rem;
    }

    .about-intro-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .objective-card {
        padding: 2rem;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .statuts-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .statuts-content h3 {
        font-size: 1.75rem;
    }

    .btn-statuts {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   PAGE FORUM
   ======================================== */

/* Wrapper global */
.agam-forum-page-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.agam-forum-page-wrapper > * {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
}

/* Hero Section */
.forum-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    width: 100%;
}

.forum-hero-bg-1,
.forum-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.forum-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.forum-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.forum-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.forum-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.forum-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.forum-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Forum Content Section */
.forum-content-section {
    padding: 5rem 0;
    width: 100%;
}

.forum-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* BBPress Wrapper */
.bbpress-wrapper {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

/* Forums Grid - Page Forum uniquement */
.forums-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.forums-grid .forum-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.forums-grid .forum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.forums-grid .forum-card:hover {
    transform: translateX(8px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.2);
}

.forums-grid .forum-card:hover::before {
    transform: scaleY(1);
}

.forums-grid .forum-card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1.25rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.forums-grid .forum-card:hover .forum-card-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    transform: scale(1.05);
}

.forums-grid .forum-card-content {
    flex: 1;
}

.forums-grid .forum-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.forums-grid .forum-card:hover .forum-card-title {
    color: var(--color-primary);
}

.forums-grid .forum-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.forums-grid .forum-card-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.forums-grid .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.forums-grid .stat-item svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.forums-grid .forum-card-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.forums-grid .forum-card:hover .forum-card-arrow {
    background: var(--color-primary);
    color: white;
    transform: translateX(4px);
}

.forum-error {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

/* Forum Categories Grid */
.forum-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.forum-category-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.forum-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.2);
}

.category-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    border-radius: 1rem;
    color: white;
}

.category-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.category-content h3 a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-content h3 a:hover {
    color: var(--color-primary);
}

.category-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.category-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.meta-item svg {
    flex-shrink: 0;
}

/* Forum Info Section */
.forum-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.forum-info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0.75rem;
    color: var(--color-primary);
}

.info-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.info-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.info-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.info-content a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.info-content a:hover {
    color: #2A4A6E;
}

/* Responsive */
@media (max-width: 768px) {
    .forum-hero {
        padding: 5rem 0 3rem;
    }

    .forum-hero-title {
        font-size: 2.5rem;
    }

    .forum-hero-subtitle {
        font-size: 1.125rem;
    }

    .forum-content-section {
        padding: 3rem 0;
    }

    .forum-categories-grid {
        grid-template-columns: 1fr;
    }

    .forum-category-card {
        flex-direction: column;
        text-align: center;
    }

    .forum-info-section {
        grid-template-columns: 1fr;
    }

    .forum-info-card {
        flex-direction: column;
        text-align: center;
    }

    .bbpress-wrapper {
        padding: 1.5rem;
    }

    .forums-grid .forum-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .forums-grid .forum-card:hover {
        transform: translateY(-4px);
    }

    .forums-grid .forum-card-stats {
        justify-content: center;
    }

    .forums-grid .forum-card-arrow {
        display: none;
    }
}

/* ========================================
   NAVIGATION - SOUS-MENUS (DROPDOWN)
   ======================================== */

/* Sous-menu principal */
.main-navigation .main-nav ul ul,
.main-navigation ul ul {
    background: white !important;
    border: none !important;
    border-radius: 1rem !important;
    box-shadow: 0 10px 40px -10px rgba(54, 94, 138, 0.25), 0 0 0 1px rgba(54, 94, 138, 0.1) !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
    min-width: 240px !important;
}

/* Zone de transition invisible pour garder le dropdown ouvert */
.main-navigation .main-nav ul li.menu-item-has-children,
.main-navigation ul li.menu-item-has-children {
    position: relative !important;
}

.main-navigation .main-nav ul li.menu-item-has-children::after,
.main-navigation ul li.menu-item-has-children::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
}

/* Flèche décorative au-dessus du dropdown */
.main-navigation .main-nav ul ul::before,
.main-navigation ul ul::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-top: 1px solid rgba(54, 94, 138, 0.1);
    border-left: 1px solid rgba(54, 94, 138, 0.1);
}

/* Items du sous-menu */
.main-navigation .main-nav ul ul li,
.main-navigation ul ul li {
    border-bottom: none !important;
    margin: 0 !important;
    float: none !important;
}

.main-navigation .main-nav ul ul li a,
.main-navigation ul ul li a {
    padding: 0.75rem 1rem !important;
    border-radius: 0.5rem !important;
    color: var(--color-text-main) !important;
    font-weight: 500 !important;
    font-size: 0.9375rem !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
    background: transparent !important;
}

.main-navigation .main-nav ul ul li a:hover,
.main-navigation .main-nav ul ul li a:focus,
.main-navigation ul ul li a:hover,
.main-navigation ul ul li a:focus {
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.08) 0%, rgba(244, 236, 108, 0.08) 100%) !important;
    color: var(--color-primary) !important;
    transform: translateX(3px) !important;
}

/* Icône de flèche pour les items avec sous-sous-menu */
.main-navigation .main-nav ul ul li.menu-item-has-children > a::after,
.main-navigation ul ul li.menu-item-has-children > a::after {
    content: '→' !important;
    margin-left: auto !important;
    font-weight: 700 !important;
    transition: transform 0.2s ease !important;
    opacity: 0.5 !important;
}

.main-navigation .main-nav ul ul li.menu-item-has-children > a:hover::after,
.main-navigation ul ul li.menu-item-has-children > a:hover::after {
    transform: translateX(3px) !important;
    opacity: 1 !important;
}

/* Sous-sous-menus (3ème niveau) */
.main-navigation .main-nav ul ul ul,
.main-navigation ul ul ul {
    margin-top: 0.5rem !important;
    margin-left: 0 !important;
    top: 0 !important;
    left: 100% !important;
}

.main-navigation .main-nav ul ul ul::before,
.main-navigation ul ul ul::before {
    left: -8px !important;
    top: 20px !important;
    transform: rotate(45deg) !important;
    border-top: none !important;
    border-left: 1px solid rgba(54, 94, 138, 0.1) !important;
    border-bottom: 1px solid rgba(54, 94, 138, 0.1) !important;
}

/* Séparateur visuel entre les items */
.main-navigation .main-nav ul ul li + li,
.main-navigation ul ul li + li {
    margin-top: 0.125rem !important;
}

/* Animation d'apparition */
.main-navigation .main-nav ul ul,
.main-navigation ul ul {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.main-navigation .main-nav ul li:hover > ul,
.main-navigation .main-nav ul li.sfHover > ul,
.main-navigation ul li:hover > ul,
.main-navigation ul li.sfHover > ul {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Style pour les items actifs dans le sous-menu */
.main-navigation .main-nav ul ul li.current-menu-item > a,
.main-navigation .main-nav ul ul li.current-menu-parent > a,
.main-navigation ul ul li.current-menu-item > a,
.main-navigation ul ul li.current-menu-parent > a {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%) !important;
    color: white !important;
}

.main-navigation .main-nav ul ul li.current-menu-item > a:hover,
.main-navigation .main-nav ul ul li.current-menu-parent > a:hover,
.main-navigation ul ul li.current-menu-item > a:hover,
.main-navigation ul ul li.current-menu-parent > a:hover {
    transform: translateX(0) !important;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .main-navigation .main-nav ul ul,
    .main-navigation ul ul {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-left: 3px solid var(--color-primary) !important;
        margin-left: 1rem !important;
        margin-top: 0.5rem !important;
        padding: 0.5rem 0 !important;
        background: transparent !important;
        min-width: auto !important;
    }

    .main-navigation .main-nav ul ul::before,
    .main-navigation ul ul::before {
        display: none !important;
    }

    .main-navigation .main-nav ul ul li a,
    .main-navigation ul ul li a {
        padding: 0.625rem 1rem !important;
        white-space: normal !important;
    }

    .main-navigation .main-nav ul ul li a:hover,
    .main-navigation ul ul li a:hover {
        transform: translateX(0) !important;
    }
}

/* ========================================
   PAGE ACCÈS RESTREINT
   ======================================== */

/* Forcer la suppression des marges du thème parent */
.page-template-page-acces-restreint .site-main,
.page-template-page-acces-restreint .content-area {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.page-template-page-acces-restreint .separate-containers .site-main {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.restricted-access-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--color-background);
    padding: 4rem 0;
    width: 100%;
    margin: 0;
}

.restricted-gradient-bg-1,
.restricted-gradient-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
}

.restricted-gradient-bg-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.restricted-gradient-bg-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
}

.restricted-content {
    position: relative;
    z-index: 1;
}

.restricted-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.restricted-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 50%;
    color: var(--color-primary);
}

.restricted-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.restricted-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.restricted-benefits {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    text-align: left;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.benefits-list li svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.restricted-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-restricted {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.btn-primary-restricted:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(54, 94, 138, 0.4);
}

.btn-secondary-restricted {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--color-text-main);
    border: 2px solid var(--color-border);
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-restricted:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(54, 94, 138, 0.05);
}

@media (max-width: 768px) {
    .restricted-title {
        font-size: 2rem;
    }

    .restricted-description {
        font-size: 1.125rem;
    }

    .restricted-benefits {
        padding: 2rem;
    }

    .restricted-actions {
        flex-direction: column;
    }

    .btn-primary-restricted,
    .btn-secondary-restricted {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   PAGE FICHES GÉNÉALOGIQUES
   ======================================== */

/* Forcer la suppression des marges du thème parent */
.page-template-page-fiches-genealogiques .site-main,
.page-template-page-fiches-genealogiques .content-area {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.page-template-page-fiches-genealogiques .separate-containers .site-main {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.fiches-genealogiques-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Section */
.fiches-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    width: 100%;
}

.fiches-hero-bg-1,
.fiches-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.fiches-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.fiches-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.fiches-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.fiches-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.fiches-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.fiches-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Content Section */
.fiches-content-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.fiches-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Introduction */
.fiches-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.fiches-intro-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.fiches-intro-text p:last-child {
    margin-bottom: 0;
}

.fiches-intro-image {
    border-radius: 1rem;
    overflow: hidden;
}

.fiches-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sections */
.fiches-section {
    margin-bottom: 4rem;
}

.section-title-fiches {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-primary);
}

.section-intro-fiches {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Répartition Grid */
.repartition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.repartition-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    transition: all 0.3s ease;
}

.repartition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.15);
}

.repartition-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.repartition-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.pays-list p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    text-align: left;
}

/* Consultation Card */
.consultation-card {
    display: flex;
    gap: 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.consultation-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1rem;
    color: var(--color-primary);
}

.consultation-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.consultation-content p:last-child {
    margin-bottom: 0;
}

.consultation-objectif {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0.5rem;
}

/* Timeline */
.historique-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 200px;
    top: 0;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(54, 94, 138, 0.2) 100%);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-date {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 0.75rem;
    text-align: center;
    height: fit-content;
}

.timeline-content {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.timeline-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.timeline-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.timeline-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.timeline-image {
    margin: 2rem 0;
    border-radius: 1rem;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Évolution */
.historique-evolution {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.historique-evolution h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.historique-evolution p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.search-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.search-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 0.75rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.search-feature svg {
    color: var(--color-primary);
}

/* Utilisation */
.utilisation-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.utilisation-image {
    border-radius: 1rem;
    overflow: hidden;
}

.utilisation-image img {
    width: 100%;
    height: auto;
    display: block;
}

.utilisation-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Bulletins */
.bulletins-info {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.bulletins-info p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.bulletins-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.bulletins-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding: 1rem 1.5rem;
    background: var(--color-background);
    border-radius: 0.5rem;
    border-left: 3px solid var(--color-primary);
}

/* Signature */
.fiches-signature {
    text-align: right;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.fiches-signature p {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .fiches-hero {
        padding: 5rem 0 3rem;
    }

    .fiches-hero-title {
        font-size: 2.5rem;
    }

    .fiches-hero-subtitle {
        font-size: 1.25rem;
    }

    .fiches-content-section {
        padding: 3rem 0;
    }

    .fiches-intro {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .section-title-fiches {
        font-size: 1.875rem;
    }

    .repartition-grid {
        grid-template-columns: 1fr;
    }

    .consultation-card {
        flex-direction: column;
        padding: 2rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-item::before {
        display: none;
    }

    .search-features {
        flex-direction: column;
        gap: 1rem;
    }

    .utilisation-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .bulletins-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PAGE AUGUSTA06
   ======================================== */

/* Forcer la suppression des marges du thème parent */
.page-template-page-augusta06 .site-main,
.page-template-page-augusta06 .content-area {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.page-template-page-augusta06 .separate-containers .site-main {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.augusta06-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Section */
.augusta-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    width: 100%;
}

.augusta-hero-bg-1,
.augusta-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.augusta-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.augusta-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.augusta-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.augusta-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.augusta-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

/* Content Section */
.augusta-content {
    padding: 5rem 0;
    background: var(--color-background);
}

.augusta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.augusta-section {
    margin-bottom: 5rem;
}

.augusta-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-primary);
}

/* Cards */
.augusta-card {
    display: flex;
    gap: 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    transition: all 0.3s ease;
}

.augusta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -3px rgba(54, 94, 138, 0.15);
}

.augusta-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: 1rem;
}

.augusta-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.augusta-card p:last-child {
    margin-bottom: 0;
}

.augusta-link {
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.augusta-link:hover {
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.2) 0%, rgba(244, 236, 108, 0.2) 100%);
    transform: translateX(4px);
}

/* Criteria */
.augusta-criteria {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.criteria-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0.5rem;
}

.criteria-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.criteria-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1rem;
    color: var(--color-primary);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.step-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.step-card p:last-child {
    margin-bottom: 0;
}

/* Step Options */
.step-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.option-box {
    padding: 2rem;
    background: var(--color-background);
    border-radius: 1rem;
    border: 2px solid var(--color-border);
}

.option-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.option-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.option-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.option-box ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.option-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .augusta-hero {
        padding: 5rem 0 3rem;
    }

    .augusta-hero-title {
        font-size: 2.5rem;
    }

    .augusta-hero-subtitle {
        font-size: 1.25rem;
    }

    .augusta-content {
        padding: 3rem 0;
    }

    .augusta-section-title {
        font-size: 2rem;
    }

    .augusta-card {
        flex-direction: column;
        padding: 2rem;
    }

    .augusta-criteria {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .step-options {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 2rem;
    }
}

/* ========================================
   PAGE CONSEIL D'ADMINISTRATION
   ======================================== */

/* Forcer la suppression des marges du thème parent */
.page-template-page-conseil-administration .site-main,
.page-template-page-conseil-administration .content-area {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.page-template-page-conseil-administration .separate-containers .site-main {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.ca-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Section */
.ca-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    width: 100%;
}

.ca-hero-bg-1,
.ca-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.ca-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.ca-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.ca-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.ca-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.ca-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Content Section */
.ca-content {
    padding: 5rem 0;
    background: var(--color-background);
}

.ca-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.ca-section {
    margin-bottom: 4rem;
}

.ca-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-primary);
}

.ca-section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Members Grid */
.ca-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.ca-member-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    transition: all 0.3s ease;
}

.ca-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.15);
}

.ca-member-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 50%;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.ca-member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.15);
    transition: all 0.3s ease;
}

.ca-member-card:hover .ca-member-photo {
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(54, 94, 138, 0.25);
    transform: scale(1.05);
}

.ca-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ca-member-info {
    width: 100%;
}

.ca-member-poste {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.ca-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
    line-height: 1.4;
}

.ca-member-name a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ca-member-name a:hover {
    color: var(--color-primary);
}

/* No Content */
.ca-no-content {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.ca-no-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ca-hero {
        padding: 5rem 0 3rem;
    }

    .ca-hero-title {
        font-size: 2.5rem;
    }

    .ca-hero-subtitle {
        font-size: 1.25rem;
    }

    .ca-content {
        padding: 3rem 0;
    }

    .ca-section-title {
        font-size: 1.875rem;
    }

    .ca-members-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PAGE ESPACE ADHÉRENTS
   ======================================== */

/* Forcer la suppression des marges du thème parent */
.page-template-page-espace-adherents .site-main,
.page-template-page-espace-adherents .content-area {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.page-template-page-espace-adherents .separate-containers .site-main {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.espace-adherents-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Section */
.adherents-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    width: 100%;
}

.adherents-hero-bg-1,
.adherents-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.adherents-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.adherents-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.adherents-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.adherents-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.adherents-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Content Section */
.adherents-content {
    padding: 5rem 0;
    background: var(--color-background);
}

.adherents-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Notice */
.adherents-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* Filters */
.adherents-filters {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.filters-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-group label svg {
    flex-shrink: 0;
}

.filter-group input[type="text"],
.filter-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--color-text-main);
    background: white;
    transition: all 0.2s ease;
}

.filter-group input[type="text"]:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(54, 94, 138, 0.1);
}

.btn-reset-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-end;
}

.btn-reset-filters:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(54, 94, 138, 0.05);
}

.results-count {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    padding: 0.75rem;
    background: var(--color-background);
    border-radius: 0.5rem;
}

.results-count span {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

/* Responsive filters */
@media (max-width: 1024px) {
    .filters-row {
        grid-template-columns: 1fr 1fr;
    }

    .btn-reset-filters {
        grid-column: span 2;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .adherents-filters {
        padding: 1.5rem;
    }

    .filters-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .btn-reset-filters {
        grid-column: 1;
    }
}

.notice-icon {
    flex-shrink: 0;
    color: var(--color-primary);
}

.adherents-notice p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* Table Wrapper */
.adherents-table-wrapper {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    overflow-x: auto;
}

/* Table */
.adherents-table {
    width: 100%;
    border-collapse: collapse;
}

.adherents-table thead {
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
}

.adherents-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--color-border);
}

.adherents-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s ease;
}

.adherents-table tbody tr:hover {
    background-color: rgba(54, 94, 138, 0.02);
}

.adherents-table tbody tr:last-child {
    border-bottom: none;
}

/* Masquer les lignes après la 3ème par défaut */
.adherents-table tbody tr.adherent-row-hidden {
    display: none;
}

.adherents-table td {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.email-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.email-link:hover {
    color: #2A4A6E;
    text-decoration: underline;
}

/* Button Contact */
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(54, 94, 138, 0.2);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.3);
}

.btn-contact svg {
    width: 16px;
    height: 16px;
}

/* Bouton "Voir plus" */
.adherents-show-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(54, 94, 138, 0.3);
}

.btn-show-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(54, 94, 138, 0.4);
}

.btn-show-more svg {
    transition: transform 0.3s ease;
}

/* Footer Note */
.adherents-footer-note {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: var(--color-background);
    border-radius: 0.5rem;
    border-left: 3px solid var(--color-primary);
}

.adherents-footer-note p {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================
   SECTION BULLETINS - PAGE D'ACCUEIL
   ============================================ */

.bulletins-section {
    padding: 6rem 0;
    background: var(--color-background);
    position: relative;
}

.bulletins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bulletin-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bulletin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(54, 94, 138, 0.15), 0 8px 10px -6px rgba(54, 94, 138, 0.1);
}

.bulletin-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.bulletin-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bulletin-card:hover .bulletin-thumbnail img {
    transform: scale(1.05);
}

.bulletin-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.bulletin-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.bulletin-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bulletin-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.bulletin-meta svg {
    flex-shrink: 0;
}

.bulletin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.bulletin-link:hover {
    color: #2a4a6e;
    gap: 0.75rem;
}

.bulletin-link svg {
    transition: transform 0.2s ease;
}

.bulletin-link:hover svg {
    transform: translateY(2px);
}

.bulletins-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

/* ============================================
   SECTION RÉSEAUX SOCIAUX (HOMEPAGE)
   ============================================ */

.social-media-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.facebook-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
    color: white;
}

.instagram-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.social-card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.social-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.social-stat-item svg {
    color: var(--color-primary);
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.btn-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.btn-facebook:hover {
    background: linear-gradient(135deg, #0c63d4 0%, #1877f2 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
}

@media (max-width: 768px) {
    .social-media-grid {
        grid-template-columns: 1fr;
    }
    
    .social-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ============================================
   PAGE ARCHIVE BULLETINS
   ============================================ */

.bulletins-archive-wrapper {
    background: var(--color-background);
    min-height: 100vh;
    width: 100%;
}

.bulletins-archive-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a4a6e 100%);
    overflow: hidden;
}

.bulletins-hero-bg-1,
.bulletins-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.bulletins-hero-bg-1 {
    width: 600px;
    height: 600px;
    background: var(--color-secondary);
    top: -200px;
    right: -100px;
}

.bulletins-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    bottom: -100px;
    left: -100px;
}

.bulletins-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.bulletins-hero-content {
    text-align: center;
}

.bulletins-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin: 0 0 1rem;
    line-height: 1.1;
}

.bulletins-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.bulletins-archive-content {
    padding: 6rem 0;
}

.bulletins-archive-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bulletins-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.bulletin-archive-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bulletin-archive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px -5px rgba(54, 94, 138, 0.15), 0 8px 10px -6px rgba(54, 94, 138, 0.1);
}

.bulletin-archive-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.bulletin-archive-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bulletin-archive-card:hover .bulletin-archive-thumbnail img {
    transform: scale(1.05);
}

.bulletin-archive-overlay {
    position: absolute;
    inset: 0;
    background: rgba(54, 94, 138, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bulletin-archive-card:hover .bulletin-archive-overlay {
    opacity: 1;
}

.bulletin-archive-overlay svg {
    color: white;
}

.bulletin-archive-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.bulletin-archive-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.bulletin-archive-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
    line-height: 1.4;
}

.bulletin-archive-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.bulletin-archive-meta svg {
    flex-shrink: 0;
}

.bulletin-archive-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a4a6e 100%);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    margin-top: auto;
    justify-content: center;
}

.bulletin-archive-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
}

.bulletin-archive-link svg {
    transition: transform 0.2s ease;
}

.bulletin-archive-link:hover svg {
    transform: translateY(2px);
}

.bulletins-archive-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bulletins-archive-empty svg {
    color: var(--color-text-muted);
}

.bulletins-archive-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
}

.bulletins-archive-empty p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin: 0;
}

.bulletins-pagination {
    grid-column: 1 / -1;
    margin-top: 3rem;
}

.bulletins-pagination ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bulletins-pagination li {
    margin: 0;
}

.bulletins-pagination a,
.bulletins-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bulletins-pagination a {
    background: white;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

.bulletins-pagination a:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.bulletins-pagination .current {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a4a6e 100%);
    color: white;
    border: 1px solid var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .bulletins-grid,
    .bulletins-archive-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .bulletins-archive-hero {
        padding: 6rem 0 4rem;
    }
    
    .bulletins-hero-title {
        font-size: 2.5rem;
    }
    
    .bulletins-hero-subtitle {
        font-size: 1rem;
    }
    
    .bulletins-archive-content {
        padding: 4rem 0;
    }
}

/* Databases Section */
.databases-section {
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.databases-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    text-align: center;
}

.databases-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

.databases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.database-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.02) 0%, rgba(244, 236, 108, 0.02) 100%);
    border: 2px solid var(--color-border);
    border-radius: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.database-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.database-card:not(.database-card-disabled):hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.2);
    border-color: var(--color-primary);
    background: white;
}

.database-card:not(.database-card-disabled):hover::before {
    opacity: 1;
}

.database-card-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.database-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.database-card:not(.database-card-disabled):hover .database-icon {
    transform: scale(1.1);
}

.database-icon-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
}

.database-icon-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.database-icon-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
}

.database-icon-yellow {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.database-icon-orange {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
}

.database-icon-red {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.database-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.database-description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.database-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2rem;
}

.database-badge-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
}

.database-badge-soon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

/* Responsive Databases */
@media (max-width: 1024px) {
    .databases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .databases-section {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .databases-title {
        font-size: 1.75rem;
    }

    .databases-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .databases-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .database-card {
        padding: 2rem 1.5rem;
    }

    .database-icon {
        width: 64px;
        height: 64px;
    }

    .database-icon svg {
        width: 28px;
        height: 28px;
    }

    .database-title {
        font-size: 1.125rem;
    }
}

/* Research Help Section */
.research-help-section {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.03) 0%, rgba(244, 236, 108, 0.03) 100%);
    border-radius: 1.5rem;
    border: 1px solid var(--color-border);
}

.research-help-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    text-align: center;
}

.research-help-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 2.5rem;
}

.research-help-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.research-help-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.08);
}

.research-help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.15);
    border-color: var(--color-primary);
}

.research-card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1rem;
    color: var(--color-primary);
}

.research-card-content {
    flex: 1;
}

.research-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.research-card-description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.research-card-arrow {
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.research-help-card:hover .research-card-arrow {
    transform: translateX(4px);
}

/* Responsive Research Help */
@media (max-width: 768px) {
    .research-help-section {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .research-help-title {
        font-size: 1.75rem;
    }

    .research-help-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .research-help-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .research-help-card {
        padding: 1.5rem;
    }

    .research-card-icon {
        width: 60px;
        height: 60px;
    }

    .research-card-icon svg {
        width: 36px;
        height: 36px;
    }

    .research-card-title {
        font-size: 1.125rem;
    }
}

/* Tutoriels Section */
.tutoriels-section {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.03) 0%, rgba(244, 236, 108, 0.03) 100%);
    border-radius: 1.5rem;
    border: 1px solid var(--color-border);
}

.tutoriels-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    text-align: center;
}

.tutoriels-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

/* Barre de filtres et recherche */
.tutoriels-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
}

.tutoriels-search-box {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.tutoriels-search-box svg {
    position: absolute;
    left: 1rem;
    color: var(--color-text-muted);
    pointer-events: none;
}

.tutoriels-search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.tutoriels-search-box input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(54, 94, 138, 0.1);
}

.tutoriels-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tutoriels-sort label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.tutoriels-sort select {
    padding: 0.625rem 2rem 0.625rem 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tutoriels-sort select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(54, 94, 138, 0.1);
}

.tutoriels-count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
    border-radius: 0.5rem;
}

.tutoriels-count span {
    color: var(--color-primary);
    font-size: 1rem;
}

/* Liste compacte des tutoriels */
.tutoriels-list-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tutoriel-item-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tutoriel-item-compact:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px -2px rgba(54, 94, 138, 0.12);
    border-color: var(--color-primary);
}

.tutoriel-compact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 0.5rem;
    color: var(--color-primary);
}

.tutoriel-compact-info {
    flex: 1;
    min-width: 0;
}

.tutoriel-compact-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tutoriel-compact-date {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.tutoriel-compact-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tutoriel-compact-badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
}

.tutoriel-compact-action svg {
    color: var(--color-primary);
    transition: transform 0.2s ease;
}

.tutoriel-item-compact:hover .tutoriel-compact-action svg {
    transform: translate(2px, -2px);
}

.tutoriels-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
}

.tutoriels-empty .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 50%;
    color: var(--color-primary);
}

.tutoriels-empty p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Responsive Tutoriels */
@media (max-width: 768px) {
    .tutoriels-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .tutoriels-title {
        font-size: 1.75rem;
    }

    .tutoriels-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .tutoriels-filters {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .tutoriels-search-box {
        width: 100%;
    }

    .tutoriels-sort {
        width: 100%;
        justify-content: space-between;
    }

    .tutoriels-sort select {
        flex: 1;
    }

    .tutoriels-count {
        text-align: center;
    }

    .tutoriel-item-compact {
        padding: 0.875rem 1rem;
    }

    .tutoriel-compact-icon {
        width: 36px;
        height: 36px;
    }

    .tutoriel-compact-icon svg {
        width: 18px;
        height: 18px;
    }

    .tutoriel-compact-title {
        font-size: 0.9375rem;
    }

    .tutoriel-compact-date {
        font-size: 0.75rem;
    }
}

/* Documents Réunions Section */
.documents-reunions-section {
    margin-top: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.documents-reunions-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    text-align: center;
}

.documents-reunions-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.documents-reunions-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.03) 0%, rgba(244, 236, 108, 0.03) 100%);
    border: 2px solid var(--color-border);
    border-radius: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.documents-reunions-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.15);
    border-color: var(--color-primary);
    background: white;
}

.documents-card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    border-radius: 1rem;
    color: white;
}

.documents-card-content {
    flex: 1;
}

.documents-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.documents-card-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.documents-card-arrow {
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.documents-reunions-card:hover .documents-card-arrow {
    transform: translateX(4px);
}

/* Responsive Documents Réunions */
@media (max-width: 768px) {
    .documents-reunions-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .documents-reunions-title {
        font-size: 1.75rem;
    }

    .documents-reunions-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .documents-reunions-card {
        padding: 1.5rem;
    }

    .documents-card-icon {
        width: 60px;
        height: 60px;
    }

    .documents-card-icon svg {
        width: 36px;
        height: 36px;
    }

    .documents-card-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   PAGE DOCUMENTS RÉUNIONS D'ENTRAIDE
   ======================================== */

/* Forcer la suppression des marges du thème parent */
.page-template-page-documents-reunions .site-main,
.page-template-page-documents-reunions .content-area {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.page-template-page-documents-reunions .separate-containers .site-main {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.documents-reunions-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Section */
.documents-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    width: 100%;
}

.documents-hero-bg-1,
.documents-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.documents-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.documents-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.documents-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.documents-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.documents-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Content Section */
.documents-content {
    padding: 5rem 0;
    background: var(--color-background);
}

.documents-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.documents-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.documents-notice .notice-icon {
    flex-shrink: 0;
    color: var(--color-primary);
}

.documents-notice p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* Placeholder */
.documents-placeholder {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.placeholder-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 50%;
    color: var(--color-primary);
}

.documents-placeholder h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.documents-placeholder p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.placeholder-note {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--color-primary);
    margin-top: 1.5rem;
}

/* Responsive Documents Page */
@media (max-width: 768px) {
    .documents-hero {
        padding: 5rem 0 3rem;
    }

    .documents-hero-title {
        font-size: 2.5rem;
    }

    .documents-hero-subtitle {
        font-size: 1.25rem;
    }

    .documents-content {
        padding: 3rem 0;
    }

    .placeholder-icon {
        width: 100px;
        height: 100px;
    }

    .placeholder-icon svg {
        width: 60px;
        height: 60px;
    }
}

/* Empty State */
.adherents-empty {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 50%;
    color: var(--color-primary);
}

.adherents-empty h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.adherents-empty p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.empty-note {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--color-primary);
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .adherents-hero {
        padding: 5rem 0 3rem;
    }

    .adherents-hero-title {
        font-size: 2.5rem;
    }

    .adherents-hero-subtitle {
        font-size: 1.25rem;
    }

    .adherents-content {
        padding: 3rem 0;
    }

    .adherents-table-wrapper {
        padding: 1rem;
    }

    /* Responsive Table */
    .adherents-table thead {
        display: none;
    }

    .adherents-table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid var(--color-border);
        border-radius: 0.75rem;
        padding: 1rem;
    }

    .adherents-table tbody tr:hover {
        background-color: white;
    }

    .adherents-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .adherents-table td:last-child {
        border-bottom: none;
    }

    .adherents-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--color-primary);
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   FORMULAIRE EDIT ACCOUNT - CONFIDENTIALITÉ
   ======================================== */

.agam-privacy-fieldset,
.agam-research-fieldset {
    background: #FFFFFF !important;
    border: 2px solid #365E8A !important;
    border-radius: 12px !important;
    padding: 24px !important;
    margin: 24px 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1) !important;
    position: relative !important;
}

.agam-privacy-fieldset legend,
.agam-research-fieldset legend {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #365E8A !important;
    padding: 0 12px !important;
    display: block !important;
    visibility: visible !important;
    background: #FFFFFF !important;
    margin-bottom: 16px !important;
}

.agam-privacy-field {
    margin-bottom: 0 !important;
    display: block !important;
    visibility: visible !important;
    padding: 0 !important;
}

.agam-privacy-field label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    cursor: pointer !important;
    margin-bottom: 12px !important;
    visibility: visible !important;
    color: #0F172A !important;
    font-weight: 500 !important;
}

.agam-privacy-field label span {
    color: #0F172A !important;
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    display: block !important;
}

.agam-privacy-field input[type="checkbox"] {
    margin-top: 4px !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    cursor: pointer !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    flex-shrink: 0 !important;
    accent-color: #365E8A !important;
    border: 2px solid #365E8A !important;
}

.agam-privacy-description {
    display: block !important;
    font-size: 0.8125rem !important;
    color: #64748B !important;
    font-style: italic !important;
    margin-left: 32px !important;
    line-height: 1.6 !important;
    visibility: visible !important;
    padding: 8px 12px !important;
    background: #F8FAFC !important;
    border-radius: 6px !important;
    border-left: 3px solid #365E8A !important;
}

/* Fieldset Lieux de recherches */
.agam-research-fieldset label {
    font-weight: 600 !important;
    color: #0F172A !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.agam-research-description {
    display: block !important;
    font-size: 0.8125rem !important;
    color: #64748B !important;
    font-style: italic !important;
    margin-bottom: 16px !important;
    line-height: 1.6 !important;
    visibility: visible !important;
    padding: 8px 12px !important;
    background: #F8FAFC !important;
    border-radius: 6px !important;
    border-left: 3px solid #F4EC6C !important;
}

.agam-tags-container {
    margin-top: 12px !important;
    display: block !important;
    visibility: visible !important;
}

.agam-tags-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
    min-height: 50px !important;
    padding: 12px !important;
    background: #F8FAFC !important;
    border-radius: 8px !important;
    border: 1px dashed #E2E8F0 !important;
    visibility: visible !important;
}

.agam-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 12px !important;
    background: linear-gradient(135deg, #365E8A 0%, #4A7BA7 100%) !important;
    color: white !important;
    border-radius: 6px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(54, 94, 138, 0.2) !important;
    transition: all 0.2s ease !important;
    visibility: visible !important;
}

.agam-tag:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.3) !important;
}

.agam-tag-remove {
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    color: white !important;
    font-size: 1.125rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
    padding: 2px 6px !important;
    margin: 0 !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    font-weight: 700 !important;
}

.agam-tag-remove:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1) !important;
}

#agam_research_input {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #E2E8F0 !important;
    border-radius: 8px !important;
    font-size: 0.9375rem !important;
    transition: all 0.2s ease !important;
    background: #FFFFFF !important;
    color: #0F172A !important;
}

#agam_research_input:focus {
    outline: none !important;
    border-color: #365E8A !important;
    box-shadow: 0 0 0 3px rgba(54, 94, 138, 0.1) !important;
}

#agam_research_input::placeholder {
    color: #94A3B8 !important;
    font-style: italic !important;
}

/* Colonne Lieux de recherches dans le tableau */
.locations-cell {
    max-width: 300px;
}

.no-locations {
    font-style: italic;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* ========================================
   PAGE PROJET BLEUETS
   ======================================== */

/* Wrapper global */
.agam-bleuets-page-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.agam-bleuets-page-wrapper > * {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
}

/* Hero Section */
.bleuets-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    width: 100%;
}

.bleuets-hero-bg-1,
.bleuets-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.bleuets-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.bleuets-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.bleuets-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.bleuets-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bleuets-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.bleuets-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Content Section */
.bleuets-content-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.bleuets-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Introduction */
.bleuets-intro {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.intro-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.intro-list li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.intro-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Sections */
.bleuets-section {
    margin-bottom: 4rem;
}

.bleuets-section:last-child {
    margin-bottom: 0;
}

.section-title-bleuets {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-primary);
}

.section-intro-bleuets {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Bleuets Card */
.bleuets-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
}

.bleuets-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.bleuets-card p:last-child {
    margin-bottom: 0;
}

/* Collaboration Grid */
.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.collaboration-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.collaboration-card:hover {
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.15);
    transform: translateY(-4px);
}

.collaboration-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.collaboration-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1.25rem;
}

.collaboration-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collaboration-card ul li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.collaboration-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.collaboration-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Resources List */
.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.resource-item:hover {
    box-shadow: 0 8px 25px -5px rgba(54, 94, 138, 0.15);
    transform: translateX(4px);
}

.resource-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 0.75rem;
    color: var(--color-primary);
}

.resource-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.resource-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* Archives Grid */
.archives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.archive-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.archive-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px -5px rgba(54, 94, 138, 0.15);
    transform: translateY(-4px);
}

.archive-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    border-radius: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.archive-card:hover .archive-icon {
    transform: scale(1.1);
}

.archive-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.archive-card:hover h4 {
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .bleuets-hero {
        padding: 5rem 0 3rem;
    }

    .bleuets-hero-title {
        font-size: 2.5rem;
    }

    .bleuets-hero-subtitle {
        font-size: 1.25rem;
    }

    .bleuets-content-section {
        padding: 3rem 0;
    }

    .bleuets-intro {
        padding: 2rem;
    }

    .section-title-bleuets {
        font-size: 1.875rem;
    }

    .collaboration-grid {
        grid-template-columns: 1fr;
    }

    .resource-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .archives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   PAGE HÉRALDIQUE
   ======================================== */

/* Wrapper global */
.agam-heraldique-page-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.agam-heraldique-page-wrapper > * {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
}

/* Hero Section */
.heraldique-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    width: 100%;
}

.heraldique-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.heraldique-hero-bg-1,
.heraldique-hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
}

.heraldique-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.heraldique-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.heraldique-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.heraldique-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.heraldique-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.heraldique-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Section */
.heraldique-content-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.heraldique-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.heraldique-section {
    margin-bottom: 5rem;
}

.heraldique-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-primary);
}

/* Reference Cards */
.reference-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.reference-card:hover {
    box-shadow: 0 12px 35px -5px rgba(54, 94, 138, 0.15);
    transform: translateY(-4px);
}

.reference-image {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    max-height: 300px;
}

.reference-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
}

.section-image {
    margin-bottom: 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 25px -5px rgba(54, 94, 138, 0.2);
    max-height: 400px;
}

.section-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.reference-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.reference-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    border-radius: 1rem;
    color: var(--color-primary);
}

.reference-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
    flex: 1;
}

.reference-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.reference-description:last-child {
    margin-bottom: 0;
}

.reference-list {
    margin-top: 1.5rem;
}

.reference-list h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.reference-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reference-list ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.reference-list ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.reference-list .note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--color-text-muted);
}

/* WooCommerce Subscriptions - Masquer la ligne de renouvellement automatique */
.shop_table.subscription_details tr:has(.wcs-auto-renew-toggle) {
    display: none;
}

/* Fallback pour les navigateurs qui ne supportent pas :has() */
.shop_table.subscription_details td .wcs-auto-renew-toggle {
    display: none;
}

.shop_table.subscription_details tr td:first-child:contains("Renouvellement automatique") {
    display: none;
}

/* WooCommerce Subscriptions - Toggle de renouvellement automatique */
.wcs-auto-renew-toggle {
    display: none !important;
}

.subscription-auto-renew-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.subscription-auto-renew-toggle__i {
    display: inline-block;
    width: 50px;
    height: 28px;
    position: relative;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.subscription-auto-renew-toggle--on .subscription-auto-renew-toggle__i {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.subscription-auto-renew-toggle--off .subscription-auto-renew-toggle__i {
    background-color: #ccc !important;
    border-color: #ccc !important;
}

.subscription-auto-renew-toggle__i::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.subscription-auto-renew-toggle--on .subscription-auto-renew-toggle__i::after {
    transform: translateX(22px);
}

.subscription-auto-renew-toggle:hover .subscription-auto-renew-toggle__i {
    opacity: 0.8;
}

.subscription-auto-renew-toggle:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .heraldique-hero {
        padding: 5rem 0 3rem;
    }

    .heraldique-hero-title {
        font-size: 2.5rem;
    }

    .heraldique-hero-subtitle {
        font-size: 1.125rem;
    }

    .heraldique-content-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .reference-card {
        padding: 1.5rem;
    }

    .reference-header {
        flex-direction: column;
        text-align: center;
    }

    .reference-header h3 {
        font-size: 1.25rem;
    }
}

/* ========================================
   STYLES BBPRESS - FORUM CLAIR ET LISIBLE
   ======================================== */

/* Suppression des marges du thème parent pour BBPress */
.bbpress .separate-containers .site-main,
.single-forum .separate-containers .site-main,
.single-topic .separate-containers .site-main,
.single-reply .separate-containers .site-main {
    margin: 0 !important;
}

/* Container principal - Design épuré */
#bbpress-forums {
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
}

/* En-tête du forum - Plus visible */
#bbpress-forums .bbp-forum-header,
#bbpress-forums .bbp-topic-header {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 1rem;
}

#bbpress-forums .bbp-forum-title,
#bbpress-forums .bbp-topic-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
}

/* Titre de la page forum */
.bbpress .entry-title,
.single-forum .entry-title,
.single-topic .entry-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

/* Tableau BBPress */
#bbpress-forums .bbpress-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* En-tête du tableau */
#bbpress-forums .bbpress-table thead {
    background: var(--color-background);
}

#bbpress-forums .bbpress-table thead th {
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    border-bottom: 2px solid var(--color-border);
}

#bbpress-forums .bbpress-table thead th:first-child {
    text-align: left;
}

#bbpress-forums .bbpress-table thead th.bbp-topic-voice-count,
#bbpress-forums .bbpress-table thead th.bbp-topic-reply-count {
    text-align: center;
    width: 120px;
}

#bbpress-forums .bbpress-table thead th.bbp-topic-freshness {
    text-align: right;
    width: 220px;
}

/* Corps du tableau */
#bbpress-forums .bbpress-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s ease;
}

#bbpress-forums .bbpress-table tbody tr:last-child {
    border-bottom: none;
}

#bbpress-forums .bbpress-table tbody tr:hover {
    background: rgba(54, 94, 138, 0.03);
}

#bbpress-forums .bbpress-table tbody td {
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

/* Colonne titre */
#bbpress-forums .bbpress-table tbody td.bbp-topic-title-cell {
    text-align: left;
}

#bbpress-forums .bbpress-table tbody td.bbp-topic-title-cell a {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

#bbpress-forums .bbpress-table tbody td.bbp-topic-title-cell a:hover {
    color: var(--color-primary);
}

/* Colonnes participants et messages */
#bbpress-forums .bbpress-table tbody td.bbp-voice-count-cell,
#bbpress-forums .bbpress-table tbody td.bbp-reply-count-cell {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Colonne dernière publication */
#bbpress-forums .bbpress-table tbody td.bbp-freshness-cell {
    text-align: right;
    font-size: 0.875rem;
}

#bbpress-forums .bbpress-table tbody td.bbp-freshness-cell a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

#bbpress-forums .bbpress-table tbody td.bbp-freshness-cell a:hover {
    color: #2A4A6E;
    text-decoration: underline;
}

/* Responsive tableau */
@media (max-width: 768px) {
    #bbpress-forums .bbpress-table {
        display: block;
        overflow-x: auto;
    }
    
    #bbpress-forums .bbpress-table thead th,
    #bbpress-forums .bbpress-table tbody td {
        padding: 0.875rem 1rem;
    }
}

/* ========================================
   ÉDITEUR ET ÉLÉMENTS SPÉCIAUX
   ======================================== */

/* Container de l'éditeur */
#bbpress-forums .bbp-the-content-wrapper {
    margin-bottom: 20px;
}

#bbpress-forums .wp-editor-container {
    border: 2px solid #E2E8F0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: all 0.2s ease !important;
}

#bbpress-forums .wp-editor-container:focus-within {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(54, 94, 138, 0.08) !important;
}

/* Quicktags (éditeur texte) */
#bbpress-forums .quicktags-toolbar {
    background: #F8FAFC !important;
    border: none !important;
    border-bottom: 1px solid #E2E8F0 !important;
    padding: 8px !important;
    display: flex !important;
    gap: 4px !important;
}

#bbpress-forums .quicktags-toolbar input {
    background: white !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 6px !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    margin: 0 !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
}

#bbpress-forums .quicktags-toolbar input:hover {
    background: #F1F5F9 !important;
    border-color: #CBD5E1 !important;
}

/* Zone de texte */
#bbpress-forums .wp-editor-area {
    padding: 16px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    border: none !important;
    min-height: 150px !important;
}

/* Tags et catégories */
#bbpress-forums .bbp-topic-tags,
#bbpress-forums .bbp-forum-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-top: 0.5rem !important;
}

#bbpress-forums .bbp-topic-tag,
#bbpress-forums .bbp-forum-tag {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.375rem 0.875rem !important;
    background: rgba(54, 94, 138, 0.1) !important;
    color: var(--color-primary) !important;
    border-radius: 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

#bbpress-forums .bbp-topic-tag:hover,
#bbpress-forums .bbp-forum-tag:hover {
    background: var(--color-primary) !important;
    color: white !important;
}

/* Messages d'erreur et de succès */
#bbpress-forums .bbp-template-notice {
    display: none !important;
}

/* Afficher uniquement les messages importants (erreurs et succès) */
#bbpress-forums .bbp-template-notice.success,
#bbpress-forums .bbp-template-notice.error {
    display: block !important;
}

#bbpress-forums .bbp-template-notice.success {
    background: rgba(16, 185, 129, 0.08) !important;
    border-left: 4px solid #10B981 !important;
    color: #059669 !important;
    padding: 1rem 1.25rem !important;
    border-radius: 0.5rem !important;
    margin-bottom: 1.5rem !important;
}

#bbpress-forums .bbp-template-notice.error {
    background: rgba(239, 68, 68, 0.08) !important;
    border-left: 4px solid #EF4444 !important;
    color: #DC2626 !important;
    padding: 1rem 1.25rem !important;
    border-radius: 0.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* Champs requis */
#bbpress-forums .required {
    color: #EF4444 !important;
    font-weight: 600 !important;
}

/* Masquer les éléments inutiles */
#bbpress-forums #subscription-toggle,
#bbpress-forums .subscription-toggle,
#bbpress-forums #favorite-toggle,
#bbpress-forums .bbp-pagination {
    display: none !important;
}

/* Masquer le champ étiquettes */
#bbpress-forums p:has(#bbp_topic_tags),
#bbpress-forums label[for="bbp_topic_tags"],
#bbpress-forums .bbp-topic-tags {
    display: none !important;
}

/* ========================================
   BREADCRUMB
   ======================================== */

#bbpress-forums .bbp-breadcrumb {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 24px;
    font-size: 14px;
}

#bbpress-forums .bbp-breadcrumb p {
    margin: 0 !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

#bbpress-forums .bbp-breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

#bbpress-forums .bbp-breadcrumb a:hover {
    color: #2A4A6E;
    text-decoration: underline;
}

#bbpress-forums .bbp-breadcrumb .bbp-breadcrumb-current {
    color: #64748B;
    font-weight: 500;
}

#bbpress-forums .bbp-breadcrumb .bbp-breadcrumb-sep {
    color: #CBD5E1;
    font-weight: 400;
}

/* ========================================
   RÉPONSES ET MESSAGES DU FORUM
   ======================================== */

/* Container des réponses */
#bbpress-forums .bbp-replies,
#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-lead-topic,
#bbpress-forums ul.bbp-search-results,
#bbpress-forums ul.bbp-topics {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none !important;
}

/* Header et footer - masqués */
#bbpress-forums .bbp-replies .bbp-header,
#bbpress-forums .bbp-replies .bbp-footer {
    display: none;
}

/* Body des réponses */
#bbpress-forums .bbp-replies .bbp-body {
    padding: 0;
    margin: 0;
}

/* Masquer les liens admin et IP */
#bbpress-forums .bbp-admin-links,
#bbpress-forums .bbp-reply-ip {
    display: none;
}

/* ===== POST PRINCIPAL (TOPIC) ===== */

/* Header du post principal */
#bbpress-forums .bbp-body > #post-229.bbp-reply-header,
#bbpress-forums .bbp-body > div.bbp-reply-header:first-of-type {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 16px 24px;
    margin-top: 0;
}

#bbpress-forums .bbp-body > div.bbp-reply-header:first-of-type .bbp-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

#bbpress-forums .bbp-body > div.bbp-reply-header:first-of-type .bbp-reply-post-date {
    color: rgba(255, 255, 255, 0.9);
}

#bbpress-forums .bbp-body > div.bbp-reply-header:first-of-type .bbp-reply-permalink {
    display: none;
}

/* Contenu du post principal */
#bbpress-forums .bbp-body > div.topic {
    background: linear-gradient(to bottom, #FAFBFC 0%, white 100%);
    border: 2px solid var(--color-primary);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 32px 24px;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.08);
}

/* Auteur du post principal */
#bbpress-forums .bbp-body > div.topic .bbp-reply-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E2E8F0;
}

#bbpress-forums .bbp-body > div.topic .bbp-reply-author::after {
    content: "Auteur du sujet";
    margin-left: auto;
    padding: 4px 12px;
    background: var(--color-primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
}

/* ===== RÉPONSES (REPLY) ===== */

/* Pagination des réponses */
#bbpress-forums .bbp-replies-pagination {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 32px 0 24px 0;
}

#bbpress-forums .bbp-pagination-info {
    text-align: center;
    margin-bottom: 12px;
}

#bbpress-forums .bbp-replies-pagination .bbp-replies-count {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
}

#bbpress-forums .bbp-pagination-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

#bbpress-forums .bbp-page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s ease;
}

#bbpress-forums .bbp-page-btn:hover {
    background: #F1F5F9;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

#bbpress-forums .bbp-page-btn.bbp-page-current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    cursor: default;
}

#bbpress-forums .bbp-prev-btn,
#bbpress-forums .bbp-next-btn {
    padding: 0 16px;
    font-weight: 600;
}

#bbpress-forums .bbp-page-dots {
    padding: 0 4px;
    color: #CBD5E1;
    font-weight: bold;
}

/* Header des réponses */
#bbpress-forums .bbp-body > div.bbp-reply-header:not(:first-of-type) {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 16px 24px;
    margin-top: 24px;
}

#bbpress-forums .bbp-body > div.bbp-reply-header:not(:first-of-type) .bbp-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #64748B;
}

#bbpress-forums .bbp-body > div.bbp-reply-header:not(:first-of-type) .bbp-reply-post-date {
    color: #64748B;
}

#bbpress-forums .bbp-body > div.bbp-reply-header:not(:first-of-type) .bbp-reply-permalink {
    display: none;
}

/* Bouton Répondre personnalisé */
#bbpress-forums .bbp-custom-reply-btn {
    margin-left: auto;
    padding: 6px 14px;
    background: white;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

#bbpress-forums .bbp-custom-reply-btn:hover {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(54, 94, 138, 0.2);
}

/* Contenu des réponses */
#bbpress-forums .bbp-body > div.reply {
    background: white;
    border: 1px solid #E2E8F0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 32px 24px;
    margin-bottom: 0;
}

/* ===== STYLES COMMUNS ===== */

/* Zone auteur */
#bbpress-forums .bbp-reply-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F1F5F9;
}

#bbpress-forums .bbp-reply-author .bbp-author-avatar {
    flex-shrink: 0;
}

#bbpress-forums .bbp-reply-author .bbp-author-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
}

#bbpress-forums .bbp-reply-author .bbp-author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-main);
    display: block;
}

#bbpress-forums .bbp-reply-author a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

#bbpress-forums .bbp-reply-author a:hover .bbp-author-name {
    color: var(--color-primary);
}

#bbpress-forums .bbp-author-role {
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

/* Zone contenu */
#bbpress-forums .bbp-reply-content {
    padding: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
}

#bbpress-forums .bbp-reply-content p {
    margin: 0 0 16px 0;
}

#bbpress-forums .bbp-reply-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    #bbpress-forums .bbp-reply-header {
        padding: 12px 16px;
    }
    
    #bbpress-forums .bbp-replies .bbp-body > div:not(.bbp-reply-header) {
        padding: 20px 16px;
    }
}

/* Titres de forum/sujet - Plus lisibles */
#bbpress-forums .bbp-forum-title,
#bbpress-forums .bbp-topic-permalink {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s ease;
}

#bbpress-forums .bbp-forum-title:hover,
#bbpress-forums .bbp-topic-permalink:hover {
    color: var(--color-primary);
}

/* Description du forum - Meilleure lisibilité */
#bbpress-forums .bbp-forum-content {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-top: 0.375rem;
    line-height: 1.6;
}

/* Statistiques - Discrètes */
#bbpress-forums .bbp-forum-topic-count,
#bbpress-forums .bbp-forum-reply-count,
#bbpress-forums .bbp-topic-voice-count,
#bbpress-forums .bbp-topic-reply-count {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Fraîcheur (dernier message) */
#bbpress-forums .bbp-forum-freshness,
#bbpress-forums .bbp-topic-freshness {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

#bbpress-forums .bbp-forum-freshness a,
#bbpress-forums .bbp-topic-freshness a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

#bbpress-forums .bbp-forum-freshness a:hover,
#bbpress-forums .bbp-topic-freshness a:hover {
    color: #2A4A6E;
    text-decoration: underline;
}

/* ========================================
   FORMULAIRE BBPress - Reset et Base
   ======================================== */

/* Reset des styles par défaut */
#bbpress-forums fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

#bbpress-forums fieldset.bbp-form {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0 0 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

#bbpress-forums fieldset.bbp-form legend {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    padding: 0 0 20px 0;
    margin: 0 0 24px 0;
    border-bottom: 1px solid #E2E8F0;
    width: 100%;
    float: none;
}

/* Groupes de champs */
#bbpress-forums .bbp-form > div,
#bbpress-forums .bbp-form > p {
    margin: 0 0 28px 0;
    clear: both;
}

/* Labels */
#bbpress-forums .bbp-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

/* Reset des inputs */
#bbpress-forums input,
#bbpress-forums textarea,
#bbpress-forums select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

/* Champs texte */
#bbpress-forums input[type="text"],
#bbpress-forums input[type="email"],
#bbpress-forums input[type="url"],
#bbpress-forums input[type="password"] {
    display: block;
    width: 100%;
    min-height: 42px !important;
    height: auto !important;
    padding: 14px 20px !important;
    font-size: 16px;
    line-height: 1.5;
    color: #0F172A;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#bbpress-forums input[type="text"]:focus,
#bbpress-forums input[type="email"]:focus,
#bbpress-forums input[type="url"]:focus,
#bbpress-forums input[type="password"]:focus {
    color: #0F172A;
    background-color: #fff;
    border-color: #365E8A;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(54, 94, 138, 0.1);
}

/* Textarea */
#bbpress-forums textarea {
    display: block;
    width: 100%;
    min-height: 250px;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #0F172A;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    resize: vertical;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#bbpress-forums textarea:focus {
    color: #0F172A;
    background-color: #fff;
    border-color: #365E8A;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(54, 94, 138, 0.1);
}

/* Select */
#bbpress-forums select {
    display: block;
    width: 100%;
    min-height: 42px !important;
    height: auto !important;
    padding: 14px 40px 14px 20px !important;
    font-size: 16px;
    line-height: 1.5;
    color: #0F172A;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

#bbpress-forums select:focus {
    border-color: #365E8A;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(54, 94, 138, 0.1);
}

/* Checkbox et Radio */
#bbpress-forums input[type="checkbox"],
#bbpress-forums input[type="radio"] {
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    appearance: checkbox !important;
    width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    padding: 0 !important;
    margin: 0 8px 0 0 !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    display: inline-block !important;
    position: relative !important;
}

#bbpress-forums input[type="radio"] {
    -webkit-appearance: radio !important;
    -moz-appearance: radio !important;
    appearance: radio !important;
}

/* Container de checkbox */
#bbpress-forums p:has(input[type="checkbox"]),
#bbpress-forums p:has(input[type="radio"]) {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

#bbpress-forums p:has(input[type="checkbox"]) label,
#bbpress-forums p:has(input[type="radio"]) label {
    display: inline !important;
    margin: 0 !important;
    font-weight: 400 !important;
    cursor: pointer !important;
}

/* Descriptions */
#bbpress-forums .description {
    display: block;
    margin: 8px 0 0 0;
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    font-style: italic;
}

/* ========================================
   BOUTONS BBPress
   ======================================== */

/* Zone de soumission */
#bbpress-forums .bbp-submit-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 2px solid #E2E8F0;
}

/* Bouton principal */
#bbpress-forums button,
#bbpress-forums input[type="submit"],
#bbpress-forums .button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(135deg, #365E8A 0%, #2A4A6E 100%);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.25);
    transition: all 0.2s ease;
}

#bbpress-forums button:hover,
#bbpress-forums input[type="submit"]:hover,
#bbpress-forums .button:hover {
    background: linear-gradient(135deg, #2A4A6E 0%, #1E3652 100%);
    box-shadow: 0 6px 16px rgba(54, 94, 138, 0.35);
    transform: translateY(-2px);
}

#bbpress-forums button:active,
#bbpress-forums input[type="submit"]:active,
#bbpress-forums .button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(54, 94, 138, 0.2);
}

/* Boutons secondaires */
#bbpress-forums .button-secondary {
    background: #fff;
    color: #365E8A;
    border: 2px solid #365E8A;
    box-shadow: none;
}

#bbpress-forums .button-secondary:hover {
    background: #365E8A;
    color: #fff;
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.25);
}

/* Pagination - Minimaliste */
#bbpress-forums .bbp-pagination {
    margin: 2rem 0;
}

#bbpress-forums .bbp-pagination-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

#bbpress-forums .bbp-pagination-links a,
#bbpress-forums .bbp-pagination-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.75rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

#bbpress-forums .bbp-pagination-links a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(54, 94, 138, 0.05);
}

#bbpress-forums .bbp-pagination-links .current {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Breadcrumb - Plus visible */
#bbpress-forums .bbp-breadcrumb {
    background: var(--color-background);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

#bbpress-forums .bbp-breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

#bbpress-forums .bbp-breadcrumb a:hover {
    color: #2A4A6E;
    text-decoration: underline;
}

#bbpress-forums .bbp-breadcrumb .bbp-breadcrumb-current {
    color: var(--color-text-main);
    font-weight: 600;
}

/* Réponses - Design épuré */
#bbpress-forums .bbp-reply-header {
    background: transparent;
    padding: 0;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
    padding-left: 0.75rem;
}

#bbpress-forums .bbp-reply-content {
    background: white;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
    color: var(--color-text-main);
}

#bbpress-forums .bbp-reply-content:last-child {
    border-bottom: none;
}

#bbpress-forums .bbp-reply-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

#bbpress-forums .bbp-author-avatar img {
    border-radius: 50%;
    border: 2px solid var(--color-border);
}

#bbpress-forums .bbp-author-name {
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 0.9375rem;
}

/* Notices - Discrètes */
#bbpress-forums .bbp-template-notice {
    background: rgba(54, 94, 138, 0.05);
    border-left: 3px solid var(--color-primary);
    color: var(--color-text-main);
    padding: 0.875rem 1.25rem;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-size: 0.9375rem;
}

#bbpress-forums .bbp-template-notice.info {
    background: rgba(54, 94, 138, 0.05);
    border-left-color: var(--color-primary);
}

#bbpress-forums .bbp-template-notice.error {
    background: rgba(239, 68, 68, 0.05);
    border-left-color: #EF4444;
    color: #DC2626;
}

/* Responsive */
@media (max-width: 768px) {
    #bbpress-forums {
        padding: 1rem;
    }

    #bbpress-forums li.bbp-forum-info,
    #bbpress-forums li.bbp-topic-title {
        padding: 1rem 0;
    }

    #bbpress-forums .bbp-forum-title,
    #bbpress-forums .bbp-topic-permalink {
        font-size: 1rem;
    }

    #bbpress-forums fieldset.bbp-form {
        padding: 24px;
    }
    
    #bbpress-forums fieldset.bbp-form legend {
        font-size: 24px;
    }

    #bbpress-forums button,
    #bbpress-forums input[type="submit"],
    #bbpress-forums .button {
        width: 100%;
        padding: 16px 24px;
    }
    
    #bbpress-forums .bbp-submit-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    #bbpress-forums input[type="text"],
    #bbpress-forums input[type="email"],
    #bbpress-forums input[type="url"],
    #bbpress-forums input[type="password"],
    #bbpress-forums select {
        padding: 12px 16px;
    }
    
    #bbpress-forums textarea {
        min-height: 200px;
        padding: 12px 16px;
    }
}


/* ============================================
   BIBLIOTHÈQUE - Page Catalogue
   ============================================ */

.bibliotheque-page-wrapper {
    background: #F8FAFC;
    min-height: 100vh;
    width: 100%;
}

/* Hero Banner */
.bibliotheque-hero-banner {
    background: linear-gradient(135deg, #365E8A 0%, #2A4A6E 100%);
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bibliotheque-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 236, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.bibliotheque-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.bibliotheque-hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.bibliotheque-hero-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Main Content */
.bibliotheque-main-content {
    padding: 5rem 0;
}

.bibliotheque-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Introduction */
.bibliotheque-intro {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.08);
}

.bibliotheque-intro p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #365E8A;
    margin: 0 0 1rem;
}

.bibliotheque-intro ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.bbp-author-role {
    display: none !important;
}


.bibliotheque-intro li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #64748B;
    line-height: 1.6;
}

.bibliotheque-intro li::before {
    content: '📚';
    position: absolute;
    left: 0;
    top: 0;
}

/* Table Wrapper */
.bibliotheque-table-wrapper {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.08);
    overflow-x: auto;
    margin-bottom: 3rem;
}

/* Table Styles */
.bibliotheque-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.bibliotheque-table thead {
    background: linear-gradient(135deg, #365E8A 0%, #2A4A6E 100%);
}

.bibliotheque-table thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #F4EC6C;
}

.bibliotheque-table thead th:first-child {
    border-top-left-radius: 0.5rem;
}

.bibliotheque-table thead th:last-child {
    border-top-right-radius: 0.5rem;
}

.bibliotheque-table tbody tr {
    border-bottom: 1px solid #E2E8F0;
    transition: background-color 0.2s ease;
}

.bibliotheque-table tbody tr:hover {
    background-color: #F8FAFC;
}

.bibliotheque-table tbody tr:last-child {
    border-bottom: none;
}

.bibliotheque-table tbody td {
    padding: 1rem;
    color: #0F172A;
    vertical-align: top;
}

.bibliotheque-table tbody td:nth-child(1) {
    font-weight: 700;
    color: #365E8A;
    text-align: center;
    width: 80px;
}

.bibliotheque-table tbody td:nth-child(2) {
    font-weight: 600;
    color: #365E8A;
    width: 80px;
}

.bibliotheque-table tbody td:nth-child(3) {
    width: 80px;
}

.bibliotheque-table tbody td:nth-child(4) {
    min-width: 300px;
}

.bibliotheque-table tbody td:nth-child(5),
.bibliotheque-table tbody td:nth-child(6),
.bibliotheque-table tbody td:nth-child(7) {
    color: #64748B;
    font-size: 0.875rem;
}

/* Footer Note */
.bibliotheque-footer-note {
    text-align: center;
    padding: 2rem;
}

.bibliotheque-footer-note p {
    color: #64748B;
    font-size: 0.95rem;
    margin: 0;
}

.bibliotheque-footer-note strong {
    color: #365E8A;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bibliotheque-table-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .bibliotheque-hero-banner {
        padding: 6rem 0 4rem;
    }

    .bibliotheque-hero-heading {
        font-size: 2.5rem;
    }

    .bibliotheque-hero-tagline {
        font-size: 1.25rem;
    }

    .bibliotheque-main-content {
        padding: 3rem 0;
    }

    .bibliotheque-intro {
        padding: 1.5rem;
    }

    .bibliotheque-table-wrapper {
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .bibliotheque-table {
        font-size: 0.8rem;
    }

    .bibliotheque-table thead th,
    .bibliotheque-table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .bibliotheque-table tbody td:nth-child(4) {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .bibliotheque-hero-heading {
        font-size: 2rem;
    }

    .bibliotheque-hero-tagline {
        font-size: 1.125rem;
    }

    .bibliotheque-table {
        font-size: 0.75rem;
    }

    .bibliotheque-table thead th,
    .bibliotheque-table tbody td {
        padding: 0.5rem 0.25rem;
    }
}
