
        /* Menu mobile */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: #fff;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
        }
        
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #555;
            font-size: 12px;
            flex: 1;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        
        .mobile-nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-item.active {
            color: #0073aa; /* Couleur d'accent WordPress */
        }
        
        .mobile-nav-item.active i {
            color: #0073aa;
            transform: translateY(-2px);
        }
        
        .mobile-nav-item:hover {
            color: #0073aa;
        }
        
        .mobile-nav-item:hover i {
            transform: translateY(-2px);
        }
        
        /* Afficher seulement sur mobile */
        @media (min-width: 1081px) {
            .mobile-bottom-nav {
                display: none;
            }
            
            body {
                padding-bottom: 20px;
            }
        }
        
        /* Indicateur visuel pour la page active */
        .nav-indicator {
            width: 5px;
            height: 5px;
            background-color: #0073aa;
            border-radius: 50%;
            margin-top: 4px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-nav-item.active .nav-indicator {
            opacity: 1;
        }
        
        /* Style pour la démo */
        .demo-content {
            margin: 30px 0;
        }
        
        .demo-placeholder {
            height: 200px;
            background: linear-gradient(45deg, #e0e0e0, #f5f5f5);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            margin: 20px 0;
        }