

        /* Pagination */
        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .pagination-btn {
            min-width: 36px;
            height: 36px;
            padding: 0 12px;
            border: 1px solid #e5e7eb;
            background: white;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #374151;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pagination-btn:hover:not(:disabled) {
            border-color: #6366f1;
            color: #6366f1;
        }

        .pagination-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .pagination-btn.active {
            background: #6366f1;
            color: white;
            border-color: #6366f1;
        }

        .pagination-dots {
            padding: 0 8px;
            color: #9ca3af;
        }

        /* Info de pagination */
        .pagination-info {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #6b7280;
        }

        @media (max-width: 600px) {
            .items-list {
                grid-template-columns: 1fr;
            }

            .pagination-btn {
                min-width: 32px;
                height: 32px;
                font-size: 0.85rem;
            }
        }

.aa-hero-section {
    background: linear-gradient(180deg, #f3e8ff 0%, #e9d5ff 50%, #ddd6fe 100%);
    padding: 80px 20px;
    text-align: center;
}

.aa-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.aa-hero-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 35px;
}

.aa-search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.aa-search-wrapper {
    flex: 1;
    position: relative;
}

.aa-search-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.95rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.aa-search-input:focus {
    outline: none;
    border-color: #6366f1;
}

.aa-search-input::placeholder {
    color: #9ca3af;
}

.aa-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 8px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.aa-search-btn:hover {
    background: #4f46e5;
}

.aa-filter-btn {
    padding: 12px 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.aa-filter-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
}

/* ...et ainsi de suite pour toutes les classes de ta section campaigns */

        .campaigns-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .campaigns-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }

        .campaign-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .campaign-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .campaign-image-wrapper {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .campaign-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .campaign-badge {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(255, 255, 255, 0.95);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #1f2937;
            backdrop-filter: blur(10px);
        }

        .campaign-content {
            padding: 20px;
        }

        .campaign-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .campaign-organizer {
            font-size: 0.85rem;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .campaign-stats {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .stats-amount {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f2937;
        }

        .stats-detail {
            font-size: 0.85rem;
            color: #6b7280;
        }

        .amount-highlight {
            color: #6366f1;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 20px;
            }

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

            .search-container {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-btn {
                width: 100%;
            }

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